@import url("fonts.css");

/* =========================================================================
   OASIS CATERING at Traditions Eatery
   Design tokens. Change these first; everything else follows.
   ========================================================================= */

:root {
  color-scheme: light;      /* keeps native date pickers, scrollbars in step */

  /* --- light palette (the default) --- */
  --ground:      #F2F4F0;   /* page ground: bone with a green cast */
  --ground-deep: #E7EAE4;   /* recessed bands */
  --panel:       #FBFCFA;   /* cards, ticket, form */
  --ink:         #16211D;   /* near-black, green cast */
  --ink-soft:    #55635C;   /* secondary text */
  --ink-faint:   #8A968F;   /* captions, meta */
  --rule:        #D3DBD4;   /* hairlines */
  --rule-strong: #B9C4BC;
  --accent:      #8F6220;   /* brass */
  --accent-ink:  #FBFCFA;   /* text on brass */
  --accent-wash: #F0E7D7;   /* brass at 8% */
  --clay:        #973926;   /* clay red: warnings, "limited" */
  --clay-wash:   #F6E4DE;
  --green:       #2F6A4F;   /* semantic ok */
  --shadow:      0 1px 0 rgba(22, 33, 29, .04), 0 12px 32px -20px rgba(22, 33, 29, .35);

  /* --- type --- */
  --display: "Bodoni Moda", "Bodoni MT", Didot, "Palatino Linotype", Georgia, serif;
  --body: "Archivo", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "Cascadia Mono", "SF Mono", Consolas, "Liberation Mono", monospace;

  --fs-hero: clamp(2.6rem, 6.6vw, 5rem);
  --fs-h2:   clamp(1.9rem, 3.6vw, 2.9rem);
  --fs-h3:   clamp(1.25rem, 1.8vw, 1.5rem);
  --fs-lead: clamp(1.05rem, 1.5vw, 1.25rem);
  --fs-body: 1.0625rem;
  --fs-sm:   .9375rem;
  --fs-xs:   .75rem;

  /* --- space --- */
  --s1: .375rem;
  --s2: .75rem;
  --s3: 1.125rem;
  --s4: 1.75rem;
  --s5: 2.5rem;
  --s6: 3.5rem;
  --s7: clamp(4rem, 9vw, 7rem);

  --maxw: 74rem;
  --radius: 3px;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --ground:      #101815;
    --ground-deep: #0B120F;
    --panel:       #18221E;
    --ink:         #E9EEE8;
    --ink-soft:    #A3B0A8;
    --ink-faint:   #77857D;
    --rule:        #2A3730;
    --rule-strong: #3C4C43;
    --accent:      #DFAE5E;
    --accent-ink:  #121A16;
    --accent-wash: #241E13;
    --clay:        #E08468;
    --clay-wash:   #2A1811;
    --green:       #6FBF95;
    --shadow:      0 1px 0 rgba(0, 0, 0, .3), 0 16px 40px -24px rgba(0, 0, 0, .9);
  }
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --ground:      #101815;
  --ground-deep: #0B120F;
  --panel:       #18221E;
  --ink:         #E9EEE8;
  --ink-soft:    #A3B0A8;
  --ink-faint:   #77857D;
  --rule:        #2A3730;
  --rule-strong: #3C4C43;
  --accent:      #DFAE5E;
  --accent-ink:  #121A16;
  --accent-wash: #241E13;
  --clay:        #E08468;
  --clay-wash:   #2A1811;
  --green:       #6FBF95;
  --shadow:      0 1px 0 rgba(0, 0, 0, .3), 0 16px 40px -24px rgba(0, 0, 0, .9);
}

/* =========================================================================
   Base
   ========================================================================= */

*, *::before, *::after { box-sizing: border-box; }

/* Flex/grid display values must never beat the hidden attribute. */
[hidden] { display: none !important; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--fs-body);
  line-height: 1.62;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.012em;
  text-wrap: balance;
  margin: 0;
}

h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.18; }

p { margin: 0; max-width: 62ch; }
a { color: inherit; }

img, svg { max-width: 100%; display: block; }

hr {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 1px;
}

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

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--ground);
  padding: var(--s2) var(--s3);
  z-index: 100;
}
.skip:focus { left: var(--s3); top: var(--s3); }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.125rem, 4vw, 2.5rem);
}

/* Section rhythm — one rule owns vertical padding so nothing fights it. */
.section {
  padding-block: var(--s7);
  border-top: 1px solid var(--rule);
  position: relative;
}
.section--flush { border-top: 0; }
.section--deep { background: var(--ground-deep); }

/* Order-sheet spine: mono label parked in a left rail, content to the right. */
.rail { display: grid; gap: var(--s4); }
@media (min-width: 62rem) {
  .rail {
    grid-template-columns: 11rem minmax(0, 1fr);
    gap: var(--s6);
    align-items: start;
  }
}

.eyebrow {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: flex;
  flex-direction: column;
  align-items: flex-start;   /* chips size to their text, not the rail */
  gap: var(--s1);
  margin: 0;
}
.eyebrow b { color: var(--ink); font-weight: 500; letter-spacing: .1em; }
.eyebrow .tick { color: var(--accent); }

.tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: .6875rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2em .5em;
  border: 1px solid var(--rule-strong);
  color: var(--ink-faint);
  border-radius: 2px;
  white-space: nowrap;
}
.tag--todo { color: var(--clay); border-color: var(--clay); background: var(--clay-wash); }
.tag--ok { color: var(--green); border-color: currentColor; }

.lead { font-size: var(--fs-lead); color: var(--ink-soft); line-height: 1.55; }
.small { font-size: var(--fs-sm); color: var(--ink-soft); }
.meta {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.num { font-variant-numeric: tabular-nums; }

.stack { display: flex; flex-direction: column; gap: var(--s3); }
.stack--lg { gap: var(--s4); }
.row { display: flex; flex-wrap: wrap; gap: var(--s2); align-items: center; }

/* =========================================================================
   Buttons
   ========================================================================= */

.btn {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: var(--rule-strong);
  appearance: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-family: var(--mono);
  font-size: .8125rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .95em 1.4em;
  border: 1px solid var(--btn-bd);
  border-radius: var(--radius);
  background: var(--btn-bg);
  color: var(--btn-fg);
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-1px); border-color: var(--accent); color: var(--accent); }
.btn:active { transform: translateY(0); }

.btn--solid {
  --btn-bg: var(--accent);
  --btn-fg: var(--accent-ink);
  --btn-bd: var(--accent);
}
.btn--solid:hover {
  --btn-bg: var(--ink);
  --btn-bd: var(--ink);
  --btn-fg: var(--ground);
  color: var(--ground);
}
.btn--ink {
  --btn-bg: var(--ink);
  --btn-fg: var(--ground);
  --btn-bd: var(--ink);
}
.btn--ink:hover { --btn-bg: var(--accent); --btn-bd: var(--accent); --btn-fg: var(--accent-ink); color: var(--accent-ink); }
.btn--wide { width: 100%; }
.btn--sm { padding: .6em 1em; font-size: .75rem; }

.link {
  font-family: var(--mono);
  font-size: .8125rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 2px;
  color: var(--ink);
  overflow-wrap: anywhere;
}
.link:hover { color: var(--accent); border-color: var(--accent); }
.link--mail { text-transform: none; letter-spacing: .02em; }

code {
  font-family: var(--mono);
  font-size: .85em;
  background: var(--ground-deep);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: .08em .3em;
}

/* =========================================================================
   Header
   ========================================================================= */

.hdr {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--ground) 88%, transparent);
  backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background-color .2s ease;
}
.hdr[data-stuck="true"] { border-bottom-color: var(--rule); }

.hdr__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  min-height: 4.5rem;
}

.mark {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
  line-height: 1;
}
.mark b {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: .01em;
}
.mark span {
  font-family: var(--mono);
  font-size: .5625rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.nav { display: none; }
@media (min-width: 62rem) {
  .nav { display: flex; align-items: center; gap: var(--s4); }
}
.nav a {
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  padding-block: .35em;
  border-bottom: 1px solid transparent;
}
.nav a:hover { color: var(--ink); border-bottom-color: var(--accent); }

.hdr__act { display: flex; align-items: center; gap: var(--s2); }
.hdr__act .btn { padding: .7em 1.05em; }
@media (max-width: 45rem) { .hdr__act .btn--solid { display: none; } }

.iconbtn {
  appearance: none;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius);
  color: var(--ink);
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  padding: 0;
  transition: border-color .18s ease, color .18s ease;
}
.iconbtn:hover { border-color: var(--accent); color: var(--accent); }
.iconbtn svg { width: 1.05rem; height: 1.05rem; }
.iconbtn[data-nav] { display: grid; }
@media (min-width: 62rem) { .iconbtn[data-nav] { display: none; } }

.theme__sun { display: none; }
:root[data-theme="dark"] .theme__sun { display: block; }
:root[data-theme="dark"] .theme__moon { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme__sun { display: block; }
  :root:not([data-theme="light"]) .theme__moon { display: none; }
}

/* Mobile nav sheet */
.sheet {
  display: none;
  border-top: 1px solid var(--rule);
  background: var(--panel);
}
.sheet[data-open="true"] { display: block; }
@media (min-width: 62rem) { .sheet { display: none !important; } }
.sheet nav { display: flex; flex-direction: column; padding-block: var(--s3); }
.sheet a {
  font-family: var(--mono);
  font-size: .8125rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .85em 0;
  border-bottom: 1px solid var(--rule);
}
.sheet a:last-child { border-bottom: 0; }

/* =========================================================================
   Hero
   ========================================================================= */

.hero { padding-block: clamp(3rem, 7vw, 5.5rem) var(--s7); }
.hero__grid { display: grid; gap: var(--s6); }
@media (min-width: 62rem) {
  .hero__grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: var(--s6); align-items: start; }
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero__claims {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.hero__claims li {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: var(--s2);
  align-items: baseline;
  padding-block: .8rem;
  border-bottom: 1px solid var(--rule);
  font-size: var(--fs-sm);
}
.hero__claims i {
  font-family: var(--mono);
  font-style: normal;
  font-size: var(--fs-xs);
  letter-spacing: .06em;
  color: var(--accent);
}

/* Reveal-on-scroll. Gated on .js so the page is fully readable without
   JavaScript — never hide content the script has to come back and un-hide. */
.js .rise { opacity: 0; transform: translateY(14px); }
.js .rise[data-in="true"] { opacity: 1; transform: none; transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.js .rise[data-d="1"][data-in="true"] { transition-delay: .06s; }
.js .rise[data-d="2"][data-in="true"] { transition-delay: .14s; }
.js .rise[data-d="3"][data-in="true"] { transition-delay: .22s; }
.js .rise[data-d="4"][data-in="true"] { transition-delay: .3s; }

/* =========================================================================
   The ticket — live quote estimator (the one loud object on the page)
   ========================================================================= */

.ticket {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--s4) var(--s4) var(--s3);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
/* Torn perforation, top and bottom: scallops punched out in the page ground,
   each one outlined so the edge still reads on a low-contrast panel. */
.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 9px;
  background:
    radial-gradient(circle at 7px 0, transparent 0 4.6px, var(--rule-strong) 4.6px 5.5px, transparent 5.6px) 0 0 / 14px 9px repeat-x,
    radial-gradient(circle at 7px 0, var(--ground) 0 5px, transparent 5.1px) 0 0 / 14px 9px repeat-x;
  pointer-events: none;
}
.ticket::before { top: -1px; }
.ticket::after { bottom: -1px; transform: scaleY(-1); }

.ticket__hd {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s2);
  padding-bottom: var(--s2);
  border-bottom: 1px dashed var(--rule-strong);
}
.ticket__hd h2 {
  font-size: 1.35rem;
  letter-spacing: 0;
}

.field { display: flex; flex-direction: column; gap: .4rem; }
.field > label,
.fieldset > legend {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0;
}
.field__row { display: flex; align-items: baseline; justify-content: space-between; gap: var(--s2); }

input[type="text"], input[type="email"], input[type="tel"], input[type="date"],
input[type="time"], input[type="number"], select, textarea {
  font: inherit;
  font-size: var(--fs-sm);
  color: var(--ink);
  background: var(--ground);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius);
  padding: .68em .7em;
  width: 100%;
  min-width: 0;
}
select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-faint) 50%),
                    linear-gradient(135deg, var(--ink-faint) 50%, transparent 50%);
  background-position: calc(100% - 1.05em) 1.15em, calc(100% - .75em) 1.15em;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2.2em;
}
textarea { min-height: 6.5rem; resize: vertical; line-height: 1.5; }
input:hover, select:hover, textarea:hover { border-color: var(--ink-faint); }
input:focus, select:focus, textarea:focus { border-color: var(--accent); outline-offset: 1px; }
input[aria-invalid="true"], select[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: var(--clay); background: var(--clay-wash); }
::placeholder { color: var(--ink-faint); opacity: 1; }

input[type="range"] { accent-color: var(--accent); width: 100%; }
input[type="checkbox"], input[type="radio"] { accent-color: var(--accent); width: 1.05rem; height: 1.05rem; margin: 0; flex: none; }

.guests {
  display: flex;
  align-items: baseline;
  gap: .4rem;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}
.guests small {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.styles { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem; }
.styles label {
  display: flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius);
  padding: .55rem .6rem;
  cursor: pointer;
  font-size: var(--fs-xs);
  font-family: var(--mono);
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: border-color .15s ease, background-color .15s ease;
}
.styles label:hover { border-color: var(--accent); }
.styles label:has(input:checked) { border-color: var(--accent); background: var(--accent-wash); color: var(--ink); }
.styles label:focus-within { outline: 2px solid var(--accent); outline-offset: 2px; }
.styles input { width: .95rem; height: .95rem; }
.styles b { font-weight: 500; }
.styles i { font-style: normal; margin-left: auto; color: var(--ink-faint); }

.adds { display: flex; flex-direction: column; gap: .35rem; }
.adds label { display: flex; align-items: center; gap: .6rem; font-size: var(--fs-sm); cursor: pointer; }
.adds .cost { margin-left: auto; font-family: var(--mono); font-size: var(--fs-xs); color: var(--ink-faint); }

/* dotted-leader line items */
.tk { display: flex; flex-direction: column; gap: .45rem; padding-top: var(--s2); border-top: 1px dashed var(--rule-strong); }
.tk__row { display: flex; align-items: baseline; gap: .5rem; font-family: var(--mono); font-size: var(--fs-xs); letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }
.tk__row span:first-child { flex: none; }
.tk__dots { flex: 1 1 auto; border-bottom: 1px dotted var(--rule-strong); transform: translateY(-.3em); min-width: 1rem; }
.tk__row b { flex: none; font-weight: 500; color: var(--ink); font-variant-numeric: tabular-nums; }
.tk__row--total { font-size: .8125rem; color: var(--ink); padding-top: .35rem; }
.tk__row--total b { font-family: var(--display); font-size: 1.6rem; letter-spacing: -.01em; }

.note {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  font-size: var(--fs-sm);
  line-height: 1.45;
  padding: .7rem .8rem;
  border-radius: var(--radius);
  border: 1px solid var(--rule-strong);
  background: var(--ground);
  color: var(--ink-soft);
}
.note--warn { border-color: var(--clay); background: var(--clay-wash); color: var(--ink); }
.note--ok { border-color: var(--green); color: var(--ink); }
.note svg { width: 1rem; height: 1rem; flex: none; margin-top: .18em; }
.note[hidden] { display: none; }

/* =========================================================================
   Cards, packages, steps
   ========================================================================= */

.grid { display: grid; gap: var(--s3); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 15.5rem), 1fr)); }

.card {
  background: var(--panel);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: var(--s4);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  transition: border-color .2s ease, transform .2s ease;
}
.card:hover { border-color: var(--rule-strong); transform: translateY(-2px); }
.card h3 + p { color: var(--ink-soft); font-size: var(--fs-sm); }
.card__ico { color: var(--accent); width: 1.6rem; height: 1.6rem; }
.card__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .3rem; font-size: var(--fs-sm); color: var(--ink-soft); }
.card__list li { display: flex; gap: .5rem; }
.card__list li::before { content: "—"; color: var(--accent); flex: none; }

.pkg {
  background: var(--panel);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}
.pkg--feature { border-color: var(--accent); box-shadow: var(--shadow); }
.pkg__hd { padding: var(--s4) var(--s4) var(--s3); border-bottom: 1px dashed var(--rule-strong); display: flex; flex-direction: column; gap: .5rem; }
.pkg__price { display: flex; align-items: baseline; gap: .35rem; font-family: var(--display); font-size: 2.4rem; line-height: 1; }
.pkg__price span { font-family: var(--mono); font-size: var(--fs-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); }
.pkg__bd { padding: var(--s3) var(--s4) var(--s4); display: flex; flex-direction: column; gap: var(--s3); flex: 1; }
.pkg__bd > .btn { margin-top: auto; }   /* buttons line up across the three cards */
.menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .55rem; font-size: var(--fs-sm); }
.menu strong { display: block; font-family: var(--mono); font-size: var(--fs-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); font-weight: 400; margin-bottom: .1rem; }
.menu li { color: var(--ink-soft); }
.menu li b { color: var(--ink); font-weight: 500; }

.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; counter-reset: step; }
.steps li {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: var(--s3);
  padding-block: var(--s4);
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.steps li:first-child { border-top: 1px solid var(--rule); }
.steps li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 1.5rem;
  color: var(--accent);
  line-height: 1;
}
.steps h3 { margin-bottom: .3rem; }
.steps p { font-size: var(--fs-sm); color: var(--ink-soft); }
.steps .meta { display: block; margin-top: .4rem; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr)); gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; }
.stat { background: var(--panel); padding: var(--s4) var(--s3); display: flex; flex-direction: column; gap: .35rem; }
.stat b { font-family: var(--display); font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1; font-variant-numeric: tabular-nums; }
.stat span { font-size: var(--fs-sm); color: var(--ink-soft); line-height: 1.35; }

/* Photo drop-zones — replace each with <img> (see README) */
.ph {
  margin: 0;
  aspect-ratio: 4 / 3;
  border: 1px dashed var(--rule-strong);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(135deg, transparent 0 11px, color-mix(in srgb, var(--rule) 45%, transparent) 11px 12px),
    var(--panel);
  display: grid;
  place-content: center;
  gap: .4rem;
  text-align: center;
  padding: var(--s3);
}
.ph--tall { aspect-ratio: 3 / 4; }
.ph--wide { aspect-ratio: 16 / 9; }
.ph figcaption { font-family: var(--mono); font-size: var(--fs-xs); letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); }

/* Photographs */
.gallery { display: grid; gap: var(--s2); grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 48rem) {
  .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s3); }
}

.shot { margin: 0; display: flex; flex-direction: column; gap: .6rem; }
.shot__link {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--ground-deep);
  cursor: zoom-in;
  transition: border-color .2s ease;
}
.shot__link:hover { border-color: var(--accent); }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2, .7, .2, 1); }
.shot__link:hover img { transform: scale(1.035); }
.shot figcaption {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-wrap: balance;
}

/* Lightbox */
.lightbox {
  border: 0;
  padding: 0;
  margin: 0;
  max-width: 100vw;
  max-height: 100dvh;
  width: 100%;
  height: 100%;
  background: transparent;
  color: #EAEFE9;
  overscroll-behavior: contain;
}
.lightbox::backdrop { background: rgba(7, 12, 10, .94); }
.lightbox[open] {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--s2);
  padding: clamp(.75rem, 3vw, 2rem);
}
.lightbox__fig { margin: 0; min-height: 0; display: flex; flex-direction: column; align-items: center; gap: .85rem; }
.lightbox__fig img {
  max-width: 100%;
  max-height: calc(100dvh - 8rem);
  width: auto;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox__fig figcaption {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #A9B6AE;
  text-align: center;
}
.lightbox__nav, .lightbox__x {
  appearance: none;
  cursor: pointer;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #EAEFE9;
  border-radius: 999px;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  padding: 0;
  transition: background-color .18s ease, border-color .18s ease;
}
.lightbox__nav:hover, .lightbox__x:hover { background: rgba(255, 255, 255, .16); border-color: rgba(255, 255, 255, .5); }
.lightbox__nav svg, .lightbox__x svg { width: 1.15rem; height: 1.15rem; }
.lightbox__x { position: absolute; top: clamp(.75rem, 3vw, 2rem); right: clamp(.75rem, 3vw, 2rem); z-index: 2; }
@media (max-width: 30rem) {
  .lightbox__nav { width: 2.25rem; height: 2.25rem; }
}

/* Quotes */
.quotes { display: grid; gap: var(--s3); grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.quote {
  background: var(--panel);
  border: 1px solid var(--rule);
  border-left: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: var(--s4);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  margin: 0;
}
.quote blockquote { margin: 0; font-family: var(--display); font-size: 1.2rem; line-height: 1.4; }
.quote figcaption { font-size: var(--fs-sm); color: var(--ink-soft); margin-top: auto; }
.quote figcaption b { display: block; color: var(--ink); font-weight: 600; }

/* Venue list — typographic lockups, not logos */
.venues { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: var(--s2) var(--s5); align-items: baseline; }
.venues li { font-family: var(--display); font-size: 1.15rem; color: var(--ink-soft); }
.venues li span { font-family: var(--mono); font-size: .625rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); display: block; }

/* FAQ */
.faq { display: flex; flex-direction: column; border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: var(--s3) 2.5rem var(--s3) 0;
  position: relative;
  font-size: 1.0625rem;
  font-weight: 500;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: .5rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono);
  color: var(--accent);
  font-size: 1.25rem;
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "–"; }
.faq summary:hover { color: var(--accent); }
.faq details > div { padding: 0 2.5rem var(--s4) 0; }
.faq p + p { margin-top: var(--s2); }

/* =========================================================================
   Inquiry form
   ========================================================================= */

.form {
  background: var(--panel);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3.5vw, var(--s5));
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  box-shadow: var(--shadow);
}
.fieldset { border: 0; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--s3); }
.fieldset > legend { margin-bottom: var(--s2); float: left; width: 100%; }
.fieldset::after { content: ""; display: table; clear: both; }
.f2 { display: grid; gap: var(--s3); grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); }
.form hr { border-top-style: dashed; border-top-color: var(--rule-strong); }

.err { font-family: var(--mono); font-size: var(--fs-xs); letter-spacing: .04em; color: var(--clay); min-height: 1em; }
.err:empty { display: none; }

.checks { display: grid; gap: .5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 10rem), 1fr)); }
.checks label { display: flex; align-items: center; gap: .55rem; font-size: var(--fs-sm); cursor: pointer; }
.consent { display: flex; gap: .65rem; align-items: flex-start; font-size: var(--fs-sm); color: var(--ink-soft); }
.consent input { margin-top: .22em; }

.form__foot { display: flex; flex-wrap: wrap; gap: var(--s3); align-items: center; justify-content: space-between; }

/* Sent state */
.sent { display: flex; flex-direction: column; gap: var(--s3); }
.sent__hd { display: flex; align-items: center; gap: var(--s2); }
.sent__hd svg { width: 1.75rem; height: 1.75rem; color: var(--green); flex: none; }
.receipt {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  line-height: 1.7;
  white-space: pre-wrap;
  background: var(--ground);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius);
  padding: var(--s3);
  overflow-x: auto;
  color: var(--ink-soft);
  margin: 0;
}

/* =========================================================================
   Pre-launch checklist  (DELETE THIS SECTION BEFORE GOING LIVE)
   ========================================================================= */

.todo { border: 1px solid var(--clay); border-radius: var(--radius); background: var(--panel); padding: clamp(1.25rem, 3vw, var(--s5)); display: flex; flex-direction: column; gap: var(--s3); }
.todo ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.todo li { display: flex; gap: .65rem; align-items: flex-start; font-size: var(--fs-sm); }
.todo input { margin-top: .28em; }
.todo li[data-done="true"] { color: var(--ink-faint); text-decoration: line-through; }
.todo code { font-family: var(--mono); font-size: .8125em; background: var(--ground); border: 1px solid var(--rule); border-radius: 2px; padding: .1em .35em; }

/* =========================================================================
   Footer
   ========================================================================= */

.ftr { border-top: 1px solid var(--rule); background: var(--ground-deep); padding-block: var(--s6) var(--s4); }
.ftr__grid { display: grid; gap: var(--s5); grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); }
.ftr h4 { font-family: var(--mono); font-size: var(--fs-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); font-weight: 400; margin-bottom: var(--s2); }
.ftr ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .45rem; font-size: var(--fs-sm); }
.ftr a { text-decoration: none; color: var(--ink-soft); }
.ftr a:hover { color: var(--accent); }
.ftr__base { margin-top: var(--s5); padding-top: var(--s3); border-top: 1px solid var(--rule); display: flex; flex-wrap: wrap; gap: var(--s2) var(--s4); justify-content: space-between; }
.hours { display: grid; grid-template-columns: auto 1fr; gap: .2rem .75rem; font-size: var(--fs-sm); color: var(--ink-soft); }
.hours dt { font-family: var(--mono); font-size: var(--fs-xs); letter-spacing: .06em; text-transform: uppercase; color: var(--ink-faint); }
.hours dd { margin: 0; font-variant-numeric: tabular-nums; }

/* =========================================================================
   Motion & print
   ========================================================================= */

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

@media print {
  .hdr, .sheet, .todo, .ph, .btn { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding-block: 1rem; }
}
