/* =========================================================================
   Ke Iki Lūʻau — stylesheet
   Palette sampled from the hero photograph: sunset ember, deep ocean ink,
   bleached sand. Everything else is neutral so the photography carries the
   page.
   ========================================================================= */

/* ---- Tokens ------------------------------------------------------------ */
:root {
  --ink:        #12212a;
  --ink-2:      #33474f;
  --muted:      #58676d;
  --sand:       #faf5ec;
  --sand-2:     #f1e8d9;
  --sand-3:     #e6d9c4;
  --ember:      #bd551f;   /* fills only — white on this is 4.7:1 */
  --ember-ink:  #a54a1b;   /* ember as TEXT on a light background */
  --ember-2:    #8d3b12;
  --sea:        #2c534c;
  --gold:       #79612d;
  --line:       rgba(18, 33, 42, 0.14);
  --line-soft:  rgba(18, 33, 42, 0.08);

  /* Cinzel: a carved, inscriptional serif — the face Mauka Warriors uses for
     its heritage copy. Covers the ʻokina (U+02BB) and kahakō (ā ē ī ō ū). */
  --display: "Cinzel", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans:    "Karla", ui-sans-serif, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --radius:    6px;
  --radius-lg: 10px;
  --pill:      999px;

  /* Fluid type scale, ~1.25 ratio at the small end and ~1.33 at the large. */
  --t-xs:  0.75rem;
  --t-sm:  0.875rem;
  --t-base: clamp(1rem, 0.97rem + 0.15vw, 1.0625rem);
  --t-lg:  clamp(1.125rem, 1.06rem + 0.32vw, 1.3125rem);
  --t-xl:  clamp(1.5rem, 1.34rem + 0.8vw, 2rem);
  --t-2xl: clamp(1.5rem, 1.3rem + 1.1vw, 2.15rem);
  --t-3xl: clamp(1.85rem, 1.45rem + 2.0vw, 3.1rem);

  /* 8px rhythm. Every vertical gap on the site is one of these. */
  --s-1: 0.5rem;  --s-2: 1rem;   --s-3: 1.5rem;  --s-4: 2rem;
  --s-5: 3rem;    --s-6: 4rem;   --s-7: 6rem;    --s-8: 8rem;

  --wrap: 1120px;
  --measure: 66ch;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---- Reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--t-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
dl, dd { margin: 0; }

/* ---- Typography -------------------------------------------------------- */
.display {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
/* Sentence-case escape hatch for the few places shouting would be wrong. */
.display--plain { text-transform: none; letter-spacing: 0; font-weight: 700; }
.display--xl { font-size: var(--t-3xl); }
.display--lg { font-size: var(--t-2xl); }
.display--md { font-size: var(--t-xl); line-height: 1.18; }

/* Small letterspaced label above a heading. Used consistently site-wide. */
.eyebrow {
  display: block;
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-2);
}
.eyebrow--light { color: rgba(255, 255, 255, 0.72); }

.lede {
  font-size: var(--t-lg);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: var(--measure);
}
.prose p + p { margin-top: var(--s-3); }
.prose { max-width: var(--measure); color: var(--ink-2); }

.muted { color: var(--muted); }
.center { text-align: center; }
.center .lede, .center .prose { margin-inline: auto; }

/* ---- Layout ------------------------------------------------------------ */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - 2.5rem, 760px); margin-inline: auto; }

.section { padding-block: var(--s-7); }
.section--tight { padding-block: var(--s-6); }
.section--tint { background: var(--sand-2); }
.section--dark { background: var(--ink); color: var(--sand); }
.section--dark .lede,
.section--dark .prose { color: rgba(250, 245, 236, 0.78); }

/* Hairline divider with a small sun-and-horizon ornament at its centre. */
.rule {
  display: flex; align-items: center; gap: var(--s-3);
  color: var(--gold);
  margin-block: var(--s-5);
}
.rule::before, .rule::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.rule svg { flex: none; width: 26px; height: 26px; opacity: 0.75; }
.section--dark .rule::before,
.section--dark .rule::after { background: rgba(250, 245, 236, 0.22); }

/* ---- Header / navigation ----------------------------------------------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--sand); padding: var(--s-2) var(--s-3);
}
.skip-link:focus { left: var(--s-2); top: var(--s-2); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 245, 236, 0.96);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  box-shadow: 0 1px 0 var(--line);
  transition: box-shadow 0.35s var(--ease);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4);
  padding-block: var(--s-3);
}

/* Transparent over a hero photo, solid once the page scrolls. */
.site-header[data-solid="true"] {
  background: rgba(250, 245, 236, 0.94);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.brand { display: block; text-decoration: none; line-height: 1.1; }
.brand__name {
  font-family: var(--display);
  font-size: 1.3125rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.brand__sub {
  display: block;
  font-size: 0.625rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: var(--s-4); }
.nav__list { display: flex; gap: var(--s-4); list-style: none; }
.nav__link {
  position: relative;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  padding-block: 2px;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__link:hover::after,
.nav__link:focus-visible::after { transform: scaleX(1); }
.nav__link[aria-current="page"]::after { transform: scaleX(1); background: var(--ember-ink); }

/* Over the hero, the header contents are white. */
.site-header[data-solid="false"] { color: #fff; }
.site-header[data-solid="false"] .brand__sub { color: rgba(255, 255, 255, 0.72); }
.site-header[data-solid="false"] .nav__toggle span { background: #fff; }

.nav__toggle {
  display: none;
  width: 40px; height: 40px; padding: 0;
  background: none; border: 0; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 5px; align-items: center;
}
.nav__toggle span {
  display: block; width: 22px; height: 1.5px; background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__list {
    position: fixed; inset: 0 0 auto 0;
    flex-direction: column; gap: var(--s-3);
    background: var(--sand);
    color: var(--ink);
    padding: 6.5rem var(--s-4) var(--s-5);
    box-shadow: 0 12px 32px rgba(18, 33, 42, 0.16);
    transform: translateY(-100%);
    /* visibility keeps the closed drawer out of the tab order, and stops it
       flashing before web fonts settle its height. */
    visibility: hidden;
    transition: transform 0.4s var(--ease), visibility 0s 0.4s;
    max-height: 100svh;
    overflow-y: auto;
  }
  .nav__list[data-open="true"] {
    transform: translateY(0);
    visibility: visible;
    transition: transform 0.4s var(--ease), visibility 0s;
  }
  .nav__link { font-family: var(--display); font-size: 1.5rem; }
}

/* ---- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2rem;
  border: 2px solid currentColor;
  border-radius: var(--pill);
  color: var(--ink);
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:hover, .btn:focus-visible { background: var(--ink); color: var(--sand); transform: translateY(-1px); }
.btn--light { color: #fff; }
.btn--light:hover, .btn--light:focus-visible { background: #fff; color: var(--ink); }
.btn--solid { background: var(--ember); border-color: var(--ember); color: #fff;
  box-shadow: 0 10px 24px -12px rgba(189, 85, 31, 0.8); }
.btn--solid:hover, .btn--solid:focus-visible { background: var(--ember-2); border-color: var(--ember-2); color: #fff; }

/* ---- Hero -------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding-block: var(--s-7) var(--s-6);
  color: #fff;
  overflow: hidden;
}
.hero--short { min-height: 62svh; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
/* Two stacked scrims: one bottom-up for text contrast, one flat to knock the
   photo back a touch so the type never fights the sky. */
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(10, 20, 26, 0.82) 0%, rgba(10, 20, 26, 0.35) 42%, rgba(10, 20, 26, 0.12) 70%),
    linear-gradient(to bottom, rgba(10, 20, 26, 0.45), rgba(10, 20, 26, 0) 38%);
}
.hero__inner { position: relative; }
.hero__title { max-width: 16ch; text-shadow: 0 1px 30px rgba(0, 0, 0, 0.28); }
.hero__meta {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: var(--s-2) var(--s-3);
  margin-top: var(--s-3);
  font-size: var(--t-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}
.hero__meta span { display: inline-flex; align-items: center; gap: var(--s-3); }
.hero__meta span + span::before {
  content: ""; width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-4); }

/* ---- Countdown --------------------------------------------------------- */
.countdown {
  display: flex; flex-wrap: wrap; gap: var(--s-4) var(--s-5);
  margin-top: var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.countdown__unit { min-width: 4.5rem; }
.countdown__num {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown__label {
  display: block;
  font-size: 0.625rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
}

/* ---- Page header (interior pages) -------------------------------------- */
.page-head { padding: var(--s-6) 0 var(--s-5); background: var(--sand-2); }
.page-head .display { max-width: 18ch; }

/* ---- Grids and cards --------------------------------------------------- */
.grid { display: grid; gap: var(--s-5); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* Text beside an image, alternating side on request. */
.split { display: grid; gap: var(--s-5); align-items: center; }
@media (min-width: 820px) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
  .split--wide-media { grid-template-columns: 1.15fr 1fr; }
  .split--flip .split__media { order: 2; }
}
.split__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.card { border-top: 1px solid var(--line); padding-top: var(--s-3); }
.card__title { font-family: var(--display); font-size: var(--t-lg); margin-bottom: var(--s-1); }
.card__body { color: var(--ink-2); font-size: var(--t-sm); line-height: 1.7; }

figure { margin: 0; }
.figure__caption {
  margin-top: var(--s-2);
  font-size: var(--t-xs);
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* ---- Full-bleed image band --------------------------------------------- */
.band { position: relative; display: grid; place-items: center; min-height: 58svh; color: #fff; overflow: hidden; }
.band__media { position: absolute; inset: 0; }
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.band__media::after { content: ""; position: absolute; inset: 0; background: rgba(10, 20, 26, 0.5); }
.band__inner { position: relative; padding-block: var(--s-6); }
.band blockquote { margin: 0; }
.band cite {
  display: block; margin-top: var(--s-3);
  font-style: normal; font-size: var(--t-xs);
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

/* ---- Timeline (the evening) -------------------------------------------- */
.timeline { list-style: none; }
.timeline__item {
  display: grid;
  gap: var(--s-1) var(--s-4);
  padding-block: var(--s-4);
  border-top: 1px solid var(--line);
}
@media (min-width: 720px) {
  .timeline__item { grid-template-columns: 8.5rem 1fr; }
}
.timeline__time {
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember-ink);
  font-variant-numeric: tabular-nums;
  padding-top: 0.35rem;
}
.timeline__title { font-family: var(--display); font-size: var(--t-xl); line-height: 1.2; }
.timeline__body { color: var(--ink-2); margin-top: var(--s-1); max-width: 58ch; }

/* ---- Menu -------------------------------------------------------------- */
.menu-group + .menu-group { margin-top: var(--s-6); }
.menu-group__head {
  display: flex; align-items: baseline; gap: var(--s-3);
  margin-bottom: var(--s-4);
}
.menu-group__head::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.menu-group__title {
  font-family: var(--display); font-size: var(--t-xl);
}
.menu-group__note { font-size: var(--t-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

.menu-list { list-style: none; display: grid; gap: var(--s-4); }
@media (min-width: 760px) { .menu-list { grid-template-columns: 1fr 1fr; gap: var(--s-4) var(--s-6); } }
.menu-item__name { font-family: var(--display); font-size: var(--t-lg); line-height: 1.3; }
.menu-item__hawaiian { font-family: var(--sans); font-style: italic; color: var(--ember-ink); }
.menu-item__desc { font-size: var(--t-sm); color: var(--ink-2); line-height: 1.65; margin-top: 4px; }
.menu-item__tag {
  display: inline-block; margin-top: var(--s-1);
  font-size: 0.625rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sea); border: 1px solid rgba(44, 83, 76, 0.3);
  padding: 2px 8px;
}

/* ---- Definition list (details / directions) ---------------------------- */
.details { display: grid; gap: 0; }
.details__row {
  display: grid; gap: var(--s-1) var(--s-4);
  padding-block: var(--s-3);
  border-top: 1px solid var(--line);
}
@media (min-width: 640px) { .details__row { grid-template-columns: 11rem 1fr; } }
.details__row:last-child { border-bottom: 1px solid var(--line); }
.details__key {
  font-size: var(--t-xs); font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
  padding-top: 0.3rem;
}
.details__val { color: var(--ink-2); }
.details__val strong { color: var(--ink); font-weight: 700; }


/* ---- FAQ --------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--display); font-size: var(--t-lg); color: var(--ink);
  padding: var(--s-3) var(--s-4) var(--s-3) 0;
  display: flex; justify-content: space-between; align-items: center; gap: var(--s-3);
}
.faq__icon { flex: none; width: 14px; height: 14px; position: relative; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; inset: 50% 0 auto 0;
  height: 1px; background: var(--ember-ink);
}
.faq__icon::after { transform: rotate(90deg); transition: transform 0.3s var(--ease); }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: rotate(0); }
.faq__a { display: none; padding-bottom: var(--s-4); color: var(--ink-2); max-width: 62ch; }
.faq__a[data-open="true"] { display: block; }

/* ---- Footer ------------------------------------------------------------ */
.site-footer { background: var(--ink); color: rgba(250, 245, 236, 0.8); padding-block: var(--s-6) var(--s-4); }
.site-footer a { color: rgba(250, 245, 236, 0.8); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer__grid { display: grid; gap: var(--s-5); }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: var(--s-6); } }
.footer__brand .brand__name { color: var(--sand); }
.footer__title {
  font-size: var(--t-xs); font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(250, 245, 236, 0.62);
  margin-bottom: var(--s-2);
}
.footer__list { list-style: none; display: grid; gap: var(--s-1); font-size: var(--t-sm); }
.footer__bottom {
  margin-top: var(--s-5); padding-top: var(--s-3);
  border-top: 1px solid rgba(250, 245, 236, 0.14);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s-2);
  font-size: var(--t-xs); color: rgba(250, 245, 236, 0.62);
}

/* ---- Scroll reveal ----------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal][data-visible="true"] { opacity: 1; transform: none; }

@media (max-width: 560px) {
  /* Stack the meta line rather than wrapping it, so the separator dots
     never end up leading a line and reading as bullet points. */
  .hero__meta { display: block; }
  .hero__meta span { display: block; }
  .hero__meta span + span { margin-top: 0.35rem; }
  .hero__meta span + span::before { content: none; }
  .countdown { gap: var(--s-3) var(--s-4); }
  .countdown__unit { min-width: 3.5rem; }
  .hero__actions .btn { flex: 1 1 auto; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Keep content visible if JS never runs. */
.no-js [data-reveal] { opacity: 1; transform: none; }

:focus-visible { outline: 2px solid var(--ember); outline-offset: 3px; }
::selection { background: var(--ember); color: #fff; }

/* =========================================================================
   Booking / availability
   ========================================================================= */

/* Prominent status banner — the "we are sold out" message. */
.notice {
  border: 1px solid var(--line);
  border-left: 3px solid var(--ember);
  background: #fff;
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
}
.notice--dark { background: rgba(255, 255, 255, 0.04); border-color: rgba(250,245,236,.2); }
.notice__title { font-family: var(--display); font-size: var(--t-xl); line-height: 1.2; }
.notice__body { color: var(--ink-2); margin-top: var(--s-2); max-width: 58ch; }
.section--dark .notice__body { color: rgba(250, 245, 236, 0.78); }

/* Status pill used in the availability table. */
.pill {
  display: inline-block;
  font-size: 0.625rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 4px 10px; border: 1px solid currentColor;
  white-space: nowrap;
}
.pill--soldout  { color: var(--ember-2); background: rgba(189, 85, 31, 0.07); }
.pill--upcoming { color: var(--sea);     background: rgba(44, 83, 76, 0.07); }
.pill--closed   { color: var(--muted); }

/* Availability list. A definition-style row per month rather than a real
   <table>, so it reflows to a stack on a phone without horizontal scroll. */
.avail { border-top: 1px solid var(--line); }
.avail__row {
  display: grid; gap: var(--s-1) var(--s-4);
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-block: var(--s-3);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) {
  .avail__row { grid-template-columns: 10rem 1fr auto; }
}
.avail__month {
  font-family: var(--display); font-size: var(--t-lg); line-height: 1.2;
}
.avail__date { font-size: var(--t-sm); color: var(--muted); }
.avail__note { font-size: var(--t-sm); color: var(--ink-2); }
@media (max-width: 719px) {
  .avail__note { grid-column: 1 / -1; }
}
.avail__row--next { background: rgba(44, 83, 76, 0.04); }
/* The pill is a grid item; without this it stretches to fill its column
   when it wraps onto its own row on narrow screens. */
.avail__row .pill { justify-self: start; }

/* Numbered steps for "how booking works". */
.steps { list-style: none; counter-reset: step; display: grid; gap: var(--s-4); }
@media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); } }
.steps__item { counter-increment: step; border-top: 1px solid var(--line); padding-top: var(--s-3); }
.steps__item::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--display); font-size: var(--t-xl);
  color: var(--gold); line-height: 1; margin-bottom: var(--s-2);
}
.steps__title { font-family: var(--display); font-size: var(--t-lg); margin-bottom: var(--s-1); }
.steps__body { font-size: var(--t-sm); color: var(--ink-2); line-height: 1.7; }

/* Price rows. */
.prices { border-top: 1px solid var(--line); }
.prices__row {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: var(--s-2) var(--s-4);
  padding-block: var(--s-3);
  border-bottom: 1px solid var(--line);
}
.prices__label { font-family: var(--display); font-size: var(--t-lg); }
.prices__sub { display: block; font-family: var(--sans); font-size: var(--t-sm); color: var(--muted); }
.prices__amount { font-family: var(--display); font-size: var(--t-lg); font-variant-numeric: tabular-nums; }

/* Countdown recoloured for use on a light background. */
.countdown--light { border-top-color: var(--line); }
.countdown--light .countdown__num { color: var(--ink); }
.countdown--light .countdown__label { color: var(--muted); }

/* A compact status line that sits under the hero actions. */
/* Block rather than flex: a bare text node in a flex container cannot shrink
   below its max-content width and overflows on a phone. */
.hero__status {
  position: relative;
  margin-top: var(--s-4);
  padding-left: 1.15rem;
  max-width: 46ch;
  font-size: var(--t-sm);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}
.hero__status::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 3px rgba(189, 85, 31, 0.3);
}

/* =========================================================================
   Commercial chrome
   ========================================================================= */

/* Announcement bar. Scrolls away; the header stays. */
.promo {
  background: var(--ember);
  color: #fff;
  text-align: center;
  padding: 0.7rem var(--s-3);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.promo a { color: #fff; text-underline-offset: 3px; }
.promo strong { font-weight: 800; }

/* Persistent booking call to action in the header. */
.nav__cta {
  display: inline-flex; align-items: center;
  font-family: var(--sans);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none;
  padding: 0.7rem 1.35rem;
  border-radius: var(--pill);
  background: var(--ember); color: #fff;
  border: 2px solid var(--ember);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.nav__cta:hover, .nav__cta:focus-visible { background: var(--ember-2); border-color: var(--ember-2); }
.site-header[data-solid="false"] .nav__cta { background: var(--ember); border-color: rgba(255,255,255,.35); }
@media (max-width: 860px) {
  .nav { gap: var(--s-2); }
  .nav__cta { padding: 0.6rem 1rem; font-size: 0.6875rem; }
}
@media (max-width: 400px) { .nav__cta { display: none; } }

/* Cards gain a photograph, as on every reference site. */
.card--media { border-top: 0; padding-top: 0; }
.card--media .card__media {
  display: block; overflow: hidden;
  border-radius: var(--radius); margin-bottom: var(--s-3);
}
.card--media .card__media img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.card--media:hover .card__media img { transform: scale(1.04); }
.card--media .card__title { font-size: var(--t-lg); text-transform: uppercase; letter-spacing: -0.01em; }

/* Rounded corners on the larger imagery, matching the softer commercial look. */
.split__media img,
.figure__media img,
.notice { border-radius: var(--radius); }
.hero__media img, .band__media img { border-radius: 0; }

/* Section headings sit a little tighter now that they are uppercase. */
.card__title, .steps__title,
.menu-group__title, .timeline__title, .avail__month {
  text-transform: uppercase; letter-spacing: -0.005em; font-weight: 700;
}
.menu-item__name { font-weight: 600; }

/* Eyebrows pick up the display face so the hierarchy reads as one system. */
.eyebrow { font-family: var(--sans); font-weight: 700; letter-spacing: 0.2em; }

/* Monthly dress theme, shown against each date in the availability list. */
.avail__theme {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.avail__theme::before { content: "\25C7"; margin-right: 0.45rem; opacity: 0.7; }

/* =========================================================================
   Month cards — the three sold-out dates, each led by its dress theme
   ========================================================================= */
.months { display: grid; gap: var(--s-3); }
@media (min-width: 780px) { .months { grid-template-columns: repeat(3, 1fr); gap: var(--s-4); } }

.month-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 1rem + 1.6vw, 2rem);
  display: flex; flex-direction: column;
  overflow: hidden;
}
/* Accent band per month, drawn from the site palette — no new colours. */
.month-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--accent, var(--ember));
}
.month-card--floral { --accent: var(--ember); }
.month-card--white  { --accent: var(--gold); }
.month-card--mele   { --accent: var(--sea); }

.month-card__month {
  font-family: var(--sans);
  font-size: var(--t-xs); font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
}
.month-card__date {
  font-family: var(--sans);
  font-size: var(--t-lg); font-weight: 700;
  text-transform: uppercase; letter-spacing: -0.01em;
  margin-top: 2px;
}
.month-card__theme {
  font-family: var(--display);
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.9rem);
  font-weight: 800; line-height: 1.05;
  text-transform: uppercase; letter-spacing: -0.02em;
  color: var(--accent);
  margin-top: var(--s-3);
}
.month-card__label {
  font-size: 0.625rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-top: var(--s-2);
}
.month-card__note {
  font-size: var(--t-sm); color: var(--ink-2);
  line-height: 1.6; margin-top: var(--s-1);
}
.month-card__foot { margin-top: auto; padding-top: var(--s-4); }
