/* ==========================================================================
   BODEGA SUPERIOR — black-bottle, paper-cream-on-ink
   palette inspired directly by the logo: pitch black + crisp cream type
   ========================================================================== */

:root {
    /* Palette — graphite black surfaces, warm cream ink */
    --bg:        #0a0908;
    --bg-2:      #100e0b;
    --bg-3:      #15120d;
    --bg-deep:   #050403;

    --ink:       #f5f1e8;
    --ink-soft:  #ece6d8;
    --ink-mute:  rgba(245, 241, 232, 0.62);
    --ink-faint: rgba(245, 241, 232, 0.36);
    --line:      rgba(245, 241, 232, 0.10);
    --line-2:    rgba(245, 241, 232, 0.20);
    --line-3:    rgba(245, 241, 232, 0.45);

    --brass:      #c2a26a;
    --brass-soft: #d8bd8a;

    /* Typography */
    --serif: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
    --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

    /* Layout */
    --pad:      clamp(20px, 4vw, 56px);
    --max:      1320px;
    --max-text: 760px;

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

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html, body { height: 100%; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-soft);
    background: var(--bg);
    overflow-x: hidden;
    font-feature-settings: 'ss01' on, 'cv11' on, 'kern' on;
    font-weight: 400;
}

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
ul, ol { list-style: none; }
input, textarea, select, button { font: inherit; color: inherit; }
address { font-style: normal; }

::selection { background: var(--ink); color: var(--bg); }

/* Subtle film grain */
body::before {
    content: '';
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.06;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 12px;
    background: var(--ink);
    color: var(--bg);
    padding: 10px 16px;
    z-index: 100;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.skip-link:focus { top: 12px; }

/* ==========================================================================
   TYPOGRAPHY PRIMITIVES
   ========================================================================== */
.h-display {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(34px, 4.4vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.018em;
    color: var(--ink);
}
.h-display em {
    font-style: normal;
    font-weight: 300;
    color: var(--ink-mute);
}
.h-display--light { color: var(--ink); }
.h-display--light em { color: var(--ink-mute); }

.lede {
    font-family: var(--serif);
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 1.4;
    color: var(--ink);
    font-weight: 400;
    letter-spacing: -0.005em;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
    line-height: 1;
}
.eyebrow__rule {
    display: block;
    width: 28px;
    height: 1px;
    background: var(--ink-mute);
    flex-shrink: 0;
}
.eyebrow--light { color: var(--ink-mute); }
.eyebrow--light .eyebrow__rule { background: var(--ink-mute); }

/* Arrow link */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
    padding-bottom: 4px;
    transition: gap 0.4s var(--ease), color 0.3s ease, border-color 0.3s ease;
    line-height: 1;
    background: transparent;
}
.link-arrow:hover { gap: 16px; }
.link-arrow span { transition: transform 0.4s var(--ease); }
.link-arrow:hover span { transform: translateX(4px); }
.link-arrow--mute {
    color: var(--ink-mute);
    border-bottom-color: var(--line-2);
}
.link-arrow--mute:hover { color: var(--ink); border-bottom-color: var(--ink); }
.link-arrow--light {
    color: var(--ink);
    border-bottom-color: var(--ink);
}
.link-arrow--accent {
    color: var(--brass);
    border-bottom-color: var(--brass);
}
.link-arrow--accent:hover { color: var(--brass-soft); border-bottom-color: var(--brass-soft); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: 1px solid transparent;
    transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
    cursor: pointer;
    line-height: 1;
}
.btn--primary {
    background: var(--ink);
    color: var(--bg);
}
.btn--primary:hover { background: #fff; }
.btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line-2);
}
.btn--ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn:disabled { opacity: 0.6; cursor: default; }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 60;
    padding: 16px var(--pad);
    transition: background 0.45s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
    border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
    background: rgba(10, 9, 8, 0.78);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    padding: 12px var(--pad);
    border-bottom-color: var(--line);
}
.nav__inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav__brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.nav__logo {
    height: 44px;
    width: auto;
    max-width: 200px;
    display: block;
}
@media (max-width: 480px) {
    .nav__logo { height: 36px; }
}

.nav__menu { display: flex; align-items: center; }
.nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav__link {
    position: relative;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--ink-mute);
    text-transform: uppercase;
    transition: color 0.3s ease;
}
.nav__link::after {
    content: '';
    position: absolute;
    left: 14px; right: 14px;
    bottom: 4px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.45s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--ink); }
.nav__link:hover::after, .nav__link.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    padding: 11px 18px;
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}
.nav__cta:hover { background: var(--ink); color: var(--bg); }

.nav__right {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}
.nav__lang {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    flex-shrink: 0;
}
.nav__lang-link {
    color: var(--ink-mute);
    transition: color 0.3s ease;
    padding: 2px 0;
}
.nav__lang-link:hover { color: var(--ink); }
.nav__lang-link.is-active {
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
}
.nav__lang-sep { color: var(--ink-mute); opacity: 0.5; }
@media (max-width: 920px) {
    .nav__right { gap: 12px; }
    .nav__lang { font-size: 10px; gap: 6px; }
}

.nav__burger {
    display: none;
    width: 36px; height: 32px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-shrink: 0;
}
.nav__burger span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--ink);
    transition: transform 0.4s var(--ease), opacity 0.3s ease, background 0.3s ease;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 920px) {
    .nav__cta { display: none; }
    .nav__burger { display: flex; }
    .nav__menu {
        position: fixed;
        inset: 0;
        background: var(--bg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 100px var(--pad) 60px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
        z-index: -1;
    }
    .nav__menu.is-open { opacity: 1; visibility: visible; }
    .nav__list { flex-direction: column; align-items: flex-start; gap: 6px; width: 100%; }
    .nav__link {
        font-family: var(--serif);
        font-size: 32px;
        font-weight: 400;
        letter-spacing: -0.015em;
        text-transform: none;
        color: var(--ink);
        padding: 6px 0;
    }
    .nav__link::after { display: none; }
}

/* ==========================================================================
   HERO — bordered like the logo
   ========================================================================== */
.hero {
    padding: clamp(120px, 16vh, 180px) var(--pad) clamp(60px, 8vh, 100px);
    background: var(--bg);
    position: relative;
}
.hero__grid {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: start;
}
.hero__copy {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 8px;
}
.hero__title {
    font-family: var(--serif);
    font-size: clamp(38px, 4.6vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.018em;
    font-weight: 400;
    color: var(--ink);
    max-width: 14ch;
}
.hero__title em {
    font-style: normal;
    color: var(--ink-mute);
    font-weight: 300;
}
.hero__lede {
    font-family: var(--serif);
    font-size: clamp(16px, 1.25vw, 19px);
    line-height: 1.45;
    color: var(--ink-mute);
    max-width: 46ch;
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 4px;
}
.hero__facts {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 540px;
}
.hero__facts dt {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 8px;
}
.hero__facts dd {
    font-family: var(--serif);
    font-size: 17px;
    color: var(--ink);
    line-height: 1.2;
    letter-spacing: -0.005em;
}

/* ----- hero visual: the "framed bottle" — direct nod to the logo ----- */
.hero__visual {
    position: relative;
    aspect-ratio: 4 / 5;
    background: var(--bg-deep);
    padding: 14px;
    overflow: hidden;
}
.hero__visual::before {
    /* the white inner frame, exactly like the logo */
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid var(--ink);
    pointer-events: none;
    z-index: 2;
}
.hero__visual img,
.hero__visual video {
    position: absolute;
    inset: 14px;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    object-fit: cover;
    filter: grayscale(0.45) contrast(1.35) brightness(0.7);
    transition: transform 1.6s var(--ease-out), filter 1s var(--ease-out);
    z-index: 1;
    pointer-events: none;
}
.hero__visual:hover img,
.hero__visual:hover video {
    transform: scale(1.03);
    filter: grayscale(0.3) contrast(1.35) brightness(0.8);
}
.hero__visual figcaption {
    position: absolute;
    bottom: 26px; left: 26px;
    z-index: 3;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink);
    background: rgba(10, 9, 8, 0.7);
    padding: 6px 10px;
    backdrop-filter: blur(4px);
    border: 1px solid var(--line-2);
}

@media (max-width: 880px) {
    .hero__grid { grid-template-columns: 1fr; }
    .hero__visual { aspect-ratio: 4 / 3; max-height: 50vh; order: -1; }
    .hero__facts { grid-template-columns: 1fr 1fr; max-width: 100%; }
}
@media (max-width: 480px) {
    .hero__facts { grid-template-columns: 1fr; gap: 16px; }
}

/* ==========================================================================
   SLOGAN BAND — WINE · SPIRITS · CIGARS
   ========================================================================== */
.slogan {
    background: var(--bg);
    border-top: 1px solid var(--line);
    padding: clamp(48px, 7vh, 80px) var(--pad);
    text-align: center;
    overflow: hidden;
}
.slogan__inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}
.slogan__line {
    font-family: var(--sans);
    font-size: clamp(22px, 3.4vw, 44px);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
    line-height: 1;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35em;
}
.slogan__dot {
    color: var(--brass);
    font-weight: 400;
    font-size: 0.9em;
}
.slogan__sub {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

/* ==========================================================================
   MAISONS — quiet marquee on a slightly elevated dark band
   ========================================================================== */
.maisons {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 38px 0 34px;
    text-align: center;
    overflow: hidden;
}
.maisons__label {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 22px;
}
.maisons__track {
    display: flex;
    width: max-content;
    animation: maisons 50s linear infinite;
    gap: 0;
}
.maisons__group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.maisons__group span {
    font-family: var(--serif);
    font-style: normal;
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 400;
    letter-spacing: -0.005em;
    color: var(--ink-soft);
    padding: 0 32px;
    white-space: nowrap;
    border-right: 1px solid var(--line);
}
.maisons__group span:last-child { border-right: 0; }
@keyframes maisons {
    to { transform: translateX(-50%); }
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about {
    padding: clamp(80px, 12vh, 140px) var(--pad);
    background: var(--bg);
}
.about__inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: start;
}
.about__copy {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 4px;
}
.about__head { display: flex; flex-direction: column; gap: 24px; }
.about__head .h-display { max-width: 16ch; }

/* about visual — same logo-style frame as hero */
.about__visual {
    position: relative;
    position: sticky;
    top: 100px;
}
.about__photo {
    position: relative;
    aspect-ratio: 4 / 5;
    background: var(--bg-deep);
    overflow: hidden;
    padding: 14px;
}
.about__photo::before {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid var(--ink);
    pointer-events: none;
    z-index: 2;
}
.about__photo img {
    position: absolute;
    inset: 14px;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    object-fit: cover;
    z-index: 1;
    filter: grayscale(0.35) contrast(1.05) brightness(0.85);
    transition: transform 1.4s var(--ease-out), filter 0.6s var(--ease-out);
}
.about__visual:hover .about__photo img {
    transform: scale(1.03);
    filter: grayscale(0.15) contrast(1.05) brightness(0.95);
}
.about__visual figcaption {
    position: absolute;
    bottom: 26px; left: 26px;
    z-index: 3;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink);
    background: rgba(10, 9, 8, 0.7);
    padding: 6px 10px;
    backdrop-filter: blur(4px);
    border: 1px solid var(--line-2);
}
.about__body {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 56ch;
    color: var(--ink-mute);
    font-size: 15px;
    line-height: 1.65;
}
.about__body .link-arrow { margin-top: 12px; align-self: flex-start; }

@media (max-width: 880px) {
    .about__inner { grid-template-columns: 1fr; gap: 30px; }
    .about__visual { position: relative; top: auto; }
}

/* ==========================================================================
   SECTION HEAD (shared)
   ========================================================================== */
.section-head {
    max-width: var(--max);
    margin: 0 auto clamp(40px, 6vh, 70px);
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
}
.section-head .h-display { max-width: 18ch; }
.section-head__sub {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-mute);
    max-width: 56ch;
    margin-top: 4px;
}

/* ==========================================================================
   CELLAR
   ========================================================================== */
.cellar {
    padding: clamp(80px, 12vh, 140px) var(--pad);
    border-top: 1px solid var(--line);
    background: var(--bg-2);
}
.cellar__list {
    max-width: var(--max);
    margin: 0 auto;
    border-top: 1px solid var(--line);
}
.cellar__item {
    display: grid;
    grid-template-columns: 80px minmax(0, 1.2fr) minmax(0, 1fr);
    gap: clamp(20px, 4vw, 60px);
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
    align-items: baseline;
    position: relative;
    transition: padding 0.4s var(--ease);
}
.cellar__item::before {
    content: '';
    position: absolute;
    left: 0; right: 0;
    bottom: -1px;
    height: 1px;
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease);
}
.cellar__item:hover::before { transform: scaleX(1); }
.cellar__num {
    font-family: var(--serif);
    font-style: normal;
    font-size: 18px;
    font-weight: 400;
    color: var(--ink-faint);
    letter-spacing: 0.04em;
}
.cellar__title {
    font-family: var(--serif);
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--ink);
    letter-spacing: -0.012em;
}
.cellar__title em {
    font-style: normal;
    color: var(--ink-mute);
    font-weight: 300;
}
.cellar__text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-mute);
    margin-top: 6px;
    max-width: 50ch;
}
.cellar__brands {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-faint);
    text-align: right;
    line-height: 1.7;
}

@media (max-width: 760px) {
    .cellar__item {
        grid-template-columns: 40px 1fr;
        grid-template-rows: auto auto;
        gap: 6px 20px;
        padding: 24px 0;
    }
    .cellar__num { grid-row: span 2; }
    .cellar__brands {
        grid-column: 2;
        text-align: left;
        margin-top: 8px;
    }
}

/* ==========================================================================
   HUMIDOR — premium cigars
   ========================================================================== */
.humidor {
    padding: clamp(80px, 12vh, 140px) var(--pad);
    background: var(--bg-2);
    border-top: 1px solid var(--line);
}
.humidor__grid {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: start;
}

/* visual — placeholder slot in logo-style frame */
.humidor__visual {
    position: relative;
    position: sticky;
    top: 100px;
}
.humidor__photo {
    position: relative;
    aspect-ratio: 4 / 5;
    background: var(--bg-deep);
    overflow: hidden;
    padding: 14px;
}
.humidor__photo::before {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid var(--ink);
    pointer-events: none;
    z-index: 2;
}
.humidor__photo::after {
    content: 'Photo · ' attr(data-no);
    position: absolute;
    inset: 14px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-faint);
    background:
        linear-gradient(135deg, rgba(245,241,232,0.02), transparent 50%, rgba(245,241,232,0.02)),
        var(--bg-deep);
}
.humidor__photo img {
    position: absolute;
    inset: 14px;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    object-fit: cover;
    z-index: 3;
    filter: grayscale(0.4) contrast(1.05) brightness(0.7);
    transition: transform 1.4s var(--ease-out), filter 0.6s var(--ease-out);
}
.humidor__visual:hover .humidor__photo img {
    transform: scale(1.04);
    filter: grayscale(0.2) contrast(1.05) brightness(0.85);
}
.humidor__visual figcaption {
    position: absolute;
    bottom: 26px; left: 26px;
    z-index: 3;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink);
    background: rgba(10, 9, 8, 0.7);
    padding: 6px 10px;
    backdrop-filter: blur(4px);
    border: 1px solid var(--line-2);
}

/* houses list */
.humidor__list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--line);
}
.humidor__row {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 28px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    align-items: baseline;
    position: relative;
    transition: padding 0.4s var(--ease);
}
.humidor__row::before {
    content: '';
    position: absolute;
    left: 0; right: 0;
    bottom: -1px;
    height: 1px;
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease);
}
.humidor__row:hover::before { transform: scaleX(1); }
.humidor__num {
    font-family: var(--serif);
    font-style: normal;
    font-size: 18px;
    font-weight: 400;
    color: var(--ink-faint);
    letter-spacing: 0.04em;
}
.humidor__body { display: flex; flex-direction: column; gap: 4px; }
.humidor__house {
    font-family: var(--serif);
    font-size: clamp(20px, 1.6vw, 26px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--ink);
    letter-spacing: -0.012em;
}
.humidor__origin {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brass);
    margin-top: 2px;
}
.humidor__note {
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink-mute);
    margin-top: 6px;
    max-width: 56ch;
}

/* text column wrapper + CTA */
.humidor__col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.humidor__cta {
    margin-top: 32px;
    align-self: flex-start;
}

@media (max-width: 880px) {
    .humidor__grid { grid-template-columns: 1fr; gap: 30px; }
    .humidor__visual { position: relative; top: auto; max-width: 480px; order: -1; }
}
@media (max-width: 480px) {
    .humidor__row { grid-template-columns: 32px 1fr; gap: 16px; }
}

/* ==========================================================================
   TRADE
   ========================================================================== */
.trade {
    padding: clamp(80px, 12vh, 140px) var(--pad);
    background: var(--bg);
    border-top: 1px solid var(--line);
}
.trade__grid {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.trade__feature {
    padding: 28px 24px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: background 0.4s var(--ease);
}
.trade__feature:hover { background: var(--bg-2); }
.trade__num {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--ink-faint);
}
.trade__feature h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 22px;
    color: var(--ink);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-top: 4px;
}
.trade__feature p:last-child {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-mute);
    margin-top: 4px;
}
.trade__cta {
    max-width: var(--max);
    margin: 50px auto 0;
    padding: 36px 0 0;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    flex-wrap: wrap;
}
.trade__cta-text {
    font-family: var(--serif);
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 1.4;
    color: var(--ink);
    max-width: 50ch;
}

@media (max-width: 980px) { .trade__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .trade__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   CONCIERGE
   ========================================================================== */
.concierge {
    background: var(--bg-2);
    color: var(--ink);
    padding: clamp(80px, 12vh, 140px) var(--pad);
    border-top: 1px solid var(--line);
}
.concierge__inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: start;
}
.concierge__copy {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.concierge__copy .h-display { max-width: 18ch; }
.concierge__text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink-mute);
    max-width: 56ch;
}
.concierge__list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--line);
    margin-top: 8px;
}
.concierge__list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 17px;
    color: var(--ink);
    letter-spacing: -0.005em;
    position: relative;
    padding-left: 28px;
}
.concierge__list li::before {
    content: '—';
    position: absolute;
    left: 0; top: 14px;
    color: var(--ink-mute);
    font-family: var(--sans);
    font-size: 13px;
}
.concierge__copy .link-arrow { align-self: flex-start; margin-top: 8px; }

/* the recent-build card uses the logo's frame motif again */
.concierge__card {
    background: var(--bg-deep);
    padding: 14px;
    position: relative;
}
.concierge__card::before {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid var(--ink);
    pointer-events: none;
}
.concierge__card-inner {
    padding: 28px;
    position: relative;
    z-index: 1;
}
.concierge__card-eyebrow {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 8px;
}
.concierge__card-title {
    font-family: var(--serif);
    font-style: normal;
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}
.concierge__card-list {
    display: flex;
    flex-direction: column;
}
.concierge__card-list > div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 11px 0;
    border-bottom: 1px dashed var(--line);
}
.concierge__card-list > div:last-child { border-bottom: 0; }
.concierge__card-list dt {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
    flex-shrink: 0;
    padding-top: 3px;
}
.concierge__card-list dd {
    font-family: var(--serif);
    font-size: 15px;
    color: var(--ink);
    text-align: right;
    letter-spacing: -0.005em;
}
.concierge__card-foot {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

@media (max-width: 920px) {
    .concierge__inner { grid-template-columns: 1fr; }
}

/* ==========================================================================
   EVENTS — schedule + gallery
   ========================================================================== */
.events {
    padding: clamp(80px, 12vh, 140px) var(--pad);
    background: var(--bg);
    border-top: 1px solid var(--line);
}

/* ----- schedule ----- */
.events__schedule {
    max-width: var(--max);
    margin: 0 auto 80px;
    border-top: 1px solid var(--line);
}
.event {
    display: grid;
    grid-template-columns: 140px minmax(0, 1.5fr) minmax(0, 0.9fr);
    gap: clamp(20px, 4vw, 60px);
    padding: 32px 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
    position: relative;
}
.event::before {
    content: '';
    position: absolute;
    left: 0; right: 0;
    bottom: -1px;
    height: 1px;
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease);
}
.event:hover::before { transform: scaleX(1); }

.event__date {
    display: flex;
    flex-direction: column;
    line-height: 0.9;
}
.event__day {
    font-family: var(--serif);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.025em;
    line-height: 0.9;
}
.event__month {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-top: 12px;
}

.event__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 6px;
}
.event__meta {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-faint);
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.event__meta span:last-child {
    color: var(--brass);
}
.event__title {
    font-family: var(--serif);
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--ink);
    letter-spacing: -0.012em;
}
.event__title em {
    font-style: normal;
    color: var(--ink-mute);
    font-weight: 300;
}
.event__text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-mute);
    max-width: 56ch;
}

.event__cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    text-align: right;
    padding-top: 8px;
}
.event__price {
    font-family: var(--serif);
    font-size: 26px;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.01em;
    font-feature-settings: 'tnum' 1;
}
.event__price span {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-left: 4px;
}
.event__seats {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 4px;
}
.event__cta .link-arrow { margin-top: 4px; }

@media (max-width: 880px) {
    .event {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 28px 0;
    }
    .event__date { flex-direction: row; align-items: baseline; gap: 12px; }
    .event__day { font-size: 44px; }
    .event__month { margin-top: 0; }
    .event__cta {
        align-items: flex-start;
        text-align: left;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 16px;
        flex-wrap: wrap;
    }
}

/* ----- gallery ----- */
.gallery {
    max-width: var(--max);
    margin: 0 auto;
    padding-top: 60px;
    border-top: 1px solid var(--line);
}
.gallery__head {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.gallery__sub {
    font-size: 14px;
    color: var(--ink-mute);
    line-height: 1.6;
    max-width: 56ch;
}
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(220px, auto);
    gap: 16px;
}
.gallery__item {
    position: relative;
    display: flex;
    flex-direction: column;
}
.gallery__item--tall { grid-row: span 2; }

.gallery__photo {
    position: relative;
    width: 100%;
    flex: 1;
    aspect-ratio: 4 / 5;
    background: var(--bg-deep);
    overflow: hidden;
    padding: 10px;
    transition: background 0.4s var(--ease);
}
.gallery__item--tall .gallery__photo {
    aspect-ratio: 4 / 9;
    min-height: 460px;
}
/* logo-style frame for every gallery card */
.gallery__photo::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid var(--line-2);
    pointer-events: none;
    z-index: 2;
    transition: border-color 0.4s var(--ease);
}
.gallery__item:hover .gallery__photo::before { border-color: var(--ink); }

/* placeholder shown when no img is present yet */
.gallery__photo::after {
    content: 'Photo · ' attr(data-no);
    position: absolute;
    inset: 10px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-faint);
    background:
        linear-gradient(135deg, rgba(245,241,232,0.02) 0%, transparent 50%, rgba(245,241,232,0.02) 100%),
        var(--bg-deep);
}
/* image, when added, sits above the placeholder */
.gallery__photo img {
    position: absolute;
    inset: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    object-fit: cover;
    z-index: 3;
    filter: grayscale(0.35) contrast(1.05) brightness(0.92);
    transition: transform 1.4s var(--ease-out), filter 0.6s var(--ease-out);
}
.gallery__item:hover .gallery__photo img {
    transform: scale(1.04);
    filter: grayscale(0.15) contrast(1.05) brightness(1);
}

.gallery__item figcaption {
    margin-top: 12px;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
    line-height: 1.5;
}

@media (max-width: 880px) {
    .gallery__grid { grid-template-columns: repeat(2, 1fr); }
    .gallery__item--tall { grid-row: auto; }
    .gallery__item--tall .gallery__photo { aspect-ratio: 4 / 5; min-height: 0; }
}
@media (max-width: 520px) {
    .gallery__grid { grid-template-columns: 1fr; }
}

/* ----- private commission CTA ----- */
.events__cta {
    max-width: var(--max);
    margin: 60px auto 0;
    padding: 36px 0 0;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    flex-wrap: wrap;
}
.events__cta-text {
    font-family: var(--serif);
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 1.4;
    color: var(--ink);
    max-width: 50ch;
}

/* ==========================================================================
   VISIT — map + contact (everything on the same dark surface)
   ========================================================================== */
.visit {
    padding: clamp(80px, 12vh, 140px) var(--pad);
    background: var(--bg);
    border-top: 1px solid var(--line);
}
.visit__grid {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 4vw, 60px);
    align-items: stretch;
}
.visit__map {
    position: relative;
    aspect-ratio: 4 / 5;
    width: 100%;
    background: var(--bg-deep);
    border: 1px solid var(--line-2);
    overflow: hidden;
}

/* ----- default state: hand-drawn illustration as a click-to-load trigger ----- */
.visit__map-trigger {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    background: none;
    cursor: pointer;
    display: block;
    overflow: hidden;
    transition: opacity 0.55s var(--ease), visibility 0.55s var(--ease);
    z-index: 2;
}
.visit__map-illustration {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s var(--ease-out), filter 0.6s var(--ease);
    filter: contrast(1.04) saturate(1.05);
}
.visit__map-trigger:hover .visit__map-illustration {
    transform: scale(1.04);
    filter: contrast(1.08) saturate(1.15);
}

.visit__map-overlay {
    position: absolute;
    top: 14px;
    right: 14px;
    pointer-events: none;
    display: flex;
    align-items: center;
}
.visit__map-overlay-text {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--bg);
    padding: 7px 14px;
    border: 1px solid var(--ink);
    transition: background 0.4s ease, color 0.4s ease, transform 0.4s var(--ease);
}
.visit__map-trigger:hover .visit__map-overlay-text {
    background: var(--ink);
    color: var(--bg);
    transform: translateX(-2px);
}

/* ----- expanded state: Google Maps iframe injected on click ----- */
.visit__map-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.7s var(--ease), transform 0.9s var(--ease-out), filter 0.5s var(--ease);
    /* dark map: invert + grayscale so it matches the rest of the site */
    filter: grayscale(1) invert(0.92) contrast(0.95) hue-rotate(180deg);
    z-index: 1;
}
.visit__map[data-map-state="iframe"] .visit__map-iframe {
    opacity: 1;
    transform: scale(1);
}
.visit__map[data-map-state="iframe"]:hover .visit__map-iframe {
    filter: grayscale(0.5) invert(0.92) contrast(0.95) hue-rotate(180deg);
}
.visit__map[data-map-state="iframe"] .visit__map-trigger {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ----- "Open in Google Maps" button (always visible bottom-left) ----- */
.visit__map-link {
    position: absolute;
    bottom: 14px; left: 14px;
    background: var(--bg);
    color: var(--ink);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 9px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--ink);
    transition: background 0.3s ease, color 0.3s ease;
    z-index: 3;
}
.visit__map-link:hover { background: var(--ink); color: var(--bg); }

.visit__info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 30px;
    align-content: start;
}
.visit__block { display: flex; flex-direction: column; gap: 6px; }
.visit__label {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-faint);
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 4px;
}
.visit__block p,
.visit__block address {
    font-family: var(--serif);
    font-size: 16px;
    line-height: 1.5;
    color: var(--ink);
    letter-spacing: -0.005em;
}
.visit__block a {
    border-bottom: 1px solid var(--line);
    transition: border-color 0.3s ease;
}
.visit__block a:hover { border-bottom-color: var(--ink); }

.visit__form {
    grid-column: span 2;
    background: var(--bg-deep);
    color: var(--ink);
    padding: 14px;
    margin-top: 16px;
    position: relative;
}
.visit__form::before {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid var(--line-2);
    pointer-events: none;
}
.visit__form-inner {
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
}
.visit__form-title {
    font-family: var(--serif);
    font-style: normal;
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.field { position: relative; }
.field input,
.field textarea,
.field select {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line-2);
    padding: 18px 0 8px;
    font-family: var(--sans);
    font-size: 14px;
    color: var(--ink);
    outline: none;
    border-radius: 0;
    appearance: none;
    transition: border-color 0.3s ease;
}
.field select option { background: var(--bg); color: var(--ink); }
.field input:focus,
.field textarea:focus,
.field select:focus {
    border-bottom-color: var(--ink);
}
.field textarea { resize: vertical; min-height: 80px; }
.field label {
    position: absolute;
    left: 0;
    top: 18px;
    font-size: 13px;
    font-family: var(--sans);
    color: var(--ink-mute);
    pointer-events: none;
    transition: transform 0.3s var(--ease), font-size 0.3s var(--ease), color 0.3s ease;
    letter-spacing: 0.02em;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field select:focus + label,
.field select:valid + label {
    transform: translateY(-16px);
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
}
.field input::placeholder,
.field textarea::placeholder { color: transparent; }

.visit__form .btn {
    margin-top: 8px;
    background: var(--ink);
    color: var(--bg);
    align-self: flex-start;
    border-color: var(--ink);
}
.visit__form .btn:hover { background: #fff; color: var(--bg); }
.visit__form-note {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-top: 4px;
}

@media (max-width: 880px) {
    .visit__grid { grid-template-columns: 1fr; }
    .visit__map { aspect-ratio: 4 / 3; }
}
@media (max-width: 600px) {
    .visit__map { aspect-ratio: 5 / 4; }
    .visit__map-overlay { top: 10px; right: 10px; }
    .visit__map-overlay-text { font-size: 10px; padding: 6px 12px; letter-spacing: 0.14em; }
    .visit__map-link { font-size: 10px; padding: 8px 12px; bottom: 10px; left: 10px; }
}
@media (max-width: 480px) {
    .visit__info { grid-template-columns: 1fr; }
    .visit__form { grid-column: span 1; padding: 10px; }
    .visit__form::before { inset: 10px; }
    .visit__form-inner { padding: 22px; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--bg-deep);
    color: var(--ink);
    padding: 60px var(--pad) 28px;
}
.footer__top {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--line);
}
.footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}
.footer__brand img {
    height: 64px;
    width: auto;
    max-width: 260px;
    display: block;
}
.footer__brand-tag {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--ink-mute);
}
.footer__nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.footer__label {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 14px;
}
.footer__nav ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer__nav a {
    font-family: var(--serif);
    font-size: 15px;
    color: var(--ink);
    transition: color 0.3s ease;
    letter-spacing: -0.005em;
}
.footer__nav a:hover { color: var(--brass-soft); }

.footer__bottom {
    max-width: var(--max);
    margin: 24px auto 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

@media (max-width: 880px) {
    .footer__top { grid-template-columns: 1fr; }
    .footer__nav { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* ==========================================================================
   QUIET REVEALS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001s !important;
        animation-delay: 0s !important;
        transition-duration: 0.001s !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   LEGAL & COMPLIANCE UI
   Required by Philippine law:
   - RA 9211 §21 (Tobacco Regulation Act): site-wide age gate (21+ house policy, 18 statutory minimum)
   - RA 9211 §14: tobacco health warning band on cigar content
   - FDA Circular 2019-006: alcohol disclosure (footer)
   - RA 10173 (Data Privacy Act) + NPC Circular 2023-04: privacy notice + consent on contact form
   Designed minimal, aligned with the bodega's monochrome paper-on-ink palette.
   ========================================================================== */

/* ---------- AGE GATE (site-wide, 21+) ----------
   Triggered by an inline <head> script that sets html.age-required (no localStorage flag)
   or html.age-confirmed (flag present). CSS-only show/hide, so confirmed visitors never
   see the modal even for one frame. Single confirm button — there is no lockout path. */
html.age-required body { overflow: hidden; }

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(5, 4, 3, 0.92);
    backdrop-filter: blur(14px) saturate(1.05);
    -webkit-backdrop-filter: blur(14px) saturate(1.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--pad);
    transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
html.age-confirmed .age-gate {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.age-gate__card {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: var(--bg-2);
    border: 1px solid var(--line-2);
    padding: clamp(28px, 5vw, 48px);
    text-align: center;
    color: var(--ink);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
}
.age-gate__card::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid var(--line);
    pointer-events: none;
}
.age-gate__logo {
    height: 56px;
    width: auto;
    margin: 0 auto 18px;
    display: block;
    position: relative;
}
.age-gate__eyebrow {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 14px;
    position: relative;
}
.age-gate__title {
    font-family: var(--serif);
    font-size: clamp(22px, 3.2vw, 28px);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.005em;
    color: var(--ink);
    margin-bottom: 12px;
    position: relative;
}
.age-gate__title em { font-style: italic; color: var(--brass-soft); }
.age-gate__text {
    font-family: var(--sans);
    font-size: 13px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0 auto 22px;
    max-width: 360px;
    position: relative;
}
.age-gate__text strong {
    color: var(--ink);
    font-weight: 600;
}
.age-gate__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 22px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: var(--ink);
    color: var(--bg);
    border: 1px solid var(--ink);
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    position: relative;
}
.age-gate__btn:hover { background: transparent; color: var(--ink); }
.age-gate__sub {
    font-family: var(--sans);
    font-size: 11px;
    line-height: 1.55;
    color: var(--ink-mute);
    margin-top: 16px;
    position: relative;
}
.age-gate__legal {
    font-family: var(--sans);
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: var(--ink-faint);
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    position: relative;
}
.age-gate__foot {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-top: 18px;
    position: relative;
}

/* ---------- TOBACCO HEALTH WARNING BAND (RA 9211 §14) ---------- */
.gov-warning {
    margin: 0 auto 32px;
    padding: 14px 18px;
    border: 1px solid var(--line-2);
    background: var(--bg-2);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: var(--max);
}
.gov-warning__label {
    flex-shrink: 0;
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    padding: 4px 8px;
    border: 1px solid var(--line-3);
    line-height: 1.2;
    margin-top: 1px;
}
.gov-warning__text {
    font-family: var(--sans);
    font-size: 12px;
    line-height: 1.5;
    color: var(--ink-soft);
    letter-spacing: 0.01em;
}
.gov-warning__text strong {
    font-weight: 600;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
@media (max-width: 600px) {
    .gov-warning { flex-direction: column; gap: 8px; padding: 12px 14px; }
    .gov-warning__text { font-size: 11px; }
}

/* ---------- HONEYPOT — invisible anti-spam field for FormSubmit ----------
   Off-screen positioning (not display:none) so bots can't detect and skip it. */
.honeypot {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ---------- PRIVACY NOTICE & CONSENT ON CONTACT FORM (RA 10173) ---------- */
.consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 4px;
    font-family: var(--sans);
    font-size: 11px;
    line-height: 1.5;
    color: var(--ink-mute);
    letter-spacing: 0.01em;
}
.consent__check {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    margin-top: 2px;
    accent-color: var(--ink);
    cursor: pointer;
}
.consent__label { cursor: pointer; }
.consent a {
    color: var(--ink);
    border-bottom: 1px solid var(--line-2);
    transition: border-color 0.3s ease;
}
.consent a:hover { border-bottom-color: var(--ink); }

/* ---------- FOOTER LEGAL DISCLAIMER ---------- */
.footer__legal {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-family: var(--sans);
    font-size: 10px;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: var(--ink-faint);
    max-width: 760px;
}
.footer__legal strong {
    color: var(--ink-mute);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.footer__bottom-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.footer__bottom-links a {
    color: var(--ink-mute);
    transition: color 0.3s ease;
}
.footer__bottom-links a:hover { color: var(--ink); }

/* ---------- LEGAL PAGE (Privacy Policy / Terms) ---------- */
.legal-page {
    padding: clamp(120px, 16vh, 180px) var(--pad) clamp(80px, 12vh, 140px);
    min-height: 100vh;
    background: var(--bg);
}
.legal-page__inner {
    max-width: var(--max-text);
    margin: 0 auto;
}
.legal-page__title {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 12px;
}
.legal-page__title em { font-style: italic; color: var(--brass-soft); }
.legal-page__lastmod {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}
.legal-page h2 {
    font-family: var(--serif);
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.005em;
    margin: 36px 0 14px;
}
.legal-page h3 {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin: 22px 0 10px;
}
.legal-page p {
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 14px;
}
.legal-page ul {
    list-style: disc;
    padding-left: 22px;
    margin: 0 0 14px;
    color: var(--ink-soft);
}
.legal-page li {
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 6px;
}
.legal-page a {
    color: var(--ink);
    border-bottom: 1px solid var(--line-2);
    transition: border-color 0.3s ease;
}
.legal-page a:hover { border-bottom-color: var(--ink); }
.legal-page__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
    transition: color 0.3s ease;
    border: 0 !important;
}
.legal-page__back:hover { color: var(--ink); }
