/* ===================================================================
   CLUB CITRINE — Brand Design System
   Calgary's first mobile handcrafted mocktail service
   Palette: deep teal / citrine gold / mint / bright yellow / off-white / black
   Type:    Cormorant Garamond (display) · Playfair Display (headings)
            Montserrat (eyebrows/labels/nav) · Inter (body)
   =================================================================== */

/* -------- Design Tokens -------- */
:root {
  /* Brand palette */
  --teal:        #2C4A4A;   /* primary dark surface            */
  --teal-deep:   #213838;   /* deeper teal (derived)           */
  --green:       #1C6150;   /* secondary deep accent           */
  --citrine:     #F39C36;   /* primary accent — gold/orange    */
  --yellow:      #E4D00A;   /* bright highlight — sparing       */
  --mint:        #78CABF;   /* soft aqua — freshness accent     */
  --black:       #140C0C;   /* near-black — deepest ground/text */
  --offwhite:    #F2F2F2;   /* light surface / type on dark     */

  /* Semantic surfaces */
  --bg-deep:     var(--black);
  --bg:          var(--teal);
  --bg-green:    var(--green);
  --bg-light:    var(--offwhite);
  --ink-on-dark: #F4F1EA;        /* warm off-white for body on dark */
  --ink-on-dark-soft: #C9D3D0;   /* muted teal-grey on dark         */
  --ink:         #1A2222;        /* near-black ink on light         */
  --ink-soft:    #44514F;        /* muted ink on light              */
  --line-gold:   rgba(243,156,54,.45);
  --line-faint:  rgba(244,241,234,.14);

  /* Type families */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-head:    "Playfair Display", Georgia, serif;
  --font-label:   "Montserrat", -apple-system, "Segoe UI", sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Fluid type scale */
  --fs-display: clamp(2.9rem, 7vw, 6rem);
  --fs-h1:      clamp(2.2rem, 5vw, 3.9rem);
  --fs-h2:      clamp(1.8rem, 3.6vw, 2.9rem);
  --fs-h3:      clamp(1.3rem, 2.2vw, 1.7rem);
  --fs-lead:    clamp(1.12rem, 1.6vw, 1.4rem);
  --fs-body:    clamp(1.04rem, 1.15vw, 1.18rem);
  --fs-label:   .8rem;

  /* Spacing */
  --space-section: clamp(4.5rem, 9vw, 8.5rem);
  --container:  1200px;
  --container-narrow: 760px;
  --radius:     14px;
  --radius-sm:  9px;
  --shadow:     0 24px 60px -28px rgba(0,0,0,.55);
  --shadow-soft:0 14px 40px -22px rgba(0,0,0,.4);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* -------- Reset & Base -------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--ink-on-dark);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

/* Headings */
h1, h2, h3, h4 { line-height: 1.12; text-wrap: balance; font-weight: 600; }
h1 { font-family: var(--font-display); font-size: var(--fs-h1); font-weight: 500; }
h2 { font-family: var(--font-head); font-size: var(--fs-h2); }
h3 { font-family: var(--font-head); font-size: var(--fs-h3); }
p  { text-wrap: pretty; }

/* Selection */
::selection { background: var(--citrine); color: var(--black); }

/* -------- Accessibility -------- */
.skip-link {
  position: absolute; left: 1rem; top: -100px;
  background: var(--citrine); color: var(--black);
  padding: .7rem 1.2rem; border-radius: 0 0 8px 8px;
  font-family: var(--font-label); font-weight: 600; font-size: .85rem;
  z-index: 2000; transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* -------- Layout primitives -------- */
.container { width: min(100% - 2.6rem, var(--container)); margin-inline: auto; }
.container-narrow { width: min(100% - 2.6rem, var(--container-narrow)); margin-inline: auto; }
.section { padding-block: var(--space-section); position: relative; }
.section--deep   { background: var(--bg-deep);  color: var(--ink-on-dark); }
.section--teal   { background: var(--bg);        color: var(--ink-on-dark); }
.section--green  { background: var(--bg-green);  color: var(--ink-on-dark); }
.section--light  { background: var(--bg-light);  color: var(--ink); }
.section--light h2, .section--light h3 { color: var(--teal); }
.section--light .eyebrow { color: var(--green); }

/* Eyebrow / label / lead */
.eyebrow {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: var(--fs-label);
  font-weight: 600;
  color: var(--citrine);
  margin-bottom: 1.1rem;
  display: inline-block;
}
.lead { font-size: var(--fs-lead); line-height: 1.65; color: var(--ink-on-dark-soft); max-width: 60ch; }
.section--light .lead { color: var(--ink-soft); }

.section-head { max-width: 64ch; margin-bottom: clamp(2.2rem, 4vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .lead { margin-inline: auto; }

.gold { color: var(--citrine); }
.serif-accent { font-family: var(--font-display); font-style: italic; font-weight: 400; }

/* Thin gold rule + emblem divider */
.rule-gold { height: 1px; background: var(--line-gold); border: 0; }
.emblem-divider {
  display: flex; align-items: center; justify-content: center; gap: 1.1rem;
  margin: clamp(2.5rem,5vw,4rem) auto; color: var(--citrine);
}
.emblem-divider::before, .emblem-divider::after {
  content: ""; height: 1px; width: min(28vw, 200px); background: var(--line-gold);
}
.emblem-divider svg { width: 26px; height: 26px; }

/* -------- Buttons -------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-label); font-weight: 600; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase; text-decoration: none;
  padding: 1.05rem 1.9rem; border-radius: 50px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  min-height: 44px; line-height: 1;
}
.btn--primary { background: var(--citrine); color: var(--black); box-shadow: 0 10px 30px -10px rgba(243,156,54,.5); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -12px rgba(243,156,54,.65); background: #ffae4e; }
.btn--ghost { background: transparent; color: var(--offwhite); border-color: var(--line-gold); }
.btn--ghost:hover { border-color: var(--citrine); color: var(--citrine); transform: translateY(-2px); }
.btn--dark { background: var(--teal); color: var(--offwhite); }
.btn--dark:hover { background: var(--teal-deep); transform: translateY(-2px); }
.section--light .btn--ghost { color: var(--teal); border-color: rgba(28,97,80,.4); }
.section--light .btn--ghost:hover { color: var(--green); border-color: var(--green); }
.btn--lg { padding: 1.2rem 2.4rem; font-size: .85rem; }

/* -------- Header / Nav -------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(20,12,12,.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-faint);
  transition: background .3s var(--ease);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-block: .85rem; }
.nav__brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; flex-shrink: 0; }
.nav__brand img { width: 46px; height: 46px; border-radius: 50%; }
.nav__brand-text { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--offwhite); line-height: 1; letter-spacing: .01em; }
.nav__links { display: flex; align-items: center; gap: 1.9rem; list-style: none; }
.nav__links a {
  font-family: var(--font-label); font-size: .8rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  color: var(--ink-on-dark-soft); transition: color .2s var(--ease); position: relative; padding-block: .3rem;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--citrine); }
.nav__links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1.5px; background: var(--citrine);
}
.nav__cta { flex-shrink: 0; }
.nav__toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: .5rem;
  width: 46px; height: 46px; color: var(--offwhite);
}
.nav__toggle svg { width: 26px; height: 26px; }

@media (max-width: 940px) {
  .nav__toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem;
    background: var(--bg-deep); padding: 2rem 2.2rem;
    transform: translateX(100%); transition: transform .35s var(--ease);
    box-shadow: -20px 0 60px -20px rgba(0,0,0,.6); z-index: 1100;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { font-size: 1rem; }
  .nav--open-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1050; opacity: 0; pointer-events: none; transition: opacity .3s; }
  .nav--open-backdrop.is-open { opacity: 1; pointer-events: auto; }
  .nav__cta { display: none; }
}

/* -------- Hero -------- */
.hero {
  position: relative; min-height: clamp(560px, 90vh, 880px);
  display: flex; align-items: center;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(28,97,80,.55), transparent 55%),
    radial-gradient(100% 80% at 10% 90%, rgba(243,156,54,.12), transparent 50%),
    linear-gradient(160deg, var(--teal) 0%, var(--teal-deep) 55%, var(--black) 100%);
  overflow: hidden;
}
.hero::after { /* subtle grain/emblem wash */
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(120,202,191,.05), transparent 60%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; padding-block: clamp(4rem, 9vw, 7rem); max-width: 900px; }
.hero__eyebrow { color: var(--mint); }
.hero h1 {
  font-size: var(--fs-display); font-weight: 500; letter-spacing: -.01em;
  color: var(--offwhite); margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--citrine); }
.hero__sub { font-family: var(--font-label); font-weight: 400; letter-spacing: .02em; font-size: var(--fs-lead); color: var(--ink-on-dark-soft); max-width: 54ch; margin-bottom: 2.4rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__emblem {
  position: absolute; right: -6%; top: 50%; transform: translateY(-50%);
  width: min(46vw, 540px); opacity: .10; z-index: 1; color: var(--citrine);
  pointer-events: none;
}
@media (max-width: 760px){ .hero__emblem { right: -28%; width: 90vw; opacity: .08; } }

/* Trust strip */
.trust-strip { background: var(--black); border-block: 1px solid var(--line-faint); }
.trust-strip__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.5rem,5vw,4rem); padding-block: 1.6rem; text-align: center; }
.trust-item { display: flex; flex-direction: column; gap: .15rem; }
.trust-item strong { font-family: var(--font-display); font-size: 1.7rem; color: var(--citrine); font-weight: 600; line-height: 1; }
.trust-item span { font-family: var(--font-label); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-on-dark-soft); }

/* -------- Grids & Cards -------- */
.grid { display: grid; gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px){ .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: rgba(244,241,234,.04); border: 1px solid var(--line-faint);
  border-radius: var(--radius); padding: clamp(1.6rem, 2.6vw, 2.3rem);
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: var(--line-gold); background: rgba(244,241,234,.06); }
.card__icon { width: 48px; height: 48px; color: var(--citrine); margin-bottom: 1.1rem; }
.card h3 { color: var(--offwhite); margin-bottom: .7rem; }
.card p { color: var(--ink-on-dark-soft); font-size: 1.02rem; }
.section--light .card { background: #fff; border-color: rgba(28,97,80,.14); box-shadow: var(--shadow-soft); }
.section--light .card h3 { color: var(--teal); }
.section--light .card p { color: var(--ink-soft); }

/* Two-column split (text + visual) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse .split__visual { order: -1; }
@media (max-width: 840px){ .split { grid-template-columns: 1fr; } .split--reverse .split__visual { order: 0; } }

/* Framed image placeholder (soft-edge treatment, brand pattern) */
.frame {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line-gold); aspect-ratio: 4/5;
  background:
    radial-gradient(80% 60% at 50% 30%, rgba(243,156,54,.16), transparent 60%),
    linear-gradient(160deg, var(--teal) 0%, var(--black) 100%);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow);
}
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame--wide { aspect-ratio: 16/11; }
.frame__placeholder { text-align: center; color: var(--ink-on-dark-soft); padding: 2rem; }
.frame__placeholder svg { width: 54px; height: 54px; color: var(--citrine); opacity: .8; margin: 0 auto 1rem; }
.frame__placeholder span { font-family: var(--font-label); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; display: block; }

/* -------- How it works (steps) -------- */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 4.2rem; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: -.2rem;
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: var(--citrine);
  width: 3rem; text-align: center;
}
.step h3 { color: var(--offwhite); margin-bottom: .5rem; }
.section--light .step h3 { color: var(--teal); }
.step p { color: var(--ink-on-dark-soft); font-size: 1.02rem; }
.section--light .step p { color: var(--ink-soft); }

/* -------- Packages -------- */
.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
@media (max-width: 1000px){ .pkg-grid { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 560px){ .pkg-grid { grid-template-columns: 1fr;} }
.pkg {
  background: rgba(244,241,234,.04); border: 1px solid var(--line-faint);
  border-radius: var(--radius); padding: 2rem 1.7rem; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.pkg:hover { transform: translateY(-5px); border-color: var(--line-gold); }
.pkg--featured { border-color: var(--citrine); background: rgba(243,156,54,.07); position: relative; }
.pkg__tag { position: absolute; top: -.85rem; left: 50%; transform: translateX(-50%); background: var(--citrine); color: var(--black); font-family: var(--font-label); font-size: .65rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; padding: .35rem .9rem; border-radius: 50px; white-space: nowrap; }
.pkg__name { font-family: var(--font-head); font-size: 1.4rem; color: var(--offwhite); margin-bottom: .3rem; }
.pkg__guests { font-family: var(--font-label); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--mint); margin-bottom: 1.2rem; }
.pkg__price { font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; color: var(--citrine); line-height: 1; margin-bottom: .2rem; }
.pkg__price small { font-size: .9rem; color: var(--ink-on-dark-soft); font-family: var(--font-body); }
.pkg__from { font-family: var(--font-label); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-on-dark-soft); margin-bottom: 1.3rem; }
.pkg ul { list-style: none; padding: 0; margin: 0 0 1.6rem; display: flex; flex-direction: column; gap: .6rem; }
.pkg li { font-size: .98rem; color: var(--ink-on-dark-soft); padding-left: 1.6rem; position: relative; }
.pkg li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; background: var(--citrine); transform: rotate(45deg); }
.pkg .btn { margin-top: auto; justify-content: center; }

/* -------- Menu -------- */
.menu-item { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.3rem 0; border-bottom: 1px solid var(--line-faint); }
.menu-item:last-child { border-bottom: 0; }
.menu-item__swatch { width: 14px; height: 44px; border-radius: 50px; flex-shrink: 0; margin-top: .3rem; }
.menu-item__body h3 { color: var(--offwhite); font-size: 1.25rem; margin-bottom: .25rem; }
.section--light .menu-item__body h3 { color: var(--teal); }
.menu-item__body p { color: var(--ink-on-dark-soft); font-size: 1rem; }
.section--light .menu-item__body p { color: var(--ink-soft); }
.menu-item__tag { font-family: var(--font-label); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--mint); }

/* -------- FAQ accordion -------- */
.faq { border-top: 1px solid var(--line-faint); }
.faq__item { border-bottom: 1px solid var(--line-faint); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.4rem 0; font-family: var(--font-head); font-size: 1.18rem; color: var(--offwhite);
}
.section--light .faq, .section--light .faq__item { border-color: rgba(28,97,80,.16); }
.section--light .faq__q { color: var(--teal); }
.faq__q:hover { color: var(--citrine); }
.section--light .faq__q:hover { color: var(--green); }
.faq__icon { flex-shrink: 0; width: 22px; height: 22px; color: var(--citrine); transition: transform .3s var(--ease); }
.faq__q[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .35s var(--ease); }
.faq__a-inner { padding: 0 0 1.4rem; color: var(--ink-on-dark-soft); max-width: 70ch; }
.section--light .faq__a-inner { color: var(--ink-soft); }

/* -------- Form -------- */
.form-wrap { background: rgba(244,241,234,.04); border: 1px solid var(--line-gold); border-radius: var(--radius); padding: clamp(1.8rem, 4vw, 3rem); box-shadow: var(--shadow); }
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-family: var(--font-label); font-size: .76rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--offwhite); margin-bottom: .55rem; }
.field label .req { color: var(--citrine); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--offwhite);
  background: rgba(20,12,12,.5); border: 1.5px solid var(--line-faint); border-radius: var(--radius-sm);
  padding: .9rem 1rem; transition: border-color .2s var(--ease), background .2s var(--ease); min-height: 48px;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(244,241,234,.4); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--citrine); background: rgba(20,12,12,.7); outline: none; }
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F39C36' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 18px; padding-right: 2.6rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
@media (max-width: 560px){ .field-row { grid-template-columns: 1fr; } }
.field__error { display: none; color: #ffb4a0; font-size: .82rem; margin-top: .4rem; font-family: var(--font-label); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #ff8a6e; }
.field.has-error .field__error { display: block; }
.form-note { font-size: .82rem; color: var(--ink-on-dark-soft); margin-top: 1rem; display: flex; align-items: center; gap: .5rem; }
.form-note svg { width: 16px; height: 16px; color: var(--mint); flex-shrink: 0; }
.form-status { display: none; padding: 1.2rem 1.4rem; border-radius: var(--radius-sm); margin-bottom: 1.4rem; font-size: .98rem; }
.form-status.is-success { display: block; background: rgba(120,202,191,.14); border: 1px solid var(--mint); color: var(--offwhite); }
.form-status.is-error { display: block; background: rgba(255,138,110,.12); border: 1px solid #ff8a6e; color: var(--offwhite); }

/* -------- Testimonials -------- */
.quote-card { background: rgba(244,241,234,.04); border: 1px solid var(--line-faint); border-radius: var(--radius); padding: 2rem; }
.quote-card__stars { color: var(--yellow); letter-spacing: .15em; margin-bottom: 1rem; font-size: 1.05rem; }
.quote-card blockquote { font-family: var(--font-display); font-size: 1.35rem; line-height: 1.5; color: var(--offwhite); font-style: italic; margin-bottom: 1.2rem; }
.quote-card cite { font-family: var(--font-label); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--mint); font-style: normal; }

/* -------- Service area -------- */
.area-list { display: flex; flex-wrap: wrap; gap: .7rem; }
.area-chip { font-family: var(--font-label); font-size: .8rem; letter-spacing: .06em; padding: .55rem 1.1rem; border: 1px solid var(--line-gold); border-radius: 50px; color: var(--ink-on-dark); background: rgba(243,156,54,.06); }
.area-chip strong { color: var(--citrine); font-weight: 600; }

/* -------- CTA band -------- */
.cta-band { background: linear-gradient(135deg, var(--green) 0%, var(--teal) 60%, var(--black) 100%); text-align: center; }
.cta-band h2 { color: var(--offwhite); margin-bottom: 1.1rem; }
.cta-band .lead { margin-inline: auto; margin-bottom: 2rem; }

/* -------- Footer -------- */
.site-footer { background: var(--black); color: var(--ink-on-dark-soft); padding-block: clamp(3rem,6vw,5rem) 2rem; border-top: 1px solid var(--line-faint); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2.5rem; margin-bottom: 3rem; }
@media (max-width: 840px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { width: 64px; height: 64px; border-radius: 50%; margin-bottom: 1rem; }
.footer-brand p { font-size: .96rem; max-width: 34ch; }
.footer-mantra { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: var(--citrine); margin-top: 1rem; }
.footer-col h4 { font-family: var(--font-label); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--offwhite); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .7rem; }
.footer-col a { text-decoration: none; font-size: .94rem; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--citrine); }
.footer-bottom { border-top: 1px solid var(--line-faint); padding-top: 1.8rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .82rem; }
.footer-bottom a { color: var(--citrine); text-decoration: none; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line-faint); border-radius: 50%; transition: all .25s var(--ease); }
.footer-social a:hover { border-color: var(--citrine); color: var(--citrine); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }

/* -------- Scroll reveal (two-phase: visible fallback + enhance) -------- */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal--d1 { transition-delay: .08s; }
.js .reveal--d2 { transition-delay: .16s; }
.js .reveal--d3 { transition-delay: .24s; }

/* =================================================================
   BLOG — long-form reading (light, high-contrast, ages 30–70)
   ================================================================= */
.post-hero { background: linear-gradient(160deg, var(--teal) 0%, var(--teal-deep) 60%, var(--black) 100%); padding-block: clamp(3.5rem,7vw,6rem) clamp(2.5rem,5vw,4rem); }
.post-hero .container-narrow { text-align: center; }
.post-cat { font-family: var(--font-label); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--mint); }
.post-hero h1 { font-family: var(--font-head); font-size: var(--fs-h1); color: var(--offwhite); margin: 1rem 0; }
.post-meta { font-family: var(--font-label); font-size: .82rem; letter-spacing: .04em; color: var(--ink-on-dark-soft); }
.post-meta a { color: var(--citrine); text-decoration: none; }

.breadcrumb { font-family: var(--font-label); font-size: .76rem; letter-spacing: .04em; color: var(--ink-soft); padding-block: 1.1rem; }
.breadcrumb a { color: var(--green); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span[aria-current] { color: var(--ink-soft); }

.article {
  background: var(--bg-light); color: var(--ink);
}
.article__body { font-size: clamp(1.1rem, 1.35vw, 1.24rem); line-height: 1.8; color: #26302E; }
.article__body > * + * { margin-top: 1.5rem; }
.article__body h2 { font-family: var(--font-head); color: var(--teal); font-size: clamp(1.6rem,3vw,2.2rem); margin-top: 2.8rem; }
.article__body h3 { font-family: var(--font-head); color: var(--green); font-size: clamp(1.3rem,2.2vw,1.6rem); margin-top: 2rem; }
.article__body p { text-wrap: pretty; }
.article__body a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.article__body a:hover { color: var(--citrine); }
.article__body ul, .article__body ol { padding-left: 1.4rem; }
.article__body li { margin-top: .6rem; }
.article__body li::marker { color: var(--citrine); }
.article__body strong { color: var(--ink); font-weight: 700; }
.article__body blockquote {
  border-left: 3px solid var(--citrine); padding: .4rem 0 .4rem 1.5rem; margin-left: 0;
  font-family: var(--font-display); font-style: italic; font-size: 1.4rem; color: var(--teal); line-height: 1.45;
}
.article__body figure { margin: 2rem 0; }
.key-takeaway {
  background: rgba(28,97,80,.07); border: 1px solid rgba(28,97,80,.2); border-left: 4px solid var(--citrine);
  border-radius: var(--radius-sm); padding: 1.4rem 1.6rem;
}
.key-takeaway p { margin: 0; font-size: 1.05rem; }
.key-takeaway strong { font-family: var(--font-label); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--green); display: block; margin-bottom: .5rem; }
.article__body .source-note { font-size: .92rem; color: var(--ink-soft); }
.toc { background:#fff; border:1px solid rgba(28,97,80,.16); border-radius: var(--radius-sm); padding: 1.4rem 1.6rem; box-shadow: var(--shadow-soft); }
.toc h2 { font-family: var(--font-label) !important; font-size: .74rem !important; letter-spacing: .16em; text-transform: uppercase; color: var(--green) !important; margin: 0 0 .9rem !important; }
.toc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; }
.toc a { color: var(--teal); text-decoration: none; font-size: .98rem; }
.toc a:hover { color: var(--citrine); text-decoration: underline; }

.faq-block { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(28,97,80,.16); }
.faq-block h2 { color: var(--teal); }

.author-box { display: flex; gap: 1.2rem; align-items: center; background:#fff; border:1px solid rgba(28,97,80,.14); border-radius: var(--radius); padding: 1.6rem; margin-top: 3rem; box-shadow: var(--shadow-soft); }
.author-box img { width: 60px; height: 60px; border-radius: 50%; }
.author-box h4 { font-family: var(--font-head); color: var(--teal); font-size: 1.15rem; margin-bottom: .2rem; }
.author-box p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* Blog index cards */
.post-card { display: flex; flex-direction: column; background: rgba(244,241,234,.04); border: 1px solid var(--line-faint); border-radius: var(--radius); overflow: hidden; transition: transform .3s var(--ease), border-color .3s var(--ease); text-decoration: none; }
.post-card:hover { transform: translateY(-5px); border-color: var(--line-gold); }
.post-card__thumb { aspect-ratio: 16/10; background: linear-gradient(150deg, var(--teal), var(--black)); display: flex; align-items: center; justify-content: center; position: relative; }
.post-card__thumb svg { width: 56px; height: 56px; color: var(--citrine); opacity: .85; }
.post-card__body { padding: 1.6rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-card__cat { font-family: var(--font-label); font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--mint); margin-bottom: .7rem; }
.post-card h3 { color: var(--offwhite); font-size: 1.3rem; margin-bottom: .6rem; line-height: 1.25; }
.post-card p { color: var(--ink-on-dark-soft); font-size: .96rem; flex: 1; }
.post-card__more { font-family: var(--font-label); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--citrine); margin-top: 1.1rem; }

/* Generic prose page (privacy etc.) */
.prose-page { background: var(--bg-light); color: var(--ink); }
.prose-page h2 { color: var(--teal); margin-top: 2rem; }
.prose-page p, .prose-page li { color: var(--ink-soft); }

/* Utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.maxw-narrow { max-width: var(--container-narrow); margin-inline: auto; }

/* =================================================================
   MEDIA LAYER — hero crossfade · showcase carousel · video sections
   · events grid · lightbox   (added for IG media integration)
   ================================================================= */

/* -------- Hero: crossfading first-drink backdrop -------- */
.hero--media .hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 42%;
  opacity: 0; transition: opacity 1.6s var(--ease);
  will-change: opacity;
}
.hero__slide.is-active { opacity: 1; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(96deg, var(--teal) 2%, rgba(33,56,56,.92) 30%, rgba(33,56,56,.55) 62%, rgba(20,12,12,.34) 100%),
    linear-gradient(0deg, rgba(20,12,12,.6) 0%, transparent 32%);
}
.hero--media .hero__inner { z-index: 3; }
.hero--media .hero__emblem { z-index: 2; opacity: .14; }
@media (max-width: 760px){
  .hero__slide { background-position: center 38%; }
  .hero__scrim { background:
    linear-gradient(180deg, rgba(33,56,56,.78) 0%, rgba(33,56,56,.62) 45%, rgba(20,12,12,.82) 100%); }
}
@media (prefers-reduced-motion: reduce){
  .hero__slide { transition: none; }
}

/* -------- Showcase carousel (people + setups) -------- */
.showcase { padding-bottom: clamp(3rem,6vw,5rem); overflow: hidden; }
.showcase__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.showcase__nav { display: flex; gap: .6rem; }
.showcase__nav button {
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  background: transparent; border: 1.5px solid var(--line-gold); color: var(--citrine);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.showcase__nav button:hover { background: var(--citrine); color: var(--black); transform: translateY(-2px); }
.showcase__nav button svg { width: 20px; height: 20px; }
.showcase__track {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: clamp(220px, 38vw, 300px);
  gap: 1.1rem; margin-top: clamp(1.8rem,3vw,2.6rem);
  padding: .4rem clamp(1.3rem, calc((100vw - var(--container))/2 + 1.3rem), 50vw) .8rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.showcase__track::-webkit-scrollbar { display: none; }
.showcase__card {
  scroll-snap-align: start; position: relative;
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5;
  border: 1px solid var(--line-faint); box-shadow: var(--shadow-soft);
  background: linear-gradient(160deg, var(--teal), var(--black));
}
.showcase__card .media-thumb { display: block; width: 100%; height: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; }
.showcase__card img, .showcase__card video { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.showcase__card:hover img, .showcase__card:hover video { transform: scale(1.06); }
.showcase__card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1.4rem 1rem .9rem; font-family: var(--font-label);
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--offwhite);
  background: linear-gradient(0deg, rgba(20,12,12,.82), transparent);
}
.media-badge {
  position: absolute; top: .7rem; right: .7rem; z-index: 3;
  width: 34px; height: 34px; border-radius: 50%; background: rgba(20,12,12,.55);
  display: inline-flex; align-items: center; justify-content: center; color: var(--offwhite);
  backdrop-filter: blur(4px); pointer-events: none;
}
.media-badge svg { width: 16px; height: 16px; }
.showcase__foot { margin-top: 1.6rem; text-align: center; }

/* -------- Video-background sections -------- */
.section--media { position: relative; overflow: hidden; isolation: isolate; }
.section--media > .container, .section--media > .container-narrow { position: relative; z-index: 2; }
.section__video {
  position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%;
  object-fit: cover; pointer-events: none;
}
.section__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(20,12,12,.74) 0%, rgba(33,56,56,.72) 50%, rgba(20,12,12,.82) 100%);
}
.section--media.section--green .section__scrim {
  background: linear-gradient(180deg, rgba(28,97,80,.82), rgba(20,12,12,.8));
}

/* -------- Events grid -------- */
.events__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr; gap: clamp(.7rem,1.4vw,1.05rem);
  margin-top: clamp(2rem,4vw,3rem);
}
.events__grid > * { margin: 0; }
.event-tile {
  position: relative; overflow: hidden; border-radius: var(--radius-sm);
  aspect-ratio: 1/1; border: 1px solid var(--line-faint);
  background: linear-gradient(160deg, var(--teal), var(--black));
}
.event-tile.is-tall { grid-row: span 2; aspect-ratio: 1/2; }
.event-tile.is-wide { grid-column: span 2; aspect-ratio: 2/1; }
.event-tile .media-thumb { display: block; width: 100%; height: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; }
.event-tile img, .event-tile video { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.event-tile:hover img, .event-tile:hover video { transform: scale(1.05); }
.event-tile figcaption {
  position: absolute; inset: auto 0 0 0; z-index: 2; padding: 1.5rem .9rem .8rem;
  font-family: var(--font-label); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--offwhite); background: linear-gradient(0deg, rgba(20,12,12,.85), transparent);
}
@media (max-width: 900px){ .events__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px){
  .events__grid { grid-template-columns: repeat(2,1fr); }
  .event-tile.is-wide { grid-column: span 2; }
}

/* -------- Lightbox -------- */
.lb { position: fixed; inset: 0; z-index: 3000; display: none; }
.lb.is-open { display: block; }
.lb__overlay { position: absolute; inset: 0; background: rgba(12,8,8,.94); backdrop-filter: blur(6px); }
.lb__shell {
  position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column;
  width: min(100% - 2rem, 1180px); margin-inline: auto; padding: clamp(1rem,3vh,2rem) 0;
}
.lb__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--offwhite); flex-shrink: 0; }
.lb__title { font-family: var(--font-head); font-size: 1.2rem; color: var(--offwhite); }
.lb__count { font-family: var(--font-label); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-on-dark-soft); }
.lb__close {
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer; flex-shrink: 0;
  background: rgba(244,241,234,.08); border: 1px solid var(--line-faint); color: var(--offwhite);
  display: inline-flex; align-items: center; justify-content: center; transition: background .2s var(--ease);
}
.lb__close:hover { background: var(--citrine); color: var(--black); }
.lb__close svg { width: 22px; height: 22px; }

/* grid mode */
.lb__grid { margin-top: 1.3rem; overflow-y: auto; flex: 1; padding-right: .3rem; }
.lb__section { font-family: var(--font-label); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--citrine); margin: 1.6rem 0 .9rem; }
.lb__section:first-child { margin-top: .3rem; }
.lb__tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); gap: .6rem; }
.lb__tile { position: relative; aspect-ratio: 1/1; border-radius: var(--radius-sm); overflow: hidden; cursor: zoom-in; border: 0; padding: 0; background: linear-gradient(160deg, var(--teal), var(--black)); }
.lb__tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.lb__tile:hover img { transform: scale(1.07); }
.lb__tile .media-badge { width: 30px; height: 30px; }

/* viewer mode */
.lb__view { display: none; flex: 1; min-height: 0; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; margin-top: 1rem; }
.lb.is-view .lb__view { display: flex; }
.lb.is-view .lb__grid { display: none; }
.lb__stage { flex: 1; min-height: 0; width: 100%; display: flex; align-items: center; justify-content: center; position: relative; }
.lb__media { max-width: 100%; max-height: 100%; border-radius: var(--radius-sm); box-shadow: var(--shadow); object-fit: contain; }
.lb__cap { color: var(--ink-on-dark-soft); font-size: .96rem; text-align: center; max-width: 70ch; min-height: 1.4em; }
.lb__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  background: rgba(20,12,12,.55); border: 1px solid var(--line-faint); color: var(--offwhite);
  display: inline-flex; align-items: center; justify-content: center; transition: background .2s var(--ease);
}
.lb__nav:hover { background: var(--citrine); color: var(--black); }
.lb__nav svg { width: 26px; height: 26px; }
.lb__nav--prev { left: 0; } .lb__nav--next { right: 0; }
.lb__back { align-self: flex-start; font-family: var(--font-label); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--citrine); background: none; border: 0; cursor: pointer; display: inline-flex; align-items: center; gap: .4rem; }
.lb__back svg { width: 16px; height: 16px; }
@media (max-width: 560px){ .lb__nav { width: 42px; height: 42px; } }
body.lb-open { overflow: hidden; }

/* Clickable framed image (replaces .frame placeholders) */
.frame .media-thumb { display: block; width: 100%; height: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; }

/* Stat band (the "situation" numbers) */
.statbar {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem,2.5vw,2rem);
  margin: clamp(1.6rem,3vw,2.4rem) 0 clamp(2.4rem,4vw,3.4rem);
}
.statbar__item { padding-left: 1.2rem; border-left: 3px solid var(--citrine); }
.statbar__item strong {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3rem); line-height: 1; color: var(--citrine); margin-bottom: .45rem;
}
.statbar__item span { font-size: .96rem; color: var(--ink-soft); }
@media (max-width: 700px){ .statbar { grid-template-columns: 1fr; gap: 1.1rem; } }
