/**
 * Gulab – Site styles (design tokens locked in design-tokens.css)
 */
@import url('design-tokens.css');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: clip;
    position: relative;
}

/* Traditional Indian ornament background */
.site-bg-ornament {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.ornament-layer {
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    background-image: url('../images/indian-ornament-pattern.svg');
    background-repeat: repeat;
    opacity: 0.11;
}
.ornament-layer-1 {
    background-size: 220px 220px;
    animation: ornamentDrift 90s linear infinite, ornamentBreathe 8s ease-in-out infinite;
}
.ornament-layer-2 {
    background-size: 180px 180px;
    opacity: 0.07;
    animation: ornamentDriftReverse 120s linear infinite;
}
.ornament-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 40%, rgba(253, 248, 242, 0.78) 0%, rgba(253, 248, 242, 0.38) 45%, transparent 70%),
        linear-gradient(to bottom, rgba(253, 248, 242, 0.55) 0%, transparent 25%, transparent 75%, rgba(253, 248, 242, 0.6) 100%);
}
[data-theme="dark"] .ornament-glow {
    background:
        radial-gradient(ellipse 70% 60% at 50% 40%, rgba(26, 18, 16, 0.82) 0%, rgba(26, 18, 16, 0.42) 45%, transparent 70%),
        linear-gradient(to bottom, rgba(26, 18, 16, 0.6) 0%, transparent 25%, transparent 75%, rgba(26, 18, 16, 0.65) 100%);
}
[data-theme="dark"] .ornament-layer { opacity: 0.06; }
[data-theme="dark"] .ornament-layer-2 { opacity: 0.04; }
@keyframes ornamentDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(220px, 220px); }
}
@keyframes ornamentDriftReverse {
    0% { transform: rotate(12deg) translate(0, 0); }
    100% { transform: rotate(12deg) translate(-180px, -180px); }
}
@keyframes ornamentBreathe {
    0%, 100% { opacity: 0.09; }
    50% { opacity: 0.14; }
}

.site-header,
.site-main,
.site-footer,
.page-loader {
    position: relative;
    z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
    .ornament-layer { animation: none !important; }
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
html { overflow-x: clip; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 20px); width: 100%; }
.center { text-align: center; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* Loader */
.page-loader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--color-bg);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-brand { animation: loaderPulse 1.2s ease-in-out infinite; }
.loader-logo {
    width: min(200px, 55vw);
    height: auto;
    display: block;
}
@keyframes loaderPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.75; transform: scale(0.97); }
}

/* Header */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    height: var(--header-h); z-index: 1000;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow 0.3s;
}
.site-header.scrolled {
    background: var(--color-bg);
    box-shadow: var(--shadow);
}
.header-inner {
    height: 100%;
    display: flex; align-items: center; justify-content: space-between;
}
.logo {
    display: flex;
    align-items: stretch;
    flex-shrink: 0;
    height: 100%;
    align-self: stretch;
}
.logo-img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
    object-position: left center;
    transition: transform 0.3s var(--ease);
}
.logo:hover .logo-img { transform: scale(1.02); }
.main-nav { display: flex; align-items: center; }
.logo-footer .logo-img { height: 72px; margin: 0 auto 8px; }
.nav-list { display: flex; gap: 8px; }
.nav-link {
    padding: 10px 16px; font-size: 1rem; font-weight: 600;
    color: var(--color-muted); border-radius: 8px;
    transition: all 0.25s var(--ease);
}
.nav-link:hover, .nav-link.active {
    color: var(--color-burgundy);
    background: var(--color-gold-soft);
}
.header-actions { display: flex; align-items: center; gap: 10px; }

.header-lang-pill {
    display: flex;
    padding: 3px;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: var(--color-card);
}
.header-lang-btn {
    padding: 6px 11px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--color-muted);
    cursor: pointer;
    transition: all 0.25s var(--ease);
}
.header-lang-btn:hover { color: var(--color-burgundy); }
.header-lang-btn.active {
    background: var(--color-burgundy);
    color: #fff;
    box-shadow: var(--shadow-burgundy);
}

.header-icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: var(--color-card);
    color: var(--color-burgundy);
    cursor: pointer;
    transition: all 0.25s var(--ease);
}
.header-icon-btn:hover {
    background: var(--color-gold-soft);
    border-color: rgba(181, 142, 88, 0.35);
    transform: scale(1.04);
}
.theme-icon { display: block; }
[data-theme="light"] .theme-icon-light,
[data-theme="dark"] .theme-icon-dark { display: none; }

.nav-mobile-actions { display: none; }
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    min-width: 44px;
    min-height: 44px;
}
.menu-toggle span {
    width: 22px; height: 2px; background: var(--color-text);
    border-radius: 2px; transition: 0.3s;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 24px; font-weight: 600; font-size: 0.9rem;
    border-radius: 12px; border: 2px solid transparent;
    cursor: pointer; transition: all 0.3s var(--ease);
}
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }
.btn-full { width: 100%; }
.btn-primary {
    background: linear-gradient(135deg, var(--color-burgundy) 0%, var(--color-burgundy-light) 100%);
    color: #fff;
    box-shadow: var(--shadow-burgundy);
    border: 1px solid rgba(181, 142, 88, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(99, 13, 22, 0.32);
    background: linear-gradient(135deg, var(--color-burgundy-light) 0%, var(--color-burgundy) 100%);
}
.btn-outline {
    border-color: rgba(181, 142, 88, 0.45);
    background: var(--color-card);
    color: var(--color-burgundy);
}
.btn-outline:hover {
    border-color: var(--color-burgundy);
    color: var(--color-burgundy);
    background: var(--color-gold-soft);
}
.btn-ghost {
    border-color: transparent;
    background: transparent;
    color: var(--color-burgundy);
    padding-left: 18px;
    padding-right: 18px;
}
.btn-ghost:hover {
    background: var(--color-gold-soft);
    border-color: rgba(181, 142, 88, 0.35);
}

/* Hero – full-width banner with bottom blur fade */
.hero-feature {
    position: relative;
    padding: var(--header-h) 0 0;
    background: var(--color-bg);
    overflow: hidden;
}
.hero-feature-visual {
    position: relative;
    width: 100%;
    line-height: 0;
    overflow: hidden;
}
.hero-feature-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}
.hero-feature-fade {
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    pointer-events: none;
    z-index: 2;
}
.hero-feature-fade::before {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    mask-image: linear-gradient(to top, #000 0%, #000 18%, rgba(0, 0, 0, 0.55) 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, #000 0%, #000 18%, rgba(0, 0, 0, 0.55) 50%, transparent 100%);
}
.hero-feature-fade::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        var(--color-bg) 0%,
        rgba(253, 248, 242, 0.95) 22%,
        rgba(253, 248, 242, 0.55) 55%,
        transparent 100%
    );
}

/* Brand strip */
.brand-strip {
    padding: 14px 0;
    background: linear-gradient(90deg, var(--color-burgundy-dark), var(--color-burgundy), var(--color-burgundy-dark));
    overflow: hidden; color: #fff;
}
.brand-strip-track {
    display: flex; gap: 48px; width: max-content;
    animation: marquee 22s linear infinite;
    font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
}
.brand-strip-track span { white-space: nowrap; opacity: 0.95; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.text-gradient {
    background: linear-gradient(135deg, var(--color-burgundy) 0%, var(--color-gold-dark) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* Sections */
.section { padding: 48px 0; scroll-margin-top: var(--header-h); position: relative; overflow: hidden; }
.section-alt { background: color-mix(in srgb, var(--color-bg-alt) 88%, transparent); }
[data-theme="dark"] .section-alt {
    background: color-mix(in srgb, var(--color-bg-alt) 92%, #000 8%);
}
.section-label {
    display: inline-block; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--color-gold-dark); margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700; line-height: 1.2; margin-bottom: 12px;
}
.section-title em { font-style: italic; color: var(--color-burgundy); }
.section-text { color: var(--color-muted); line-height: 1.75; max-width: 560px; }
.section-subtitle { color: var(--color-muted); font-size: 0.95rem; margin-top: 8px; }
.section-header { margin-bottom: 28px; }
.section-header.center { text-align: center; }

/* About – clean photo layout */
.section-about {
    overflow: visible;
}
.about-scroll-block {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(300px, 1fr);
    gap: 48px 56px;
    align-items: start;
    position: relative;
    z-index: 1;
}
.about-visual-sticky {
    position: sticky;
    top: calc(var(--header-h) + 28px);
    align-self: start;
}
.about-visual {
    margin: 0;
}
.about-photo-layout {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.about-photo {
    border-radius: 18px;
    overflow: hidden;
    background: var(--color-bg-alt);
    border: 1px solid rgba(181, 142, 88, 0.2);
    box-shadow: var(--shadow);
}
.about-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}
.about-photo-hero {
    aspect-ratio: 16 / 10;
}
.about-photo-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.about-photo-row .about-photo {
    aspect-ratio: 4 / 3;
}
.about-scroll-content {
    padding: 8px 0 12px;
}
.about-title {
    margin-bottom: 18px;
    font-size: clamp(1.8rem, 3.2vw, 2.45rem);
    line-height: 1.15;
}
.about-lead {
    color: var(--color-text);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 16px;
}
.about-lead strong {
    color: var(--color-burgundy);
}
.about-copy {
    color: var(--color-muted);
    font-size: 0.94rem;
    line-height: 1.72;
    margin-bottom: 14px;
}
.about-copy:last-of-type {
    margin-bottom: 20px;
}
.about-quote {
    position: relative;
    margin: 0 0 24px;
    padding: 18px 20px 18px 24px;
    border-left: 3px solid var(--color-gold);
    background: linear-gradient(90deg, rgba(181, 142, 88, 0.1), transparent);
    border-radius: 0 14px 14px 0;
}
.about-quote-mark {
    position: absolute;
    top: 6px;
    left: 10px;
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1;
    color: var(--color-gold-dark);
    opacity: 0.45;
}
.about-quote p {
    margin: 0;
    padding-left: 14px;
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--color-burgundy);
}
.pillars {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 4px;
}
.pillar {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0 12px;
    align-items: start;
    padding: 16px 16px;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.pillar:hover {
    transform: translateY(-3px);
    border-color: rgba(181, 142, 88, 0.35);
}
.pillar-icon {
    grid-row: span 2;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-gold-dark);
    background: var(--color-gold-soft);
}
.pillar strong {
    font-size: 0.86rem;
    line-height: 1.25;
    margin-bottom: 2px;
}
.pillar span {
    font-size: 0.78rem;
    color: var(--color-muted);
    line-height: 1.45;
}

/* About – franchise subsection */
.about-franchise {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}
.franchise-panel {
    padding: 28px 28px 26px;
    border-radius: 24px;
    background: var(--color-card);
    border: 1px solid rgba(181, 142, 88, 0.22);
    box-shadow: 0 16px 48px rgba(99, 13, 22, 0.07);
}
.franchise-intro {
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(181, 142, 88, 0.16);
}
.franchise-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(200px, 280px);
    gap: 16px 28px;
    align-items: center;
}
.franchise-intro-content {
    padding: 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}
.franchise-intro-content .section-label {
    margin-bottom: 2px;
}
.franchise-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4.2vw, 2.85rem);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.01em;
    margin: 0;
    max-width: 100%;
}
.franchise-title em {
    font-style: italic;
    color: var(--color-burgundy);
}
.franchise-lead {
    max-width: 100%;
    margin: 0;
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.62;
}
.franchise-photo {
    margin: 0;
    width: 100%;
    max-width: 280px;
    justify-self: end;
}
.franchise-photo-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--color-bg-alt);
    border: 1px solid rgba(181, 142, 88, 0.28);
    box-shadow: 0 12px 32px rgba(99, 13, 22, 0.1);
}
.franchise-photo-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    pointer-events: none;
}
.franchise-photo-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 42%;
    transition: transform 0.7s var(--ease);
}
.franchise-photo-frame:hover .franchise-photo-img {
    transform: scale(1.04);
}
.franchise-photo-caption {
    margin-top: 14px;
    text-align: center;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-burgundy);
}
.franchise-text {
    margin: 0;
    color: var(--color-text);
    font-size: 0.96rem;
    line-height: 1.72;
    text-align: left;
    max-width: 100%;
}
.franchise-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 4px;
    padding: 14px 8px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(245, 237, 227, 0.55) 0%, rgba(255, 255, 255, 0.75) 100%);
    border: 1px solid rgba(181, 142, 88, 0.18);
}
.franchise-metric {
    text-align: center;
    padding: 4px 8px;
    border-right: 1px solid rgba(181, 142, 88, 0.18);
}
.franchise-metric:last-child {
    border-right: none;
}
.franchise-metric strong,
.franchise-metric-value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--color-burgundy);
    line-height: 1.1;
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
}
.franchise-metric-value--text {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.franchise-metric-value--text.is-visible {
    opacity: 1;
    transform: none;
}
.franchise-metric span {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-muted);
}
.franchise-perks {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-bottom: 24px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(181, 142, 88, 0.2);
    background: rgba(255, 255, 255, 0.55);
}
.franchise-perk {
    display: grid;
    grid-template-columns: 32px 1fr;
    column-gap: 12px;
    row-gap: 2px;
    align-items: start;
    padding: 14px 16px;
    border-radius: 0;
    background: transparent;
    border: none;
    border-right: 1px solid rgba(181, 142, 88, 0.12);
    box-shadow: none;
    transition: background 0.25s var(--ease);
}
.franchise-perk:nth-child(3n) {
    border-right: none;
}
.franchise-perk:nth-child(-n+3) {
    border-bottom: 1px solid rgba(181, 142, 88, 0.12);
}
.franchise-perk:hover {
    transform: none;
    background: rgba(245, 237, 227, 0.55);
    border-color: rgba(181, 142, 88, 0.12);
    box-shadow: none;
}
.franchise-perk-icon {
    grid-row: 1 / span 2;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-bottom: 0;
    border-radius: 9px;
    color: var(--color-burgundy);
    background: var(--color-gold-soft);
    border: 1px solid rgba(181, 142, 88, 0.18);
    flex-shrink: 0;
}
.franchise-perk-icon svg {
    width: 17px;
    height: 17px;
}
.franchise-perk h4 {
    font-size: 0.84rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    align-self: end;
}
.franchise-perk p {
    margin: 0;
    font-size: 0.74rem;
    color: var(--color-muted);
    line-height: 1.42;
}
.franchise-path {
    margin-bottom: 28px;
    padding: 24px 28px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(99, 13, 22, 0.06) 0%, rgba(181, 142, 88, 0.1) 100%);
    border: 1px solid rgba(181, 142, 88, 0.22);
    scroll-margin-top: calc(var(--header-h) + 20px);
}
.franchise-path-label {
    margin: 0 0 20px;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-burgundy);
}
.franchise-path-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    position: relative;
}
.franchise-path-steps::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold) 20%, var(--color-gold) 80%, transparent);
    opacity: 0.5;
    pointer-events: none;
}
.franchise-path-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 8px;
}
.franchise-path-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0 auto 12px;
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(145deg, var(--color-burgundy) 0%, var(--color-burgundy-light) 100%);
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 14px rgba(99, 13, 22, 0.25);
}
.franchise-path-step strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 4px;
}
.franchise-path-step span {
    display: block;
    font-size: 0.78rem;
    color: var(--color-muted);
    line-height: 1.45;
}
.franchise-footer {
    display: flex;
    justify-content: center;
    padding-top: 4px;
}
.franchise-cta {
    min-width: 220px;
}
[data-theme="dark"] .franchise-panel {
    background: rgba(42, 31, 26, 0.95);
    border-color: rgba(201, 168, 118, 0.18);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}
[data-theme="dark"] .franchise-photo-frame {
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}
[data-theme="dark"] .franchise-metrics {
    background: linear-gradient(135deg, rgba(36, 26, 22, 0.9) 0%, rgba(42, 31, 26, 0.75) 100%);
    border-color: rgba(201, 168, 118, 0.14);
}
[data-theme="dark"] .franchise-perks {
    background: rgba(36, 26, 22, 0.65);
    border-color: rgba(201, 168, 118, 0.14);
}
[data-theme="dark"] .franchise-perk {
    border-color: rgba(201, 168, 118, 0.1);
}
[data-theme="dark"] .franchise-perk:hover {
    background: rgba(42, 31, 26, 0.85);
}
[data-theme="dark"] .franchise-path {
    background: linear-gradient(135deg, rgba(99, 13, 22, 0.18) 0%, rgba(181, 142, 88, 0.08) 100%);
}

/* Homepage – Franchise spotlight */
.section-franchise-home {
    padding-top: 40px;
    padding-bottom: 48px;
}
.franchise-home-layout {
    position: relative;
}
.franchise-home-top {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 36px;
}
.franchise-home-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 14px;
}
.franchise-home-title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    line-height: 1.15;
    color: var(--color-text);
    margin: 0 0 16px;
}
.franchise-home-title em {
    color: var(--color-burgundy);
    font-style: normal;
}
.franchise-home-lead {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 12px;
    max-width: 520px;
}
.franchise-home-text {
    font-size: 0.95rem;
    color: var(--color-muted);
    line-height: 1.7;
    margin: 0 0 12px;
    max-width: 520px;
}
.franchise-home-platforms,
.franchise-platforms {
    font-size: 0.95rem;
    color: var(--color-text);
    margin: 0 0 24px;
    max-width: 520px;
    line-height: 1.6;
}
.franchise-home-platforms strong,
.franchise-platforms strong {
    color: var(--color-burgundy);
    font-weight: 700;
}
.franchise-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.btn-lg {
    padding: 14px 28px;
    font-size: 0.95rem;
}
.franchise-home-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
}
.franchise-home-blob-glow {
    position: absolute;
    inset: 8% 6%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(181, 142, 88, 0.28) 0%, rgba(99, 13, 22, 0.12) 45%, transparent 72%);
    filter: blur(18px);
    pointer-events: none;
    animation: franchise-glow-pulse 8s ease-in-out infinite;
}
.franchise-home-blob-rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
}
.franchise-home-blob-ring {
    position: absolute;
    width: min(100%, 420px);
    aspect-ratio: 1;
    border: 1.5px solid rgba(181, 142, 88, 0.55);
    background: transparent;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    will-change: border-radius, transform;
}
.franchise-home-blob-ring--1 {
    border-color: rgba(181, 142, 88, 0.65);
    animation:
        franchise-blob-morph 12s ease-in-out infinite,
        franchise-ring-drift-1 7s ease-in-out infinite;
}
.franchise-home-blob-ring--2 {
    border-color: rgba(99, 13, 22, 0.35);
    animation:
        franchise-blob-morph 14s ease-in-out infinite reverse,
        franchise-ring-drift-2 9s ease-in-out infinite;
}
.franchise-home-blob-ring--3 {
    border-color: rgba(181, 142, 88, 0.4);
    animation:
        franchise-blob-morph 10s ease-in-out infinite,
        franchise-ring-drift-3 11s ease-in-out infinite reverse;
}
.franchise-home-photo,
.franchise-home-blob {
    position: relative;
    z-index: 1;
    margin: 0;
    width: min(100%, 420px);
    aspect-ratio: 1;
    overflow: hidden;
    border: none;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    box-shadow:
        0 20px 48px rgba(99, 13, 22, 0.22),
        0 8px 20px rgba(44, 24, 16, 0.1);
    animation: franchise-blob-morph 12s ease-in-out infinite;
    will-change: border-radius;
}
.franchise-home-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.06);
    transition: transform 0.6s var(--ease);
    animation: franchise-blob-drift 14s ease-in-out infinite;
}
.franchise-home-photo:hover img {
    transform: scale(1.12);
}
@keyframes franchise-blob-morph {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    20% {
        border-radius: 35% 65% 55% 45% / 45% 55% 45% 55%;
    }
    40% {
        border-radius: 50% 50% 35% 65% / 35% 65% 50% 50%;
    }
    60% {
        border-radius: 42% 58% 68% 32% / 62% 38% 55% 45%;
    }
    80% {
        border-radius: 68% 32% 45% 55% / 40% 60% 35% 65%;
    }
}
@keyframes franchise-blob-drift {
    0%, 100% { transform: scale(1.06) translate(0, 0); }
    33% { transform: scale(1.1) translate(2%, -1.5%); }
    66% { transform: scale(1.08) translate(-1.5%, 2%); }
}
@keyframes franchise-glow-pulse {
    0%, 100% { opacity: 0.75; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}
@keyframes franchise-ring-drift-1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -8px) rotate(4deg); }
    50% { transform: translate(-6px, 10px) rotate(-3deg); }
    75% { transform: translate(8px, 6px) rotate(2deg); }
}
@keyframes franchise-ring-drift-2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    20% { transform: translate(-12px, 6px) rotate(-5deg); }
    45% { transform: translate(8px, -10px) rotate(3deg); }
    70% { transform: translate(-4px, -8px) rotate(-2deg); }
}
@keyframes franchise-ring-drift-3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    30% { transform: translate(6px, 12px) rotate(5deg); }
    55% { transform: translate(-10px, -4px) rotate(-4deg); }
    80% { transform: translate(4px, -10px) rotate(2deg); }
}
@media (prefers-reduced-motion: reduce) {
    .franchise-home-blob,
    .franchise-home-photo img,
    .franchise-home-blob-glow,
    .franchise-home-blob-ring {
        animation: none;
    }
}
.franchise-home-stat {
    position: absolute;
    bottom: 18px;
    left: 4%;
    z-index: 2;
    background: var(--color-burgundy);
    color: #fff;
    border-radius: 20px;
    padding: 14px 20px;
    box-shadow: 0 14px 36px rgba(99, 13, 22, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    max-width: calc(100% - 32px);
    backdrop-filter: blur(6px);
}
.franchise-home-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    line-height: 1;
    margin-bottom: 4px;
}
.franchise-home-stat span {
    font-size: 0.78rem;
    opacity: 0.9;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.franchise-home-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 18px;
}
.franchise-home-metric {
    text-align: center;
    padding: 22px 18px;
    border: 1px solid rgba(99, 13, 22, 0.08);
    border-radius: 20px;
    background: var(--color-card);
    box-shadow: 0 10px 28px rgba(44, 24, 16, 0.06);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.franchise-home-metric:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(99, 13, 22, 0.1);
}
.franchise-home-metric strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--color-burgundy);
    margin-bottom: 4px;
}
.franchise-home-metric span {
    font-size: 0.78rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.franchise-home-perks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.franchise-home-perk {
    padding: 20px 18px;
    border-radius: 20px;
    border: 1px solid rgba(99, 13, 22, 0.08);
    background: var(--color-card);
    box-shadow: 0 10px 28px rgba(44, 24, 16, 0.06);
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.franchise-home-perk:hover {
    border-color: rgba(181, 142, 88, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(99, 13, 22, 0.1);
}
.franchise-home-perk h4 {
    font-size: 0.9rem;
    margin: 0 0 8px;
    color: var(--color-text);
}
.franchise-home-perk p {
    font-size: 0.82rem;
    color: var(--color-muted);
    margin: 0;
    line-height: 1.55;
}
[data-theme="dark"] .franchise-home-metric,
[data-theme="dark"] .franchise-home-perk {
    background: var(--color-card);
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

/* Delivery platforms – franchise */
.franchise-delivery {
    margin-top: 24px;
    padding: 22px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    background: linear-gradient(135deg, rgba(99, 13, 22, 0.04) 0%, rgba(201, 162, 39, 0.06) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.franchise-delivery-head {
    flex: 1;
    min-width: 220px;
}
.franchise-delivery-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 6px;
}
.franchise-delivery-text {
    margin: 0;
    font-size: 0.88rem;
    color: var(--color-muted);
    line-height: 1.55;
    max-width: 420px;
}
.franchise-delivery-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.delivery-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.delivery-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}
.delivery-brand-mark {
    display: flex;
    align-items: center;
    justify-content: center;
}
.delivery-brand--uber {
    background: #06c167;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.delivery-brand--lieferando {
    background: #ff8000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.delivery-brand-mark--fork svg {
    stroke: #fff;
}
[data-theme="dark"] .franchise-delivery {
    background: linear-gradient(135deg, rgba(99, 13, 22, 0.15) 0%, rgba(201, 162, 39, 0.08) 100%);
}

/* Map section – wide, soft edge blend into page background */
.section-map {
    padding-top: 0;
    overflow: hidden;
}
.map-canvas-wrap {
    position: relative;
    width: min(1240px, calc(100% - 20px));
    margin: 8px auto 0;
    border-radius: 36px;
    overflow: hidden;
    background: transparent;
    isolation: isolate;
}
.gulab-map {
    width: 100%;
    height: min(72vh, 640px);
    min-height: 440px;
    background: var(--color-bg);
    z-index: 1;
    position: relative;
    overflow: hidden;
    pointer-events: none;
    cursor: default;
}
.gulab-map .leaflet-container {
    width: 100% !important;
    height: 100% !important;
    font-family: var(--font-body);
    background: var(--color-bg);
    overflow: hidden;
    cursor: default !important;
}
.gulab-map .leaflet-control-container {
    display: none !important;
}
.gulab-map .leaflet-marker-pane {
    z-index: 600;
}
.gulab-map .leaflet-tile-pane {
    filter: sepia(0.12) saturate(0.95) brightness(1.02);
}
.gulab-map[data-map-theme="dark"] .leaflet-tile-pane,
[data-theme="dark"] .gulab-map .leaflet-tile-pane {
    filter: sepia(0.22) hue-rotate(-18deg) saturate(0.9) brightness(0.82);
}
/* Soft fade so map edges dissolve into page background */
.map-edge-fade {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background:
        linear-gradient(90deg,
            var(--color-bg) 0%,
            color-mix(in srgb, var(--color-bg) 72%, transparent) 8%,
            transparent 22%,
            transparent 78%,
            color-mix(in srgb, var(--color-bg) 72%, transparent) 92%,
            var(--color-bg) 100%
        ),
        linear-gradient(180deg,
            var(--color-bg) 0%,
            color-mix(in srgb, var(--color-bg) 75%, transparent) 10%,
            transparent 24%,
            transparent 76%,
            color-mix(in srgb, var(--color-bg) 75%, transparent) 90%,
            var(--color-bg) 100%
        );
}
.map-canvas-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 0 80px 28px var(--color-bg);
}
.gulab-map-marker-wrap {
    background: transparent;
    border: none;
}
.gulab-map-marker {
    display: block;
    width: 26px;
    height: 18px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    line-height: 0;
    overflow: visible;
    pointer-events: none;
}
.gulab-map-marker-logo {
    width: 26px;
    height: 18px;
    object-fit: contain;
    display: block;
    pointer-events: none;
    filter: drop-shadow(0 1px 2px rgba(44, 24, 16, 0.28));
}
.leaflet-container {
    font-family: var(--font-body);
    background: var(--color-bg);
}
[data-theme="dark"] .gulab-map,
[data-theme="dark"] .gulab-map .leaflet-container,
.map-canvas-wrap[data-map-theme="dark"] .gulab-map,
.map-canvas-wrap[data-map-theme="dark"] .leaflet-container {
    background: var(--color-bg);
}
[data-theme="dark"] .gulab-map-marker-logo {
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.45));
}

/* Apply modal */
body.apply-modal-open {
    overflow: hidden;
}
.apply-modal[hidden] {
    display: none !important;
}
.apply-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.apply-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 8, 12, 0.72);
    backdrop-filter: blur(6px);
}
.apply-modal-dialog {
    position: relative;
    width: min(100%, 480px);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px 28px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    animation: applyModalIn 0.35s var(--ease);
}
@keyframes applyModalIn {
    from { opacity: 0; transform: translateY(16px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.apply-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: var(--color-bg);
    color: var(--color-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}
.apply-modal-close:hover {
    color: var(--color-burgundy);
    border-color: var(--color-burgundy);
}
.apply-modal-head {
    margin-bottom: 24px;
    padding-right: 36px;
}
.apply-modal-title {
    font-family: var(--font-display);
    font-size: 1.65rem;
    margin: 8px 0 10px;
    color: var(--color-text);
}
.apply-modal-text {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin: 0;
    line-height: 1.6;
}
.apply-form {
    display: grid;
    gap: 16px;
}
.apply-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-text);
}
.apply-field input,
.apply-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.apply-field input:focus,
.apply-field textarea:focus {
    outline: none;
    border-color: var(--color-burgundy);
    box-shadow: 0 0 0 3px rgba(99, 13, 22, 0.12);
}
.apply-field textarea {
    resize: vertical;
    min-height: 100px;
}
.apply-form-submit {
    width: 100%;
    margin-top: 4px;
}
.form-consent {
    margin: 12px 0 0;
    font-size: 0.74rem;
    line-height: 1.55;
    color: var(--color-muted);
    text-align: center;
}
.form-consent a {
    color: var(--color-burgundy);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.form-consent a:hover {
    color: var(--color-burgundy-light);
}
.apply-modal-success {
    font-size: 0.92rem;
    color: var(--color-burgundy);
    background: rgba(99, 13, 22, 0.08);
    border: 1px solid rgba(99, 13, 22, 0.2);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    margin: 0;
    line-height: 1.55;
}

/* Why Join Us */
.why-join {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}
.why-join-panel {
    padding: 40px 36px 36px;
    border-radius: 24px;
    background: linear-gradient(165deg, rgba(99, 13, 22, 0.04) 0%, rgba(245, 237, 227, 0.65) 42%, var(--color-card) 100%);
    border: 1px solid rgba(181, 142, 88, 0.22);
    box-shadow: 0 20px 56px rgba(99, 13, 22, 0.08);
}
.why-join-header {
    margin-bottom: 24px;
}
.why-join-title {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.2vw, 2.35rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 14px;
}
.why-join-title em {
    font-style: italic;
    color: var(--color-burgundy);
}
.why-join-lead {
    max-width: 780px;
    margin: 0 auto;
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.72;
}
.why-join-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
}
.why-join-pills span {
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-burgundy);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(181, 142, 88, 0.28);
}
.why-join-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 28px;
}
.why-join-card {
    position: relative;
    padding: 22px 20px 20px;
    border-radius: 16px;
    background: var(--color-card);
    border: 1px solid rgba(181, 142, 88, 0.16);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.why-join-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-burgundy), var(--color-gold));
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}
.why-join-card:hover {
    transform: translateY(-5px);
    border-color: rgba(181, 142, 88, 0.38);
    box-shadow: 0 16px 40px rgba(99, 13, 22, 0.12);
}
.why-join-card:hover::before {
    opacity: 1;
}
.why-join-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    border-radius: 12px;
    color: var(--color-burgundy);
    background: var(--color-gold-soft);
    border: 1px solid rgba(181, 142, 88, 0.22);
}
.why-join-card h4 {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--color-burgundy);
    margin-bottom: 8px;
    line-height: 1.25;
}
.why-join-card p {
    font-size: 0.84rem;
    color: var(--color-muted);
    line-height: 1.58;
    margin: 0;
}
.why-join-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 4px;
    text-align: center;
}
.why-join-cta-btn {
    min-width: 220px;
}
[data-theme="dark"] .why-join-panel {
    background: linear-gradient(165deg, rgba(99, 13, 22, 0.22) 0%, rgba(36, 26, 22, 0.92) 55%, var(--color-card) 100%);
}
[data-theme="dark"] .why-join-pills span {
    background: rgba(42, 31, 26, 0.9);
    border-color: rgba(201, 168, 118, 0.2);
}

/* Menu highlights */
.highlights-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    position: relative; z-index: 1;
}
.highlight-card {
    background: var(--color-card); border: 1px solid var(--color-border);
    border-radius: var(--radius); box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.highlight-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(26, 22, 20, 0.1); }
.highlight-img {
    position: relative;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--color-bg-alt);
}
.food-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.5s var(--ease);
}
.highlight-img .food-img { min-height: 100%; }
.highlight-card:hover .food-img { transform: scale(1.06); }
.highlight-tag {
    position: absolute; top: 12px; left: 12px;
    font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
    padding: 4px 10px; border-radius: 6px;
    background: rgba(255,255,255,0.92); color: var(--color-burgundy);
    box-shadow: var(--shadow);
}
.highlight-body { padding: 18px 20px 22px; }
.highlight-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: 4px; }
.highlight-desc { font-size: 0.82rem; color: var(--color-muted); margin-bottom: 10px; }
.highlight-price { font-weight: 700; color: var(--color-burgundy); font-size: 0.9rem; }

/* Menu from PDF */
.menu-intro {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
    font-size: 0.92rem;
}
.section-menu .section-header { margin-bottom: 22px; }

.menu-tabs-wrap {
    margin-bottom: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.menu-tabs-wrap::-webkit-scrollbar { display: none; }
.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    min-width: min(100%, 720px);
    margin: 0 auto;
    padding: 4px 2px;
}
.menu-tab {
    appearance: none;
    border: 1px solid var(--color-border);
    background: var(--color-card);
    color: var(--color-muted);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 10px 16px;
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s var(--ease);
}
.menu-tab:hover {
    color: var(--color-burgundy);
    border-color: rgba(181, 142, 88, 0.35);
    background: var(--color-gold-soft);
}
.menu-tab.active {
    background: var(--color-burgundy);
    border-color: var(--color-burgundy);
    color: #fff;
    box-shadow: var(--shadow-burgundy);
}
[data-theme="dark"] .menu-tab {
    background: var(--color-card);
    border-color: var(--color-border);
    color: var(--color-muted);
}
[data-theme="dark"] .menu-tab:hover {
    color: var(--color-gold-light);
    border-color: rgba(201, 168, 118, 0.35);
    background: var(--color-gold-soft);
}
[data-theme="dark"] .menu-tab.active {
    background: var(--color-burgundy);
    border-color: var(--color-burgundy);
    color: #fff;
}
[data-theme="dark"] .menu-card {
    background: var(--color-card);
    border-color: var(--color-border);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}
[data-theme="dark"] .menu-card:hover {
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.38);
}
[data-theme="dark"] .menu-card-img {
    background: var(--color-bg-alt);
}
[data-theme="dark"] .menu-card-tag {
    background: rgba(42, 31, 26, 0.92);
    color: var(--color-gold-light);
}
[data-theme="dark"] .menu-card-top h4,
[data-theme="dark"] .menu-card-price {
    color: var(--color-gold-light);
}
[data-theme="dark"] .menu-card-veg {
    background: var(--color-gold-soft);
    color: var(--color-gold-light);
}
[data-theme="dark"] .menu-view-more-btn {
    background: var(--color-card);
    border-color: var(--color-border);
    color: var(--color-text);
}
[data-theme="dark"] .menu-view-more-btn:hover {
    background: var(--color-burgundy);
    border-color: var(--color-burgundy);
    color: #fff;
}
[data-theme="dark"] .menu-pdf-cta {
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}
[data-theme="dark"] .menu-pdf-cta:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
[data-theme="dark"] .menu-pdf-cta-action {
    background: rgba(253, 248, 242, 0.96);
    color: var(--color-burgundy-dark);
}

.menu-panels { position: relative; }
.menu-panel { display: none; animation: menuPanelIn 0.35s var(--ease); }
.menu-panel.active { display: block; }
.menu-panel[hidden] { display: none !important; }
@keyframes menuPanelIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: none; }
}
.menu-panel-sub {
    text-align: center;
    color: var(--color-muted);
    font-size: 0.88rem;
    margin: -8px 0 20px;
}

.menu-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.menu-card {
    display: flex;
    flex-direction: column;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(44, 24, 16, 0.1);
}
.menu-card-img {
    position: relative;
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--color-bg-alt);
}
.menu-card-img .food-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.menu-card:hover .food-img { transform: scale(1.05); }
.menu-card-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-burgundy);
}
.menu-card-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 14px 16px;
    flex: 1;
}
.menu-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}
.menu-card-top h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-burgundy);
}
.menu-card-price {
    flex-shrink: 0;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--color-burgundy);
}
.menu-card-body p {
    font-size: 0.76rem;
    color: var(--color-muted);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.menu-card-veg {
    align-self: flex-start;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 8px;
    border-radius: 100px;
    background: var(--color-gold-soft);
    color: var(--color-burgundy);
}

.menu-pdf-wrap {
    max-width: 720px;
    margin: 48px auto 28px;
}
.menu-pdf-cta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    border-radius: 18px;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-burgundy-dark) 0%, var(--color-burgundy) 50%, var(--color-gold-dark) 100%);
    border: 1px solid rgba(201, 168, 118, 0.45);
    box-shadow: 0 14px 40px rgba(99, 13, 22, 0.22);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.menu-pdf-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(99, 13, 22, 0.3);
    color: #fff;
}
.menu-pdf-cta-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.12) 50%, transparent 60%);
    pointer-events: none;
}
.menu-pdf-cta-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--color-gold-light);
}
.menu-pdf-cta-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}
.menu-pdf-cta-content strong {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    font-weight: 600;
    letter-spacing: 0.02em;
}
.menu-pdf-cta-content span {
    font-size: 0.82rem;
    opacity: 0.88;
    line-height: 1.4;
}
.menu-pdf-cta-action {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-burgundy);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.25s, color 0.25s;
}
.menu-pdf-cta:hover .menu-pdf-cta-action {
    background: #fff;
    color: var(--color-burgundy-dark);
}
.menu-group:not(.is-expanded) .menu-item-extra { display: none; }
.menu-view-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}
.menu-view-more-btn {
    appearance: none;
    border: 1px solid var(--color-border);
    background: var(--color-card);
    color: var(--color-burgundy);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 12px 24px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.menu-view-more-btn:hover {
    background: var(--color-burgundy);
    color: #fff;
    transform: translateY(-2px);
}
.menu-group.is-expanded .menu-view-more-btn {
    background: transparent;
}
.menu-footnote {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--color-muted);
    font-style: italic;
}

/* Locations */
.locations-compact {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.loc-card {
    padding: 22px 22px 22px 56px; background: var(--color-card);
    border: 1px solid var(--color-border); border-radius: var(--radius);
    box-shadow: var(--shadow); position: relative;
    transition: transform 0.3s var(--ease), border-color 0.3s;
}
.loc-card-icon {
    position: absolute; left: 18px; top: 22px; font-size: 1.2rem;
    width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
    background: var(--color-gold-soft); border-radius: 10px;
}
.loc-card:hover { transform: translateY(-4px); border-color: rgba(201, 162, 39, 0.35); }
.loc-card.loc-soon { opacity: 0.75; }
.loc-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.loc-card h3 { font-family: var(--font-display); font-size: 1.3rem; }
.loc-status {
    font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
    padding: 4px 10px; border-radius: 100px;
}
.loc-status.open { background: #e8f5e9; color: #2e7d32; }
.loc-status.soon { background: #fff8e1; color: var(--color-gold); }
.loc-phone { font-size: 0.85rem; font-weight: 600; color: var(--color-burgundy); margin-top: 8px; display: inline-block; }

/* Gallery grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 10px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(245, 237, 227, 0.55);
    border: 1px solid rgba(181, 142, 88, 0.14);
}
.gallery-card {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(181, 142, 88, 0.18);
    background: var(--color-card);
}
.gallery-card-1 { grid-row: span 2; }
.gallery-card .food-img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
}
.gallery-card:hover .food-img { transform: scale(1.06); }
.gallery-card figcaption {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 20px; color: #fff; font-weight: 600; font-size: 0.95rem;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
    opacity: 0; transition: opacity 0.35s;
}
.gallery-card:hover figcaption { opacity: 1; }
.gallery-card-line {
    width: 32px; height: 3px; background: var(--color-gold);
    border-radius: 2px; margin-bottom: 8px;
}

/* Gallery page */
.gallery-page-hero {
    padding: calc(var(--header-h) + 48px) 0 36px;
    background: linear-gradient(180deg, rgba(245, 237, 227, 0.72) 0%, transparent 100%);
}
.gallery-page-hero-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.gallery-page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.15;
    margin-bottom: 12px;
}
.gallery-page-title em { font-style: italic; color: var(--color-burgundy); }
.gallery-page-lead {
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 18px;
}
.gallery-page-count {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(181, 142, 88, 0.28);
    background: var(--color-card);
    font-size: 0.82rem;
    color: var(--color-muted);
}
.gallery-page-count span:first-child {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-burgundy);
}
.gallery-page-section { padding-top: 24px; }
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 28px;
}
.gallery-filter-btn {
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: var(--color-card);
    color: var(--color-muted);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all 0.25s var(--ease);
}
.gallery-filter-btn:hover {
    color: var(--color-burgundy);
    border-color: rgba(181, 142, 88, 0.35);
    background: var(--color-gold-soft);
}
.gallery-filter-btn.active {
    background: var(--color-burgundy);
    border-color: var(--color-burgundy);
    color: #fff;
    box-shadow: var(--shadow-burgundy);
}
.gallery-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(245, 237, 227, 0.55);
    border: 1px solid rgba(181, 142, 88, 0.14);
    line-height: 0;
    overflow: hidden;
}
.gallery-showcase-item,
.gallery-showcase-item--feature {
    grid-column: span 1;
    margin: 0;
}
.gallery-showcase-item.is-hidden { display: none; }
.gallery-showcase-trigger,
.gallery-showcase-item--feature .gallery-showcase-trigger {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 0;
    padding: 0;
    border: 1px solid rgba(181, 142, 88, 0.14);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background: var(--color-card);
    box-shadow: var(--shadow);
    display: block;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.gallery-showcase-trigger .food-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s var(--ease);
    display: block;
}
.gallery-showcase-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(44, 24, 16, 0.12);
}
[data-theme="dark"] .gallery-grid,
[data-theme="dark"] .gallery-showcase {
    background: rgba(36, 26, 22, 0.72);
    border-color: rgba(201, 168, 118, 0.14);
}
.gallery-showcase-trigger:hover .food-img { transform: scale(1.04); }
.gallery-showcase-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 6px;
    padding: 18px;
    background: linear-gradient(to top, rgba(26, 14, 10, 0.82) 0%, rgba(26, 14, 10, 0.2) 52%, transparent 100%);
    color: #fff;
    opacity: 0;
    transition: opacity 0.35s var(--ease);
}
.gallery-showcase-trigger:hover .gallery-showcase-overlay,
.gallery-showcase-trigger:focus-visible .gallery-showcase-overlay { opacity: 1; }
.gallery-showcase-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}
.gallery-showcase-tag,
.gallery-showcase-cat {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
}
.gallery-showcase-tag { color: var(--color-gold-light); }
.gallery-showcase-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.25;
}
.gallery-showcase-zoom {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
}
.gallery-page-empty {
    text-align: center;
    color: var(--color-muted);
    margin-top: 24px;
    font-size: 0.92rem;
}
.gallery-page-empty.hidden { display: none; }
.gallery-page-link-wrap { margin-top: 32px; }

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.gallery-lightbox[hidden] { display: none; }
.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 8, 6, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.gallery-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(980px, 100%);
    max-height: calc(100vh - 40px);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
}
.gallery-lightbox-figure {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(201, 168, 118, 0.25);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}
.gallery-lightbox-img {
    width: 100%;
    max-height: calc(100vh - 160px);
    object-fit: contain;
    display: block;
    background: #111;
}
.gallery-lightbox-caption {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 18px 16px;
    background: rgba(26, 18, 16, 0.96);
    color: #fff;
}
.gallery-lightbox-cat {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold-light);
}
.gallery-lightbox-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
}
.gallery-lightbox-close,
.gallery-lightbox-nav {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    transition: all 0.25s var(--ease);
}
.gallery-lightbox-close {
    position: absolute;
    top: -52px;
    right: 0;
}
.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: scale(1.04);
}

/* Reviews */
.section-reviews {
    position: relative;
}
.reviews-panel {
    position: relative;
    overflow: hidden;
    padding: 32px 30px 28px;
    border-radius: 24px;
    background: linear-gradient(165deg, rgba(99, 13, 22, 0.05) 0%, rgba(245, 237, 227, 0.62) 42%, var(--color-card) 100%);
    border: 1px solid rgba(181, 142, 88, 0.24);
    box-shadow: 0 20px 56px rgba(99, 13, 22, 0.08);
}
.reviews-panel-ornament {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: inherit;
}
.reviews-panel-ornament .ornament-layer {
    opacity: 0.08;
}
.reviews-panel-header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 28px;
}
.reviews-panel-title {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.2vw, 2.35rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 8px 0 10px;
    color: var(--color-text);
}
.reviews-panel-title em {
    font-style: italic;
    color: var(--color-burgundy);
}
.reviews-intro {
    max-width: 520px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--color-muted);
}
.reviews-rating-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}
.reviews-score-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-burgundy);
}
.review-stars-lg {
    display: flex;
    align-items: center;
    gap: 3px;
    color: var(--color-gold-dark);
}
.reviews-slider {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
    --reviews-gap: 16px;
    --reviews-visible: 3;
}
.reviews-slider-viewport {
    overflow: hidden;
    border-radius: 18px;
    container-type: inline-size;
}
.reviews-slider-track {
    display: flex;
    gap: var(--reviews-gap);
    transition: transform 0.55s var(--ease);
    will-change: transform;
}
.reviews-slide {
    flex: 0 0 calc((100cqi - (var(--reviews-visible) - 1) * var(--reviews-gap)) / var(--reviews-visible));
    width: calc((100cqi - (var(--reviews-visible) - 1) * var(--reviews-gap)) / var(--reviews-visible));
    min-width: 0;
    box-sizing: border-box;
    margin: 0;
    min-height: auto;
}
.review-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    padding: 22px 18px 18px;
    border-radius: 18px;
    background: var(--color-card);
    border: 1px solid rgba(181, 142, 88, 0.2);
    box-shadow: 0 8px 28px rgba(44, 24, 16, 0.06);
    overflow: hidden;
}
.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-burgundy), var(--color-gold));
    opacity: 1;
}
.review-quote-icon {
    color: var(--color-burgundy);
    opacity: 0.18;
    margin-bottom: 8px;
}
.review-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    color: var(--color-gold-dark);
    margin-bottom: 14px;
}
.review-star {
    display: block;
}
.review-text {
    flex: 1;
    margin: 0 0 16px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--color-text);
    font-style: normal;
    font-weight: 400;
}
.review-text::before {
    content: '„';
    color: var(--color-burgundy);
    font-style: normal;
    font-weight: 700;
    margin-right: 2px;
}
.review-text::after {
    content: '"';
    color: var(--color-burgundy);
    font-style: normal;
    font-weight: 700;
    margin-left: 1px;
}
.review-card-foot {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(181, 142, 88, 0.18);
}
.review-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
    background: linear-gradient(145deg, var(--color-burgundy) 0%, var(--color-burgundy-light) 100%);
    border: 2px solid rgba(181, 142, 88, 0.35);
    flex-shrink: 0;
}
.review-card-meta {
    min-width: 0;
    text-align: left;
}
.review-author-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    font-style: normal;
    color: var(--color-text);
    line-height: 1.25;
}
.review-author-city {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-muted);
    margin-top: 2px;
}
.reviews-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}
.reviews-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    cursor: pointer;
    background: rgba(181, 142, 88, 0.35);
    transition: transform 0.25s, background 0.25s;
}
.reviews-slider-dot.is-active {
    background: var(--color-burgundy);
    transform: scale(1.25);
}
.reviews-footnote {
    position: relative;
    z-index: 1;
    margin: 22px 0 0;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-muted);
}
[data-theme="dark"] .reviews-panel {
    background: linear-gradient(165deg, rgba(196, 61, 74, 0.12) 0%, rgba(36, 26, 22, 0.95) 48%, var(--color-card) 100%);
    border-color: rgba(201, 168, 118, 0.18);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.32);
}
[data-theme="dark"] .reviews-score-num {
    color: var(--color-gold-light);
}
[data-theme="dark"] .review-stars-lg,
[data-theme="dark"] .review-stars {
    color: var(--color-gold);
}
[data-theme="dark"] .review-card {
    background: var(--color-card);
    border-color: rgba(201, 168, 118, 0.16);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}
[data-theme="dark"] .review-card-foot {
    border-top-color: rgba(201, 168, 118, 0.16);
}
[data-theme="dark"] .reviews-slider-dot {
    background: rgba(201, 168, 118, 0.28);
}
[data-theme="dark"] .reviews-slider-dot.is-active {
    background: var(--color-gold);
}

/* Franchise */
.franchise-banner {
    position: relative; display: flex; align-items: center;
    justify-content: space-between; gap: 32px;
    padding: 48px; border-radius: 24px; color: #fff;
    overflow: hidden; min-height: 280px;
    box-shadow: 0 12px 48px rgba(99, 13, 22, 0.22);
}
.franchise-bg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
}
.franchise-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(105deg, rgba(74, 10, 16, 0.92) 0%, rgba(99, 13, 22, 0.85) 50%, rgba(181, 142, 88, 0.5) 100%);
}
.franchise-text, .franchise-banner .btn-primary { position: relative; z-index: 2; }
.franchise-text p { opacity: 0.9; margin: 12px 0 16px; max-width: 420px; }
.franchise-banner .franchise-perks { display: flex; gap: 16px; flex-wrap: wrap; }
.franchise-banner .franchise-perks li {
    font-size: 0.82rem; font-weight: 600;
    padding: 6px 14px; background: rgba(255,255,255,0.15);
    border-radius: 100px;
}
.franchise-banner .section-label { color: rgba(255,255,255,0.8); }
.franchise-banner .section-title { color: #fff; }
.franchise-banner .section-title em { color: var(--color-gold-light); }
.franchise-banner .btn-primary {
    background: #fff; color: var(--color-burgundy);
    box-shadow: none; flex-shrink: 0;
}
.franchise-banner .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* Contact */
.section-contact .section-header {
    margin-bottom: 24px;
}
.contact-intro {
    max-width: 520px;
    margin: 8px auto 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--color-muted);
}
.contact-panel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid rgba(181, 142, 88, 0.28);
    background: linear-gradient(155deg, var(--color-card) 0%, rgba(245, 237, 227, 0.55) 45%, rgba(99, 13, 22, 0.04) 100%);
    box-shadow: var(--shadow-burgundy);
    padding: 28px 28px 24px;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.contact-panel.visible:hover {
    transform: translateY(-3px);
    border-color: rgba(181, 142, 88, 0.42);
    box-shadow: 0 22px 56px rgba(99, 13, 22, 0.14);
}
.contact-panel-glow {
    position: absolute;
    top: -60px;
    right: -40px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 118, 0.16) 0%, transparent 70%);
    pointer-events: none;
}
.contact-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.contact-chips span {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 999px;
    color: var(--color-burgundy);
    background: rgba(99, 13, 22, 0.06);
    border: 1px solid rgba(181, 142, 88, 0.28);
    transition: background 0.25s, transform 0.25s;
}
.contact-panel.visible:hover .contact-chips span {
    background: rgba(99, 13, 22, 0.09);
}
.contact-panel-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}
.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 28px 26px;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(160deg, var(--color-burgundy-dark) 0%, var(--color-burgundy) 100%);
    border: 1px solid rgba(201, 168, 118, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.contact-info-side::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 90% 8%, rgba(201, 168, 118, 0.2), transparent 45%);
    pointer-events: none;
}
.contact-info-side {
    position: relative;
    overflow: hidden;
}
.contact-info-head {
    position: relative;
    z-index: 1;
}
.contact-info-badge {
    display: inline-block;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 10px;
}
.contact-info-title {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.2vw, 1.55rem);
    margin: 0 0 8px;
    line-height: 1.2;
}
.contact-info-lead {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
}
.contact-detail-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}
.contact-detail-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.contact-detail-card:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(201, 168, 118, 0.35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.contact-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 11px;
    color: var(--color-gold-light);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.contact-detail-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.contact-detail-copy small {
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}
.contact-detail-copy strong {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    word-break: break-word;
}
.contact-locations-block {
    position: relative;
    z-index: 1;
    padding-top: 6px;
}
.contact-locations-label {
    display: block;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 10px;
}
.contact-city-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.contact-city-pill {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.9);
}
.contact-trust-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: auto 0 0;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.76rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
    position: relative;
    z-index: 1;
}
.contact-trust-note svg {
    flex-shrink: 0;
    color: var(--color-gold-light);
}
.contact-form-side {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 28px 26px;
    border-radius: 14px;
    background: var(--color-card);
    border: 1px solid rgba(181, 142, 88, 0.18);
}
.contact-form-eyebrow {
    display: block;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 8px;
}
.contact-form-title {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.2vw, 1.55rem);
    margin: 0 0 8px;
    line-height: 1.2;
    color: var(--color-text);
}
.contact-form-text {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--color-muted);
}
.contact-quick-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.contact-quick-form .contact-field {
    margin-bottom: 0;
}
.contact-quick-form .contact-field label {
    font-size: 0.78rem;
    margin-bottom: 5px;
}
.contact-quick-form .contact-field input,
.contact-quick-form .contact-field textarea {
    padding: 11px 13px;
    font-size: 0.9rem;
    border-radius: 10px;
}
.contact-form-submit {
    width: 100%;
    margin-top: 4px;
}
.contact-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 4px;
    border-top: 1px solid var(--color-border);
}
.contact-quick-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-burgundy);
    background: rgba(99, 13, 22, 0.05);
    border: 1px solid rgba(181, 142, 88, 0.22);
    cursor: pointer;
    text-decoration: none;
    font-family: var(--font-body);
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.contact-quick-link:hover {
    background: rgba(99, 13, 22, 0.1);
    border-color: rgba(181, 142, 88, 0.38);
    transform: translateY(-2px);
}
@media (prefers-reduced-motion: reduce) {
    .contact-panel.visible:hover,
    .contact-detail-card:hover,
    .contact-quick-link:hover { transform: none; }
}
[data-theme="dark"] .contact-panel {
    background: linear-gradient(155deg, var(--color-card) 0%, rgba(42, 31, 26, 0.9) 50%, rgba(99, 13, 22, 0.1) 100%);
    border-color: rgba(201, 168, 118, 0.16);
}
[data-theme="dark"] .contact-form-side {
    background: rgba(42, 31, 26, 0.95);
    border-color: rgba(201, 168, 118, 0.12);
}
[data-theme="dark"] .contact-chips span {
    color: var(--color-gold-light);
    background: rgba(201, 168, 118, 0.08);
}

.contact-form-grid {
    display: grid;
    gap: 14px;
}

.contact-form-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.contact-field {
    margin-bottom: 14px;
}

.contact-field label,
.contact-field legend {
    display: block;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 6px;
}

.contact-field fieldset,
.contact-field-lang {
    border: 0;
    padding: 0;
    margin: 0 0 14px;
}

.contact-field legend {
    padding: 0;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 11px 14px;
    background: var(--color-bg);
    border: 1px solid rgba(99, 13, 22, 0.12);
    border-radius: 11px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-text);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.contact-field textarea {
    min-height: 96px;
    resize: vertical;
    line-height: 1.5;
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: var(--color-gold-dark);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(181, 142, 88, 0.14);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #9a8578;
}

.contact-lang {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
}

.contact-lang-btn {
    cursor: pointer;
    min-width: 0;
}

.contact-lang-btn input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.contact-lang-btn span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 38px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(99, 13, 22, 0.14);
    background: var(--color-bg);
    font-size: 0.82rem;
    color: var(--color-text);
    transition: all 0.2s var(--ease);
    text-align: center;
    line-height: 1.2;
}

.contact-lang-btn input:checked + span {
    background: var(--color-burgundy);
    border-color: var(--color-burgundy);
    color: #fff;
    box-shadow: var(--shadow-burgundy);
}

.contact-lang-btn input:focus-visible + span {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

[data-theme="dark"] .contact-lang-btn span {
    background: var(--color-bg-alt);
    border-color: var(--color-border);
    color: var(--color-text);
}

[data-theme="dark"] .contact-lang-btn input:checked + span {
    background: var(--color-burgundy);
    border-color: var(--color-burgundy);
    color: #fff;
}

.contact-privacy {
    font-size: 0.74rem;
    color: var(--color-muted);
    line-height: 1.5;
    margin: 2px 0 16px;
}

.contact-privacy a {
    color: var(--color-burgundy);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-privacy a:hover {
    color: var(--color-burgundy-light);
}

.contact-alert {
    margin-bottom: 16px;
}

.contact-success {
    text-align: center;
    padding: 48px 16px;
}

.contact-success-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-gold-soft);
    color: var(--color-burgundy);
    font-size: 1.7rem;
    font-weight: 700;
}

.contact-success h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    margin-bottom: 8px;
}

.contact-success p {
    color: var(--color-muted);
    font-size: 0.92rem;
}

.alert {
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 0.88rem;
    margin-bottom: 16px;
}

.alert-error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

[data-theme="dark"] .hero-feature-fade::after {
    background: linear-gradient(
        to top,
        var(--color-bg) 0%,
        rgba(26, 18, 16, 0.95) 22%,
        rgba(26, 18, 16, 0.55) 55%,
        transparent 100%
    );
}
[data-theme="dark"] .contact-field input:focus,
[data-theme="dark"] .contact-field textarea:focus {
    background: var(--color-card);
}
[data-theme="dark"] .alert-error {
    background: rgba(198, 40, 40, 0.15);
    color: #ef9a9a;
    border-color: rgba(198, 40, 40, 0.35);
}

/* Footer */
.site-footer {
    margin-top: 0;
    border-top: 1px solid var(--color-border);
    background: linear-gradient(180deg, var(--color-card) 0%, rgba(99, 13, 22, 0.04) 100%);
}
.footer-top {
    padding: 52px 0 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
    gap: 32px;
    align-items: start;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}
.footer-logo img {
    display: block;
    height: auto;
    max-width: 100px;
}
.footer-tagline {
    font-size: 0.88rem;
    color: var(--color-muted);
    line-height: 1.6;
    margin: 0;
    max-width: 260px;
}
.footer-apply-btn {
    margin-top: 4px;
}
.footer-col-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--color-text);
    margin: 0 0 16px;
    letter-spacing: 0.04em;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 0.86rem;
    color: var(--color-muted);
    transition: color 0.2s, transform 0.2s;
}
.footer-links a:hover {
    color: var(--color-burgundy);
    transform: translateX(3px);
}
.footer-contact-list {
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-contact-list a {
    font-size: 0.86rem;
    color: var(--color-muted);
    transition: color 0.2s;
}
.footer-contact-list a:hover {
    color: var(--color-burgundy);
}
.footer-cities {
    font-size: 0.8rem;
    color: var(--color-muted);
    margin: 0;
    opacity: 0.85;
}
.footer-map-text {
    font-size: 0.84rem;
    color: var(--color-muted);
    line-height: 1.6;
    margin: 0 0 12px;
}
.footer-map-link {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--color-burgundy);
    transition: color 0.2s;
}
.footer-map-link:hover {
    color: var(--color-gold);
}
.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 24px 0 32px;
    background: rgba(0, 0, 0, 0.02);
}
.footer-bottom-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
}
.footer-legal a {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-muted);
    text-decoration: none;
    letter-spacing: 0.02em;
}
.footer-legal a:hover {
    color: var(--color-burgundy);
}
.footer-seo {
    font-size: 0.8rem;
    color: var(--color-muted);
    margin: 0 0 14px;
    line-height: 1.65;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.footer-copy {
    font-size: 0.78rem;
    color: var(--color-muted);
    margin: 0;
}

/* Legal pages */
.section-legal {
    padding-top: 36px;
}
.legal-wrap {
    max-width: 860px;
}
.legal-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}
.legal-nav-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: var(--color-card);
    color: var(--color-muted);
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s var(--ease);
}
.legal-nav-link:hover {
    color: var(--color-burgundy);
    border-color: rgba(181, 142, 88, 0.35);
}
.legal-nav-link.is-active {
    background: var(--color-burgundy);
    border-color: var(--color-burgundy);
    color: #fff;
}
.legal-doc {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 28px 28px 24px;
    box-shadow: var(--shadow);
}
.legal-doc-meta {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin: 0 0 10px;
}
.legal-doc-title {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    line-height: 1.2;
    margin: 0 0 10px;
    color: var(--color-text);
}
.legal-doc-lead {
    margin: 0 0 22px;
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}
.legal-section {
    padding: 18px 0;
    border-top: 1px solid var(--color-border);
}
.legal-section h2 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin: 0 0 10px;
    color: var(--color-burgundy);
}
.legal-section-body {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--color-text);
}
.legal-section-body p {
    margin: 0 0 12px;
}
.legal-section-body p:last-child {
    margin-bottom: 0;
}
.legal-section-body ul {
    margin: 0 0 12px;
    padding-left: 1.15rem;
}
.legal-section-body li {
    margin-bottom: 8px;
}
.legal-section-body a {
    color: var(--color-burgundy);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.legal-section-body code {
    font-size: 0.84em;
    padding: 1px 6px;
    border-radius: 6px;
    background: var(--color-gold-soft);
}
.legal-disclaimer {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 12px;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
}
.legal-disclaimer p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--color-muted);
}
[data-theme="dark"] .legal-doc {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}
[data-theme="dark"] .legal-nav-link.is-active {
    color: #fff;
}

@media (max-width: 640px) {
    .legal-doc { padding: 22px 16px 18px; }
}
[data-theme="dark"] .site-footer {
    background: linear-gradient(180deg, var(--color-card) 0%, rgba(201, 162, 39, 0.03) 100%);
}
[data-theme="dark"] .footer-bottom {
    background: rgba(255, 255, 255, 0.02);
}

/* FAQ */
.section-faq .section-header {
    margin-bottom: 28px;
}
.faq-home-list {
    display: grid;
    gap: 12px;
    max-width: 820px;
    margin: 0 auto;
}
.faq-item {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.faq-item-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    color: var(--color-text);
}
.faq-item-q {
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.35;
}
.faq-item-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    position: relative;
}
.faq-item-icon::before,
.faq-item-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--color-burgundy);
    transition: transform 0.2s var(--ease), opacity 0.2s;
}
.faq-item-icon::before {
    width: 12px;
    height: 2px;
    transform: translate(-50%, -50%);
}
.faq-item-icon::after {
    width: 2px;
    height: 12px;
    transform: translate(-50%, -50%);
}
.faq-item.is-open .faq-item-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item-panel {
    padding: 0 18px 16px;
}
.faq-item-excerpt {
    margin: 0 0 12px;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--color-muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.faq-read-more {
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-burgundy);
    text-decoration: none;
}
.faq-read-more:hover {
    color: var(--color-gold-dark);
}
.faq-home-actions {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}
.faq-page-wrap,
.faq-detail-wrap {
    max-width: 860px;
}
.section-faq-page {
    padding-top: clamp(72px, 10vw, 110px);
}
.section-faq-detail {
    padding-top: clamp(72px, 10vw, 110px);
}
.faq-search {
    margin: 0 auto 24px;
    max-width: 640px;
}
.faq-search-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    background: var(--color-card);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.95rem;
}
.faq-search-input:focus {
    outline: none;
    border-color: var(--color-burgundy);
    box-shadow: 0 0 0 3px rgba(99, 13, 22, 0.12);
}
.faq-search-meta {
    margin: 8px 2px 0;
    font-size: 0.78rem;
    color: var(--color-muted);
    font-weight: 600;
}
.faq-page-list {
    display: grid;
    gap: 14px;
}
.faq-card {
    padding: 20px 20px 16px;
    border-radius: 16px;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow);
}
.faq-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin: 0 0 8px;
    line-height: 1.3;
}
.faq-card-title a {
    color: var(--color-text);
    text-decoration: none;
}
.faq-card-title a:hover {
    color: var(--color-burgundy);
}
.faq-card-excerpt {
    margin: 0 0 12px;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--color-muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.faq-empty {
    text-align: center;
    color: var(--color-muted);
    margin-top: 24px;
}
.faq-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    font-size: 0.8rem;
    color: var(--color-muted);
}
.faq-breadcrumb a {
    color: var(--color-burgundy);
    text-decoration: none;
    font-weight: 600;
}
.faq-detail-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow);
}
.faq-detail-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    line-height: 1.2;
    margin: 8px 0 0;
}
.faq-detail-body {
    margin-top: 20px;
}
.faq-detail-body p {
    margin: 0 0 14px;
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--color-text);
}
.faq-detail-points {
    margin-top: 22px;
    padding: 18px 18px 8px;
    border-radius: 14px;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
}
.faq-detail-points h2 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin: 0 0 12px;
    color: var(--color-burgundy);
}
.faq-detail-points ul {
    margin: 0;
    padding: 0 0 8px 1.1rem;
}
.faq-detail-points li {
    margin-bottom: 8px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--color-text);
}
.faq-detail-example {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px dashed rgba(181, 142, 88, 0.45);
    background: color-mix(in srgb, var(--color-gold-soft) 70%, transparent);
}
.faq-detail-example h2 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin: 0 0 8px;
    color: var(--color-burgundy);
}
.faq-detail-example p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--color-text);
}
.faq-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
[data-theme="dark"] .faq-item,
[data-theme="dark"] .faq-card,
[data-theme="dark"] .faq-detail-card {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

/* Scroll animations */
[data-animate] {
    opacity: 0;
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-animate="fade-up"] { transform: translateY(28px); }
[data-animate="fade-right"] { transform: translateX(-32px); }
[data-animate="fade-left"] { transform: translateX(32px); }
[data-animate="scale-in"] { transform: scale(0.92); }
[data-animate].visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 900px) {
    .container { padding-left: 18px; padding-right: 18px; }
    .hero-feature-fade { height: 38%; }
    .franchise-home-top { grid-template-columns: 1fr; gap: 28px; }
    .franchise-home-visual { min-height: 300px; }
    .franchise-home-photo,
    .franchise-home-blob,
    .franchise-home-blob-ring { width: min(100%, 360px); }
    .franchise-home-photo,
    .franchise-home-blob { margin-inline: auto; }
    .franchise-home-perks { grid-template-columns: repeat(2, 1fr); }
    .franchise-home-metrics { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .about-scroll-block { grid-template-columns: 1fr; gap: 36px; }
    .about-visual-sticky { position: static; top: auto; }
    .about-photo-layout { max-width: 560px; margin: 0 auto; width: 100%; }
    .about-scroll-content { padding-bottom: 0; }
    .pillars { grid-template-columns: 1fr; }
    .franchise-panel { padding: 28px 22px 26px; }
    .franchise-intro-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 480px;
        margin: 0 auto;
    }
    .franchise-photo { max-width: 100%; justify-self: center; }
    .franchise-intro-content { text-align: center; }
    .franchise-text { text-align: center; }
    .franchise-perks {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .franchise-perk {
        border-right: none !important;
        border-bottom: 1px solid rgba(181, 142, 88, 0.12) !important;
    }
    .franchise-perk:nth-child(odd) {
        border-right: 1px solid rgba(181, 142, 88, 0.12) !important;
    }
    .franchise-perk:nth-last-child(-n+2) {
        border-bottom: none !important;
    }
    .franchise-path-steps::before { display: none; }
    .franchise-path-steps { grid-template-columns: 1fr; gap: 20px; }
    .franchise-path-step { display: flex; gap: 14px; text-align: left; padding: 0; }
    .franchise-path-num { margin: 0; flex-shrink: 0; }
    .why-join-panel { padding: 28px 22px 26px; }
    .reviews-panel { padding: 28px 22px 24px; }
    .reviews-slider {
        --reviews-gap: 12px;
        --reviews-visible: 2;
    }
    .why-join-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .menu-cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .menu-tabs { justify-content: flex-start; flex-wrap: nowrap; }
    .menu-pdf-cta {
        flex-direction: column;
        text-align: center;
        padding: 22px 20px;
        gap: 14px;
    }
    .menu-pdf-cta-content { text-align: center; align-items: center; }
    .menu-pdf-cta-action { width: 100%; justify-content: center; }
    .locations-compact { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .gallery-card-1 { grid-row: span 1; }
    .gallery-showcase { grid-template-columns: repeat(2, 1fr); }
    .gallery-showcase-item,
    .gallery-showcase-item--feature { grid-column: span 1; }
    .gallery-showcase-overlay { opacity: 1; }
    .franchise-banner { flex-direction: column; text-align: center; padding: 36px 24px; }
    .franchise-banner .franchise-perks { justify-content: center; }
    .contact-panel { padding: 22px 18px 18px; }
    .contact-panel-grid { grid-template-columns: 1fr; }
    .contact-form-row { grid-template-columns: 1fr; }
    .contact-info-side,
    .contact-form-side { padding: 22px 18px; }
    .contact-form-grid-3 { grid-template-columns: 1fr; }
    .gulab-map { min-height: 380px; height: 56vh; }

    /* Mobile nav from tablet down – prevents header overflow on 641–900px */
    .main-nav {
        position: fixed; inset: 0; top: var(--header-h); background: var(--color-bg);
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        opacity: 0; visibility: hidden; transition: 0.3s;
        padding: max(24px, env(safe-area-inset-top)) 24px max(24px, env(safe-area-inset-bottom));
        z-index: 999;
    }
    .main-nav.open { opacity: 1; visibility: visible; }
    .nav-list { flex-direction: column; align-items: center; gap: 8px; }
    .nav-link { font-size: 1.25rem; padding: 14px 28px; }
    .nav-mobile-actions { display: flex; margin-top: 24px; }
    .menu-toggle { display: flex; }
    .header-apply { display: none; }
}

@media (max-width: 640px) {
    .container { padding-left: 14px; padding-right: 14px; }
    .highlights-grid, .locations-compact, .gallery-grid { grid-template-columns: 1fr; }
    .menu-cards-grid { grid-template-columns: 1fr; gap: 12px; }
    .why-join-grid { grid-template-columns: 1fr; }
    .reviews-slider {
        --reviews-gap: 12px;
        --reviews-visible: 1;
    }
    .franchise-perks {
        grid-template-columns: 1fr;
    }
    .franchise-perk {
        border-right: none !important;
        border-bottom: 1px solid rgba(181, 142, 88, 0.12) !important;
    }
    .franchise-perk:last-child {
        border-bottom: none !important;
    }
    .franchise-metrics { grid-template-columns: 1fr; gap: 16px; }
    .franchise-metric {
        border-right: none;
        border-bottom: 1px solid rgba(181, 142, 88, 0.16);
        padding-bottom: 14px;
    }
    .franchise-metric:last-child { border-bottom: none; padding-bottom: 0; }
    .franchise-home-perks { grid-template-columns: 1fr; }
    .franchise-delivery { flex-direction: column; align-items: flex-start; padding: 18px 16px; }
    .franchise-delivery-brands { width: 100%; }
    .delivery-brand { flex: 1; justify-content: center; min-width: 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-brand { align-items: center; text-align: center; }
    .footer-tagline { max-width: none; }
    .gulab-map { min-height: 340px; height: 52vh; }
    .gallery-showcase { grid-template-columns: 1fr; }
    .gallery-showcase-item,
    .gallery-showcase-item--feature { grid-column: span 1; }
    .gallery-lightbox {
        padding: 12px;
        align-items: stretch;
    }
    .gallery-lightbox-dialog {
        grid-template-columns: 1fr;
        max-height: min(92vh, 900px);
        gap: 0;
        width: 100%;
    }
    .gallery-lightbox-figure { order: 1; }
    .gallery-lightbox-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 3;
        width: 44px;
        height: 44px;
    }
    .gallery-lightbox-prev { left: 8px; }
    .gallery-lightbox-next { right: 8px; }
    .gallery-lightbox-close {
        top: 8px;
        right: 8px;
        z-index: 4;
        background: rgba(0, 0, 0, 0.55);
    }
    .gallery-lightbox-img { max-height: min(70vh, 520px); }
    .hero-feature-fade { height: 34%; }
    .hero-feature-fade::before { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
    .contact-panel { padding: 16px 14px 14px; }
    .contact-info-side,
    .contact-form-side { padding: 18px 14px; }
    .contact-chips span { font-size: 0.62rem; padding: 6px 10px; }
    .contact-lang { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 6px; }
    .contact-lang-btn span { min-height: 36px; padding: 7px 4px; font-size: 0.72rem; }
    .section { padding: 36px 0; }
    .section-title { font-size: clamp(1.5rem, 7vw, 2rem); line-height: 1.15; }
    .karvi-back-home {
        left: max(0.75rem, env(safe-area-inset-left));
        bottom: max(1rem, env(safe-area-inset-bottom));
    }
}

@media (max-width: 480px) {
    .container { padding: 0 12px; }
    .section-title { font-size: clamp(1.4rem, 6.5vw, 1.85rem); }
    .reviews-panel { padding: 22px 16px 20px; }
    .reviews-score-num { font-size: 1.85rem; }
    .contact-panel { padding: 12px 10px; }
    .contact-info-side,
    .contact-form-side { padding: 16px 12px; }
    .menu-panel-sub { font-size: 0.82rem; }
    .footer-seo { font-size: 0.78rem; line-height: 1.6; }
    .franchise-home-stat { padding: 12px 14px; left: 8%; bottom: 12px; }
    .franchise-home-stat strong { font-size: 1.45rem; }
    .franchise-home-photo,
    .franchise-home-blob,
    .franchise-home-blob-ring { width: min(100%, 300px); }
}

@media (max-width: 360px) {
    .header-inner { gap: 8px; }
    .header-lang-pill { scale: 0.92; }
    .brand-strip-track { font-size: 0.74rem; gap: 32px; }
}
