/**
 * Gulab – Light single-page design
 */

:root {
    --color-bg: #fdf8f2;
    --color-bg-alt: #f5ede3;
    --color-card: #ffffff;
    --color-burgundy: #630d16;
    --color-burgundy-light: #8b1a26;
    --color-burgundy-dark: #4a0a10;
    --color-gold: #b58e58;
    --color-gold-light: #c9a876;
    --color-gold-dark: #8a6b40;
    --color-gold-soft: #f0e6d8;
    --color-gold-deep: #6b4f2e;
    --color-rose: #a51c24;
    --color-text: #2c1810;
    --color-muted: #6b5344;
    --color-border: rgba(99, 13, 22, 0.1);
    --font-display: 'Cinzel', 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', sans-serif;
    --radius: 16px;
    --header-h: 0px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 24px rgba(44, 24, 16, 0.07);
    --shadow-gold: 0 4px 24px rgba(181, 142, 88, 0.22);
    --shadow-burgundy: 0 4px 24px rgba(99, 13, 22, 0.18);
}

*, *::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: hidden;
    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%);
}
@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%; display: block; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.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: center; flex-shrink: 0; }
.logo-img {
    height: 62px;
    width: auto;
    display: block;
    transition: transform 0.3s var(--ease);
}
.logo:hover .logo-img { transform: scale(1.02); }
.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: 12px; }
.menu-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
}
.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: 80px 0; scroll-margin-top: var(--header-h); position: relative; overflow: hidden; }
.section-alt { background: rgba(245, 237, 227, 0.82); }
.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: 40px; }
.section-header.center { text-align: center; }

/* About – sticky image, scrolling text */
.section-about {
    overflow: visible;
}
.about-scroll-block {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
    gap: 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-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(181, 142, 88, 0.22);
    background: var(--color-bg);
}
.about-img-wrap img { width: 100%; height: auto; display: block; }
.about-scroll-content {
    padding-bottom: 48px;
}
.about-scroll-content .section-text {
    max-width: none;
    margin-bottom: 18px;
}
.about-scroll-content .section-text:last-of-type {
    margin-bottom: 28px;
}
.pillars { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.pillar {
    display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto;
    gap: 0 14px; align-items: center;
    padding: 16px 18px; background: var(--color-card);
    border: 1px solid var(--color-border); border-radius: 14px;
    box-shadow: var(--shadow);
    transition: transform 0.3s var(--ease);
}
.pillar:hover { transform: translateX(6px); }
.pillar-icon { grid-row: span 2; font-size: 1.4rem; display: flex; align-items: center; }
.pillar strong { font-size: 0.92rem; }
.pillar span { font-size: 0.8rem; color: var(--color-muted); }

/* 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: 680px; margin-left: auto; margin-right: auto; line-height: 1.75; }
.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-signature { margin-bottom: 56px; }
.menu-block-title {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    color: var(--color-burgundy);
    text-align: center;
    margin-bottom: 28px;
}
.menu-category { margin-bottom: 52px; }
.menu-category-head { text-align: center; margin-bottom: 24px; }
.menu-category-sub { color: var(--color-muted); font-size: 0.88rem; margin-top: 6px; }
.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.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-item-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 14px;
    align-items: stretch;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.menu-item-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(44, 24, 16, 0.08); }
.menu-item-img {
    margin: 0;
    overflow: hidden;
    background: var(--color-bg-alt);
    min-height: 100%;
}
.menu-item-img .food-img {
    width: 100%;
    height: 100%;
    min-height: 110px;
    object-fit: cover;
    object-position: center center;
}
.menu-item-body { padding: 14px 14px 14px 0; display: flex; flex-direction: column; gap: 6px; }
.menu-item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}
.menu-item-top h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-burgundy);
}
.menu-item-price {
    flex-shrink: 0;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--color-gold-dark);
}
.menu-item-body p {
    font-size: 0.8rem;
    color: var(--color-muted);
    line-height: 1.55;
}
.menu-item-veg {
    align-self: flex-start;
    font-size: 0.65rem;
    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-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: 14px;
}
.gallery-card {
    position: relative; margin: 0; overflow: hidden;
    border-radius: var(--radius); box-shadow: var(--shadow);
    background: var(--color-bg-alt);
}
.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;
}

/* Reviews */
.reviews-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.review-card {
    padding: 28px; background: var(--color-card);
    border: 1px solid var(--color-border); border-radius: var(--radius);
    box-shadow: var(--shadow); position: relative;
}
.review-logo { margin-bottom: 12px; height: 48px; width: auto; opacity: 0.95; }
.review-stars { color: var(--color-gold-dark); margin-bottom: 12px; letter-spacing: 2px; }
.review-card p { font-style: italic; color: var(--color-muted); margin-bottom: 14px; line-height: 1.65; }
.review-card footer { font-size: 0.85rem; font-weight: 600; }

/* 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-perks { display: flex; gap: 16px; flex-wrap: wrap; }
.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 – split layout redesign */
.section-contact {
    padding: 72px 0;
}

.contact-block {
    display: grid;
    grid-template-columns: minmax(280px, 340px) 1fr;
    max-width: 980px;
    margin: 0 auto;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(99, 13, 22, 0.08);
    box-shadow: 0 24px 64px rgba(44, 24, 16, 0.08);
    background: var(--color-card);
}

.contact-side {
    position: relative;
    padding: 40px 32px;
    color: #fff;
    background:
        linear-gradient(165deg, rgba(74, 10, 16, 0.96) 0%, rgba(99, 13, 22, 0.94) 52%, rgba(138, 107, 64, 0.92) 100%);
}

.contact-side::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 15%, rgba(181, 142, 88, 0.22), transparent 55%);
    pointer-events: none;
}

.contact-side > * {
    position: relative;
    z-index: 1;
}

.contact-side-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 14px;
}

.contact-side-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    line-height: 1.2;
    margin-bottom: 12px;
}

.contact-side-title em {
    font-style: italic;
    color: var(--color-gold-light);
}

.contact-side-text {
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 28px;
}

.contact-quick {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
}

.contact-quick li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-quick-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--color-gold-light);
}

.contact-quick strong {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 3px;
}

.contact-quick a,
.contact-quick span {
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.45;
}

.contact-quick a:hover {
    color: var(--color-gold-light);
}

.contact-main {
    padding: 36px 38px 38px;
    background: var(--color-card);
}

.contact-form-head {
    margin-bottom: 22px;
}

.contact-form-eyebrow {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    margin-bottom: 6px;
}

.contact-form-title {
    font-family: var(--font-display);
    font-size: 1.55rem;
    line-height: 1.2;
    color: var(--color-text);
}

.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;
}

.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-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    font-size: 0.92rem;
}

.contact-submit svg {
    transition: transform 0.25s var(--ease);
}

.contact-submit:hover svg {
    transform: translateX(4px);
}

.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;
}

/* Footer */
.site-footer {
    padding: 40px 0; border-top: 1px solid var(--color-border);
    background: var(--color-card);
}
.footer-compact { text-align: center; }
.footer-seo { font-size: 0.82rem; color: var(--color-muted); margin: 12px 0 16px; }
.footer-nav {
    display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: center;
    margin-bottom: 16px;
}
.footer-nav a { font-size: 0.85rem; color: var(--color-muted); transition: color 0.2s; }
.footer-nav a:hover { color: var(--color-burgundy); }
.footer-copy { font-size: 0.78rem; color: var(--color-muted); }

/* 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) {
    .hero-feature-fade { height: 38%; }
    .about-scroll-block { grid-template-columns: 1fr; gap: 36px; }
    .about-visual-sticky { position: static; top: auto; }
    .about-scroll-content { padding-bottom: 0; }
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .menu-items-grid { grid-template-columns: 1fr; }
    .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; }
    .franchise-banner { flex-direction: column; text-align: center; padding: 36px 24px; }
    .franchise-perks { justify-content: center; }
    .contact-block { grid-template-columns: 1fr; }
    .contact-side { padding: 32px 28px; }
    .contact-main { padding: 32px 28px; }
    .contact-form-grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .main-nav {
        position: fixed; inset: 0; background: var(--color-bg);
        display: flex; align-items: center; justify-content: center;
        opacity: 0; visibility: hidden; transition: 0.3s;
    }
    .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; }
    .menu-toggle { display: flex; }
    .header-actions .btn-primary { display: none; }
    .logo-img { height: 48px; }
    .highlights-grid, .locations-compact, .reviews-row, .gallery-grid { grid-template-columns: 1fr; }
    .hero-feature-fade { height: 34%; }
    .hero-feature-fade::before { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
    .contact-block { border-radius: 18px; }
    .contact-side, .contact-main { padding: 24px 20px; }
    .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: 56px 0; }
}
