/* ==========================================================================
   THE SEREMONI EDIT — stylesheet
   --------------------------------------------------------------------------
   Cream ground, coral everything. #f58b6e is sampled straight from the logo.
   Everything visual is controlled by the custom properties in :root below —
   change --coral and the whole site follows.

   A note on the three corals: the brand coral is beautiful but too light to
   carry small text (it fails contrast against cream). So --coral is used for
   fills and decoration, --coral-mid for large headings, and --coral-deep for
   anything with words in or on it. All three are the same hue.
   ========================================================================== */

:root {
  /* ---- Brand colour ---- */
  --paper:       #fdfaf5;   /* page background, warm cream          */
  --paper-alt:   #fdf1ec;   /* alternating section background       */
  --coral:       #f58b6e;   /* THE brand coral — straight from the logo */
  --coral-mid:   #d96b4d;   /* large headings                       */
  --coral-deep:  #b04c2e;   /* buttons, links, bands — text-safe    */
  --band:        #f58b6e;   /* footer + marquee + CTA bands — the real coral */
  --band-ink:    #5a2415;   /* deep brown text ON the coral bands    */
  --band-deep:   #93401f;   /* button hover                          */
  --heading:     #d96b4d;   /* display headings                     */
  --display-ink: #221a13;   /* near-black headline text (hero, page heroes) */
  --ink:         #8a4f3a;   /* body text                            */
  --ink-soft:    #a35d42;   /* secondary text                       */
  --line:        #f4dcd2;   /* hairlines and borders                */
  --cream:       #fdfaf5;   /* cream                                */

  /* ---- Type ---- */
  /* Playful + easy to read: Plus Jakarta Sans carries every headline, nav
     item and paragraph. Instrument Serif Italic is used ONLY as a single
     accent word inside headings — the personality is a controlled dose,
     not smeared across everything. No more typewriter/mono anywhere. */
  --font-display: "Plus Jakarta Sans", "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-italic:  "Instrument Serif", Georgia, serif;
  --font-body:    "Plus Jakarta Sans", "Inter", "Helvetica Neue", Arial, sans-serif;

  --step--2: clamp(0.72rem, 0.7rem + 0.1vw, 0.78rem);
  --step--1: clamp(0.8rem, 0.77rem + 0.13vw, 0.86rem);
  --step-0:  clamp(0.97rem, 0.94rem + 0.15vw, 1.03rem);
  --step-1:  clamp(1.08rem, 1.02rem + 0.3vw, 1.25rem);
  --step-2:  clamp(1.5rem, 1.28rem + 1vw, 2.1rem);
  --step-3:  clamp(1.9rem, 1.5rem + 1.9vw, 2.9rem);
  --step-4:  clamp(2.6rem, 0.6rem + 9vw, 8.5rem);

  /* ---- Layout ---- */
  --wrap: 1160px;
  --gutter: clamp(1.25rem, 3.2vw, 2.75rem);
  --section-y: clamp(2.5rem, 4.5vw, 4rem);
  --radius: 2px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ==========================================================================
   Reset
   ========================================================================== */

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

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  font-weight: 400;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, picture, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.02em;
  color: var(--heading);
  margin: 0 0 0.35em;
}
h4 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--step-1);
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 0 0 0.5em;
}

h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }

/* italic serif accents inside headings */
/* Italic accent words. These sit on three different backgrounds, and the
   brand coral is too light to carry text on cream — so the accent is DARKER
   than the heading on cream, LIGHTER than it in the hero, and plain ink on
   the coral bands (where any coral tint would disappear entirely). */
h1 em, h2 em, h3 em, .italic {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--coral-deep);
  letter-spacing: -0.01em;
  text-transform: none;
}
.section--band h1 em,
.section--band h2 em,
.section--band h3 em { color: var(--band-ink); }

p { margin: 0 0 0.9em; max-width: 70ch; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.24em; }

:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--paper);
  padding: 0.75rem 1.25rem; z-index: 999;
}
.skip-link:focus { left: 0; }

/* ==========================================================================
   Utilities
   ========================================================================== */

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 780px; }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(1.75rem, 3vw, 2.5rem); }
.section--alt { background: var(--paper-alt); }

/* Coral bands carry deep-brown text — cream is unreadable on this coral. */
.section--band { background: var(--band); color: var(--band-ink); }
.section--band h1, .section--band h2, .section--band h3 { color: var(--band-ink); }
.section--band p { color: rgba(90,36,21,0.9); }
.section--band .eyebrow { color: rgba(90,36,21,0.8); }
.section--band .rule { background: var(--band-ink); }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--step--1);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink-soft);
  margin: 0 0 0.75rem;
}

.lede { font-size: var(--step-1); line-height: 1.55; color: var(--ink-soft); }

.rule { width: 46px; height: 1px; background: var(--coral); border: 0; margin: 0 0 1.1rem; }
.center { text-align: center; }
.center .rule, .center p, p.center { margin-inline: auto; }

.mono {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: var(--step-0);
  letter-spacing: 0.01em;
}

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

/* ---- Buttons ---- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--step--1);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 1rem 2.3rem;
  border: 1px solid var(--coral-deep);
  border-radius: var(--radius);
  background: var(--coral-deep);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease),
              border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.btn:hover { background: var(--band-deep); border-color: var(--band-deep); transform: translateY(-2px); }
/* The class sets display, which would otherwise beat the browser's [hidden]. */
.btn[hidden] { display: none; }

.btn--ghost { background: transparent; color: var(--coral-deep); }
.btn--ghost:hover { background: var(--coral-deep); color: #fff; }

.btn--light { background: transparent; color: var(--band-ink); border-color: rgba(90,36,21,0.55); }
.btn--light:hover { background: var(--band-ink); color: var(--band); border-color: var(--band-ink); }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.center .btn-row { justify-content: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: var(--step--1);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--coral-deep);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.4rem;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.link-arrow::after { content: "\2192"; transition: transform 0.3s var(--ease); }
.link-arrow:hover { border-color: var(--coral-deep); color: var(--band-deep); }
.link-arrow:hover::after { transform: translateX(5px); }

/* ==========================================================================
   Marquee ticker — "2 VENUES | 1 BRAND"
   ========================================================================== */

.marquee {
  background: var(--band);
  color: var(--band-ink);
  overflow: hidden;
  padding-block: 0.6rem;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  animation: marquee 38s linear infinite;
  will-change: transform;
}
.marquee span {
  font-size: var(--step--1);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 300;
}
.marquee .star { color: rgba(90,36,21,0.65); }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ==========================================================================
   Media & the circular "lens" treatment
   ========================================================================== */

.media { position: relative; overflow: hidden; background: var(--paper-alt); }
.media img, .media video { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.media--3x2  { aspect-ratio: 3 / 2; }
.media--4x5  { aspect-ratio: 4 / 5; }
.media--1x1  { aspect-ratio: 1 / 1; }
.media--16x9 { aspect-ratio: 16 / 9; }
.media--9x16 { aspect-ratio: 9 / 16; }

/* Round media — the signature shape */
.media--round { border-radius: 50%; }

/* The arch.
   Built with an elliptical border-radius rather than a giant circle: the
   horizontal radius is half the width and the vertical radius is a sliver of
   the height, which bows the top and bottom edges while the sides stay
   full-bleed. Holds its shape at any screen width — a circle does not. */
/* clips the over-wide arch so it can bleed past the screen edges
   without creating a horizontal scrollbar */
.lens-clip { overflow: hidden; }

.lens-frame {
  position: relative;
  overflow: hidden;
  /* Big: roughly 2:1, filling the width of the screen. */
  height: clamp(320px, 48vw, 780px);
  /* Straight edges. If you ever want the arch back, this is the only line
     that changes — e.g. border-radius: 13% / 22%. */
  border-radius: 0;
  background: var(--paper-alt);
}

.lens {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.lens img, .lens video { width: 100%; height: 100%; object-fit: cover; }

/* The footage is pinned to the viewport while the arch scrolls over it, so
   the room holds still and the window travels across it. */
.lens-frame .lens > img,
.lens-frame .lens > video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 100%;
  object-fit: cover;
  will-change: transform;
}

@media (max-width: 700px) {
  .lens-frame { height: clamp(300px, 74vw, 560px); }
}

/* ---- Placeholder state for images not yet added ---- */
.media.is-empty, .lens.is-empty {
  background: repeating-linear-gradient(-45deg, #f0e8dc 0 12px, #e8dfd1 12px 24px);
  display: grid;
  place-items: center;
}
.media.is-empty img, .lens.is-empty img { display: none; }
.media__note {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a2917f;
  text-align: center;
  padding: 1rem;
  line-height: 1.7;
  max-width: 85%;
}
.media__note strong { display: block; font-weight: 400; color: #8a7867; }

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

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 250, 245, 0.94);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--line); }

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  min-height: 78px;
}

.header__left { justify-self: start; }
.header__left a {
  font-size: var(--step--1);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--coral);
  padding-bottom: 3px;
}
.header__left a:hover { color: var(--coral-deep); }

.brand { justify-self: center; display: inline-block; text-decoration: none; }
.brand img { height: clamp(50px, 5vw, 64px); width: auto; }

.nav { justify-self: end; display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav a {
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  position: relative;
  padding-block: 0.35rem;
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--coral);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav a:hover { color: var(--coral-deep); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

/* the Book Now button only appears in the mobile drawer —
   on desktop it lives in the top-left of the header */
.nav__cta { display: none; }

.nav-toggle { display: none; background: none; border: 0; padding: 0.6rem; cursor: pointer; line-height: 0; justify-self: end; }
.nav-toggle span {
  display: block; width: 26px; height: 1px; background: var(--ink-soft);
  margin: 6px 0; transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px) {
  .site-header__inner { grid-template-columns: 1fr auto 1fr; min-height: 68px; }
  .header__left { display: none; }
  .brand { justify-self: center; }
  .nav-toggle { display: block; grid-column: 3; }
  .nav {
    position: fixed; inset: 80px 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--gutter) 2.5rem;
    transform: translateY(-125%);
    transition: transform 0.45s var(--ease);
    max-height: calc(100dvh - 68px); overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { font-size: 1.05rem; padding-block: 1.05rem; width: 100%; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .nav__cta { display: block; margin-top: 1.5rem; width: 100%; text-align: center; border-bottom: 0; color: #fff; }
}

/* ==========================================================================
   Hero — the headline is the graphic. Runs near edge-to-edge, everything else
   shrinks out of its way. The size gap between the two is the whole effect.
   ========================================================================== */

.hero { padding-top: clamp(1.5rem, 3vw, 3rem); text-align: left; }

.hero__in {
  max-width: 1680px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4.5rem);
}

.hero h1 {
  margin: 0;
  text-transform: uppercase;
  line-height: 0.84;
  letter-spacing: -0.035em;
  color: var(--display-ink);
}
.hero h1 em { color: var(--coral-deep); }

.hero__kicker {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.72rem, 0.9vw, 0.86rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: clamp(0.8rem, 1.6vw, 1.5rem);
}

.hero__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 3rem;
  align-items: flex-end;
  justify-content: space-between;
  margin: clamp(1.25rem, 2.5vw, 2rem) 0 clamp(1.5rem, 3vw, 2.5rem);
}
.hero__row p { margin: 0; max-width: 38ch; color: var(--ink-soft); }
.hero__row .btn { white-space: nowrap; }

/* interior pages keep a calmer version of the same idea */
/* Interior pages: same idea, calmer. Image runs as a band, big type sits
   underneath it — so every page opens the same way the homepage does. */
.hero--page { padding-top: 0; }
.hero--page .hero__media {
  height: clamp(200px, 30vw, 420px);
  width: 100%;
  overflow: hidden;
  background: var(--paper-alt);
}
.hero--page .hero__media img { width: 100%; height: 100%; object-fit: cover; }

.hero--page .hero__inner {
  max-width: 1680px;
  margin-inline: auto;
  padding: clamp(1.5rem, 3vw, 2.75rem) clamp(1.25rem, 5vw, 4.5rem) 0;
  width: 100%;
}
.hero--page h1 {
  font-size: clamp(2.2rem, 6.5vw, 5.4rem);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.88;
  color: var(--display-ink);
}
.hero--page .hero__eyebrow {
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 0.9vw, 0.86rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 0.9rem;
}
.hero--page .hero__sub {
  font-size: var(--step-1);
  color: var(--ink-soft);
  max-width: 50ch;
  margin-top: 0.9rem;
}
.hero--page .btn-row { margin-top: 1.35rem; }

/* ==========================================================================
   Hero call to action
   ========================================================================== */

.hero__cta { margin-top: 1.5rem; }
.hero__cta-label {
  font-size: var(--step--1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 0.85rem;
  max-width: none;
}
.hero__cta .btn-row { justify-content: flex-start; }
.hero__cta-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  opacity: 0.85;
  margin: 0.85rem 0 0;
  max-width: none;
}

.link-inline { color: var(--coral-deep); }

/* ==========================================================================
   Reviews
   ========================================================================== */

.reviews { border-bottom: 1px solid var(--line); }
.reviews__head {
  display: flex; align-items: baseline; justify-content: center;
  flex-wrap: wrap; gap: 0.5rem 0.85rem;
  margin-bottom: 1.35rem;
}
.reviews__head p { margin: 0; font-size: 0.92rem; color: var(--ink-soft); max-width: none; }
.reviews__head strong { color: var(--ink); font-weight: 400; }
.stars { color: var(--coral); letter-spacing: 0.12em; font-size: 0.95rem; }
.reviews__link { color: var(--coral-deep); font-size: 0.86rem; margin-left: 0.35rem; }

.review { margin: 0; }
.review blockquote {
  margin: 0 0 0.65rem;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--ink);
}
.review blockquote::before { content: "\201C"; }
.review blockquote::after { content: "\201D"; }
.review figcaption {
  font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft);
}

/* ==========================================================================
   Event-type tags
   ========================================================================== */

.tags {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.tags li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.42rem 1.05rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  background: var(--paper);
}

/* price placeholders — swap the $X,XXX in index.html and the venue pages */
.price-slot { color: var(--coral-deep); }

/* ==========================================================================
   Credibility bar — dark band, white logos
   ========================================================================== */

.proof {
  background: #221a13;
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
}
.proof__row {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.25rem);
  padding-block: 0.7rem;
}
.proof__row + .proof__row { border-top: 1px solid rgba(253,250,245,0.1); }

.proof__label {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.5;
  color: rgba(253,250,245,0.6);
  max-width: none;
}

.proof__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1.1rem, 3vw, 2.6rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
/* Cap both dimensions so a wide wordmark can't shout over a compact mark */
.proof__logos img {
  height: clamp(19px, 2vw, 26px);
  width: auto;
  max-width: clamp(84px, 10vw, 132px);
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s var(--ease);
}
.proof__logos li:hover img { opacity: 1; }
/* very wide wordmarks get a little more room but stay in the same optical family */
.proof__logos img.is-wide { max-width: clamp(130px, 15vw, 190px); }
/* the Goldman badge is a solid block, not a white mark — give it its own size */
.proof__badge { height: clamp(32px, 3.4vw, 44px) !important; border-radius: 2px; }

@media (max-width: 700px) {
  .proof__row { grid-template-columns: 1fr; gap: 0.6rem; }
  .proof__logos { gap: 1.1rem 1.6rem; }
}

/* ==========================================================================
   Split feature (venue rows)
   ========================================================================== */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3.5vw, 3rem); align-items: center; }
.split + .split { margin-top: var(--section-y); }
.split--flip .split__media { order: 2; }
.split__media:hover .media img { transform: scale(1.04); }
.split__body h2 { margin-bottom: 1rem; }

.specs { list-style: none; margin: 0 0 1.35rem; padding: 0; border-top: 1px solid var(--line); }
.specs li {
  display: flex; justify-content: space-between; gap: 1.5rem;
  padding: 0.55rem 0; border-bottom: 1px solid var(--line);
  font-size: var(--step--1); letter-spacing: 0.06em;
}
.specs__key { text-transform: uppercase; letter-spacing: 0.18em; color: var(--ink-soft); }
.specs__val { text-align: right; }

@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
}

/* Per-venue photo gallery on the Venues page. Reuses .gallery's masonry
   columns — no forced aspect-ratio, no object-fit crop — so every uploaded
   photo shows in full. Shares the site's one lightbox for click-to-enlarge. */
.venue-gallery { margin-top: clamp(1.75rem, 4vw, 3rem); }
.venue-gallery__title {
  font-size: var(--step-1);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--coral-deep);
  margin-bottom: 1rem;
}

/* ==========================================================================
   Cards / grids
   ========================================================================== */

.grid { display: grid; gap: clamp(1.25rem, 2.2vw, 1.85rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(1.35rem, 2.2vw, 1.9rem);
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px -30px rgba(109,97,86,0.55); }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--ink-soft); }
.card__price {
  margin-top: auto; padding-top: 1.1rem; border-top: 1px solid var(--line);
  font-size: var(--step--1); letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--coral);
}
.card__list { list-style: none; padding: 0; margin: 0 0 1.1rem; }
.card__list li {
  position: relative; padding-left: 1.5rem; margin-bottom: 0.6rem;
  color: var(--ink-soft); font-size: 0.95rem;
}
.card__list li::before {
  content: ""; position: absolute; left: 0; top: 0.8em;
  width: 8px; height: 1px; background: var(--coral);
}

/* Venue tiles (homepage) */
.venue-tile .media { border-radius: 16px; margin-bottom: 1rem; }
.venue-tile:hover .media img { transform: scale(1.04); }
.venue-tile h3 { margin-bottom: 0.4rem; }
.venue-tile p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 0.9rem; }
.venue-tile .specs { margin-bottom: 1rem; }

/* ==========================================================================
   Shop
   ========================================================================== */

.shop-head { margin-bottom: 1.5rem; }
.shop-head h2 { margin-bottom: 0.35rem; }
.shop-head p { color: var(--ink-soft); max-width: 60ch; }

.product { display: flex; flex-direction: column; }
.product .media { border-radius: 16px; margin-bottom: 0.9rem; }
.product:hover .media img { transform: scale(1.04); }
.product h3 { font-size: var(--step-1); margin-bottom: 0.15rem; }
.product__price {
  font-family: var(--font-body);
  font-size: var(--step--1);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: 0.6rem;
}
.product p { font-size: 0.93rem; color: var(--ink-soft); margin-bottom: 1rem; }

/* Where the Square / digital-product button gets pasted */
.buy-slot { margin-top: auto; }
.buy-slot__hint {
  display: grid;
  place-items: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 0.9rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
}

/* Team */
.person .media { margin-bottom: 0.9rem; }
.person h3 { font-size: var(--step-1); margin-bottom: 0.25rem; letter-spacing: 0.08em; }
.person__role {
  font-size: var(--step--1); letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 1rem;
}
.person p { font-size: 0.95rem; color: var(--ink-soft); }
.person a { color: var(--ink-soft); font-size: 0.9rem; }

/* ==========================================================================
   Gallery
   ========================================================================== */

.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 1.75rem; }
.filters button {
  background: transparent; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.6rem 1.5rem; font-size: var(--step--1);
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft);
  cursor: pointer; transition: all 0.3s var(--ease);
}
.filters button:hover { border-color: var(--coral-deep); color: var(--coral-deep); }
.filters button[aria-pressed="true"] { background: var(--coral-deep); color: #fff; border-color: var(--coral-deep); }

.gallery { columns: 3; column-gap: clamp(0.75rem, 1.5vw, 1.25rem); }
.gallery figure {
  margin: 0 0 clamp(0.75rem, 1.5vw, 1.25rem);
  break-inside: avoid; cursor: zoom-in;
  position: relative; overflow: hidden;
  border-radius: 14px; background: var(--paper-alt);
}
.gallery figure img { width: 100%; transition: transform 0.9s var(--ease); }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figure[hidden] { display: none; }
.gallery figure.is-empty { aspect-ratio: 4 / 5; }
.gallery figure:nth-child(3n).is-empty { aspect-ratio: 1 / 1; }
.gallery figure:nth-child(4n).is-empty { aspect-ratio: 3 / 4; }

@media (max-width: 900px) { .gallery { columns: 2; } }
@media (max-width: 560px) { .gallery { columns: 1; } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(48, 22, 12, 0.94);
  display: grid; place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 86vh; object-fit: contain; border-radius: 10px; }
.lightbox__close, .lightbox__nav {
  position: absolute; background: none; border: 0; color: var(--cream);
  font-size: 2rem; line-height: 1; padding: 1rem; cursor: pointer;
  opacity: 0.8; transition: opacity 0.25s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { opacity: 1; }
.lightbox__close { top: 0.5rem; right: 0.75rem; font-size: 2.5rem; }
.lightbox__nav--prev { left: 0.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 0.5rem; top: 50%; transform: translateY(-50%); }

/* ==========================================================================
   Quote
   ========================================================================== */

.quote { text-align: center; max-width: 900px; margin-inline: auto; }
.quote blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-italic);
  font-size: var(--step-2);
  line-height: 1.4; font-style: italic;
  color: var(--heading);
}
.quote cite {
  font-style: normal; font-size: var(--step--1);
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink-soft);
}

/* ==========================================================================
   Booking embed
   ========================================================================== */

.embed-slot {
  border: 1px dashed var(--line); border-radius: 18px; background: var(--paper);
  padding: clamp(1rem, 2vw, 1.5rem); min-height: 720px;
}
/* once a real embed is in, drop the dashed placeholder border */
.embed-slot--live { border: 0; padding: 0; min-height: 0; }
.embed-slot iframe { width: 100%; border: 0; display: block; }
/* The HoneyBook script embed injects its own iframe and auto-resizes it to
   the form's height, so height is NOT fixed here. Space is only reserved
   while the widget boots (.hb-form--loading), then released so a short form
   never sits above a blank gap. */
.hb-form {
  border-radius: 18px;
  background: var(--paper);
}
.hb-form--loading { min-height: 720px; }
@media (max-width: 700px) { .hb-form--loading { min-height: 840px; } }

.hb-fallback {
  border: 1px solid var(--line); border-radius: 18px; background: var(--paper);
  padding: clamp(1.5rem, 4vw, 2.5rem); text-align: center;
  color: var(--ink-soft); font-size: 0.95rem; line-height: 1.8;
}
.hb-fallback p + p { margin-top: 0.5rem; }
.hb-fallback strong { color: var(--ink); }
.embed-slot__hint {
  display: grid; place-items: center; min-height: 660px;
  text-align: center; color: var(--ink-soft); font-size: 0.9rem; line-height: 1.9;
}
.embed-slot__hint code {
  font-family: var(--font-body); font-size: 0.82rem;
  background: var(--paper-alt); padding: 0.2em 0.5em; border-radius: 3px;
}

.contact-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem; border-top: 1px solid var(--line);
  padding-top: 1.75rem; margin-top: 2rem;
}
.contact-strip h4 {
  font-size: var(--step--1); letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 0.5rem;
}
.contact-strip a { text-decoration: none; font-size: var(--step-1); color: var(--ink); }
.contact-strip a:hover { color: var(--coral); }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq { border-top: 1px solid var(--line); max-width: 860px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1.05rem 3rem 1.05rem 0;
  font-family: var(--font-display); font-size: var(--step-1);
  letter-spacing: 0.05em; color: var(--ink);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%); font-size: 1.5rem; color: var(--coral);
}
.faq details[open] summary::after { content: "\2013"; }
.faq details p { padding-bottom: 1.1rem; color: var(--ink-soft); }

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

/* A hairline keeps the footer from melting into the coral CTA band above it. */
.site-footer {
  background: var(--band); color: var(--band-ink);
  padding-block: clamp(2.25rem, 4vw, 3.25rem) 1.5rem;
  border-top: 1px solid rgba(90,36,21,0.16);
}
.site-footer a { color: var(--band-ink); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

.footer-grid {
  display: grid;
  grid-template-columns: minmax(150px, 0.85fr) 1.25fr 0.8fr 1.1fr;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
  align-items: start;
}
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 2rem; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; text-align: center; } }

.footer__logo { height: auto; width: clamp(110px, 11vw, 150px); }
.footer__brand-col .social { margin-top: 1.1rem; margin-bottom: 0; }
@media (max-width: 560px) {
  .footer__logo { margin-inline: auto; }
}

.footer-grid h4 {
  font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--band-ink); opacity: 0.75; margin-bottom: 0.6rem;
}
.footer-grid h4 + h4, .footer-grid ul + h4 { margin-top: 1.1rem; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 0.15rem; font-size: 0.9rem; line-height: 1.5; }
.footer-grid p { font-size: 0.95rem; color: rgba(90,36,21,0.92); }
/* Address blocks — name on its own line, address flowing under it */
.footer__addresses li { margin-bottom: 0.7rem; }
.footer__addresses a { display: block; }
.footer__addresses strong { font-weight: 400; }
.footer__addresses span { opacity: 0.72; }

.newsletter h3 { color: var(--band-ink); font-family: var(--font-body); font-weight: 400; font-size: 1.35rem; letter-spacing: 0.01em; margin-bottom: 0.15rem; }
.newsletter .mono { color: rgba(90,36,21,0.85); display: block; font-size: 0.76rem; margin-bottom: 0.9rem; }
.newsletter input {
  width: 100%; background: transparent; border: 0;
  border-bottom: 1px solid rgba(90,36,21,0.45);
  padding: 0.5rem 0.25rem; margin-bottom: 0.55rem;
  color: var(--band-ink); font-size: 0.92rem; font-weight: 300;
}
.newsletter input::placeholder { color: rgba(90,36,21,0.75); }
.newsletter input:focus { outline: 0; border-bottom-color: var(--band-ink); }
.newsletter button {
  width: 100%; background: transparent; color: var(--band-ink);
  border: 1px solid rgba(90,36,21,0.55); border-radius: var(--radius);
  padding: 0.7rem 1.5rem; margin-top: 0.6rem;
  font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer; transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.newsletter button:hover { background: var(--band-ink); color: var(--band); }

.footer-bottom {
  margin-top: clamp(1.75rem, 3vw, 2.5rem); padding-top: 1.25rem;
  border-top: 1px solid rgba(90,36,21,0.3);
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between;
  font-size: 0.8rem; color: rgba(90,36,21,0.8);
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 1.15rem; list-style: none; margin: 0; padding: 0; }

.social { display: flex; gap: 0.6rem; margin-bottom: 1.15rem; }
@media (max-width: 560px) { .social { justify-content: center; } }
.social a {
  display: inline-grid; place-items: center; width: 38px; height: 38px;
  border: 1px solid rgba(90,36,21,0.5); border-radius: 50%;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.social a:hover { background: var(--band-ink); border-color: var(--band-ink); }
.social a:hover svg { fill: var(--band); }
.social svg { width: 14px; height: 14px; fill: var(--band-ink); transition: fill 0.3s var(--ease); }

/* ==========================================================================
   Scroll reveal (progressive enhancement — only hides when JS is running)
   ========================================================================== */

.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* ==========================================================================
   Legal pages
   ========================================================================== */

.prose h2 { font-size: var(--step-2); margin-top: 1.75rem; }
.prose h3 { font-size: var(--step-1); margin-top: 1.35rem; }
.prose ul { color: var(--ink-soft); padding-left: 1.25rem; }
.prose li { margin-bottom: 0.5rem; }
.prose a { color: var(--coral-deep); }

/* ==========================================================================
   Order panel (shirts.html)
   --------------------------------------------------------------------------
   Options and shipping details on the left, a sticky summary with the running
   total on the right. Collapses to one column on narrow screens.
   ========================================================================== */

.order {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: start;
}
@media (max-width: 900px) { .order { grid-template-columns: 1fr; } }

.order__group { border: 0; padding: 0; margin: 0 0 clamp(1.5rem, 2.6vw, 2.1rem); }
.order__group[hidden] { display: none; }
.order__group legend {
  padding: 0; margin-bottom: 0.9rem;
  font-size: var(--step--1); letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft);
}
.order__hint { font-size: 0.88rem; color: var(--ink-soft); margin: 0.8rem 0 0; }

/* ---- Size pills ---- */

.sizes { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.size { position: relative; display: block; }
.size input {
  position: absolute; inset: 0; width: 100%; height: 100%;
  margin: 0; opacity: 0; cursor: pointer;
}
.size span {
  display: grid; place-items: center;
  min-width: 3.5rem; padding: 0.7rem 0.95rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  font-size: 0.95rem; letter-spacing: 0.06em;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.size:hover span { border-color: var(--coral-deep); }
.size input:checked + span {
  background: var(--coral-deep); border-color: var(--coral-deep); color: #fff;
}
.size input:focus-visible + span { outline: 2px solid var(--coral-deep); outline-offset: 2px; }

/* ---- Text fields ---- */

.field-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem 1.1rem;
}
.field--wide { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft);
}
.field .opt { letter-spacing: 0; text-transform: none; opacity: 0.7; }
.field input, .field textarea {
  width: 100%; padding: 0.72rem 0.85rem;
  background: var(--paper); color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color 0.3s var(--ease);
}
.field input:focus, .field textarea:focus { outline: 0; border-color: var(--coral-deep); }
.field textarea { resize: vertical; }
.field--qty { max-width: 8.5rem; }

/* ---- Summary ---- */

.order__side { position: sticky; top: calc(var(--header-h, 96px) + 1rem); }
@media (max-width: 900px) { .order__side { position: static; } }

.order__summary {
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
  padding: clamp(1.35rem, 2.2vw, 1.9rem);
}
.order__summary h3 { font-size: var(--step-1); margin-bottom: 1.1rem; }
.order__row {
  display: flex; justify-content: space-between; gap: 1rem;
  margin: 0 0 0.6rem; font-size: 0.95rem; color: var(--ink-soft);
}
.order__row--total {
  margin: 1rem 0 0; padding-top: 0.9rem; border-top: 1px solid var(--line);
  font-size: var(--step-1); color: var(--ink);
}
.order__actions { margin-top: 1.4rem; }
.order__btn { width: 100%; text-align: center; padding-inline: 1.25rem; }
.order__btn[disabled] { opacity: 0.6; cursor: default; transform: none; }
.order__note { margin: 1rem 0 0; font-size: 0.85rem; color: var(--ink-soft); }
.order__error {
  margin: 1rem 0 0; padding-left: 0.8rem;
  border-left: 2px solid var(--coral-deep);
  font-size: 0.88rem; color: var(--coral-deep);
}

.order__alert {
  margin: 0 0 clamp(1.5rem, 2.5vw, 2rem); padding: 0.9rem 1.1rem;
  background: var(--paper); border: 1px solid var(--line);
  border-left: 3px solid var(--coral-deep); border-radius: var(--radius);
  font-size: 0.92rem; color: var(--ink-soft);
}

/* In-stock flag on the shop page */
.stock-flag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: var(--step--1); letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--coral-deep); margin-bottom: 0.75rem;
}
.stock-flag::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--coral-deep);
}
