/* =====================================================
   SAROKI'S / HOMETOWN LIQUOR
   "American Heritage Editorial"
   White paper · vivid green · refined serif × distinctive grotesque
   ===================================================== */

:root {
  /* Core neutrals */
  --paper:        #ffffff;
  --paper-warm:   #faf6ec;     /* cream — the "magazine paper" tone */
  --paper-warm-2: #f3ecdb;     /* deeper cream variant */
  --line:         #e7dfcf;     /* hairline on paper */
  --line-cool:    #e9eaeb;     /* hairline on white */
  --line-strong:  #2a2620;

  /* Ink */
  --ink:          #0c0a08;     /* warm black */
  --ink-soft:     #1a1612;
  --muted:        #948a82;     /* warm gray */
  --muted-2:      #b8b0a4;

  /* Brand greens */
  --green:        #16a34a;
  --green-deep:   #0e7a37;
  --green-bright: #22c55e;
  --green-soft:   #ecfdf3;
  --green-glow:   rgba(22, 163, 74, 0.18);

  /* Type — distinctive editorial pairing */
  --display: 'Fraunces', 'Times New Roman', Georgia, serif;
  --sans:    'Instrument Sans', -apple-system, 'Helvetica Neue', sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, Menlo, monospace;

  /* Layout */
  --max:       1320px;
  --max-wide:  1480px;
  --max-narrow: 980px;
  --pad:       clamp(20px, 5vw, 64px);
  --rad:       2px;
  --rad-md:    6px;
  --rad-lg:    14px;

  /* Motion */
  --ease:    cubic-bezier(0.22, 0.65, 0.20, 1);
  --ease-2:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-3:  cubic-bezier(0.86, 0, 0.07, 1); /* dramatic mask reveal */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01', 'ss02', 'cv11';
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--green); color: var(--paper); }

/* =================== TYPOGRAPHY =================== */
.display {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
  letter-spacing: -0.025em;
  line-height: 0.94;
}

h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 0.98;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
h1 { font-size: clamp(64px, 9vw, 148px); font-weight: 500; line-height: 0.92; letter-spacing: -0.035em; }
h2 { font-size: clamp(40px, 5.6vw, 88px); font-weight: 500; letter-spacing: -0.028em; }
h3 { font-size: clamp(24px, 2.6vw, 36px); font-weight: 500; }
h4 { font-size: clamp(18px, 1.6vw, 22px); font-weight: 600; }

em.it,
em.accent {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--green);
  letter-spacing: -0.03em;
}

/* Labels / metadata */
.label, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.label--green, .eyebrow { color: var(--green-deep); }
.label--muted { color: var(--muted); }
.label__rule {
  width: 26px;
  height: 1px;
  background: currentColor;
}

p.lead {
  font-family: var(--display);
  font-variation-settings: "opsz" 30, "SOFT" 100;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--ink-soft);
  max-width: 50ch;
}
p.lead em { color: var(--green); font-style: italic; }

p.body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch;
}
.muted { color: var(--muted); }

/* Drop cap (editorial) */
.dropcap::first-letter {
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: 5.2em;
  font-weight: 400;
  float: left;
  line-height: 0.85;
  margin: 0.05em 0.08em -0.15em 0;
  color: var(--green);
  letter-spacing: -0.05em;
}

/* =================== UTILITIES =================== */
.container        { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); position: relative; }
.container--wide  { max-width: var(--max-wide); margin: 0 auto; padding: 0 var(--pad); position: relative; }
.container--narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 var(--pad); position: relative; }

.rule { height: 1px; background: var(--ink); width: 100%; }
.rule--thin   { background: var(--line-cool); }
.rule--double {
  height: 4px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: transparent;
}

/* Tag chips */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.chip--green { background: var(--green-soft); border-color: rgba(22,163,74,0.3); color: var(--green-deep); }
.chip--ink   { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 56px;
  padding: 0 32px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform .35s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
  position: relative;
}
.btn--primary {
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: 0 8px 24px rgba(12,10,8,0.12);
}
.btn--primary:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(22,163,74,0.36);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--green {
  background: var(--green);
  color: var(--paper);
  border: 1px solid var(--green);
  box-shadow: 0 10px 30px rgba(22,163,74,0.28);
}
.btn--green:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  transform: translateY(-2px);
}
.btn--small { height: 42px; padding: 0 22px; font-size: 11px; }

/* Editorial arrow link */
.arrow-link {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  font-variation-settings: "opsz" 60, "SOFT" 100;
  color: var(--ink);
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: color .3s var(--ease), border-color .3s var(--ease), gap .35s var(--ease);
}
.arrow-link::after {
  content: "→";
  font-style: normal;
  font-family: var(--sans);
  font-size: 14px;
  transition: transform .35s var(--ease);
}
.arrow-link:hover {
  color: var(--green);
  border-color: var(--green);
  gap: 18px;
}
.arrow-link:hover::after { transform: translateX(4px); }

/* =================== REVEAL ANIMATIONS =================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s var(--ease-2), transform .9s var(--ease-2);
}
.reveal.in { opacity: 1; transform: none; }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-2), transform .8s var(--ease-2);
}
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .07s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .14s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .21s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .28s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .35s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: .42s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: .49s; }

/* Vertical mask reveal (editorial) */
.mask-reveal {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.mask-reveal > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease-3);
  transition-delay: calc(var(--i, 0) * 0.05s);
}
.mask-reveal.in > span { transform: translateY(0); }

/* Image reveal — photos are ALWAYS fully visible (opacity: 1).
   Only a subtle scale animation on scroll-in, no fade-from-blank. */
.img-reveal {
  position: relative;
  overflow: hidden;
}
.img-reveal img {
  opacity: 1;
  transform: scale(1.04);
  transition: transform 1.6s var(--ease-2);
}
.img-reveal.in img {
  transform: scale(1);
}

/* =================== AGE BANNER =================== */
.age-banner {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 9px 16px;
  position: relative;
  z-index: 101;
}
.age-banner span { color: var(--green-bright); }
.age-banner .sep { color: rgba(255,255,255,0.4); margin: 0 14px; }

/* =================== NAVBAR =================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 22px 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: padding .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}
.nav.scrolled {
  padding: 14px 0;
  background: rgba(255,255,255,0.96);
  border-bottom-color: var(--line-cool);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav__brand-logo {
  height: 40px;
  width: auto;
  max-width: 200px;
  display: block;
  transition: transform .35s var(--ease), height .3s var(--ease);
  flex-shrink: 0;
}
.nav.scrolled .nav__brand-logo { height: 32px; }
@media (max-width: 1100px) {
  .nav__brand-logo { height: 32px; max-width: 160px; }
}
@media (max-width: 540px) {
  .nav__brand-logo { height: 28px; max-width: 140px; }
  .nav__brand-rule, .nav__brand-sub { display: none; }
}
.nav__brand:hover .nav__brand-logo { transform: scale(1.03); }
.nav__brand-rule {
  width: 1px;
  height: 28px;
  background: var(--line-cool);
}
.nav__brand-sub {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.35;
}
.nav__brand-sub em {
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 60, "SOFT" 100;
  color: var(--green);
  text-transform: none;
  letter-spacing: -0.02em;
  font-size: 12px;
}

/* NAPA logo lockup (used in NAPA card + nav) */
.napa-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.napa-lockup__mark {
  height: 44px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.napa-lockup__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.napa-lockup__text-care {
  font-family: var(--display);
  font-variation-settings: "opsz" 60, "SOFT" 50;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0a0094;     /* NAPA navy */
  text-transform: uppercase;
}
.napa-lockup__text-tag {
  font-family: var(--mono);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #0a0094;
  opacity: 0.78;
}

/* When NAPA lockup sits on a dark q-card overlay */
.q-card .napa-lockup__text-care,
.q-card .napa-lockup__text-tag {
  color: #fff;
}

/* NAPA badge floating on q-card */
.q-card__napa-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 8px 12px 8px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.q-card__napa-badge img {
  height: 32px;
  width: auto;
  display: block;
}
.q-card__napa-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.q-card__napa-badge-care {
  font-family: var(--display);
  font-variation-settings: "opsz" 60, "SOFT" 50;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0a0094;
  text-transform: uppercase;
}
.q-card__napa-badge-tag {
  font-family: var(--mono);
  font-size: 7.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #0a0094;
  opacity: 0.78;
}

/* =================== ACCORDION (used on locations.html) =================== */
.cs__expect-list--accordion li {
  display: block;
  padding: 0;
  position: relative;
}
.cs__expect-list--accordion li:hover {
  padding-left: 0;
  color: var(--ink);
}
.cs__expect-list--accordion li::before {
  position: absolute;
  left: 0;
  top: 18px;
}
.cs__d {
  padding: 16px 0 16px 28px;
}
.cs__d-summary {
  display: flex;
  align-items: baseline;
  gap: 18px;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-variation-settings: "opsz" 30, "SOFT" 50;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.012em;
  color: var(--ink);
  transition: color .25s var(--ease);
}
.cs__d-summary::-webkit-details-marker { display: none; }
.cs__d-summary::marker { display: none; content: ""; }
.cs__d-summary:hover { color: var(--green); }
.cs__d-name {
  flex: 1;
  min-width: 0;
}
.cs__d-name em.accent {
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--green);
  font-weight: 400;
  letter-spacing: -0.025em;
}
.cs__d-meta {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.cs__d-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
  transition: transform .35s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.cs__d[open] .cs__d-icon {
  transform: rotate(45deg);
  background: var(--green);
  color: var(--paper);
  border-color: var(--green);
}
.cs__d-body {
  padding: 16px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: cs-d-fade 0.4s var(--ease-2);
}
@keyframes cs-d-fade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
.cs__d-addr {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  line-height: 1.7;
}
.cs__d-text {
  font-family: var(--display);
  font-variation-settings: "opsz" 30, "SOFT" 100;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--muted);
  max-width: 50ch;
}
.cs__d-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 8px 14px;
  background: var(--green);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 6px 16px rgba(22,163,74,0.2);
}
.cs__d-link:hover {
  background: var(--green-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(14,122,55,0.3);
}

@media (max-width: 540px) {
  .cs__d-summary { flex-wrap: wrap; gap: 8px 14px; }
  .cs__d-meta { width: 100%; order: 3; }
  .cs__d-icon { order: 2; }
}

/* =================== HOMETOWN NAPA AUTO CARE SIGN =================== */
.napa-sign {
  --napa-blue: #1d3a8c;
  --napa-blue-deep: #15276a;
  --napa-yellow: #f5b820;
  display: flex;
  align-items: stretch;
  height: clamp(64px, 7vw, 96px);
  width: 100%;
  max-width: 720px;
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: 0.06em;
  position: relative;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.18));
}
.napa-sign__band {
  flex: 1;
  background: var(--napa-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(15px, 1.7vw, 22px);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  position: relative;
  border-top: 4px solid var(--napa-yellow);
  border-bottom: 4px solid var(--napa-yellow);
  padding: 0 14px;
  white-space: nowrap;
}
.napa-sign__band::before,
.napa-sign__band::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  height: 1.5px;
  background: var(--napa-yellow);
  opacity: 0.55;
}
.napa-sign__band::before { top: 6px; }
.napa-sign__band::after { bottom: 6px; }
.napa-sign__band--left { border-right: 0; }
.napa-sign__band--right { border-left: 0; }

.napa-sign__center {
  flex: 0 0 auto;
  background: var(--napa-blue);
  border: 4px solid var(--napa-yellow);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  position: relative;
  z-index: 2;
  margin: -4px 0;          /* overlap onto bands */
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15) inset;
}
.napa-sign__hex {
  height: clamp(38px, 4.4vw, 58px);
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.25));
}
.napa-sign__txt {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
  color: var(--napa-yellow);
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 0;
  letter-spacing: -0.005em;
}
.napa-sign__txt-care {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 800;
  font-style: italic;
}
.napa-sign__txt-center {
  font-family: var(--sans);
  font-style: normal;
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 800;
  letter-spacing: 0.32em;
  margin-top: 4px;
}

@media (max-width: 720px) {
  .napa-sign {
    height: auto;
    flex-direction: column;
    max-width: 360px;
  }
  .napa-sign__band {
    height: 44px;
    font-size: 14px;
    border-left: 4px solid var(--napa-yellow);
    border-right: 4px solid var(--napa-yellow);
  }
  .napa-sign__band--left  { border-bottom: 0; }
  .napa-sign__band--right { border-top: 0; }
  .napa-sign__center {
    margin: -4px 0;
    align-self: stretch;
    justify-content: center;
  }
}

/* When the sign sits inside a dark q-card hover overlay */
.napa-sign--card {
  height: 56px;
  max-width: 100%;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
.napa-sign--card .napa-sign__band {
  font-size: 11px;
  letter-spacing: 0.16em;
  padding: 0 10px;
}
.napa-sign--card .napa-sign__center {
  padding: 4px 12px;
  gap: 8px;
}
.napa-sign--card .napa-sign__hex { height: 32px; }
.napa-sign--card .napa-sign__txt-care { font-size: 16px; }
.napa-sign--card .napa-sign__txt-center { font-size: 9px; letter-spacing: 0.28em; margin-top: 3px; }

@media (max-width: 720px) {
  .napa-sign--card { flex-direction: row; height: 56px; max-width: 100%; }
  .napa-sign--card .napa-sign__band {
    height: auto;
    border-left: 0;
    border-right: 0;
    border-top: 4px solid var(--napa-yellow);
    border-bottom: 4px solid var(--napa-yellow);
  }
}

/* The q-card with the napa sign — keep title hidden so the sign IS the title */
.q-card--napa .q-card__bottom { gap: 4px; }

/* External link button — branded for sarokis.com */
.btn--saroki {
  background: #e31f26;        /* Saroki's brand red */
  color: var(--paper);
  border: 1px solid #e31f26;
  box-shadow: 0 10px 30px rgba(227,31,38,0.28);
}
.btn--saroki:hover {
  background: #b8141a;
  border-color: #b8141a;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(184,20,26,0.36);
}
.btn--saroki .ext {
  font-size: 11px;
  opacity: 0.85;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1px;
  list-style: none;
  flex-wrap: nowrap;
}
.nav__menu a {
  display: inline-block;
  padding: 8px 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: color .25s var(--ease), background .25s var(--ease);
  position: relative;
  white-space: nowrap;
}
@media (max-width: 1280px) {
  .nav__menu a { padding: 8px 8px; font-size: 11.5px; letter-spacing: 0.04em; }
}
.nav__menu a:hover { color: var(--green-deep); }
.nav__menu a.active {
  color: var(--ink);
}
.nav__menu a.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 4px; height: 4px;
  background: var(--green);
  border-radius: 50%;
  transform: translateX(-50%);
}

.nav__cta { display: flex; gap: 10px; align-items: center; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--ink);
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  display: block;
  width: 18px; height: 1.5px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__toggle span { position: relative; }
.nav__toggle span::before { position: absolute; top: -6px; left: 0; }
.nav__toggle span::after  { position: absolute; top:  6px; left: 0; }
.nav.open .nav__toggle span { background: transparent; }
.nav.open .nav__toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav.open .nav__toggle span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1180px) {
  .nav__menu, .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__menu.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    padding: 16px var(--pad) 28px;
    background: var(--paper);
    border-bottom: 1px solid var(--line-cool);
    box-shadow: 0 24px 60px rgba(0,0,0,0.10);
  }
  .nav__menu.open a {
    width: 100%;
    padding: 16px 4px;
    border-bottom: 1px solid var(--line-cool);
    font-family: var(--display);
    font-size: 18px;
    font-weight: 500;
    border-radius: 0;
  }
}

/* =================== HERO — EDITORIAL MAGAZINE COVER =================== */
.hero {
  position: relative;
  padding: 32px 0 0;
  overflow: hidden;
  background: var(--paper);
}

/* Top metadata strip — like a magazine cover banner */
.hero__masthead {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px 0 24px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: clamp(48px, 6vw, 80px);
}
.hero__masthead-vol { font-variation-settings: normal; }
.hero__masthead-vol em {
  font-family: var(--display);
  font-style: italic;
  text-transform: none;
  letter-spacing: -0.02em;
  font-size: 14px;
  color: var(--green);
  font-variation-settings: "opsz" 60, "SOFT" 100;
}
.hero__masthead-dot {
  width: 4px; height: 4px;
  background: var(--ink);
  border-radius: 50%;
}
.hero__masthead-c { text-align: center; }
.hero__masthead-r { text-align: right; }
@media (max-width: 880px) {
  .hero__masthead {
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
  }
  .hero__masthead .hero__masthead-dot { display: none; }
  .hero__masthead-r { text-align: left; }
  .hero__masthead-c { grid-column: span 2; text-align: center; }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  position: relative;
  padding-bottom: clamp(60px, 8vw, 110px);
}

.hero__title {
  font-size: clamp(58px, 9.5vw, 168px);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  line-height: 0.92;
  letter-spacing: -0.038em;
  color: var(--ink);
}
.hero__title .row {
  display: block;
  overflow: hidden;
  padding: 0.04em 0;
}
.hero__title em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--green);
  letter-spacing: -0.04em;
  padding-right: 0.03em;
}
.hero__title .row > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.2s var(--ease-3);
}
.hero__title.in .row:nth-child(1) > span { transform: translateY(0); transition-delay: 0.1s; }
.hero__title.in .row:nth-child(2) > span { transform: translateY(0); transition-delay: 0.2s; }
.hero__title.in .row:nth-child(3) > span { transform: translateY(0); transition-delay: 0.3s; }

.hero__lede {
  margin-top: 36px;
  max-width: 38ch;
  font-family: var(--display);
  font-variation-settings: "opsz" 30, "SOFT" 100;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--ink-soft);
}
.hero__lede em { color: var(--green); font-style: italic; }

.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }

.hero__photo-wrap {
  position: relative;
}
.hero__photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--paper-warm);
  border: 1px solid var(--ink);
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-2);
}
.hero__photo:hover img { transform: scale(1.04); }

.hero__caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.hero__caption-no { color: var(--green-deep); }

/* The green oval seal — rotating */
.seal {
  position: absolute;
  z-index: 5;
  width: clamp(140px, 14vw, 200px);
  height: clamp(140px, 14vw, 200px);
  color: var(--green-deep);
  bottom: -50px;
  left: -50px;
  animation: seal-spin 28s linear infinite;
}
.seal--hero {
  top: -28px;
  right: -28px;
  bottom: auto;
  left: auto;
}
@keyframes seal-spin { to { transform: rotate(360deg); } }
.seal__inner {
  position: absolute;
  inset: 18%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--green-deep);
  animation: seal-spin-reverse 28s linear infinite;
  pointer-events: none;
}
@keyframes seal-spin-reverse { to { transform: rotate(-360deg); } }

/* Bottom location index strip */
.hero__index {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--ink);
  margin-top: 24px;
}
.hero__index-item {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 24px 14px 0;
  border-right: 1px solid var(--line-cool);
}
.hero__index-item:last-child { border-right: none; }
.hero__index-no {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--green-deep);
}
.hero__index-name {
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 60, "SOFT" 100;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hero__index-meta {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__index-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 24px;
}
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 64px; }
  .hero__photo-wrap { max-width: 560px; margin-left: auto; margin-right: auto; width: 100%; }
  .hero__index { grid-template-columns: 1fr; }
  .hero__index-item { border-right: none; border-bottom: 1px solid var(--line-cool); padding: 14px 0; }
  .hero__index-item:last-child { border-bottom: none; }
  .hero__index-cta { padding: 14px 0 0; justify-content: flex-start; }
  .seal { width: 130px; height: 130px; bottom: -10px; left: -10px; }
  .seal--hero { top: 16px; right: 16px; }
}

/* =================== MARQUEE =================== */
.marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.marquee__inner {
  display: flex;
  align-items: center;
  gap: 64px;
  animation: marquee-slide 38s linear infinite;
  white-space: nowrap;
}
@keyframes marquee-slide { to { transform: translateX(-50%); } }
.marquee__item {
  flex-shrink: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 64px;
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 500;
  letter-spacing: -0.022em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.marquee__item:nth-child(odd) {
  font-style: italic;
  font-weight: 400;
  color: var(--green-bright);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.marquee__star {
  color: var(--green-bright);
  font-size: 0.5em;
  font-family: var(--sans);
}

/* =================== SECTIONS =================== */
.section {
  padding: clamp(96px, 11vw, 160px) 0;
  position: relative;
}
.section--paper { background: var(--paper-warm); }
.section--ink   { background: var(--ink); color: var(--paper); }
.section--ink h2, .section--ink h3, .section--ink h4 { color: var(--paper); }
.section--ink p.lead, .section--ink .label { color: rgba(255,255,255,0.78); }

/* Section headers — editorial format (no roman numeral marker) */
.section__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 60px;
  margin-bottom: clamp(56px, 6vw, 88px);
  padding-bottom: 32px;
  border-bottom: 1px solid var(--ink);
  align-items: end;
}
.section--paper .section__head { border-bottom-color: var(--line); }

.section__num { display: none; }

.section__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.section__meta-rule {
  flex: 1;
  height: 1px;
  background: var(--ink);
  min-width: 40px;
  max-width: 120px;
}
.section--paper .section__meta-rule { background: var(--ink); }

.section__title h2 {
  margin: 0;
  max-width: 16ch;
}
.section__title-bottom {
  margin-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
}
.section__title-bottom p.lead { max-width: 44ch; }

@media (max-width: 880px) {
  .section__head { grid-template-columns: 1fr; gap: 24px; }
  .section__num { font-size: 96px; }
  .section__title-bottom { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* =================== EDITORIAL GALLERY =================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery__tile {
  position: relative;
  overflow: hidden;
  background: var(--paper-warm);
  isolation: isolate;
  border: 1px solid var(--ink);
}
.gallery__tile img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.8s var(--ease-2);
  z-index: 0;
}
.gallery__tile:hover img { transform: scale(1.05); }

.gallery__caption {
  position: absolute;
  z-index: 2;
  inset: auto 0 0 0;
  padding: 14px 18px;
  background: var(--paper);
  border-top: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(100%);
  transition: transform .55s var(--ease);
}
.gallery__tile:hover .gallery__caption { transform: translateY(0); }
.gallery__caption-fig { color: var(--green-deep); }

.gallery__permanent-tag {
  position: absolute;
  z-index: 3;
  top: 14px; left: 14px;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  padding: 5px 9px;
  border-radius: 2px;
}

/* Editorial gallery tile with full nav overlay (combined gallery + departments) */
.gallery__tile--rich { color: var(--ink); }
.gallery__tile--rich::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55) 75%, rgba(0,0,0,0.82) 100%);
  opacity: 0.85;
  transition: opacity .5s var(--ease);
}
.gallery__tile--rich:hover::after { opacity: 1; }

.gallery__rich {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--paper);
  pointer-events: none;
}
.gallery__rich-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.gallery__rich-no {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.85;
  align-self: center;
}
.gallery__rich-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  font-size: 14px;
  color: var(--paper);
  background: rgba(0,0,0,0.25);
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.gallery__tile--rich:hover .gallery__rich-arrow {
  background: var(--green);
  border-color: var(--green);
  transform: translate(2px, -2px);
}
.gallery__rich-bottom {
  transform: translateY(8px);
  transition: transform .5s var(--ease);
}
.gallery__tile--rich:hover .gallery__rich-bottom { transform: translateY(0); }

.gallery__rich-title {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--paper);
  margin: 0 0 8px;
}
.gallery__rich-title em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--green-bright, #6ee7a0);
}
.gallery__rich-desc {
  font-family: var(--display);
  font-variation-settings: "opsz" 30, "SOFT" 100;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255,255,255,0.88);
  max-width: 38ch;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .5s var(--ease), opacity .4s var(--ease);
}
.gallery__tile--rich:hover .gallery__rich-desc,
.gallery__tile--rich:focus-visible .gallery__rich-desc {
  max-height: 8em;
  opacity: 1;
}

/* On mobile, description is always visible (no hover) */
@media (hover: none), (max-width: 880px) {
  .gallery__tile--rich::after { opacity: 1; }
  .gallery__rich-desc { max-height: 8em; opacity: 1; }
  .gallery__rich-bottom { transform: translateY(0); }
}

.t-1 { grid-column: span 7; grid-row: span 2; }
.t-2 { grid-column: span 5; }
.t-3 { grid-column: span 5; }
.t-4 { grid-column: span 4; grid-row: span 2; }
.t-5 { grid-column: span 4; }
.t-6 { grid-column: span 4; }
.t-7 { grid-column: span 6; }
.t-8 { grid-column: span 6; }

@media (max-width: 880px) {
  .gallery { grid-auto-rows: 180px; }
  .t-1 { grid-column: span 12; grid-row: span 1; }
  .t-2, .t-3 { grid-column: span 6; }
  .t-4 { grid-column: span 12; grid-row: span 1; }
  .t-5, .t-6 { grid-column: span 6; }
  .t-7, .t-8 { grid-column: span 12; }
}

/* =================== QUICK ACCESS — INDEX CARDS =================== */
.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
}
.q-card {
  position: relative;
  display: block;
  height: 380px;
  overflow: hidden;
  background: var(--ink);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  isolation: isolate;
}
.q-card:nth-child(3n) { border-right: none; }
.q-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 1.5s var(--ease-2);
}
.q-card:hover .q-card__img { transform: scale(1.06); }
.q-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.25) 100%);
  z-index: 1;
  transition: background .55s var(--ease);
}
.q-card:hover::after {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%);
}

.q-card__body {
  position: absolute;
  inset: 0;
  padding: 36px 36px 32px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--paper);
}
.q-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.q-card__num {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--green-bright);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.q-card__arrow {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--paper);
  transition: background .35s var(--ease), border-color .35s var(--ease), transform .4s var(--ease);
}
.q-card:hover .q-card__arrow {
  background: var(--green);
  border-color: var(--green);
  transform: rotate(-45deg);
}

.q-card__bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.q-card__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(36px, 3.2vw, 52px);
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--paper);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.q-card__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--green-bright);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.q-card__desc {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  max-width: 32ch;
  line-height: 1.55;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

@media (max-width: 880px) {
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .q-card:nth-child(3n) { border-right: 1px solid var(--ink); }
  .q-card:nth-child(2n) { border-right: none; }
}
@media (max-width: 540px) {
  .quick-grid { grid-template-columns: 1fr; }
  .q-card { border-right: none !important; height: 320px; }
}

/* =================== LOCATIONS — FIELD REPORTS =================== */
.locs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.loc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: transparent;
  transition: transform .5s var(--ease-2);
}
.loc-card:hover { transform: translateY(-6px); }

.loc-card__report {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.loc-card__report-no { color: var(--green-deep); }
.loc-card__report-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}
.loc-card__report-status::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
}
.loc-card__report-status.coming::before { background: var(--ink); }

.loc-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--paper-warm);
  margin-top: 16px;
  border: 1px solid var(--ink);
}
.loc-card__media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-2);
}
.loc-card:hover .loc-card__media img { transform: scale(1.06); }

.loc-card__body {
  padding: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.loc-card__byline {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}
.loc-card__byline-brand {
  padding: 3px 8px;
  background: var(--ink);
  color: var(--paper);
  font-size: 9.5px;
}
.loc-card__title {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-weight: 500;
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.loc-card__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--green);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.loc-card__addr {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.loc-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  margin-top: 4px;
  border-top: 1px solid var(--line-cool);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color .3s var(--ease), gap .3s var(--ease);
}
.loc-card__cta::after {
  content: "→";
  color: var(--green);
  transition: transform .3s var(--ease);
}
.loc-card:hover .loc-card__cta {
  color: var(--green);
  gap: 14px;
}
.loc-card:hover .loc-card__cta::after { transform: translateX(4px); }

@media (max-width: 880px) {
  .locs { grid-template-columns: 1fr; gap: 48px; }
}

/* =================== ABOUT — FAMILY DOSSIER =================== */
.about {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
}
.about__visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--paper-warm-2);
  border: 1px solid var(--ink);
}
.about__visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.about__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 50%);
}
.about__visual-tag {
  position: absolute;
  bottom: 22px; left: 22px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  z-index: 2;
}
.about__visual-fig {
  position: absolute;
  top: 22px; right: 22px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  z-index: 2;
}

.about__copy h2 {
  margin: 18px 0 28px;
}
.about__copy p.body {
  font-family: var(--display);
  font-variation-settings: "opsz" 30, "SOFT" 100;
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
}

.about__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--ink);
}
.section--paper .about__pillars { border-top-color: var(--ink); }

.pillar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  padding-left: 22px;
}
.pillar::before {
  content: counter(pillar, decimal-leading-zero);
  counter-increment: pillar;
  position: absolute;
  left: 0; top: 0;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--green-deep);
}
.about__pillars { counter-reset: pillar; }
.pillar h4 {
  font-family: var(--display);
  font-variation-settings: "opsz" 60, "SOFT" 50;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.012em;
}
.pillar p {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .about { grid-template-columns: 1fr; gap: 56px; }
  .about__visual { aspect-ratio: 4/4; max-width: 560px; }
}

/* =================== FOOD STRIP =================== */
.food-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 0;
}
.food-tile {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--paper-warm);
  border: 1px solid var(--ink);
}
.food-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-2);
}
.food-tile:hover img { transform: scale(1.06); }
.food-tile__label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 12px 14px 10px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.food-tile__no {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--paper);
  background: rgba(0,0,0,0.55);
  padding: 4px 8px;
}

@media (max-width: 880px) { .food-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .food-strip { grid-template-columns: repeat(2, 1fr); } }

/* =================== FOOTER =================== */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 0 36px;
  font-family: var(--sans);
  font-size: 14px;
  position: relative;
  overflow: hidden;
}
.footer__giant {
  display: block;
  margin-bottom: 56px;
  line-height: 0;
}
.footer__giant img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.4);
}
@media (max-width: 540px) {
  .footer__giant img { max-width: 100%; }
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  padding: 56px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer__about {
  font-family: var(--display);
  font-variation-settings: "opsz" 30, "SOFT" 100;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255,255,255,0.82);
  max-width: 36ch;
}
.footer__meta {
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  line-height: 2;
}
.footer__meta em {
  font-family: var(--display);
  font-style: italic;
  text-transform: none;
  letter-spacing: -0.02em;
  color: var(--green-bright);
  font-size: 14px;
  font-variation-settings: "opsz" 60, "SOFT" 100;
}

.footer__col h5 {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 22px;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-family: var(--display);
  font-variation-settings: "opsz" 30, "SOFT" 50;
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.012em;
  transition: color .25s var(--ease), padding .25s var(--ease);
  display: inline-block;
}
.footer__col a:hover { color: var(--green-bright); padding-left: 6px; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.footer__legal { display: flex; gap: 28px; }
.footer__legal a { color: rgba(255,255,255,0.5); transition: color .25s var(--ease); }
.footer__legal a:hover { color: var(--green-bright); }

@media (max-width: 880px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__giant { font-size: clamp(64px, 22vw, 140px); }
}
@media (max-width: 540px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* =================== GARAGE GALLERY (napa.html) =================== */
.garage__head {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 28px;
}
.garage__head-rule { flex: 1; height: 1px; background: var(--ink); }
.garage__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.garage__tile {
  position: relative;
  overflow: hidden;
  background: var(--paper-warm);
  border: 1px solid var(--ink);
  display: block;
}
.garage__tile--lg {
  grid-column: span 2;
  grid-row: span 1;
  height: 380px;
}
.garage__tile img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-2);
}
.garage__tile:hover img { transform: scale(1.04); }
.garage__caption {
  position: absolute;
  z-index: 2;
  inset: auto 0 0 0;
  padding: 12px 18px;
  background: var(--paper);
  border-top: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 14px;
}
.garage__caption-fig { color: var(--green-deep); }
@media (max-width: 720px) {
  .garage__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .garage__tile--lg { grid-column: span 1; height: 280px; }
}

/* =================== LIQUOR WALL SECTION (homepage, mirrors Vapes) =================== */
.liquorwall {
  display: grid;
  grid-template-columns: 0.85fr 1.2fr;
  gap: clamp(24px, 3vw, 40px);
  align-items: stretch;
}
.liquorwall__hero {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--paper-warm);
  border: 1px solid var(--ink);
}
.liquorwall__hero img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.8s var(--ease-2);
}
.liquorwall__hero:hover img { transform: scale(1.04); }
.liquorwall__hero-tag {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(6px);
  padding: 6px 10px;
}
.liquorwall__age {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 2;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 60, "SOFT" 100;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  box-shadow: 0 8px 22px rgba(22,163,74,0.4);
}
.liquorwall__age small {
  font-family: var(--mono);
  font-style: normal;
  font-size: 8px;
  letter-spacing: 0.18em;
  display: block;
  margin-top: 2px;
}
.liquorwall__hero-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.liquorwall__hero-caption-no { color: var(--green-deep); }
.liquorwall__side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.liquorwall__small-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.liquorwall__small {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--paper-warm);
  border: 1px solid var(--ink);
}
.liquorwall__small img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-2);
}
.liquorwall__small:hover img { transform: scale(1.06); }
.liquorwall__small-no {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--paper);
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(4px);
  padding: 4px 8px;
}
.liquorwall__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  background: var(--paper-warm-2);
  border: 1px solid var(--ink);
}
.liquorwall__copy h3 {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-weight: 500;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.liquorwall__copy h3 em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--green);
}
.liquorwall__copy p {
  font-family: var(--display);
  font-variation-settings: "opsz" 30, "SOFT" 100;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
}
.liquorwall__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.liquorwall__chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: var(--paper);
  border: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  border-radius: 999px;
}
.liquorwall__warning {
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  line-height: 1.6;
}
@media (max-width: 880px) {
  .liquorwall { grid-template-columns: 1fr; }
}

/* =================== REWARDS POPUP MODAL =================== */
.rwd-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
  overflow-y: auto;
}
.rwd-modal.open {
  opacity: 1;
  pointer-events: auto;
}

/* Shell wraps one or two cards. Single-card layout falls through to .rwd-modal__card sizing below. */
.rwd-modal__shell {
  position: relative;
  width: 100%;
  max-width: 460px;
  transform: scale(0.94) translateY(16px);
  transition: transform .45s var(--ease-2);
}
.rwd-modal.open .rwd-modal__shell { transform: scale(1) translateY(0); }
.rwd-modal--dual .rwd-modal__shell { max-width: 960px; }

.rwd-modal__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.rwd-modal--dual .rwd-modal__grid {
  grid-template-columns: repeat(2, 1fr);
}

.rwd-modal__card {
  position: relative;
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
/* Legacy: when there is no shell (single-card layout), the card itself animates in */
.rwd-modal > .rwd-modal__card {
  max-width: 460px;
  transform: scale(0.94) translateY(16px);
  transition: transform .45s var(--ease-2);
}
.rwd-modal.open > .rwd-modal__card { transform: scale(1) translateY(0); }

.rwd-modal__close {
  position: absolute;
  top: -14px; right: -14px;
  z-index: 5;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--ink);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background .25s var(--ease), transform .25s var(--ease), color .25s var(--ease);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}
.rwd-modal > .rwd-modal__card > .rwd-modal__close {
  top: 16px; right: 16px;
  box-shadow: none;
}
.rwd-modal__close:hover { background: var(--green); color: var(--paper); border-color: var(--green); transform: rotate(90deg); }

.rwd-modal__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 40px 32px;
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
  min-height: 180px;
}
.rwd-modal--dual .rwd-modal__logo-wrap {
  padding: 32px 32px;
  min-height: 0;
  height: 210px;
}
.rwd-modal__logo {
  display: block;
  width: 100%;
  max-width: 240px;
  height: auto;
}
.rwd-modal__logo--bp { max-width: 220px; }
.rwd-modal--dual .rwd-modal__logo {
  width: auto;
  height: 140px;
  max-width: 220px;
  max-height: 140px;
}

.rwd-modal__body {
  padding: 26px 30px 30px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rwd-modal--dual .rwd-modal__body {
  padding: 22px 26px 26px;
}
.rwd-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 12px;
}
.rwd-modal__eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
}
.rwd-modal__title {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 12px;
}
.rwd-modal--dual .rwd-modal__title {
  font-size: clamp(24px, 2.4vw, 30px);
}
.rwd-modal__title em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--green);
}
.rwd-modal__copy {
  font-family: var(--display);
  font-variation-settings: "opsz" 30, "SOFT" 100;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink-soft);
  margin-bottom: 22px;
  max-width: 38ch;
  margin-left: auto;
  margin-right: auto;
}
.rwd-modal__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  padding: 0 28px;
  background: var(--green);
  color: var(--paper);
  border: 1px solid var(--green);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.rwd-modal__cta:hover { background: var(--green-deep); transform: translateY(-1px); }
.rwd-modal__dismiss {
  display: block;
  margin: 18px auto 0;
  background: none;
  border: none;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: color .25s var(--ease);
  padding: 10px 16px;
}
.rwd-modal__dismiss:hover { color: var(--paper); }
/* Legacy: dismiss inside a single-card body keeps original muted look */
.rwd-modal__body .rwd-modal__dismiss { color: var(--muted); margin-top: 14px; }
.rwd-modal__body .rwd-modal__dismiss:hover { color: var(--ink); }

@media (max-width: 880px) {
  .rwd-modal--dual .rwd-modal__shell { max-width: 460px; }
  .rwd-modal--dual .rwd-modal__grid { grid-template-columns: 1fr; }
  .rwd-modal--dual .rwd-modal__title { font-size: 26px; }
}

/* =================== ACCORDION INLINE PHOTOS =================== */
.cs__d-photo {
  margin-top: 14px;
  margin-bottom: 4px;
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--paper-warm);
  border: 1px solid var(--ink);
}
.cs__d-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-2);
}
.cs__d-photo:hover img { transform: scale(1.04); }
.cs__d-photo-caption {
  position: absolute;
  bottom: 10px; left: 10px;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--paper);
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  padding: 5px 9px;
  text-transform: uppercase;
}
.cs__d-photo-caption em {
  color: var(--green-bright);
  font-style: normal;
  margin-right: 4px;
}

/* =================== REWARDS QR CARD (rewards.html) =================== */
.qr-card {
  margin-top: clamp(40px, 5vw, 64px);
  padding: clamp(28px, 3vw, 44px);
  background: var(--paper-warm);
  border: 1px solid var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.qr-card__media {
  position: relative;
  border: 1px solid var(--ink);
  overflow: hidden;
  background: var(--paper);
}
.qr-card__media img {
  display: block;
  width: 100%;
  height: auto;
}
.qr-card__media-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--paper);
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  padding: 5px 9px;
  text-transform: uppercase;
}
.qr-card__copy h3 {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 18px;
}
.qr-card__copy h3 em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--green);
}
.qr-card__copy p {
  font-family: var(--display);
  font-variation-settings: "opsz" 30, "SOFT" 100;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 20px;
  max-width: 36ch;
}
.qr-card__loc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 18px;
}
.qr-card__loc::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
}
.qr-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 50px;
  padding: 0 26px;
  background: var(--green);
  color: var(--paper);
  border: 1px solid var(--green);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.qr-card__cta:hover { background: var(--green-deep); transform: translateY(-2px); }

@media (max-width: 760px) {
  .qr-card { grid-template-columns: 1fr; }
}

/* =================== AUTO CARE BOOKING (napa.html) =================== */
.book {
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid var(--ink);
}
.book__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.book__head-title {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 0.96;
  color: var(--ink);
  max-width: 18ch;
}
.book__head-title em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--green);
}
.book__head-aside {
  font-family: var(--display);
  font-variation-settings: "opsz" 30, "SOFT" 100;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--muted);
  max-width: 36ch;
}

.book__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.book__card {
  position: relative;
  padding: 32px 32px 28px;
  background: var(--paper);
  border: 1px solid var(--ink);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.book__card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(0,0,0,0.08); }
.book__card--coming { background: var(--paper-warm); }

.book__card-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.book__card-status::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
}
.book__card-status--open { color: var(--green-deep); }
.book__card-status--coming { color: var(--muted); }
.book__card-status--coming::before {
  background: transparent;
  border: 1.5px solid var(--muted);
}

.book__card-city {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.book__card-city-brand {
  padding: 3px 8px;
  background: var(--ink);
  color: var(--paper);
  font-size: 9.5px;
}
.book__card-name {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.book__card-name em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--green);
}
.book__card-addr {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.book__card-addr a {
  color: var(--ink);
  border-bottom: 1px dashed var(--muted);
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.book__card-addr a:hover { color: var(--green); border-color: var(--green); }

.book__card-cta-row {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line-cool);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.book__call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 64px;
  padding: 0 28px;
  background: var(--green);
  color: var(--paper);
  border: 1px solid var(--green);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(22,163,74,0.3);
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.book__call-btn:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(14,122,55,0.4);
}
.book__call-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  font-size: 16px;
  flex-shrink: 0;
}
.book__call-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  gap: 3px;
}
.book__call-btn-text strong {
  font-family: var(--display);
  font-variation-settings: "opsz" 60, "SOFT" 50;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.012em;
  text-transform: none;
}
.book__call-btn-text small {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  opacity: 0.85;
}

.book__notify-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 28px;
  background: transparent;
  color: var(--ink);
  border: 1px dashed var(--muted);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.book__notify-btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.book__hint {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-deep);
}
.book__hint--muted { color: var(--muted); }

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

/* =================== VAPES SECTION =================== */
.vapes {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: clamp(24px, 3vw, 40px);
  align-items: stretch;
}
.vapes__hero {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--paper-warm);
  border: 1px solid var(--ink);
}
.vapes__hero img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.8s var(--ease-2);
}
.vapes__hero:hover img { transform: scale(1.04); }
.vapes__hero-tag {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(6px);
  padding: 6px 10px;
}
.vapes__age {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 2;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 60, "SOFT" 100;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  box-shadow: 0 8px 22px rgba(22,163,74,0.4);
}
.vapes__age small {
  font-family: var(--mono);
  font-style: normal;
  font-size: 8px;
  letter-spacing: 0.18em;
  display: block;
  margin-top: 2px;
}
.vapes__hero-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.vapes__hero-caption-no { color: var(--green-deep); }

.vapes__side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.vapes__small-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.vapes__small {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--paper-warm);
  border: 1px solid var(--ink);
}
.vapes__small img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-2);
}
.vapes__small:hover img { transform: scale(1.06); }
.vapes__small-no {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--paper);
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(4px);
  padding: 4px 8px;
}

.vapes__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  background: var(--paper-warm-2);
  border: 1px solid var(--ink);
}
.vapes__copy h3 {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-weight: 500;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.vapes__copy h3 em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--green);
}
.vapes__copy p {
  font-family: var(--display);
  font-variation-settings: "opsz" 30, "SOFT" 100;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
}
.vapes__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.vapes__chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: var(--paper);
  border: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  border-radius: 999px;
}
.vapes__warning {
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  line-height: 1.6;
}

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

/* =================== CURSOR FOLLOWER =================== */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--green);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .15s var(--ease), width .25s var(--ease), height .25s var(--ease), background .25s var(--ease), opacity .25s;
  mix-blend-mode: difference;
  opacity: 0;
}
.cursor.visible { opacity: 1; }
.cursor.large { width: 64px; height: 64px; background: var(--paper); }
@media (hover: none), (max-width: 880px) { .cursor { display: none; } }
