/* ============================================
   CHÂTEAU NOIR · style.css
   Horton AppWorks Portfolio Sample
   DESIGN: Deep Forest / Champagne Editorial
   ============================================ */

/* ─── DESIGN TOKENS ─── */
:root {
    /* Colors */
    --bg:           #0d1410;
    --bg-2:         #111a14;
    --bg-3:         #0a100c;
    --surface:      #162019;
    --surface-2:    #1c2a20;

    --green:        #2a6049;
    --green-light:  #3a7a5e;
    --green-dim:    #1e4535;

    --champagne:    #e8d5a3;
    --champagne-2:  #f5edda;
    --champagne-dim:#b09d72;
    --champagne-muted: rgba(232,213,163,0.45);

    --text:         #e8e2d8;
    --text-dim:     #9a9288;
    --text-muted:   rgba(232,226,216,0.45);

    --border:       rgba(232,213,163,0.12);
    --border-2:     rgba(232,213,163,0.06);

    /* Type */
    --serif:   'Fraunces', Georgia, serif;
    --sans:    'DM Sans', system-ui, sans-serif;

    /* Spacing */
    --nav-h:   76px;
    --pad-x:   clamp(1.5rem, 5vw, 4rem);

    /* Easing */
    --ease:    cubic-bezier(0.16, 1, 0.3, 1);
    --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.72;
    overflow-x: hidden;
    cursor: none !important;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a, button, input, select, textarea, [role="button"], label, summary, area, 
a *, button *, label * { 
    cursor: none !important; 
}
a, button {
    text-decoration: none; 
    transition: color .25s; 
}
ul { list-style: none; }
button { font-family: inherit; }
textarea { resize: vertical; font-family: inherit; }

/* ─── CURSOR ─── */
.cursor {
    position: fixed;
    width: 28px; height: 28px;
    border: 1.5px solid rgba(232,213,163,0.7);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%,-50%);
    transition: width .35s var(--ease), height .35s var(--ease),
                background .3s, border-color .3s;
    mix-blend-mode: normal;
}
.cursor::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--champagne);
}
.cursor.big {
    width: 60px; height: 60px;
    background: rgba(232,213,163,0.07);
    border-color: var(--champagne);
}
@media (hover: none) { .cursor { display: none; } body, button { cursor: auto; } }

/* ─── SAMPLE BAR ─── */
.sample-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1100;
    background: var(--green-dim);
    color: rgba(232,213,163,0.9);
    text-align: center;
    font-family: var(--sans);
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 6px 1rem;
}
.sample-bar a { color: var(--champagne); opacity: .8; }
.sample-bar a:hover { opacity: 1; }

/* ─── LABELS ─── */
.label {
    display: inline-block;
    font-family: var(--sans);
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--champagne-dim);
    margin-bottom: 1rem;
}
.label--light { color: rgba(248,240,224,0.7); }

/* ─── HEADINGS ─── */
h2 {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 200;
    line-height: 1.12;
    color: var(--text);
}
h2 em { font-style: italic; color: var(--champagne); }
h3 {
    font-family: var(--serif);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 200;
    color: var(--text);
    margin-bottom: .5rem;
}

/* ─── BUTTONS ─── */
.btn-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--champagne);
    color: var(--bg);
    font-family: var(--sans);
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .85rem 2rem;
    border-radius: 100px;
    border: none;
    transition: background .3s var(--ease), transform .25s, box-shadow .3s;
    cursor: none;
    white-space: nowrap;
}
.btn-pill:hover {
    background: var(--champagne-2);
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(232,213,163,.22);
}
.btn-pill--sm { padding: .6rem 1.4rem; font-size: .72rem; }
.btn-pill--lg { padding: 1.1rem 2.8rem; font-size: .88rem; }

.btn-outline-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: var(--text);
    font-family: var(--sans);
    font-size: .8rem;
    font-weight: 400;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .85rem 2rem;
    border-radius: 100px;
    border: 1.5px solid rgba(232,226,216,.25);
    transition: border-color .3s, color .3s, transform .25s;
    cursor: none;
    white-space: nowrap;
}
.btn-outline-pill:hover {
    border-color: var(--champagne);
    color: var(--champagne);
    transform: translateY(-2px);
}
.btn-text {
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: .78rem;
    font-family: var(--sans);
    padding: .4rem .8rem;
    transition: color .25s;
    cursor: none;
}
.btn-text:hover { color: var(--text); }

/* ─── LAYOUT ─── */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

/* ─── COOKIE BANNER (GDPR) ─── */
.cookie {
    position: fixed;
    bottom: 2rem; left: 2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
    z-index: 2000;
    width: min(calc(100vw - 4rem), 420px);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all .5s var(--ease);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.cookie.show { transform: translateY(0); opacity: 1; visibility: visible; }
.cookie__header { margin-bottom: 1.5rem; }
.cookie__header h4 { font-family: var(--serif); font-size: 1.4rem; color: var(--champagne-2); margin-bottom: 0.5rem; font-weight: 200; }
.cookie__header p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; }

.cookie__options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.cookie-opt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid var(--border-2);
}
.cookie-opt span { font-size: 0.82rem; color: var(--text); font-weight: 500; }
.cookie-opt .status { font-size: 0.65rem; color: var(--champagne-dim); text-transform: uppercase; letter-spacing: 0.05em; }

/* Simple Switch Style (Fake for Portfolio) */
.switch {
    width: 32px; height: 18px;
    background: var(--green-dim);
    border-radius: 100px;
    position: relative;
}
.switch::after {
    content: '';
    position: absolute;
    top: 2px; left: 2px;
    width: 14px; height: 14px;
    background: var(--champagne);
    border-radius: 50%;
    transition: transform 0.3s;
}
.switch.active { background: var(--green-light); }
.switch.active::after { transform: translateX(14px); }

.cookie__btns { display: flex; flex-direction: column; gap: 0.75rem; }
.cookie__btns button { width: 100%; justify-content: center; }

/* ─── NAVBAR ─── */
.nav {
    position: fixed;
    top: 26px; left: 0; right: 0;
    z-index: 900;
    transition: top .35s, background .4s;
}
.nav.scrolled {
    top: 0;
    background: rgba(13,20,16,.93);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-2);
}
.nav__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--pad-x);
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.nav__logo { display: flex; align-items: center; gap: 1rem; }
.logo-emblem {
    font-family: var(--serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--champagne);
    border: 1px solid var(--champagne-muted);
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    letter-spacing: .04em;
}
.logo-emblem--lg { width: 52px; height: 52px; font-size: 1.15rem; }
.logo-name {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 200;
    letter-spacing: .04em;
    color: var(--text);
}
.logo-name em { font-style: italic; color: var(--champagne); }
.logo-name--lg { font-size: 1.5rem; }

/* Nav links */
.nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav__link {
    font-size: .78rem;
    font-weight: 400;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-dim);
    position: relative;
    transition: color .25s;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 0;
    height: 1px;
    background: var(--champagne);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease);
}
.nav__link:hover { color: var(--champagne); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__cta::after { display: none; }

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 8px;
}
.nav__burger span {
    display: block;
    width: 22px; height: 1px;
    background: var(--text-dim);
    transition: .3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { transform: translateY(-7px) rotate(-45deg); }

/* ─── SCROLL ANIMATIONS ─── */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
}
.animate-up.in {
    animation: fadeUp .85s var(--ease) forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal-up.vis { opacity: 1; transform: none; }

.reveal-left {
    opacity: 0;
    transform: translateX(-55px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal-left.vis { opacity: 1; transform: none; }

.reveal-right {
    opacity: 0;
    transform: translateX(55px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal-right.vis { opacity: 1; transform: none; }

[data-delay="120"] { transition-delay: .12s !important; }
[data-delay="240"] { transition-delay: .24s !important; }
[data-delay="360"] { transition-delay: .36s !important; }

/* ─── HERO ─── */
.hero {
    position: relative;
    height: 100svh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.hero__media {
    position: absolute;
    inset: -8% 0 0;
    will-change: transform;
}
.hero__img { height: 115%; object-position: center 30%; }
.hero__vignette {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(13,20,16,1) 0%,
        rgba(13,20,16,0.65) 40%,
        rgba(13,20,16,0.15) 100%
    );
}
.hero__content {
    position: relative;
    z-index: 2;
    padding: 0 var(--pad-x) clamp(4rem, 10vh, 7rem);
    max-width: 900px;
}
.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--champagne-dim);
    margin-bottom: 1.75rem;
}
.tag-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green-light);
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(58,122,94,.3);
    animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(58,122,94,.3); }
    50%       { box-shadow: 0 0 0 8px rgba(58,122,94,.1); }
}
.hero__title {
    font-family: var(--serif);
    font-size: clamp(3.8rem, 10vw, 8.5rem);
    font-weight: 200;
    line-height: 1.02;
    color: var(--champagne-2);
    margin-bottom: 1.5rem;
}
.hero__title em { font-style: italic; color: var(--champagne); }
.hero__desc {
    font-size: clamp(1rem, 2vw, 1.18rem);
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    max-width: 460px;
}
.hero__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Award card (floating) */
.hero__award {
    position: absolute;
    bottom: clamp(4rem, 10vh, 7rem);
    right: var(--pad-x);
    z-index: 2;
}
.award-card {
    background: rgba(22,32,25,0.75);
    border: 1px solid var(--border);
    backdrop-filter: blur(16px);
    border-radius: 18px;
    padding: 1.1rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .25rem;
    min-width: 130px;
}
.award-stars { font-size: .65rem; letter-spacing: .3em; color: var(--champagne); margin-bottom: .2rem; }
.award-card strong {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 400;
    color: var(--champagne-2);
}
.award-card span { font-size: .68rem; color: var(--text-dim); }

/* Scroll hint */
.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
}
.hero__scroll span {
    font-size: .6rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--champagne-dim);
    opacity: .6;
    writing-mode: vertical-lr;
}
.scroll-line {
    width: 1px; height: 45px;
    background: linear-gradient(to bottom, var(--champagne-dim), transparent);
    animation: linePulse 2s ease-in-out infinite;
}
@keyframes linePulse { 0%,100%{opacity:.4} 50%{opacity:1} }

/* ─── TICKER ─── */
.ticker {
    overflow: hidden;
    background: var(--surface);
    border-top: 1px solid var(--border-2);
    border-bottom: 1px solid var(--border-2);
    padding: 1rem 0;
}
.ticker__inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: max-content;
    animation: ticker 35s linear infinite;
}
.ticker__inner span {
    font-size: .72rem;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--champagne-dim);
    white-space: nowrap;
}
.ticker__inner .sep {
    font-size: .5rem;
    color: var(--green-light);
    opacity: .7;
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─── STORY SECTION ─── */
.story {
    background: var(--bg-2);
    padding: clamp(5rem, 10vw, 9rem) 0;
}
.story__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}
.story__text { order: 1; }
.story__text h2 { margin-bottom: 1.25rem; }
.story__text p {
    color: var(--text-dim);
    font-size: .97rem;
    line-height: 1.8;
    margin-bottom: 1.1rem;
}
.story__text .btn-pill { margin-top: 1.5rem; }

.story__visuals { position: relative; order: 2; }
.story__img-main {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    z-index: 1;
}
.story__img-main img { transition: transform .8s var(--ease); }
.story__img-main:hover img { transform: scale(1.03); }

.story__img-side {
    position: absolute;
    bottom: -3rem;
    left: -3rem;
    width: 42%;
    z-index: 2;
}
.story__img-side img {
    border-radius: 14px;
    aspect-ratio: 3/4;
    border: 3px solid var(--bg-2);
}
.story__stat-card {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    background: var(--champagne);
    color: var(--bg);
    border-radius: 50%;
    width: 80px; height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
}
.story__stat-card .stat-num {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1;
}
.story__stat-card .stat-label {
    font-size: .5rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* ─── FEATURES / PILLARS ─── */
.features {
    background: var(--bg);
    padding: clamp(5rem, 9vw, 8rem) 0;
}
.features__header {
    text-align: center;
    margin-bottom: 4rem;
}
.features__header h2 { margin-bottom: 0; }
.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.feat-card {
    background: var(--surface);
    border: 1px solid var(--border-2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: transform .4s var(--ease), border-color .3s, box-shadow .4s;
}
.feat-card:hover {
    transform: translateY(-6px);
    border-color: var(--border);
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.feat-card__icon {
    width: 48px; height: 48px;
    color: var(--champagne);
    margin-bottom: 1.5rem;
}
.feat-card__icon svg { width: 100%; height: 100%; }
.feat-card h3 {
    font-size: 1.15rem;
    margin-bottom: .75rem;
    color: var(--text);
}
.feat-card p {
    font-size: .88rem;
    color: var(--text-dim);
    line-height: 1.75;
}

/* ─── GALLERY / MENU PREVIEW ─── */
.gallery-section {
    background: var(--bg-2);
    padding: clamp(5rem, 9vw, 8rem) 0 0;
}
.gallery-section__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.gallery-section__header h2 { margin-bottom: 0; }

.gallery-scroll {
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    cursor: grab;
    padding-bottom: 4rem;
}
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-scroll.grabbing { cursor: grabbing; }
.gallery-track {
    display: flex;
    gap: 1.25rem;
    padding: 0 var(--pad-x) 0 max(var(--pad-x), calc((100vw - 1300px) / 2 + var(--pad-x)));
    width: max-content;
}

.gallery-card {
    width: 340px;
    flex-shrink: 0;
    background: var(--surface);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-2);
    transition: transform .4s var(--ease), box-shadow .4s;
}
.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(0,0,0,.5);
}
.gallery-card__img {
    height: 240px;
    position: relative;
    overflow: hidden;
}
.gallery-card__img img { transition: transform .7s var(--ease); }
.gallery-card:hover .gallery-card__img img { transform: scale(1.07); }

.gallery-card__body { padding: 1.5rem 1.75rem 2rem; }
.gang-label {
    display: inline-block;
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--champagne-dim);
    background: rgba(232,213,163,.08);
    padding: .25rem .75rem;
    border-radius: 100px;
    margin-bottom: .85rem;
}
.gallery-card__body h3 { font-size: 1.5rem; margin-bottom: .4rem; }
.gallery-card__body p {
    font-size: .82rem;
    color: var(--text-dim);
    line-height: 1.65;
    margin-bottom: .85rem;
}
.preis {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--champagne);
}

/* ─── CHEF SECTION ─── */
.chef {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.chef__bg {
    position: absolute;
    inset: 0;
}
.chef__bg-img {
    height: 100%;
    object-position: center 20%;
    transition: transform .15s linear;
}
.chef__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(13,20,16,.97) 0%,
        rgba(13,20,16,.78) 55%,
        rgba(13,20,16,.2) 100%
    );
}
.chef__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 var(--pad-x) clamp(4rem, 9vh, 7rem);
}
.chef__name {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 200;
    color: var(--champagne-2);
    margin-bottom: .25rem;
    line-height: 1.05;
}
.chef__role {
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--champagne-dim);
    margin-bottom: 2rem;
}
.chef__quote {
    border-left: 2px solid var(--green-light);
    padding-left: 1.5rem;
    margin: 1.5rem 0 2rem;
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 200;
    font-style: italic;
    color: var(--champagne-2);
    line-height: 1.65;
}
.chef__bio {
    font-size: .93rem;
    color: rgba(232,226,216,.7);
    line-height: 1.8;
    margin-bottom: 2rem;
}
.chef__awards {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(232,213,163,.12);
}
.chef__award { display: flex; flex-direction: column; gap: .2rem; }
.chef__award strong {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 200;
    color: var(--champagne);
    line-height: 1;
}
.chef__award span {
    font-size: .7rem;
    color: var(--text-dim);
    line-height: 1.4;
}

/* ─── CELLAR SECTION ─── */
.cellar {
    background: var(--bg-3);
    padding: clamp(5rem, 10vw, 9rem) 0;
}
.cellar__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.cellar__text h2 { margin-bottom: 1.25rem; }
.cellar__text p {
    color: var(--text-dim);
    font-size: .95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}
.cellar__facts {
    display: flex;
    flex-direction: column;
    gap: .9rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid var(--border-2);
}
.cellar__facts li {
    font-size: .88rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: .9rem;
    border-bottom: 1px solid var(--border-2);
}
.cellar__facts li:last-child { border-bottom: none; padding-bottom: 0; }
.cellar__facts li strong {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--champagne);
    min-width: 70px;
}

.cellar__img-wrap {
    position: relative;
}
.cellar__img-main {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
}
.cellar__img-main img { transition: transform .8s var(--ease); }
.cellar__img-main:hover img { transform: scale(1.04); }
.cellar__img-accent {
    position: absolute;
    bottom: -2.5rem;
    right: -2.5rem;
    width: 45%;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1/1;
    border: 3px solid var(--bg-3);
    z-index: 2;
}

/* ─── EVENTS ─── */
.events {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.events__bg {
    position: absolute;
    inset: 0;
}
.events__bg img { height: 100%; }
.events__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(13,20,16,.95) 0%,
        rgba(13,20,16,.85) 60%,
        rgba(13,20,16,.5) 100%
    );
}
.events__content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
}
.events__content h2 { margin-bottom: 1.25rem; }
.events__content > p {
    color: rgba(232,226,216,.7);
    font-size: .95rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}
.events__types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.event-type {
    background: rgba(22,32,25,.65);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.25rem;
    backdrop-filter: blur(8px);
}
.event-type__icon { color: var(--champagne); font-size: .7rem; margin-bottom: .6rem; display: block; }
.event-type h4 {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 400;
    color: var(--champagne-2);
    margin-bottom: .3rem;
}
.event-type p { font-size: .78rem; color: var(--text-dim); }

/* ─── REVIEWS ─── */
.reviews {
    background: var(--bg-2);
    padding: clamp(5rem, 9vw, 8rem) 0;
}
.reviews__header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.reviews__header h2 { margin-bottom: 0; }
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.review-card {
    background: var(--surface);
    border: 1px solid var(--border-2);
    border-radius: 20px;
    padding: 2rem 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: .85rem;
    transition: border-color .3s, transform .4s var(--ease);
}
.review-card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
}
.review-stars { color: var(--champagne); font-size: .78rem; letter-spacing: .15em; }
.review-card p {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 200;
    font-style: italic;
    color: var(--text);
    line-height: 1.75;
    flex: 1;
}
.review-card cite {
    font-style: normal;
    font-size: .72rem;
    color: var(--text-dim);
    letter-spacing: .06em;
}

/* ─── CTA SECTION ─── */
.cta-section {
    background: var(--surface);
    padding: clamp(5rem, 9vw, 8rem) 0;
    border-top: 1px solid var(--border-2);
    border-bottom: 1px solid var(--border-2);
}
.cta-section__inner {
    text-align: center;
    max-width: 680px;
}
.cta-section__inner h2 { margin-bottom: 1rem; }
.cta-section__inner > p {
    color: var(--text-dim);
    font-size: .95rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}
.cta-section__btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.cta-section__hours {
    font-size: .78rem;
    color: var(--text-dim);
    opacity: .6;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--bg);
    border-top: 1px solid var(--border-2);
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 4rem;
    padding-top: 5rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border-2);
}
.footer__brand p {
    font-size: .85rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 220px;
}
.footer__social {
    display: flex;
    gap: .75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.social-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-dim);
    background: var(--surface);
    border: 1px solid var(--border-2);
    padding: .4rem .9rem;
    border-radius: 100px;
    transition: color .25s, border-color .25s;
}
.social-pill:hover { color: var(--champagne); border-color: var(--border); }

.footer__nav h4,
.footer__contact h4 {
    font-family: var(--sans);
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--champagne-dim);
    margin-bottom: 1.2rem;
}
.footer__nav ul { display: flex; flex-direction: column; gap: .65rem; }
.footer__nav a {
    font-size: .88rem;
    color: var(--text-dim);
    transition: color .25s;
}
.footer__nav a:hover { color: var(--champagne); }
.footer__contact p { font-size: .85rem; color: var(--text-dim); line-height: 1.7; }
.footer__contact a:hover { color: var(--champagne); }

.footer__bottom {
    padding: 1.5rem var(--pad-x);
    font-size: .75rem;
    color: var(--text-dim);
    opacity: .45;
    text-align: center;
}
.footer__bottom a { color: var(--champagne-dim); }
.footer__bottom a:hover { color: var(--champagne); }

.footer__disclaimer {
    padding: 1.1rem 0;
    border-top: 1px solid var(--border-2);
    font-size: .7rem;
    color: var(--text-dim);
    opacity: .4;
    line-height: 1.6;
    text-align: center;
}
.footer__disclaimer a { color: var(--champagne-dim); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
    .features__grid { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
@media (max-width: 900px) {
    .story__grid,
    .cellar__grid,
    .reviews__grid { grid-template-columns: 1fr; gap: 3rem; }
    .story__img-side { bottom: -2rem; left: -1.5rem; width: 38%; }
    .story__visuals { margin-bottom: 3rem; }
    .cellar__img-accent { display: none; }
    .events__types { grid-template-columns: 1fr; }
    .chef__bg-overlay {
        background: linear-gradient(to top, rgba(13,20,16,.97) 0%, rgba(13,20,16,.8) 60%, rgba(13,20,16,.3) 100%);
    }
    .chef { align-items: flex-end; }
    .chef__content { max-width: 100%; }
    .chef__awards { flex-wrap: wrap; gap: 1.5rem; }
}
@media (max-width: 768px) {
    .nav__links { display: none; }
    .nav__links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: rgba(13,20,16,.97);
        backdrop-filter: blur(20px);
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 895;
    }
    .nav__link { font-size: 1.1rem; }
    .nav__burger { display: flex; }
    .hero__award { display: none; }
    .gallery-card { width: 290px; }
}
@media (max-width: 600px) {
    .hero__title { font-size: 3.2rem; }
    .hero__actions { flex-direction: column; align-items: stretch; }
    .hero__actions .btn-pill,
    .hero__actions .btn-outline-pill { justify-content: center; }
    .features__grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; gap: 2rem; padding-top: 3rem; }
    .reviews__grid { grid-template-columns: 1fr; }
    .cta-section__btns { flex-direction: column; }
    .sample-bar { font-size: .6rem; padding: 4px .75rem; }
}
