/* ============================================================
   Bar Avión I — Desde 1940 · Albacete
   Diseño elegante, editorial y moderno
   ============================================================ */

:root {
    /* Paleta metálica aviación: aluminio + acero + gunmetal + latón */
    --bg: #d4d8dc;
    --bg-soft: #b3b9bf;
    --paper: #ebedee;
    --ink: #1c252d;
    --ink-soft: #404b54;
    --muted: #6b757e;
    --gold: #6e7d8b;
    --gold-dark: #4b5660;
    --gold-soft: #c1cad2;
    --gold-light: #8a98a5;
    --gold-grad: linear-gradient(135deg, #b7c2cb 0%, #7d8b97 40%, #4b5660 100%);
    --steel-grad: linear-gradient(135deg, #3b4754 0%, #1c252d 100%);
    --steel-grad-light: linear-gradient(135deg, #e2e5e7 0%, #b9bfc4 50%, #9aa1a8 100%);
    --green-dark: #0e1318;
    --steel: #54616c;
    --line: #a8b0b8;
    --sh-sm: 0 2px 10px rgba(20, 28, 35, 0.12);
    --sh-md: 0 18px 40px rgba(20, 28, 35, 0.26);
    --sh-lg: 0 30px 70px rgba(20, 28, 35, 0.40);
    --r-sm: 2px;
    --r-md: 4px;
    --r-lg: 8px;
    --r-pill: 999px;
    --serif: 'Marcellus', 'Cormorant Garamond', Georgia, serif;
    --sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --header-h: 84px;
    --container: 1280px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink);
    background: var(--bg);
    background-image:
        repeating-linear-gradient(90deg, transparent 0, transparent 2px, rgba(28, 37, 45, 0.025) 2px, rgba(28, 37, 45, 0.025) 3px),
        linear-gradient(180deg, #d8dbdf 0%, #d4d8dc 50%, #cdd1d5 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
::selection { background: var(--gold); color: var(--ink); }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
ul { list-style: none; }

.wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 200;
    background: var(--ink);
    color: var(--bg);
    padding: 12px 20px;
    border-radius: var(--r-sm);
    font-weight: 600;
    transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; outline: 3px solid var(--gold); outline-offset: 2px; }

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
    border-radius: var(--r-sm);
}

/* ============================================================
   Typography
   ============================================================ */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--sans);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 18px;
}
.eyebrow::before {
    content: "";
    width: 36px;
    height: 1px;
    background: var(--gold);
}
.eyebrow-no-line { padding-left: 0; }
.eyebrow-no-line::before { display: none; }

.h-display {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2.4rem, 5.2vw, 4.4rem);
    line-height: 1.05;
    letter-spacing: -0.005em;
    color: var(--ink);
}
.h-display em { font-style: italic; color: var(--gold-dark); }

.lead {
    margin-top: 22px;
    font-size: 1.08rem;
    color: var(--ink-soft);
    max-width: 640px;
    line-height: 1.75;
}

.section { padding: 140px 0; position: relative; }
.section-hd { margin-bottom: 72px; max-width: 800px; }
.section-hd.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-hd.center .eyebrow { justify-content: center; }
.section-hd.center .lead { margin-left: auto; margin-right: auto; }

/* Section number markers */
.sec-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--gold-dark);
    margin-right: 6px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 2px;
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
    border: 1.5px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}
.btn-gold {
    background: var(--gold-grad);
    color: var(--ink);
    box-shadow: 0 6px 18px rgba(135, 103, 51, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
}
.btn-gold::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.22) 50%, transparent 100%);
    pointer-events: none;
    transition: opacity .3s var(--ease);
}
.btn-gold:hover {
    background: linear-gradient(135deg, #b08d4c 0%, #876733 50%, #5d4a26 100%);
    color: var(--bg);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(135, 103, 51, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-outline {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}
.btn-outline:hover {
    background: var(--ink);
    color: var(--bg);
    transform: translateY(-2px);
}

/* ============================================================
   Header
   ============================================================ */
.header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    height: var(--header-h);
    background: transparent;
    transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
    border-bottom: 1px solid transparent;
}
.header.scrolled {
    background: rgba(246, 241, 227, 0.96);
    backdrop-filter: saturate(140%) blur(16px);
    -webkit-backdrop-filter: saturate(140%) blur(16px);
    border-bottom-color: var(--line);
    box-shadow: var(--sh-sm);
}
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    line-height: 1;
    color: var(--bg);
    transition: color .3s var(--ease);
}
.header.scrolled .brand { color: var(--ink); }
.brand-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    filter: invert(1) brightness(1.05);
    transition: filter .3s var(--ease);
}
.header.scrolled .brand-logo { filter: none; }
.brand-text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
}
.brand-name {
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.brand-name em { font-style: italic; color: var(--gold); letter-spacing: 0.04em; }
.brand-sub {
    font-family: var(--sans);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    opacity: 0.7;
    margin-top: 6px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-l {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(246, 241, 227, 0.85);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    position: relative;
    padding: 6px 0;
    transition: color .25s var(--ease);
}
.header.scrolled .nav-l { color: var(--ink-soft); }
.nav-l::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .3s var(--ease);
}
.nav-l:hover,
.nav-l.active {
    color: var(--bg);
}
.header.scrolled .nav-l:hover,
.header.scrolled .nav-l.active {
    color: var(--ink);
}
.nav-l:hover::after,
.nav-l.active::after { width: 100%; }

.lang-toggle {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(235, 237, 238, 0.45);
    border-radius: var(--r-pill);
    padding: 3px;
    transition: border-color .3s var(--ease);
}
.header.scrolled .lang-toggle { border-color: var(--ink); }
.lang-opt {
    padding: 7px 14px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.85);
    border-radius: var(--r-pill);
    transition: background .25s var(--ease), color .25s var(--ease);
    cursor: pointer;
    line-height: 1;
}
.header.scrolled .lang-opt { color: var(--ink); }
.lang-opt:hover { color: #ffffff; }
.header.scrolled .lang-opt:hover { color: #000; }
.lang-opt.active,
.header.scrolled .lang-opt.active {
    background: var(--ink);
    color: #ffffff;
    cursor: default;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.nav-cta {
    padding: 11px 22px;
    background: var(--gold);
    color: var(--ink);
    border-radius: var(--r-pill);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .25s var(--ease), transform .25s var(--ease);
}
.nav-cta:hover {
    background: var(--gold-dark);
    color: var(--bg);
    transform: translateY(-1px);
}

.burger {
    display: none;
    width: 44px; height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}
.burger span {
    width: 24px; height: 2px;
    background: var(--bg);
    transition: background .3s, transform .3s var(--ease), opacity .3s var(--ease);
}
.header.scrolled .burger span { background: var(--ink); }
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   Hero — Editorial heritage
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: var(--header-h) 0 70px;
    overflow: hidden;
    color: var(--bg);
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: heroPan 26s ease-in-out infinite alternate;
}
@keyframes heroPan {
    from { transform: scale(1) translateX(0); }
    to   { transform: scale(1.08) translateX(-1%); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(12, 21, 28, 0.55) 0%, rgba(12, 21, 28, 0.30) 35%, rgba(10, 18, 24, 0.92) 100%),
        radial-gradient(circle at 20% 30%, rgba(176, 141, 76, 0.18), transparent 50%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: end;
    animation: heroIn 1.1s var(--ease) both;
}
@keyframes heroIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

.hero .eyebrow { color: var(--gold-soft); }
.hero .eyebrow::before { background: var(--gold-soft); }
.hero-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2.8rem, 7.6vw, 6.2rem);
    line-height: 0.95;
    letter-spacing: -0.015em;
    color: var(--bg);
    margin-bottom: 28px;
}
.hero-title em {
    font-style: italic;
    color: var(--gold);
}
.hero-lead {
    font-size: 1.18rem;
    color: rgba(246, 241, 227, 0.92);
    line-height: 1.65;
    max-width: 540px;
    margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn-outline {
    color: var(--bg);
    border-color: rgba(246, 241, 227, 0.6);
}
.hero .btn-outline:hover {
    background: var(--bg);
    color: var(--ink);
}

.hero-since {
    text-align: right;
    color: var(--gold);
    font-family: var(--serif);
}
.hero-since-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: rgba(241, 226, 189, 0.85);
    margin-bottom: 8px;
}
.hero-since-year {
    display: block;
    font-size: clamp(5rem, 12vw, 11rem);
    line-height: 0.85;
    font-style: italic;
    color: var(--gold);
}
.hero-since-meta {
    display: block;
    font-family: var(--sans);
    font-size: 0.78rem;
    color: rgba(241, 226, 189, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-top: 14px;
}

.hero-down {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 44px;
    border: 1.5px solid rgba(246, 241, 227, 0.55);
    border-radius: var(--r-pill);
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.hero-down span {
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
    0%   { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(14px); opacity: 0; }
}

/* ============================================================
   Marquee specialties strip
   ============================================================ */
.marquee {
    background: var(--steel-grad);
    color: var(--bg);
    padding: 22px 0;
    overflow: hidden;
    border-top: 1px solid var(--gold-dark);
    border-bottom: 1px solid var(--gold-dark);
    position: relative;
}
.marquee::before, .marquee::after {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light) 50%, transparent);
    opacity: 0.4;
}
.marquee::after { inset: auto 0 0 0; }
.marquee-track {
    display: flex;
    gap: 50px;
    width: max-content;
    animation: marqueeMove 36s linear infinite;
}
@keyframes marqueeMove {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 50px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--bg);
    white-space: nowrap;
}
.marquee-item span { color: var(--gold); font-style: normal; }
.marquee-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex: 0 0 8px;
}

/* ============================================================
   Story / About
   ============================================================ */
.story { background: var(--bg); }
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 90px;
    align-items: center;
}
.story-visual {
    position: relative;
    aspect-ratio: 4 / 5;
}
.story-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--r-sm);
    box-shadow: var(--sh-lg);
}
.story-year {
    position: absolute;
    left: -30px;
    top: 36px;
    background: var(--paper);
    padding: 26px 30px;
    border-radius: var(--r-sm);
    box-shadow: var(--sh-md);
    text-align: center;
}
.story-year-num {
    display: block;
    font-family: var(--serif);
    font-style: italic;
    font-size: 3rem;
    color: var(--gold-dark);
    line-height: 1;
}
.story-year-label {
    display: block;
    margin-top: 6px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--muted);
    font-weight: 600;
}

.story-content .h-display { margin-bottom: 28px; }
.story-content p {
    color: var(--ink-soft);
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.75;
}
.story-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 28px 0;
}
.story-sign {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--ink);
}

/* ============================================================
   Especialidades — Featured dishes
   ============================================================ */
.specials { background: var(--bg-soft); }
.specials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.spec {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 36px 28px;
    border-radius: var(--r-sm);
    text-align: center;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
    position: relative;
    overflow: hidden;
}
.spec::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .4s var(--ease);
}
.spec:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: var(--gold-soft); }
.spec:hover::before { transform: scaleX(1); }
.spec-num {
    display: block;
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--gold-dark);
    margin-bottom: 14px;
    letter-spacing: 0.05em;
}
.spec-name {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.6rem;
    color: var(--ink);
    margin-bottom: 14px;
    line-height: 1.2;
}
.spec-desc {
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.65;
}
.spec-icon {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 18px;
    display: inline-block;
}

/* ============================================================
   Grupos · Triptych
   ============================================================ */
.grupos {
    background: var(--ink);
    color: var(--bg);
    position: relative;
    overflow: hidden;
}
.grupos::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(176, 141, 76, 0.18), transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(79, 98, 112, 0.25), transparent 60%);
    pointer-events: none;
}
.grupos .wrap { position: relative; z-index: 1; }
.grupos .eyebrow { color: var(--gold-light); justify-content: center; }
.grupos .eyebrow::before { background: var(--gold-light); }
.grupos .h-display { color: var(--bg); text-align: center; }
.grupos .h-display em { color: var(--gold-light); }
.grupos .lead { color: rgba(243, 236, 221, 0.78); text-align: center; }

.grupos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}
.grupo-card {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--r-sm);
    box-shadow: var(--sh-md);
    background: var(--green-dark);
}
.grupo-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}
.grupo-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(176, 141, 76, 0.25);
    pointer-events: none;
}
.grupo-card:hover img { transform: scale(1.04); }

.grupos-cta {
    margin-top: 50px;
    text-align: center;
}

/* ============================================================
   Gallery
   ============================================================ */
.gallery { background: var(--bg); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}
.g-item {
    overflow: hidden;
    border-radius: var(--r-sm);
    position: relative;
    box-shadow: var(--sh-sm);
}
.g-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease), filter .8s var(--ease);
    filter: saturate(0.92);
}
.g-item:hover img { transform: scale(1.06); filter: saturate(1.05); }
.g-1 { grid-column: span 5; grid-row: span 2; }
.g-2 { grid-column: span 4; }
.g-3 { grid-column: span 3; }
.g-4 { grid-column: span 3; }
.g-5 { grid-column: span 4; }
.g-6 { grid-column: span 4; grid-row: span 2; }
.g-7 { grid-column: span 4; }
.g-8 { grid-column: span 4; }
.g-9 { grid-column: span 4; }

/* ============================================================
   Menu CTA strip
   ============================================================ */
.menu-cta {
    background: var(--steel-grad);
    color: var(--bg);
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.menu-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(176, 141, 76, 0.20), transparent 60%),
        repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255, 255, 255, 0.012) 12px, rgba(255, 255, 255, 0.012) 13px);
    pointer-events: none;
}
.menu-cta .wrap { position: relative; z-index: 1; }
.menu-cta .eyebrow { color: var(--gold-soft); justify-content: center; }
.menu-cta .eyebrow::before { background: var(--gold-soft); }
.menu-cta-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--bg);
}
.menu-cta-title em { color: var(--gold); font-style: italic; }
.menu-cta-lead {
    color: rgba(246, 241, 227, 0.8);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.menu-cta .btn-gold { background: var(--gold); color: var(--ink); }

/* ============================================================
   Reviews
   ============================================================ */
.reviews { background: var(--bg-soft); }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.review {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 40px 32px;
    border-radius: var(--r-sm);
    display: flex;
    flex-direction: column;
    gap: 22px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    position: relative;
}
.review:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.review-mark {
    font-family: var(--serif);
    font-size: 5rem;
    line-height: 0.4;
    color: var(--gold);
    font-style: italic;
    margin-bottom: -16px;
}
.review-text {
    color: var(--ink-soft);
    font-family: var(--serif);
    font-size: 1.12rem;
    line-height: 1.6;
    flex: 1;
    font-style: italic;
}
.review-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}
.review-stars { color: var(--gold); letter-spacing: 3px; font-size: 0.78rem; }
.review-author {
    font-family: var(--sans);
    font-weight: 600;
    color: var(--ink);
    font-size: 0.92rem;
}

/* ============================================================
   Contact
   ============================================================ */
.contact { background: var(--green-dark); color: var(--bg); padding-bottom: 100px; }
.contact .eyebrow { color: var(--gold); }
.contact .eyebrow::before { background: var(--gold); }
.contact .h-display { color: var(--bg); }
.contact .h-display em { color: var(--gold); }
.contact .lead { color: rgba(246, 241, 227, 0.78); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: stretch;
}
.contact-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-content: start;
}
.contact-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 161, 74, 0.18);
    padding: 30px 24px;
    border-radius: var(--r-sm);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: background .3s var(--ease), border-color .3s var(--ease);
}
.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
}
.contact-card-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 0.08em;
}
.contact-card h3 {
    font-family: var(--serif);
    font-weight: 400;
    color: var(--bg);
    font-size: 1.1rem;
    margin-bottom: 4px;
    letter-spacing: 0.04em;
}
.contact-card a,
.contact-card span {
    color: rgba(246, 241, 227, 0.85);
    font-size: 0.96rem;
    line-height: 1.6;
}
.contact-card a:hover { color: var(--gold); }

.map-wrap {
    margin-top: 60px;
    width: 100%;
    border: 1px solid rgba(176, 141, 76, 0.25);
    border-radius: var(--r-sm);
    overflow: hidden;
    aspect-ratio: 21 / 9;
    background: var(--green-dark);
    box-shadow: var(--sh-md);
}
.map-wrap iframe {
    width: 100%; height: 100%;
    border: 0;
    display: block;
    filter: invert(0.92) hue-rotate(180deg) saturate(0.5) contrast(1.05);
}

.hours-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(176, 141, 76, 0.18);
    padding: 36px 32px;
    border-radius: var(--r-sm);
}
.hours-card h3 {
    font-family: var(--serif);
    font-weight: 400;
    color: var(--gold);
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    margin-bottom: 26px;
    text-align: center;
}
.hours-list { display: grid; gap: 14px; }
.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(201, 161, 74, 0.18);
    color: rgba(246, 241, 227, 0.9);
    font-size: 0.95rem;
}
.hours-row:last-child { border-bottom: 0; padding-bottom: 0; }
.hours-row.closed { color: rgba(246, 241, 227, 0.5); font-style: italic; }
.hours-row span:first-child { font-weight: 600; }

/* ============================================================
   Footer
   ============================================================ */
.foot {
    background: #050f0c;
    color: rgba(246, 241, 227, 0.7);
    padding: 80px 0 26px;
}
.foot-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}
.foot .brand { color: var(--bg); }
.foot .brand-logo { filter: invert(1) brightness(1.05); width: 60px; height: 60px; }
.foot .brand-name em { color: var(--gold); }
.foot .brand-sub { color: rgba(246, 241, 227, 0.5); }
.foot-meta {
    margin: 22px 0 26px;
    font-size: 0.92rem;
    line-height: 1.8;
}
.foot-meta a:hover { color: var(--gold); }

.socials { display: flex; gap: 12px; }
.socials a {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bg);
    transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.socials a:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }

.foot h4 {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--bg);
    margin-bottom: 18px;
    font-weight: 400;
    letter-spacing: 0.05em;
}
.foot-links {
    display: flex;
    flex-direction: column;
    gap: 11px;
    font-size: 0.92rem;
    margin-bottom: 22px;
}
.foot-links a:hover { color: var(--gold); }

.foot-gov-img {
    max-width: 240px;
    background: var(--bg);
    border-radius: var(--r-sm);
    padding: 10px 14px;
    margin-bottom: 12px;
}
.foot-gov small {
    font-size: 0.78rem;
    color: rgba(246, 241, 227, 0.55);
    line-height: 1.55;
}

.foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    font-size: 0.82rem;
    color: rgba(246, 241, 227, 0.5);
    text-align: center;
}

/* ============================================================
   Legal pages
   ============================================================ */
.legal-hero {
    padding: calc(var(--header-h) + 90px) 0 70px;
    background: var(--bg-soft);
    text-align: center;
    border-bottom: 1px solid var(--line);
}
.legal-hero .eyebrow { justify-content: center; }
.legal-hero h1 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 1.05;
    color: var(--ink);
    letter-spacing: -0.005em;
    margin-top: 10px;
}
.legal-hero h1 em { font-style: italic; color: var(--gold-dark); }
.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ink-soft);
    font-weight: 600;
}
.legal-back:hover { color: var(--gold-dark); }

.legal-content { padding: 70px 0 130px; background: var(--bg); }
.legal-wrap {
    max-width: 840px;
    margin: 0 auto;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    padding: clamp(36px, 5vw, 70px);
    box-shadow: var(--sh-sm);
}
.legal-wrap h4 {
    font-family: var(--sans);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gold-dark);
    font-size: 0.9rem;
    margin: 40px 0 14px;
}
.legal-wrap h4:first-child { margin-top: 0; }
.legal-wrap p {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 18px;
}
.legal-wrap ul.legal-list {
    margin: 0 0 24px;
    padding-left: 22px;
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.85;
}
.legal-wrap ul.legal-list li {
    list-style: disc;
    margin-bottom: 10px;
}
.legal-wrap ul.legal-list li::marker { color: var(--gold-dark); }
.legal-wrap a {
    color: var(--gold-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.legal-wrap a:hover { color: var(--ink); }
.legal-wrap strong { color: var(--ink); font-weight: 700; }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
    .section { padding: 100px 0; }
    .hero { padding-bottom: 60px; }
    .hero-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero-since { text-align: left; }
    .hero-since-year { font-size: clamp(4rem, 16vw, 7rem); }

    .story-grid { grid-template-columns: 1fr; gap: 60px; }
    .story-visual { max-width: 480px; margin: 0 auto; }
    .story-year { left: 20px; top: 20px; }

    .specials-grid { grid-template-columns: repeat(2, 1fr); }

    .gallery-grid { grid-auto-rows: 180px; }
    .g-1 { grid-column: span 6; grid-row: span 2; }
    .g-2, .g-3, .g-4, .g-5, .g-7, .g-8, .g-9 { grid-column: span 6; }
    .g-6 { grid-column: span 6; grid-row: auto; }

    .reviews-grid { grid-template-columns: repeat(2, 1fr); }

    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-list { grid-template-columns: 1fr 1fr; }

    .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

    .burger { display: flex; }
    .nav {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0;
        background: var(--bg);
        flex-direction: column;
        gap: 0;
        padding: 26px;
        border-top: 1px solid var(--line);
        box-shadow: var(--sh-md);
        transform: translateY(-110%);
        transition: transform .35s var(--ease);
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
        align-items: stretch;
    }
    .nav.open { transform: translateY(0); }
    .nav-l {
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid var(--line);
        font-size: 0.9rem;
        color: var(--ink-soft) !important;
    }
    .nav-l::after { display: none; }
    .lang-toggle { align-self: center; margin-top: 16px; border-color: var(--line); }
    .lang-opt { color: var(--muted) !important; }
    .nav-cta { margin-top: 14px; justify-content: center; padding: 14px; }
}

@media (max-width: 640px) {
    .wrap { padding: 0 22px; }
    .section { padding: 80px 0; }
    .section-hd { margin-bottom: 50px; }
    .hero { min-height: 90vh; padding-bottom: 40px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }

    .marquee-item { font-size: 1.1rem; gap: 30px; }

    .story-year { padding: 20px 22px; }
    .story-year-num { font-size: 2.2rem; }

    .specials-grid { grid-template-columns: 1fr; }

    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .g-1, .g-2, .g-3, .g-4, .g-5, .g-6, .g-7, .g-8, .g-9 { grid-column: span 1; grid-row: auto; }

    .reviews-grid { grid-template-columns: 1fr; }
    .contact-list { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
    .socials { justify-content: center; }
    .foot-gov-img { margin-left: auto; margin-right: auto; }

    .brand-sub { display: none; }
    .brand-logo { width: 44px; height: 44px; }
    .brand-name { font-size: 1.1rem; letter-spacing: 0.06em; }
    .foot .brand { justify-content: center; }
}
