/* ===========================================================
   Ollie's Eastside — Simply Great Pizza
   Design system + page styles
   =========================================================== */

/* ---------- TOKENS ---------- */
:root {
  /* brand — sampled from the official Ollies logo (terracotta + gold) */
  --ember:        #C2531C;     /* primary terracotta orange — matches actual logo */
  --ember-700:    #9A411A;
  --ember-900:    #6B2B0E;
  --ember-50:     #F8E6D9;
  --logo-orange:  #BC5526;     /* exact logo background */

  /* neutrals */
  --char:         #1F1B18;     /* warm near-black */
  --char-700:     #2E2722;
  --char-500:     #5A4F47;
  --char-300:     #8C8077;

  --bone:         #EFEDE4;     /* pale stone — distinct from Claude's warm tan, still grounded */
  --bone-200:     #E4E1D5;
  --bone-700:     #B6B3A6;
  --paper:        #FBFAF5;     /* card surface — slightly lifted from the canvas */
  --white:        #ffffff;

  /* accents */
  --olive:        #6B7250;     /* sage / herb */
  --honey:        #E8B142;     /* gold accent — matches logo's pizza-cutter mark */
  --terracotta:   #B5471F;

  /* semantic */
  --bg:           var(--bone);
  --bg-paper:    var(--paper);
  --ink:          var(--char);
  --ink-soft:    var(--char-500);
  --rule:         rgba(31, 27, 24, 0.12);
  --rule-soft:    rgba(31, 27, 24, 0.07);

  /* type */
  --serif: "Fraunces", "Georgia", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --script:"Caveat", "Brush Script MT", cursive;

  /* sizing */
  --container: 1180px;
  --gutter: clamp(20px, 4vw, 40px);
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 24px;

  /* depth */
  --shadow-sm: 0 1px 2px rgba(31,27,24,.06), 0 2px 4px rgba(31,27,24,.04);
  --shadow:    0 6px 20px rgba(31,27,24,.08), 0 2px 6px rgba(31,27,24,.04);
  --shadow-lg: 0 24px 60px rgba(31,27,24,.18), 0 8px 18px rgba(31,27,24,.08);

  /* motion */
  --easing: cubic-bezier(.2,.7,.2,1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
a { color: var(--ember); text-decoration: none; transition: color .18s var(--easing); }
a:hover { color: var(--ember-700); }
::selection { background: var(--ember); color: var(--paper); }

/* ---------- LAYOUT HELPERS ---------- */
.wrap { width: 100%; max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.grid { display: grid; gap: clamp(28px, 4vw, 56px); }
.skip {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip:focus {
  position: fixed; left: 12px; top: 12px; width: auto; height: auto; padding: 10px 14px;
  background: var(--char); color: var(--paper); border-radius: 8px; z-index: 9999;
}

/* ---------- TYPE ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 14px;
}
.h-display, .display {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 0 0 .4em;
  color: var(--char);
}
.h-display { font-size: clamp(34px, 5.2vw, 64px); }
.display   { font-size: clamp(40px, 7vw,  88px); }
.lede {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--char-500);
  max-width: 56ch;
}
.section-head { max-width: 760px; margin: 0 0 56px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-sub { color: var(--char-500); margin-top: -.2em; max-width: 60ch; }
.section-head--center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; min-height: 48px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: .01em;
  border: 1.5px solid transparent;
  transition: transform .18s var(--easing), background .18s var(--easing), color .18s var(--easing), border-color .18s var(--easing), box-shadow .18s var(--easing);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--ember); color: var(--paper); border-color: var(--ember); box-shadow: 0 8px 22px -8px rgba(217,83,30,.6); }
.btn--primary:hover { background: var(--ember-700); border-color: var(--ember-700); color: var(--paper); box-shadow: 0 10px 28px -6px rgba(217,83,30,.7); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--char); border-color: var(--char); }
.btn--ghost:hover { background: var(--char); color: var(--paper); }
.btn--ghost-light { background: rgba(255,255,255,.08); color: var(--paper); border-color: rgba(255,255,255,.6); backdrop-filter: blur(8px); }
.btn--ghost-light:hover { background: var(--paper); color: var(--char); border-color: var(--paper); }
.btn--cream { background: var(--paper); color: var(--char); border-color: var(--paper); }
.btn--cream:hover { background: var(--bone-200); color: var(--char); border-color: var(--bone-200); }
.btn--block { width: 100%; }
.btn--lg { padding: 18px 28px; min-height: 56px; font-size: 16px; }

/* ---------- ANNOUNCEMENT BAR ---------- */
.announce {
  background: var(--char);
  color: var(--bone);
  font-size: 13px;
  letter-spacing: .01em;
}
.announce__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 9px var(--gutter);
  display: flex; align-items: center; gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.announce a { color: var(--ember); font-weight: 600; }
.announce a:hover { color: var(--bone); }
.announce .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 0 rgba(217,83,30,.7);
  animation: pulse 1.8s infinite var(--easing);
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0   rgba(217,83,30,.7); }
  70%  { box-shadow: 0 0 0 10px rgba(217,83,30,0); }
  100% { box-shadow: 0 0 0 0   rgba(217,83,30,0); }
}

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(239, 237, 228, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .25s var(--easing), border-color .25s var(--easing), box-shadow .25s var(--easing);
}
.site-header.is-scrolled {
  background: rgba(239, 237, 228, 0.94);
  border-bottom-color: var(--rule-soft);
  box-shadow: 0 6px 24px -16px rgba(31,27,24,.18);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; padding-bottom: 16px;
  gap: 16px;
}

.brand {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--char);
  text-decoration: none;
  padding: 4px 0;
}
.brand:hover { color: var(--char); }

.brand__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  color: var(--ember);
  flex-shrink: 0;
  transition: transform .55s var(--easing), color .25s var(--easing);
  transform-origin: 38% 62%; /* pivot near the pizza-cutter wheel */
}
.brand:hover .brand__mark {
  color: var(--ember-700);
  transform: rotate(-18deg);
}

.brand__type { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  letter-spacing: -0.018em;
  color: var(--char);
  line-height: 1;
}
.brand__tag {
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--char-500);
  margin-top: 5px;
  font-weight: 600;
}

/* --- Footer logo (uses the actual full color brand asset) --- */
.footer__logo {
  display: inline-block;
  width: 140px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,.4);
  transition: transform .35s var(--easing), box-shadow .35s var(--easing);
}
.footer__logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -10px rgba(194,83,28,.5);
}
.footer__logo img { width: 100%; height: auto; display: block; }

/* --- Primary nav --- */
.primary-nav {
  display: flex; align-items: center; gap: 4px;
}
.primary-nav a:not(.btn) {
  color: var(--char);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: .005em;
  padding: 8px 14px;
  border-radius: 8px;
  position: relative;
  transition: color .2s var(--easing), background .2s var(--easing);
}
.primary-nav a:not(.btn)::after {
  content: ""; position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1.5px; background: var(--ember); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--easing);
}
.primary-nav a:not(.btn):hover { color: var(--ember); }
.primary-nav a:not(.btn):hover::after { transform: scaleX(1); }

/* CTA button */
.nav__cta {
  margin-left: 14px;
  padding: 10px 18px !important;
  min-height: 40px !important;
  font-size: 14px !important;
  position: relative;
  overflow: hidden;
}
.nav__cta svg {
  transition: transform .28s var(--easing);
}
.nav__cta:hover svg { transform: translateX(3px); }

/* ============================================================
   MOBILE MENU — hamburger / backdrop / drawer
   These live at body root (NOT inside .site-header) so they
   escape the header's stacking context. Each gets a giant z-index
   that competes at the page root, not inside any other context.
   ============================================================ */

/* Default: HIDE all mobile-menu elements on desktop */
.m-toggle,
.m-backdrop,
.m-drawer { display: none; }

@media (max-width: 880px) {
  /* Hide the desktop nav */
  .primary-nav { display: none !important; }

  /* --- HAMBURGER BUTTON --- */
  .m-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;

    position: fixed;
    /* `top` is set dynamically by JS so it stays centered on the header
       whether the announcement bar is in view or scrolled past. */
    top: 14px;
    right: 14px;
    width: 48px;
    height: 48px;

    background: var(--paper);
    border: 1px solid var(--rule-soft);
    border-radius: 12px;
    box-shadow: 0 6px 18px -6px rgba(0,0,0,.25);

    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;

    z-index: 10001;        /* above EVERYTHING */
    transition: background .2s var(--easing);
  }
  .m-toggle:active { background: var(--bone-200); }

  .m-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--char);
    border-radius: 2px;
    transform-origin: center;
    transition: transform .3s var(--easing), opacity .2s var(--easing);
  }
  .m-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .m-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .m-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* --- BACKDROP --- */
  .m-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(31, 27, 24, 0.55);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);

    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;

    z-index: 9998;
    transition: opacity .3s var(--easing), visibility 0s linear .3s;
  }

  /* --- DRAWER --- */
  .m-drawer {
    display: flex;
    flex-direction: column;

    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 86vw);

    background: var(--paper);
    box-shadow: -16px 0 48px -12px rgba(31,27,24,.3);

    transform: translateX(105%);
    transition: transform .42s var(--easing);

    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;

    padding: 92px 24px 32px;

    z-index: 9999;
  }

  .m-drawer__head {
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--ember);
    margin-bottom: 6px;
  }

  .m-drawer__nav {
    display: flex;
    flex-direction: column;
  }

  .m-drawer__nav a {
    display: block;
    padding: 18px 6px;
    font-family: var(--sans);
    font-size: 18px;
    font-weight: 500;
    color: var(--char);
    text-decoration: none;
    border-bottom: 1px solid var(--rule-soft);
    transition: color .2s var(--easing), padding-left .2s var(--easing), background .2s var(--easing);
    -webkit-tap-highlight-color: transparent;
  }
  .m-drawer__nav a:active {
    color: var(--ember);
    padding-left: 14px;
    background: rgba(194, 83, 28, .04);
  }

  .m-drawer__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin-top: 28px;
    padding: 16px 22px;
    min-height: 52px;

    background: var(--ember);
    color: var(--paper);
    text-decoration: none;
    border-radius: 999px;

    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .01em;

    box-shadow: 0 8px 22px -8px rgba(194,83,28,.6);
    -webkit-tap-highlight-color: transparent;
    transition: background .2s var(--easing);
  }
  .m-drawer__cta:active { background: var(--ember-700); color: var(--paper); }

  /* --- OPEN STATE --- */
  body.menu-open { overflow: hidden; touch-action: none; }
  body.menu-open .m-backdrop {
    opacity: 1;
    visibility: visible;
    transition: opacity .3s var(--easing), visibility 0s linear 0s;
  }
  body.menu-open .m-drawer { transform: translateX(0); }
}

/* ---------- HERO (editorial split) ---------- */
.hero {
  position: relative;
  background: var(--bg);
  isolation: isolate;
  overflow: hidden;
}

/* Soft warm wash + faint grain so the cream side feels handmade, not flat */
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 50% at 0% 100%, rgba(232, 177, 66, .14) 0%, rgba(232, 177, 66, 0) 65%),
    radial-gradient(40% 40% at 100% 0%, rgba(194, 83, 28, .08) 0%, rgba(194, 83, 28, 0) 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative; z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 120px) var(--gutter) clamp(64px, 9vw, 130px);
  display: grid;
  gap: clamp(40px, 6vw, 80px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 940px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(48px, 6vw, 96px);
  }
}

/* --- LEFT: TYPE --- */
.hero__copy { max-width: 580px; }

.hero .eyebrow {
  color: var(--char-500);
  display: inline-flex; align-items: center; gap: 10px;
}
.hero .eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 0 rgba(194,83,28,.55);
  animation: pulse 1.8s infinite var(--easing);
}

.hero .display {
  font-size: clamp(38px, 6vw, 84px);
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  font-weight: 350;
  line-height: 1.02;
  color: var(--char);
  margin: 4px 0 28px;
  letter-spacing: -0.022em;
  text-wrap: balance;       /* let modern browsers balance the line-wrap */
}
.display__accent {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--ember);
  font-weight: 400;
}

.hero .lede {
  color: var(--char-500);
  max-width: 46ch;
  font-size: clamp(17px, 1.4vw, 20px);
  margin: 0 0 36px;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__stats {
  list-style: none; padding: 0; margin: 48px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 28px);
  border-top: 1px solid var(--rule);
  padding-top: 28px;
}
.hero__stats li { display: flex; flex-direction: column; gap: 4px; }
.hero__stat-num {
  font-family: var(--serif); font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1;
  color: var(--char);
  letter-spacing: -.02em;
}
.hero__stat-num .num {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  min-width: 1.4em;
}
.hero__stat-num span:not(.num) {
  font-size: .42em; color: var(--ember);
  margin-left: 2px; font-weight: 500;
  letter-spacing: 0;
}
.hero__stat-label {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--char-500); font-weight: 600;
  line-height: 1.3;
}

/* Mobile: tighter stats, smaller labels, give all 3 the same minimum height */
@media (max-width: 600px) {
  .hero__stats { gap: 10px; padding-top: 22px; }
  .hero__stat-num { font-size: 30px; }
  .hero__stat-label {
    font-size: 10.5px;
    letter-spacing: .08em;
    min-height: 2.4em;       /* keep all 3 cards visually aligned even if one wraps */
  }
}

/* --- RIGHT: PHOTO --- */
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 540px;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 940px) {
  .hero__visual { aspect-ratio: auto; height: 100%; min-height: 560px; max-width: none; margin: 0; }
}

.hero__photo {
  position: relative;
  margin: 0;
  width: 100%; height: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 30px 80px -30px rgba(31,27,24,.45),
    0 12px 30px -8px rgba(31,27,24,.18);
  background: var(--char);
  isolation: isolate;
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.22); /* zoom past the white edges so the pizza fills the frame */
  transition: transform 1.4s var(--easing);
}
.hero__photo:hover img { transform: scale(1.27); }

/* Subtle bottom-up gradient so the caption is always readable */
.hero__photo::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 45%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}

.hero__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 24px 22px;
  color: var(--paper);
  display: flex; flex-direction: column; gap: 3px;
  z-index: 1;
}
.hero__caption-eyebrow {
  font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700; color: var(--honey);
  margin-bottom: 4px;
}
.hero__caption-name {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -.01em;
  line-height: 1.1;
}
.hero__caption-detail {
  font-size: 13px; color: rgba(247,241,230,.85);
  font-style: italic;
  letter-spacing: .02em;
}

/* Circular "BOOK YOUR EVENT" badge — floats off the top-left of the photo, links to contact */
.hero__badge {
  position: absolute;
  top: -28px; left: -28px;
  width: 124px; height: 124px;
  background: var(--ember);
  color: var(--paper);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 32px -10px rgba(194,83,28,.55);
  z-index: 2;
  text-decoration: none;
  transition: transform .35s var(--easing), box-shadow .35s var(--easing), background .35s var(--easing);
}
.hero__badge:hover {
  background: var(--ember-700);
  transform: scale(1.08);
  box-shadow: 0 22px 42px -10px rgba(194,83,28,.7);
  color: var(--paper);
}
.hero__badge:active { transform: scale(1.04); }

.hero__badge-ring {
  position: absolute; inset: 0; margin: auto;
  animation: spin 22s linear infinite;
}
.hero__badge:hover .hero__badge-ring { animation-duration: 7s; }

.hero__badge-arrow {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--honey);
  color: var(--char);
  transition: transform .35s var(--easing);
}
.hero__badge:hover .hero__badge-arrow { transform: translateX(3px) rotate(-12deg); }
.hero__badge-arrow svg { transition: transform .35s var(--easing); }

@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 600px) {
  .hero__badge {
    width: 96px; height: 96px;
    top: -20px; left: auto; right: -8px;
  }
  .hero__badge-ring { width: 96px; height: 96px; }
  .hero__badge-arrow { width: 36px; height: 36px; }
  .hero__badge-arrow svg { width: 18px; height: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__badge-ring,
  .hero__badge:hover .hero__badge-ring { animation: none; }
  .hero__badge,
  .hero__badge:hover { transform: none; }
}

/* On small screens, image goes ABOVE the type for instant visual hook */
@media (max-width: 939px) {
  .hero__inner > .hero__copy { order: 2; }
  .hero__inner > .hero__visual { order: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__badge,
  .hero__badge-mark { animation: none; }
}

/* ---------- TRUST STRIP ---------- */
.trust { background: var(--char); color: var(--bone); padding: 18px 0; }
.trust__row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px 36px;
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(247, 241, 230, .6);
}
/* Show the verbose city list at >=720px, the umbrella phrase below that. */
.trust__row--compact { display: none; }
@media (max-width: 719px) {
  .trust__row--wide    { display: none; }
  .trust__row--compact { display: flex; }
}
.trust__row span:first-child { color: var(--ember); font-weight: 700; letter-spacing: .22em; }
.trust__logo {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 16px; text-transform: none; letter-spacing: 0;
  color: rgba(247, 241, 230, .82);
}
.trust__logo--soft {
  color: rgba(247, 241, 230, .5);
  font-style: normal;
  font-size: 14px;
  letter-spacing: .04em;
}

/* ---------- STORY ---------- */
.story { padding: clamp(80px, 12vw, 140px) 0; }
.story__grid {
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 880px) {
  .story__grid { grid-template-columns: 1.05fr 1fr; }
}
.story__copy p { color: var(--char-500); font-size: 17px; line-height: 1.65; max-width: 56ch; }
.story__copy em { color: var(--ember); font-style: normal; font-weight: 600; }
.signature {
  font-family: var(--script);
  font-size: 28px;
  color: var(--char) !important;
  margin-top: 20px !important;
}
.story__media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.story__media img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.story__media figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 18px 22px;
  font-size: 13px;
  color: var(--paper);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.7) 100%);
  font-style: italic;
}

/* ---------- EVENT TYPES (cards) ---------- */
.events { padding: clamp(70px, 10vw, 120px) 0; background: var(--paper); }
.cards {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--easing), box-shadow .35s var(--easing);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card__img { aspect-ratio: 4/3; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--easing); }
.card:hover .card__img img { transform: scale(1.06); }
.card__body { padding: 22px 24px 26px; }
.card__body h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 22px;
  margin: 0 0 6px;
  color: var(--char);
  letter-spacing: -.01em;
}
.card__body p { margin: 0; color: var(--char-500); font-size: 15px; line-height: 1.55; }

/* ---------- HOW IT WORKS ---------- */
.how {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--char);
  color: var(--bone);
  position: relative;
}
.how::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 50% 0%, rgba(217,83,30,.18) 0%, rgba(217,83,30,0) 60%);
  pointer-events: none;
}
.how .h-display { color: var(--paper); }
.how .eyebrow { color: var(--ember); }
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.steps li {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(247,241,230,.12);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
  transition: background .25s var(--easing), border-color .25s var(--easing), transform .25s var(--easing);
}
.steps li:hover { background: rgba(255,255,255,.07); border-color: rgba(247,241,230,.22); transform: translateY(-3px); }
.steps__num {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 42px;
  color: var(--honey);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.steps li h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 22px;
  margin: 0 0 6px;
  color: var(--paper);
}
.steps li p { margin: 0; color: rgba(247,241,230,.72); font-size: 15px; line-height: 1.55; }

/* ---------- MENU ---------- */
.menu { padding: clamp(80px, 12vw, 140px) 0; }
.menu__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(44px, 5vw, 72px);
}
@media (min-width: 880px) {
  .menu__grid { grid-template-columns: 1fr 1fr; }
  .menu__col--full { grid-column: 1 / -1; }
}
.menu__head { margin-bottom: 28px; padding-bottom: 18px; border-bottom: 2px solid var(--char); }
.menu__head h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(28px, 3vw, 38px);
  margin: 0;
  color: var(--char);
  letter-spacing: -.015em;
}
.menu__sub {
  display: block;
  font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ember); font-weight: 600;
  margin-top: 8px;
}
.menu__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 22px; }
.menu__list--two { display: grid; grid-template-columns: 1fr; gap: 22px 48px; }
@media (min-width: 720px) { .menu__list--two { grid-template-columns: 1fr 1fr; } }
.menu__list li {
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--rule);
}
.menu__list li:last-child { border-bottom: 0; padding-bottom: 0; }
.menu__list--two li:nth-last-child(2):nth-child(odd) { border-bottom: 0; padding-bottom: 0; }
.menu__list h4 {
  font-family: var(--serif); font-weight: 500;
  font-size: 20px;
  margin: 0 0 6px;
  color: var(--char);
  letter-spacing: -.005em;
}
.menu__list p { margin: 0; color: var(--char-500); font-size: 14.5px; line-height: 1.55; }

.tag {
  display: inline-block; vertical-align: middle;
  font-family: var(--sans); font-size: 9.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--olive); background: rgba(107,114,80,.14);
  padding: 3px 8px; border-radius: 999px;
  margin-left: 6px;
}
.menu__foot {
  text-align: center; margin-top: 48px;
  color: var(--char-500); font-size: 14px;
  font-style: italic;
}

/* ---------- WHAT'S INCLUDED ---------- */
.included {
  padding: clamp(80px, 12vw, 140px) 0;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(232, 177, 66, .10) 0%, var(--bg) 70%);
}

.included__grid {
  list-style: none; padding: 0; margin: 56px 0 0;
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .included__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .included__grid { grid-template-columns: repeat(3, 1fr); } }

.included__grid li {
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius-lg);
  padding: 32px 30px 30px;
  display: flex; flex-direction: column; gap: 8px;
  transition: transform .25s var(--easing), box-shadow .25s var(--easing), border-color .25s var(--easing);
  box-shadow: var(--shadow-sm);
}
.included__grid li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(194, 83, 28, .25);
}

.included__num {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
  font-size: 26px;
  color: var(--ember);
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}

.included__grid h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 22px;
  margin: 0 0 4px;
  color: var(--char);
  letter-spacing: -.01em;
}

.included__grid p {
  margin: 0;
  color: var(--char-500);
  font-size: 14.5px;
  line-height: 1.55;
}

.included__cta {
  margin-top: 56px;
  padding: 40px clamp(24px, 4vw, 48px);
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--rule-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}
.included__cta p {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--char);
  max-width: 56ch;
  letter-spacing: -.005em;
}
.included__cta .btn { flex-shrink: 0; }
@media (max-width: 640px) {
  .included__cta { flex-direction: column; align-items: flex-start; text-align: left; }
  .included__cta .btn { align-self: stretch; }
}

/* ---------- TESTIMONIAL SLIDESHOW ---------- */
.quote {
  background: var(--ember);
  color: var(--paper);
  padding: clamp(70px, 10vw, 120px) 0;
}

.quotes {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quotes__mark {
  color: rgba(255,252,246,.4);
  margin: 0 auto 20px;
  display: block;
}

.quotes__track {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.quotes__track::-webkit-scrollbar { display: none; }

.quotes__slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  padding: 0 clamp(8px, 3vw, 24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
}

.quotes__slide p {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.42;
  margin: 0 auto 24px;
  letter-spacing: -.005em;
  max-width: 56ch;
  text-wrap: pretty;
}

.quotes__slide footer {
  font-size: 14px;
  letter-spacing: .04em;
  opacity: .9;
}
.quotes__slide footer strong { font-weight: 600; }

.quotes__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.quotes__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,252,246,.32);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: transform .25s var(--easing), background .25s var(--easing);
  -webkit-tap-highlight-color: transparent;
}
.quotes__dot:hover { background: rgba(255,252,246,.65); }
.quotes__dot[aria-current="true"] {
  background: var(--paper);
  transform: scale(1.45);
}
.quotes__dot:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .quotes__track { scroll-behavior: auto; }
}

/* ---------- GALLERY ---------- */
.gallery { padding: clamp(80px, 12vw, 140px) 0; }
.masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
@media (min-width: 720px) {
  .masonry { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: 18px; }
}
@media (min-width: 1080px) {
  .masonry { grid-template-columns: repeat(4, 1fr); }
}
.masonry__item {
  margin: 0; overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.masonry__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--easing); }
.masonry__item:hover img { transform: scale(1.06); }
.masonry__item--tall { grid-row: span 2; }
.masonry__item--wide { grid-column: span 2; }
@media (max-width: 719px) {
  .masonry__item--wide { grid-column: span 2; }
  .masonry__item--tall { grid-row: span 2; }
}

.gallery__foot {
  text-align: center; margin-top: 36px;
  color: var(--char-500); font-size: 15px;
}

/* ---------- Action carousel — lives inside the gallery masonry as one tall slot ---------- */
.masonry__item--video { background: #000; }
.masonry__item--video:hover img { transform: none; }
.action__stage { position: absolute; inset: 0; }
.action__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .35s var(--easing);
  pointer-events: none;
}
.action__video.is-current {
  opacity: 1;
  pointer-events: auto;
}
.action__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 0;
  background: rgba(31,27,24,.6);
  color: var(--paper);
  font-size: 20px;
  font-family: var(--sans);
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s var(--easing), transform .2s var(--easing), opacity .2s var(--easing);
  -webkit-tap-highlight-color: transparent;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0;
  z-index: 2;
  opacity: .85;
}
.action__nav:hover { background: var(--char); opacity: 1; transform: translateY(-50%) scale(1.08); }
.action__nav:focus-visible { outline: 2px solid var(--ember); outline-offset: 3px; opacity: 1; }
.action__nav--prev { left: 8px; }
.action__nav--next { right: 8px; }
.action__dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(31,27,24,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2;
}
.action__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,252,246,.45);
  border: 0; padding: 0;
  cursor: pointer;
  transition: transform .25s var(--easing), background .25s var(--easing);
  -webkit-tap-highlight-color: transparent;
}
.action__dot:hover { background: rgba(255,252,246,.75); }
.action__dot[aria-current="true"] {
  background: var(--paper);
  transform: scale(1.45);
}
.action__dot:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 3px;
}

/* ---------- CONTACT ---------- */
.contact {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--paper);
}
.contact__grid {
  grid-template-columns: 1fr;
}
@media (min-width: 920px) {
  .contact__grid { grid-template-columns: 0.9fr 1.1fr; }
}
.contact__copy p { color: var(--char-500); max-width: 50ch; }

.contact__facts {
  list-style: none; padding: 0; margin: 36px 0 0;
  display: flex; flex-direction: column; gap: 18px;
}
.contact__facts li {
  display: flex; flex-direction: column; gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule-soft);
}
.contact__facts li:last-child { border-bottom: 0; padding-bottom: 0; }
.contact__label {
  font-size: 11.5px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ember);
}
.contact__facts span:not(.contact__label) { font-size: 15.5px; color: var(--char); }

/* ---------- FORM ---------- */
.form {
  background: var(--bg);
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--rule-soft);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 18px;
}
.form__row { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 580px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form label {
  display: flex; flex-direction: column; gap: 7px;
  font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--char-500);
}
.form__full { display: flex; flex-direction: column; gap: 7px; }
.form input, .form select, .form textarea {
  padding: 14px 16px;
  background: var(--paper);
  border: 1.5px solid var(--rule);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 15.5px; font-weight: 400;
  color: var(--char);
  letter-spacing: 0;
  text-transform: none;
  transition: border-color .18s var(--easing), box-shadow .18s var(--easing);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 0;
  border-color: var(--ember);
  box-shadow: 0 0 0 4px rgba(217,83,30,.12);
}
.form textarea { resize: vertical; min-height: 110px; }
.form .req { color: var(--ember); margin-left: 2px; }
.form__hint {
  margin-left: 6px;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--char-500);
  opacity: .75;
}
.form__note {
  font-size: 12.5px; color: var(--char-500); margin: 4px 0 0;
  letter-spacing: 0; text-transform: none; font-weight: 400;
}
.form .btn { align-self: flex-start; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--char);
  color: rgba(247,241,230,.8);
  padding: 72px 0 28px;
}
.footer__grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer__blurb { margin-top: 18px; max-width: 36ch; font-size: 14.5px; line-height: 1.55; color: rgba(247,241,230,.72); }
.site-footer h4 {
  font-family: var(--serif); font-weight: 500;
  font-size: 16px;
  margin: 0 0 14px;
  color: var(--paper);
  letter-spacing: 0;
}
.site-footer p { margin: 0; font-size: 14.5px; line-height: 1.7; }
.site-footer a { color: rgba(247,241,230,.85); }
.site-footer a:hover { color: var(--ember); }

.footer__law {
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between;
  margin-top: 56px; padding-top: 22px;
  border-top: 1px solid rgba(247,241,230,.1);
  font-size: 12.5px; color: rgba(247,241,230,.5);
}

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%, 30px);
  background: var(--char);
  color: var(--paper);
  padding: 14px 22px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  font-size: 14.5px; font-weight: 500;
  z-index: 200;
  opacity: 0;
  transition: transform .35s var(--easing), opacity .35s var(--easing);
  border: 1px solid rgba(247,241,230,.14);
  max-width: 90vw;
}
.toast[data-show="true"] { opacity: 1; transform: translate(-50%, 0); }

/* ---------- REVEAL ON SCROLL ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--easing), transform .8s var(--easing); }
.reveal.in   { opacity: 1; transform: none; }

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