/* ==========================================================================
   READY SET PICNIC — MASTER STYLESHEET
   Wichita, Kansas
   --------------------------------------------------------------------------
   EDIT POINTS
   1. Brand colors ............ :root  (line ~30)
   2. Picnic Style moods ...... .theme-* blocks (line ~120)
   3. Typography scale ........ :root  (line ~60)
   Everything else inherits from these tokens.
   ========================================================================== */

/* --------------------------------------------------------------------------
   FONTS
   Montserrat, Lora and Cormorant Garamond load from Google Fonts (see the
   <head> of each page).

   CELESTINA IS NOT USED ON THE SITE.
   The OTF you own appears to be a desktop licence, which normally does not
   permit serving the font from a web server. Headings therefore use Cormorant
   Garamond, a visually close serif that is licensed for web use.

   To switch to Celestina once a WEB licence is in hand:
     1. Convert the OTF to Celestina.woff2 + Celestina.woff in assets/fonts/
     2. Uncomment the @font-face below
     3. Put 'Celestina', at the front of --display
     4. Drop Cormorant from the Google Fonts URL in build_site.py and add
        a preload link for the woff2
   Note that Celestina ships in Regular only — there is no bold cut, which is
   why font-synthesis is switched off on headings further down.

@font-face {
  font-family: 'Celestina';
  src: url('../fonts/Celestina.woff2') format('woff2'),
       url('../fonts/Celestina.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   BRAND TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Official Ready Set Picnic palette */
  --navy: #0D2440;
  --gold: #D4AA23;
  --cream: #F5F1E6;
  --champagne: #EADFCB;

  /* Small gold text on any light section. Deep enough to clear WCAG AA
     (4.5:1) on white, cream, champagne, sunflower, lavender and blush —
     the brand gold itself only manages ~2.4:1 and fails at this size. */
  --gold-deep: #74590C;
  --navy-soft: #1B3A5C;   /* hairlines + hover on navy */
  --ink: #0D2440;
  --ink-muted: rgba(13, 36, 64, 0.72);
  --light-muted: rgba(245, 241, 230, 0.78);

  /* Live section colors — JavaScript swaps these as you scroll */
  --bg: var(--navy);
  --fg: var(--cream);
  --fg-muted: var(--light-muted);
  --rule: rgba(212, 170, 35, 0.42);

  /* Type */
  --display: 'Cormorant Garamond', 'Didot', Georgia, serif;
  --sans: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --accent: 'Lora', Georgia, serif;

  --step--1: clamp(0.78rem, 0.75rem + 0.15vw, 0.86rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.09rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.45rem);
  --step-2:  clamp(1.55rem, 1.35rem + 0.95vw, 2.15rem);
  --step-3:  clamp(2rem, 1.6rem + 1.9vw, 3.1rem);
  --step-4:  clamp(2.6rem, 1.9rem + 3.2vw, 4.6rem);

  /* Rhythm */
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --section-y: clamp(3rem, 5.5vw, 5.5rem);
  --measure: 62ch;
  --radius: 6px;
  --header-h: 76px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --color-fade: 1100ms;

  /* Small gold heart used as the bullet on every real bulleted list.
     Drawn as a mask so it takes whichever gold the section needs. */
  --heart: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z' fill='%23000'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   SECTION MOOD THEMES
   Applied by adding data-theme="..." to a <section>. JS reads these and
   fades the page background as the section reaches the middle of the screen.
   These moods do NOT replace the brand palette — they are temporary
   atmosphere while a visitor explores the Picnic Styles.
   -------------------------------------------------------------------------- */
.theme-navy       { --bg: #0D2440; --fg: #F5F1E6; --fg-muted: rgba(245,241,230,.78); --rule: rgba(212,170,35,.42); }
.theme-white      { --bg: #FFFFFF; --fg: #0D2440; --fg-muted: rgba(13,36,64,.72);    --rule: rgba(13,36,64,.14); }
.theme-cream      { --bg: #F5F1E6; --fg: #0D2440; --fg-muted: rgba(13,36,64,.72);    --rule: rgba(13,36,64,.16); }
.theme-champagne  { --bg: #EADFCB; --fg: #0D2440; --fg-muted: rgba(13,36,64,.72);    --rule: rgba(13,36,64,.18); }
.theme-sunflower  { --bg: #F2DFA6; --fg: #0D2440; --fg-muted: rgba(13,36,64,.74);    --rule: rgba(13,36,64,.18); }
.theme-lavender   { --bg: #E3D9EE; --fg: #0D2440; --fg-muted: rgba(13,36,64,.72);    --rule: rgba(13,36,64,.16); }
.theme-blush      { --bg: #F1DDD8; --fg: #0D2440; --fg-muted: rgba(13,36,64,.72);    --rule: rgba(13,36,64,.16); }
.theme-rose       { --bg: #F5D6C8; --fg: #0D2440; --fg-muted: rgba(13,36,64,.72);    --rule: rgba(13,36,64,.18); }

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--page-fg, #F5F1E6);
  background-color: var(--page-bg, #0D2440);
  transition: background-color var(--color-fade) var(--ease),
              color var(--color-fade) var(--ease);
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.005em;
  margin: 0 0 0.5em;
  /* Celestina has no bold cut — never let the browser fake one */
  font-synthesis: none;
  -webkit-font-synthesis: none;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-family: var(--sans); font-size: var(--step-1); font-weight: 600; letter-spacing: .01em; }

p { margin: 0 0 1.1em; max-width: var(--measure); }

a { color: inherit; }

.eyebrow {
  font-family: var(--sans);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
  display: block;
}
.theme-white .eyebrow, .theme-cream .eyebrow, .theme-champagne .eyebrow,
.theme-sunflower .eyebrow, .theme-lavender .eyebrow, .theme-blush .eyebrow,
.theme-rose .eyebrow {
  color: var(--gold-deep);
}

.accent-line {
  font-family: var(--accent);
  font-style: italic;
  font-size: var(--step-1);
  line-height: 1.5;
}

.muted { color: var(--fg-muted); }

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

/* Small gold divider flourish */
.divider {
  width: 84px; height: 1px; border: 0; margin: 2rem 0;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.divider.center { margin-inline: auto; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* --------------------------------------------------------------------------
   LAYOUT
   -------------------------------------------------------------------------- */
.wrap { width: min(1240px, 100% - (var(--gutter) * 2)); margin-inline: auto; }
.wrap-narrow { width: min(820px, 100% - (var(--gutter) * 2)); margin-inline: auto; }

section { padding-block: var(--section-y); position: relative; }

/* Each themed section paints its OWN background and text colour.
   Previously only the page background changed, and it changed late — so the
   top half of a light section rendered navy text on a still-navy page and the
   words vanished, leaving only the gold hearts and prices visible. */
[data-theme] { color: var(--fg); background-color: var(--bg); }

/* The colour journey stays smooth: the previous section's colour bleeds down
   over the top of the next one and fades out, so there is no hard seam at the
   boundary. --prev is set per section by main.js. */
[data-theme]::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0; z-index: 0;
  height: clamp(90px, 13vh, 200px); pointer-events: none;
  background: linear-gradient(to bottom, var(--prev, transparent), transparent);
}
[data-theme]:first-child::before { display: none; }

section > .wrap, section > .wrap-narrow { position: relative; z-index: 1; }

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split.text-40 { grid-template-columns: 40fr 60fr; }
  .split.media-60 { grid-template-columns: 60fr 40fr; }
  .split .media-first { order: -1; }
  .split.flip > *:first-child { order: 2; }
}

.stack-sm > * + * { margin-top: 0.75rem; }
.center { text-align: center; }
.center p, .center .lede { margin-inline: auto; }
/* When .center is on the paragraph itself it must centre its own box too,
   otherwise the 62ch measure leaves it sitting left of centre. */
p.center, .accent-line.center { margin-inline: auto; }

/* A page's opening heading block shouldn't leave a canyon before the content
   that follows it. */
main > section:first-child { padding-bottom: clamp(1.75rem, 3.5vw, 3rem); }
main > section:first-child.hero-video { padding-bottom: 0; }

/* --------------------------------------------------------------------------
   SKIP LINK
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold); color: var(--navy); padding: 0.75rem 1.25rem;
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* --------------------------------------------------------------------------
   HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: transparent;
  transition: background-color 350ms var(--ease), box-shadow 350ms var(--ease), padding 350ms var(--ease);
  padding-block: 0.85rem;
}
.site-header.is-solid {
  background: var(--navy);
  box-shadow: 0 1px 0 rgba(212, 170, 35, 0.28);
  padding-block: 0.4rem;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand img { width: 54px; height: 54px; transition: width 350ms var(--ease), height 350ms var(--ease); }
.site-header.is-solid .brand img { width: 44px; height: 44px; }
.brand .brand-name {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  line-height: 1.05;
  letter-spacing: .012em;
  color: var(--cream);
  white-space: nowrap;
}
/* The wordmark stays beside the mark on mobile — it just gets smaller,
   and the mark shrinks with it so the header stays compact. */
@media (max-width: 560px) {
  .brand { gap: .5rem; }
  .brand img { width: 40px; height: 40px; }
  .site-header.is-solid .brand img { width: 36px; height: 36px; }
  .brand .brand-name { font-size: 1rem; }
}
@media (max-width: 360px) {
  .brand img { width: 34px; height: 34px; }
  .brand .brand-name { font-size: .92rem; }
}

.nav { display: flex; align-items: center; gap: clamp(.7rem, 1.35vw, 1.35rem); }
.nav a {
  font-size: clamp(.72rem, .68rem + .12vw, .8rem);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  color: var(--cream);
  padding: 0.4rem 0;
  position: relative;
  white-space: nowrap;   /* nav labels must never wrap to two lines */
}
.nav > .btn { white-space: nowrap; padding: .8rem 1.25rem; }
.nav a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--gold); transition: right 280ms var(--ease);
}
.nav a:hover::after, .nav a:focus-visible::after { right: 0; }
.nav a[aria-current="page"] { color: var(--gold); }

.nav-toggle {
  display: none; background: none; border: 1px solid rgba(245,241,230,.4);
  color: var(--cream); border-radius: var(--radius);
  padding: 0.55rem 0.7rem; cursor: pointer; line-height: 0;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* Seven links plus the CTA and the wordmark need a little more room before
   the hamburger takes over */
@media (max-width: 1279px) {
  .nav-toggle { display: inline-block; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw);
    background: var(--navy); flex-direction: column; align-items: stretch;
    justify-content: flex-start; gap: 0; padding: 6rem 2rem 2rem;
    transform: translateX(100%); transition: transform 380ms var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,.35); overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav a { padding: 1rem 0; font-size: 1rem; letter-spacing: .13em; border-bottom: 1px solid rgba(245,241,230,.12); }
  .nav .btn { margin-top: 1.5rem; text-align: center; }
  body.nav-open { overflow: hidden; }
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--sans); font-size: var(--step--1); font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase; text-decoration: none;
  text-align: center;  /* keeps wrapped labels centred, not ragged left */
  padding: 1rem 1.9rem; border-radius: var(--radius); border: 1.5px solid transparent;
  cursor: pointer; transition: transform 220ms var(--ease), background-color 220ms var(--ease),
              color 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* Gold on navy */
.btn-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-primary:hover { background: #E4BB33; border-color: #E4BB33; box-shadow: 0 10px 24px rgba(0,0,0,.22); }

/* Navy on cream / light backgrounds */
.btn-navy { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.btn-navy:hover { background: #143257; box-shadow: 0 10px 24px rgba(13,36,64,.22); }

/* Outline — inherits current section colors */
.btn-outline { background: transparent; color: var(--fg); border-color: currentColor; }
.btn-outline:hover { background: var(--fg); color: var(--bg); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.center .btn-row { justify-content: center; }

/* Text link with arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: var(--step--1); font-weight: 600; letter-spacing: 0.13em;
  text-transform: uppercase; text-decoration: none;
  border-bottom: 1px solid var(--rule); padding-bottom: 0.35rem;
}
.link-arrow span { transition: transform 240ms var(--ease); }
.link-arrow:hover span { transform: translateX(5px); }
.link-arrow:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

/* --------------------------------------------------------------------------
   HERO — full-bleed video directly under the navigation, then a navy
   intro band carrying the headline, price and calls to action.
   -------------------------------------------------------------------------- */
.hero-video {
  position: relative; width: 100%; overflow: hidden;
  padding-block: 0; line-height: 0; background: var(--navy);
  /* Cinematic, and it crops rather than growing tall. Mobile keeps more of
     the frame; wide screens letterbox toward a filmic ratio. */
  aspect-ratio: 4 / 3;
  max-height: 82vh;
}
@media (min-width: 640px)  { .hero-video { aspect-ratio: 16 / 9; } }
@media (min-width: 1200px) { .hero-video { aspect-ratio: 21 / 9; max-height: 78vh; } }

.hero-video video {
  width: 100%; height: 100%; object-fit: cover; object-position: center 55%;
  display: block;
}
/* Keeps the sticky header legible over a bright frame */
.hero-video::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(13,36,64,.45) 0%, rgba(13,36,64,0) 22%);
}
.hero-video .ph { min-height: 100%; }

.hero-intro { padding-block: clamp(3rem, 7vw, 6rem); }
.hero-intro h1 { margin-bottom: 0.5em; font-size: clamp(2.2rem, 1.6rem + 2.5vw, 3.6rem); }
/* The headline is set in Celestina, which has only one weight — so <strong>
   here inherits rather than triggering a synthetic bold. */
h1 strong, h2 strong { font-weight: inherit; }
.hero-sub { font-size: var(--step-1); color: var(--light-muted); }

/* Narrower measure and roomier gaps between paragraphs — easier to read than
   the same words set wide, and no smaller type. */
.intro-copy { --measure: 44ch; }
.intro-copy p { max-width: var(--measure); }
.intro-copy p + p { margin-top: 1.75rem; }
.intro-copy h2, .intro-copy h1 { max-width: 20ch; }
.intro-copy .btn-row { margin-top: 2.25rem; }

/* Brand moment band — the pin mark anchors an otherwise empty navy stretch */
.band-brand { padding-block: clamp(3rem, 6vw, 5rem); }
.band-brand .band-mark { width: 104px; height: 104px; margin: 0 auto 1.75rem; }

/* A real photograph, semi-transparent, behind a panel's content.
   The scrim over it keeps text well above AA contrast. */
.panel-media { position: relative; overflow: hidden; isolation: isolate; }
.panel-media > h3, .panel-media > ul, .panel-media > p { position: relative; z-index: 2; }
.panel-bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: .6; pointer-events: none;
}
.panel-media::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: rgba(245, 241, 230, .74);          /* light sections */
}
.theme-navy .panel-media { background: var(--navy); }
.theme-navy .panel-media::after { background: rgba(13, 36, 64, .66); }
.theme-white .panel-media { background: #fff; }
.theme-white .panel-media::after { background: rgba(255, 255, 255, .76); }
/* Rental time lines — tight stack, each on its own line */
.time-lines p { margin-bottom: .5rem; }
.time-lines p:last-child { margin-bottom: 0; }
.center .time-lines p { margin-inline: auto; }

.hero-price {
  font-family: var(--accent); font-style: italic; font-size: var(--step-1);
  color: var(--gold); margin-top: 1.4rem;
}

/* --------------------------------------------------------------------------
   MEDIA + PLACEHOLDERS
   -------------------------------------------------------------------------- */
.media { position: relative; overflow: hidden; border-radius: var(--radius); background: rgba(13,36,64,.06); }
.media img, .media video { width: 100%; height: 100%; object-fit: cover; }

/* iOS paints its own large play glyph over any video it will not autoplay.
   These rules remove it, so a blocked video shows its poster frame instead of
   a button. Tapping the video still starts it. */
video::-webkit-media-controls,
video::-webkit-media-controls-panel,
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-overlay-play-button,
video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0;
}
.media video { cursor: default; }
/* Photography is landscape. Hero-length video (10–20s) is landscape.
   Longer Picnic Style / Custom videos are vertical. */
.media-landscape { aspect-ratio: 3 / 2; }   /* all still photography */
.media-wide      { aspect-ratio: 16 / 10; }
.media-video     { aspect-ratio: 16 / 9; }  /* short landscape hero video */
.media-vertical  { aspect-ratio: 9 / 16; }  /* longer vertical video */
.media-hero      { aspect-ratio: 21 / 9; }

/* Breathing room between each row of a style section — the CTA button used to
   sit flush against the images below it. */
.style-media { margin-top: clamp(2.5rem, 5vw, 4rem); }

/* Vertical video never dominates a desktop row */
.video-split { align-items: start; }
.video-split .media-vertical { max-width: 420px; margin-inline: auto; width: 100%; }
@media (min-width: 900px) { .video-split { grid-template-columns: 38fr 62fr; } }
.stacked-media { display: grid; gap: clamp(.75rem, 1.5vw, 1.25rem); }

/* A Picnic Style whose feature photograph hasn't been shot yet leads its row
   with the vertical video instead. Same restraint as .video-split: the video
   is capped so it never towers over the copy sitting beside it. */
.lead-video-row { align-items: center; }
.lead-video .media-vertical { max-width: 340px; margin-inline: auto; width: 100%; }
@media (min-width: 900px) { .lead-video-row { grid-template-columns: 62fr 38fr; } }
@media (min-width: 900px) { .lead-video-row.flip { grid-template-columns: 38fr 62fr; } }

/* Full-bleed photography band */
.band { position: relative; min-height: 62vh; display: grid; place-items: center; overflow: hidden; padding-block: 0; }
.band .band-media { position: absolute; inset: 0; }
.band .band-media img, .band .band-media video { width: 100%; height: 100%; object-fit: cover; }
.band .band-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,36,64,.62), rgba(13,36,64,.34)); }
.band .band-content { position: relative; z-index: 2; color: var(--cream); text-align: center; padding: clamp(3rem,8vw,6rem) var(--gutter); }
.band .band-content p { margin-inline: auto; color: rgba(245,241,230,.9); }

/* Development placeholder — swapped in automatically when a file is missing */
.ph {
  display: grid; place-content: center; gap: 0.5rem; text-align: center;
  width: 100%; height: 100%; min-height: 180px; padding: 2rem 1.5rem;
  background:
    repeating-linear-gradient(135deg, rgba(13,36,64,.045) 0 12px, rgba(13,36,64,.09) 12px 24px);
  border: 1px dashed rgba(13,36,64,.35);
  border-radius: var(--radius);
  color: rgba(13,36,64,.78);
}
.theme-navy .ph, .hero-video .ph, .band .ph {
  background: repeating-linear-gradient(135deg, rgba(245,241,230,.06) 0 12px, rgba(245,241,230,.12) 12px 24px);
  border-color: rgba(245,241,230,.4); color: rgba(245,241,230,.85);
}
.ph-label { font-size: var(--step--1); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.ph-note { font-family: var(--accent); font-style: italic; font-size: var(--step--1); opacity: .85; }

/* --------------------------------------------------------------------------
   PICNIC STYLE SECTIONS
   -------------------------------------------------------------------------- */
.style-section { overflow: hidden; }
.style-name { margin-bottom: 0.25em; }

/* Anchor target sits at the title, so a directory link lands with the style
   name just under the header rather than mid-section. */
.anchor { display: block; height: 0; scroll-margin-top: calc(var(--header-h) + 1.25rem); }

/* Quick directory of every style — heart bullets, in columns */
.style-directory {
  margin: clamp(2rem, 4vw, 3rem) auto 0; max-width: 640px; text-align: left;
}
.style-directory .eyebrow { text-align: center; }
.style-list {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: .75rem 1.75rem;
}
.style-list a {
  text-decoration: none; font-size: var(--step-0);
  border-bottom: 1px solid transparent; padding-bottom: 1px;
  transition: border-color 200ms var(--ease), color 200ms var(--ease);
}
.style-list a:hover, .style-list a:focus-visible { border-bottom-color: currentColor; }
.style-list a:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

/* View more photos — mobile only; desktop shows everything */
.more-toggle { display: none; margin-top: 1.75rem; width: 100%; }
.more-toggle .more-close { display: none; }
.more-toggle[aria-expanded="true"] .more-open { display: none; }
.more-toggle[aria-expanded="true"] .more-close { display: inline; }

/* ---- MOBILE ORDER: title, video, description, then photos ---- */
@media (max-width: 899px) {
  .style-section > .wrap { display: flex; flex-direction: column; }
  /* let the desktop grouping wrappers dissolve so each block can be ordered */
  .style-section .style-main,
  .style-section .style-media { display: contents; }

  .style-section .anchor       { order: 0; }
  .style-section .style-head   { order: 1; }
  .style-section .style-video  { order: 2; margin-top: 1.25rem; }
  .style-section .style-copy   { order: 3; margin-top: 1.75rem; }
  .style-section .more-toggle  { order: 4; display: inline-flex; }
  .style-section .style-feature{ order: 5; }
  .style-section .style-stack  { order: 6; }
  .style-section .gallery      { order: 7; }

  .style-section .style-feature,
  .style-section .style-stack { margin-top: 1rem; }
  .style-section .style-stack { display: grid; gap: 1rem; }

  /* Photos stay collapsed until asked for */
  .style-section[data-more="closed"] .style-more-item { display: none; }

  .video-split .media-vertical { max-width: 340px; }
}
.style-meta { display: grid; gap: 1.25rem; margin: 1.75rem 0 0; }
@media (min-width: 560px) { .style-meta { grid-template-columns: 1fr 1fr; } }
.style-meta dt {
  font-size: var(--step--1); font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .35rem;
}
.theme-white .style-meta dt, .theme-cream .style-meta dt, .theme-champagne .style-meta dt, .theme-sunflower .style-meta dt,
.theme-lavender .style-meta dt, .theme-blush .style-meta dt,
.theme-rose .style-meta dt { color: var(--gold-deep); }
.style-meta dd { margin: 0; color: var(--fg-muted); }

/* auto-fit keeps the row full whether a style has two or three gallery photos —
   no ragged gap on the right */
.gallery {
  display: grid; gap: clamp(.75rem, 1.5vw, 1.25rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  margin-top: clamp(2rem, 4vw, 3.5rem);
}
.gallery .media { aspect-ratio: 3 / 2; }
.gallery .span-2 { grid-column: span 2; aspect-ratio: 3 / 2; }

/* Swipe-friendly on small screens */
@media (max-width: 559px) {
  .gallery.swipe {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: .75rem; padding-bottom: .75rem; -webkit-overflow-scrolling: touch;
  }
  .gallery.swipe .media { flex: 0 0 82%; scroll-snap-align: center; aspect-ratio: 3/2; }
  .gallery.swipe .span-2 { flex: 0 0 90%; }
}

/* --------------------------------------------------------------------------
   CARDS / PANELS
   -------------------------------------------------------------------------- */
.cards { display: grid; gap: clamp(1rem, 2.5vw, 2rem); grid-template-columns: 1fr; }
@media (min-width: 720px) { .cards.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 720px) { .cards.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.panel {
  border: 1px solid var(--rule); border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(255,255,255,.28);
  display: flex; flex-direction: column;
}
.theme-navy .panel { background: rgba(245,241,230,.05); }
.panel h3 { font-family: var(--sans); font-size: var(--step-1); font-weight: 600; letter-spacing: .02em; }
.panel .price {
  font-family: var(--display); font-size: var(--step-3); line-height: 1; color: var(--gold);
  margin: .25rem 0 1rem;
}
.theme-white .panel .price, .theme-cream .panel .price, .theme-champagne .panel .price,
.theme-rose .panel .price { color: var(--gold-deep); }
.panel p { margin-bottom: 1.25rem; }
.panel .btn, .panel .link-arrow { margin-top: auto; align-self: flex-start; }

/* Booking choice cards — one colour each: morning light, evening navy,
   on-site champagne. */
.choice { text-decoration: none; transition: transform 260ms var(--ease), box-shadow 260ms var(--ease); }
.choice:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(13,36,64,.16); }
.choice .times {
  font-size: var(--step--1); letter-spacing: .1em; text-transform: uppercase;
  font-weight: 700; color: inherit;
}

.panel.choice-morning {
  background: #EBD28C;                       /* morning sun */
  border-color: rgba(13, 36, 64, .16);
}
.panel.choice-evening {
  background: var(--navy);                   /* evening */
  border-color: rgba(212, 170, 35, .5);
  color: var(--cream);
  --fg-muted: rgba(245, 241, 230, .82);      /* re-points .muted inside the card */
}
.panel.choice-evening h3 { color: var(--cream); }
.panel.choice-onsite {
  background: #C9B189;                       /* deeper champagne */
  border-color: rgba(13, 36, 64, .22);
}
.panel.choice-evening:hover { box-shadow: 0 18px 40px rgba(13, 36, 64, .34); }

/* Steps — auto-fit so four or five sit cleanly across without hard-coding
   a column count. Five across on desktop, wrapping on tablet, stacked on
   mobile. */
.steps {
  counter-reset: step; display: grid;
  gap: clamp(1.5rem, 2.5vw, 2.25rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 175px), 1fr));
  margin-top: 2.5rem;
}
.step { counter-increment: step; border-top: 1px solid var(--rule); padding-top: 1.25rem; }
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--display); font-size: var(--step-2); color: var(--gold);
  display: block; line-height: 1; margin-bottom: .6rem;
}
.theme-white .step::before, .theme-cream .step::before, .theme-champagne .step::before, .theme-sunflower .step::before,
.theme-rose .step::before { color: var(--gold-deep); }
.step h3 { font-family: var(--sans); font-size: var(--step-0); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
/* Centred on desktop so the numerals line up down the row */
@media (min-width: 900px) {
  .steps .step { text-align: center; }
  .steps .step p { margin-inline: auto; }
}
.step p { font-size: var(--step--1); color: var(--fg-muted); margin: 0; max-width: none; }

/* On-site explanation sitting under the five-step flow */
.onsite-explainer { max-width: 820px; margin: clamp(3rem, 6vw, 4.5rem) auto 0; }
.onsite-explainer h3 {
  font-family: var(--sans); font-size: var(--step-1); font-weight: 600;
  letter-spacing: .02em; text-align: center; margin-bottom: 1.75rem;
}
.onsite-explainer dl { display: grid; gap: 1.5rem; margin: 0; }
@media (min-width: 780px) { .onsite-explainer dl { grid-template-columns: repeat(3, 1fr); } }
.onsite-explainer dt {
  font-size: var(--step--1); font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-deep); margin-bottom: .5rem;
  padding-top: 1rem; border-top: 1px solid var(--rule);
}
.theme-navy .onsite-explainer dt { color: var(--gold); }
.onsite-explainer dd { margin: 0; color: var(--fg-muted); font-size: var(--step--1); }
.onsite-explainer > p { text-align: center; margin: 2rem auto 0; max-width: 60ch; }

/* Pricing table */
.price-list { border-top: 1px solid var(--rule); margin-top: 2.5rem; }
.price-row {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; align-items: baseline;
  justify-content: space-between; padding: 1.4rem 0; border-bottom: 1px solid var(--rule);
}
.price-row dt { font-size: var(--step-1); font-family: var(--sans); font-weight: 600; margin: 0; }
.price-row dd { margin: 0; font-family: var(--display); font-size: var(--step-2); color: var(--gold); line-height: 1; }
.theme-white .price-row dd, .theme-cream .price-row dd, .theme-champagne .price-row dd,
.theme-rose .price-row dd { color: var(--gold-deep); }
.price-row .note { flex-basis: 100%; font-size: var(--step--1); color: var(--fg-muted); margin: 0; }

/* --------------------------------------------------------------------------
   BULLETED LISTS — small gold hearts
   Real bulleted lists only. Numbered steps, navigation, buttons, form options
   and the city/idea pill lists keep their own treatment.
   -------------------------------------------------------------------------- */
.tick-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.tick-list li { position: relative; padding-left: 1.6rem; }
/* Polished gold, not flat gold: a raking gradient across the heart reads as
   metal — deep shadow, bright face, a highlight, then shadow again. */
.tick-list li::before {
  content: ''; position: absolute; left: 0; top: .46em;
  width: 11px; height: 11px;
  background-image: linear-gradient(140deg,
      #5E4507 0%, #9C7410 20%, #D6AB27 38%, #FBF0C8 47%,
      #E7C447 55%, #C09818 70%, #7A5C0B 88%, #4E3A06 100%);
  -webkit-mask: var(--heart) center / contain no-repeat;
          mask: var(--heart) center / contain no-repeat;
}

/* Pricing detail blocks */
.price-blocks { margin-top: 2.5rem; border-top: 1px solid var(--rule); }
.price-block { padding: clamp(1.75rem, 3.5vw, 2.5rem) 0; border-bottom: 1px solid var(--rule); }
.price-block-head {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
  align-items: baseline; justify-content: space-between; margin-bottom: 1rem;
}
.price-block-head h3 {
  font-family: var(--sans); font-size: var(--step-1); font-weight: 600;
  letter-spacing: .02em; margin: 0;
}
.price-block-head .price {
  font-family: var(--display); font-size: var(--step-2); line-height: 1;
  color: var(--gold-deep); margin: 0; white-space: nowrap;
}
.theme-navy .price-block-head .price { color: var(--gold); }
.price-block-body p:last-child { margin-bottom: 0; }
.price-block-body .tick-list { margin: 1rem 0 1.25rem; }

/* --------------------------------------------------------------------------
   SERVICE AREA MAP
   Radius Mapper embed in a Ready. Set. Picnic. card. Only the surrounding
   presentation is styled — never the third-party iframe's own graphics.
   -------------------------------------------------------------------------- */
.map-block {
  max-width: 700px; margin-inline: auto;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.map-block h3 { font-size: var(--step-2); margin-bottom: .6rem; }
.map-block p { margin-inline: auto; max-width: 62ch; }
.map-block .btn-row { justify-content: center; }

.service-area-map {
  max-width: 700px;
  margin: 2rem auto;
  background: var(--cream);
  padding: 18px;
  border: 1px solid var(--gold);
  border-radius: 12px;                      /* softened to sit with --radius */
  box-shadow: 0 10px 28px rgba(13, 36, 64, .10);
}
/* On a cream section the cream card would vanish — go white there instead */
.theme-cream .service-area-map, .theme-white .service-area-map { background: #fff; }

.service-area-map img {
  display: block; width: 100%; height: auto;
  border-radius: var(--radius);
}

.city-list {
  list-style: none; margin: 1rem auto 1.5rem; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem .6rem;
  max-width: 60ch;
}
.city-list li {
  font-size: var(--step--1); letter-spacing: .04em;
  border: 1px solid var(--rule); border-radius: 100px;
  padding: .35rem .9rem; background: rgba(255,255,255,.4);
}
.theme-navy .city-list li { background: rgba(245,241,230,.06); }

@media (max-width: 600px) {
  .service-area-map { padding: 12px; margin-inline: 0; border-radius: 10px; }

  .map-block h3 { font-size: var(--step-1); }
}

/* --------------------------------------------------------------------------
   FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-toc { border: 1px solid var(--rule); border-radius: var(--radius); padding: 1.5rem 1.75rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.faq-toc ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
@media (min-width: 620px) { .faq-toc ul { grid-template-columns: 1fr 1fr; column-gap: 2rem; } }
.faq-toc a { font-size: var(--step--1); text-decoration: none; border-bottom: 1px solid var(--rule); padding-bottom: 2px; }
.faq-toc a:hover { border-color: currentColor; }

.faq-heading {
  font-size: var(--step-2); margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  padding-top: 1.25rem; scroll-margin-top: calc(var(--header-h) + 1.5rem);
}
.faq-heading:first-of-type { margin-top: 0; }

/* --------------------------------------------------------------------------
   ABOUT — the founder's story
   -------------------------------------------------------------------------- */
.story { max-width: 68ch; margin: clamp(2.5rem, 5vw, 3.5rem) auto 0; }
.story p { max-width: none; }
.story .divider.center { margin-block: 2.25rem; }
/* The short standalone lines get room to land */
.story-beat {
  margin-block: 1.75rem; font-size: var(--step-1);
}
.story-close {
  text-align: center; font-size: var(--step-1); margin-bottom: 0;
}

/* Polaroid — square image, thick bottom lip, handwritten caption, tilted just
   enough to look set down rather than placed. */
.polaroid {
  margin: 0 auto; max-width: 420px; width: 100%;
  background: #FCFBF7; padding: 15px 15px 0;
  border-radius: 2px;
  box-shadow: 0 20px 44px rgba(13, 36, 64, .26), 0 2px 6px rgba(13, 36, 64, .14);
  transform: rotate(-2.2deg);
}
.polaroid img {
  width: 100%; height: auto; display: block;
  border-radius: 0; box-shadow: none;
}
.polaroid figcaption {
  text-align: center; padding: .8rem .5rem 1.1rem;
  color: #33465C;                 /* ballpoint, not pure black */
  display: grid; gap: .3rem;
}
.pol-place {
  font-family: 'Caveat', 'Segoe Script', cursive;
  font-size: clamp(1.2rem, 1rem + .55vw, 1.55rem); line-height: 1.15;
}
/* Set like the coordinate marker in the logo family */
.pol-coords {
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: .16em; color: rgba(13, 36, 64, .6);
}
.pol-aside {
  font-family: 'Caveat', 'Segoe Script', cursive;
  font-size: clamp(.98rem, .9rem + .3vw, 1.15rem);
  color: rgba(51, 70, 92, .82);
}
.pol-aside::before { content: '('; }
.pol-aside::after  { content: ')'; }

/* Floated into the story so the text runs alongside it */
.story-with-photo { max-width: 72ch; }
@media (min-width: 820px) {
  .polaroid-float {
    float: right; width: 320px; margin: .35rem 0 1.75rem 2.5rem;
    transform: rotate(2.4deg);
  }
}
@media (max-width: 819px) {
  .polaroid-float { margin-block: 2rem; }
}
@media (max-width: 899px) { .polaroid { transform: rotate(-1.6deg); margin-top: 1rem; } }
@media (prefers-reduced-motion: reduce) { .polaroid, .polaroid-float { transform: none; } }

/* Full logo lockups. Their wordmark is navy, so they only ever sit on the
   light section colours — navy sections use the circle mark instead. */
.logo-lockup {
  width: 100%; max-width: 440px; height: auto;
  margin: 0 auto clamp(1.5rem, 3vw, 2.25rem);
}

/* The pieces of the logo, each with its own line */
.logo-pieces { margin: 1.75rem 0 0; display: grid; gap: 1.1rem; }
.logo-pieces dt, .piece-label {
  font-family: var(--display); font-size: var(--step-1); line-height: 1.2;
  color: var(--gold-deep); margin: 0 0 .2rem;
}
.theme-navy .logo-pieces dt, .theme-navy .piece-label { color: var(--gold); }
.logo-pieces dd { margin: 0; }

/* The butterfly passage and the family photograph, side by side */
.butterfly-block { margin-top: clamp(2rem, 4vw, 3rem); align-items: center; }
.butterfly-block .story-beat { margin-top: 0; }
/* Framed like a keepsake: a warm mat, a thin gold line, a soft gold glow.
   The photograph is old and small, so it is never scaled past its native width. */
.keepsake {
  margin: 0 auto; max-width: 620px;
  padding: 12px; background: #FCFBF7;
  border: 2px solid var(--gold);
  border-radius: 4px;
  box-shadow: 0 0 0 6px rgba(212, 170, 35, .12),
              0 18px 40px rgba(13, 36, 64, .22);
}
.keepsake img {
  width: 100%; height: auto; display: block;
  border-radius: 2px; box-shadow: none;
}

/* Long-form policy pages */
.longform h2 {
  font-size: var(--step-2); margin: clamp(2.5rem, 5vw, 3.5rem) 0 1rem;
  padding-top: 1.25rem; border-top: 1px solid var(--rule);
}
.longform h2:first-child { margin-top: 0; border-top: 0; padding-top: 0; }
.longform p { max-width: 72ch; }

.accordion { border-top: 1px solid var(--rule); margin-top: 2.5rem; }
.accordion-item { border-bottom: 1px solid var(--rule); }
.accordion-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  background: none; border: 0; padding: 1.4rem 0; cursor: pointer;
  font-family: var(--sans); font-size: var(--step-1); font-weight: 600; text-align: left;
  color: inherit; line-height: 1.35;
}
.accordion-btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.accordion-icon { flex: 0 0 auto; width: 18px; height: 18px; position: relative; }
.accordion-icon::before, .accordion-icon::after {
  content: ''; position: absolute; background: var(--gold); transition: transform 300ms var(--ease), opacity 300ms var(--ease);
}
.accordion-icon::before { inset: 8px 0 auto 0; height: 2px; }
.accordion-icon::after { inset: 0 8px 0 auto; width: 2px; }
.accordion-btn[aria-expanded="true"] .accordion-icon::after { transform: rotate(90deg); opacity: 0; }
.accordion-panel { display: none; padding: 0 0 1.6rem; }
.accordion-panel.is-open { display: block; }
.accordion-panel p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   FORMS
   -------------------------------------------------------------------------- */
.form { display: grid; gap: 1.25rem; max-width: 34rem; margin-top: 2.5rem; }
.field { display: grid; gap: .45rem; }
.field label { font-size: var(--step--1); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.field .optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--fg-muted); }
.field input, .field textarea {
  font-family: var(--sans); font-size: var(--step-0); color: inherit;
  background: rgba(255,255,255,.5); border: 1px solid var(--rule);
  border-radius: var(--radius); padding: .85rem 1rem; width: 100%;
}
.theme-navy .field input, .theme-navy .field textarea { background: rgba(245,241,230,.08); }
.field input:focus-visible, .field textarea:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.field textarea { min-height: 9rem; resize: vertical; }
.field select {
  font-family: var(--sans); font-size: var(--step-0); color: inherit;
  background: rgba(255,255,255,.5); border: 1px solid var(--rule);
  border-radius: var(--radius); padding: .85rem 1rem; width: 100%;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
                    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% + 2px), calc(100% - 14px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.75rem;
}
.field select:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* Wider inquiry form, two columns where it helps */
.form-wide { max-width: 100%; }
.field-row { display: grid; gap: 1.25rem; }
@media (min-width: 660px) { .field-row { grid-template-columns: 1fr 1fr; } }

.field-error {
  margin: 0; font-size: var(--step--1); font-weight: 600;
  color: #9B2C2C; max-width: none;
}
.theme-navy .field-error { color: #F3B0B0; }
.field [aria-invalid="true"] { border-color: #9B2C2C; border-width: 2px; }

/* Netlify Forms honeypot — hidden from people, visible to bots */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status { margin: 0; max-width: none; font-size: var(--step--1); }
.form-status:empty { display: none; }
.form-status[data-state="ok"] {
  border-left: 3px solid var(--gold-deep); padding: .9rem 1.1rem;
  background: rgba(212,170,35,.12); border-radius: 0 var(--radius) var(--radius) 0;
}
.form-status[data-state="problem"] {
  border-left: 3px solid #9B2C2C; padding: .9rem 1.1rem;
  background: rgba(155,44,44,.08); border-radius: 0 var(--radius) var(--radius) 0;
}

/* Partnership ideas — a grid, not a long bullet list */
.idea-grid {
  list-style: none; margin: clamp(2rem, 4vw, 3rem) 0 0; padding: 0;
  display: grid; gap: clamp(.75rem, 1.5vw, 1.1rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}
.idea-grid li {
  display: flex; align-items: flex-start; gap: .8rem;
  border: 1px solid var(--rule); border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 1.1rem 1.25rem;
  background: rgba(255,255,255,.34);
  font-size: var(--step--1); line-height: 1.55;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.idea-grid li:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(13,36,64,.10); }
.theme-navy .idea-grid li { background: rgba(245,241,230,.05); }
.idea-grid li::before {
  content: ''; flex: 0 0 auto; margin-top: .55em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
}
.theme-cream .idea-grid li::before, .theme-white .idea-grid li::before,
.theme-champagne .idea-grid li::before,
.theme-rose .idea-grid li::before { background: var(--gold-deep); }

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer { background: var(--navy); color: var(--cream); padding-block: clamp(3.5rem, 7vw, 6rem) 2.5rem; }
.footer-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr; }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; } }
.site-footer img.footer-mark { width: 96px; height: 96px; }
.site-footer h2 { font-size: var(--step-1); font-family: var(--sans); font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.site-footer a { color: rgba(245,241,230,.86); text-decoration: none; }
.site-footer a:hover { color: var(--gold); text-decoration: underline; text-underline-offset: 4px; }
.site-footer .place { font-family: var(--accent); font-style: italic; color: rgba(245,241,230,.8); }
.site-footer ul.social-links { gap: .55rem; }
.site-footer .social-links a { display: inline-flex; align-items: center; gap: .55rem; }
.site-footer .social-links svg { flex: none; color: var(--gold); transition: transform .18s ease; }
.site-footer .social-links a:hover svg { transform: scale(1.12); }

/* --------------------------------------------------------------------------
   FLOATING SOCIAL PAIR
   Fixed pill, bottom right, on every page. z-index sits below the sticky
   header (100) so the mobile nav drawer covers it when open.
   -------------------------------------------------------------------------- */
.social-float {
  position: fixed; z-index: 90;
  right: clamp(0.9rem, 2.5vw, 1.6rem); bottom: clamp(0.9rem, 2.5vw, 1.6rem);
  display: flex; align-items: center; gap: 0.25rem;
  padding: 0.35rem; border-radius: 999px;
  background: rgba(13, 36, 64, 0.94);
  border: 1px solid rgba(212, 170, 35, 0.45);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}
.social-float a {
  display: grid; place-items: center;
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  color: var(--gold); text-decoration: none;
  transition: background-color 220ms var(--ease), color 220ms var(--ease),
              transform 220ms var(--ease);
}
.social-float a:hover, .social-float a:focus-visible {
  background: var(--gold); color: var(--navy); transform: translateY(-2px);
}
.social-float svg { width: 20px; height: 20px; }
@media (max-width: 640px) {
  .social-float a { width: 2.15rem; height: 2.15rem; }
  .social-float svg { width: 17px; height: 17px; }
}
@media (prefers-reduced-motion: reduce) {
  .social-float a { transition: none; }
  .social-float a:hover, .social-float a:focus-visible { transform: none; }
}
.footer-base {
  margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.5rem;
  border-top: 1px solid rgba(212,170,35,.28);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: var(--step--1); color: rgba(245,241,230,.68);
}

/* --------------------------------------------------------------------------
   GOLDEN TRAIL
   A dotted gold path echoing the butterfly's trail in the logo. Used on the
   booking page to walk the visitor down from one section to the next.
   Each trail is a real anchor link, so it also works by keyboard.
   -------------------------------------------------------------------------- */
.trail { display: flex; justify-content: center; padding-block: clamp(1.25rem, 3.5vw, 2.75rem); position: relative; z-index: 1; }
.trail a {
  display: block; line-height: 0; border-radius: var(--radius);
  transition: transform 320ms var(--ease), opacity 320ms var(--ease);
  opacity: .95;
}
.trail a:hover { transform: translateY(4px); opacity: 1; }
.trail a:focus-visible { outline: 3px solid var(--gold); outline-offset: 8px; }
.trail a { position: relative; }
.trail svg { width: clamp(96px, 16vw, 170px); height: auto; overflow: visible; }
/* The butterfly that leaves the trail — static, straight from the logo */
/* No butterfly on the trails — the dotted path stands on its own.
   assets/brand/butterfly.png is still there if you want it somewhere else. */

/* Large, faint brand elements filling empty corners */
.has-flourish { overflow: hidden; }
.flourish {
  position: absolute; bottom: -3%; z-index: 0; pointer-events: none;
  width: clamp(120px, 17vw, 230px); height: auto; opacity: .09;
}
.flourish-left { left: -2%; }
.flourish-right { right: -2%; }
.theme-navy .flourish { opacity: .13; }
@media (max-width: 720px) { .flourish { width: 108px; opacity: .08; } }
.trail .trail-dots { fill: none; stroke: var(--gold); stroke-linecap: round; }
.trail .trail-cap { fill: var(--gold); }
/* On the light section moods the deeper gold holds its edge */
.theme-white .trail .trail-dots, .theme-cream .trail .trail-dots, .theme-champagne .trail .trail-dots,
.theme-sunflower .trail .trail-dots, .theme-lavender .trail .trail-dots,
.theme-blush .trail .trail-dots { stroke: var(--gold-deep); }
.theme-white .trail .trail-cap, .theme-cream .trail .trail-cap, .theme-champagne .trail .trail-cap,
.theme-sunflower .trail .trail-cap, .theme-lavender .trail .trail-cap,
.theme-blush .trail .trail-cap { fill: var(--gold-deep); }

/* The dots settle in one after another as the trail scrolls into view */
.trail .trail-dots, .trail .trail-cap { opacity: 0; transition: opacity 900ms var(--ease); }
.trail.is-in .trail-dots, .trail.is-in .trail-cap { opacity: 1; }
.trail.is-in .trail-dots-fine { transition-delay: 260ms; }
.trail.is-in .trail-cap { transition-delay: 520ms; }

@media (max-width: 600px) {
  .trail svg { width: 78px; }
  .trail { padding-block: 1.25rem; }
}

/* --------------------------------------------------------------------------
   MOTION
   -------------------------------------------------------------------------- */
/* Visible by default. Only hidden once JS has confirmed it can reveal it —
   otherwise a script failure blanks the page. */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 900ms var(--ease), transform 900ms var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

.parallax-inner { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .trail .trail-dots, .trail .trail-cap { opacity: 1; }
  .trail a:hover { transform: none; }
}

/* --------------------------------------------------------------------------
   UTILITIES
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.note-dev {
  border-left: 3px solid var(--gold); padding: .9rem 1.1rem; margin: 1.5rem 0;
  background: rgba(212,170,35,.1); font-size: var(--step--1);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.note-dev strong { letter-spacing: .12em; text-transform: uppercase; font-size: .82em; }

/* --------------------------------------------------------------------------
   BOOKING TIME REMINDER
   A small dialog that appears when someone taps a booking button, so they
   know which time slot to choose on the Google calendar that follows.
   Sits above the sticky header (z-index 100) and the social float (90).
   -------------------------------------------------------------------------- */
.book-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: var(--gutter);
  background: rgba(13, 36, 64, 0.66);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .26s ease;
}
.book-modal[hidden] { display: none; }
.book-modal.is-open { opacity: 1; }

.book-modal .bm-box {
  position: relative;
  width: 100%; max-width: 34rem;
  max-height: 88vh; overflow-y: auto;
  padding: clamp(2rem, 5vw, 3rem);
  background: var(--cream);
  color: var(--ink);
  border: 1px solid rgba(212, 170, 35, .55);
  border-radius: 3px;
  box-shadow: 0 30px 70px rgba(13, 36, 64, .4);
  text-align: center;
  transform: translateY(14px) scale(.985);
  transition: transform .26s ease;
}
.book-modal.is-open .bm-box { transform: none; }

.book-modal .eyebrow { color: var(--gold-deep); }

.book-modal h2 {
  font-family: var(--display);
  font-size: var(--step-2);
  line-height: 1.15;
  margin: .4rem 0 1.4rem;
  color: var(--navy);
}

.book-modal .bm-lede {
  font-family: var(--accent);
  font-size: var(--step-0);
  color: var(--ink-muted);
  margin-bottom: 1.1rem;
}

.book-modal .bm-time {
  font-size: var(--step-1);
  line-height: 1.4;
  color: var(--navy);
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.1rem;
  background: rgba(212, 170, 35, .14);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.book-modal .bm-time strong {
  font-weight: 700;
  white-space: nowrap;
  color: var(--gold-deep);
}

.book-modal .bm-note {
  font-size: var(--step--1);
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 40ch;
  margin: 0 auto;
}

.book-modal .bm-actions {
  display: flex; flex-direction: column; align-items: center;
  gap: .85rem;
  margin-top: 1.9rem;
}
.book-modal .bm-actions .btn { margin-top: 0; }

.book-modal .bm-back {
  font-family: var(--sans);
  font-size: var(--step--1);
  letter-spacing: .04em;
  color: var(--ink-muted);
  background: none; border: 0; padding: .35rem .5rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: .25em;
}
.book-modal .bm-back:hover { color: var(--navy); }

.book-modal .bm-x {
  position: absolute; top: .55rem; right: .8rem;
  width: 2.25rem; height: 2.25rem;
  font-size: 1.7rem; line-height: 1;
  color: var(--ink-muted);
  background: none; border: 0; cursor: pointer;
}
.book-modal .bm-x:hover { color: var(--navy); }

.book-modal button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

body.modal-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .book-modal, .book-modal .bm-box { transition: none; }
  .book-modal .bm-box { transform: none; }
}

/* --------------------------------------------------------------------------
   PRICING PHOTO GROUP
   Two add-ons that share one photograph sit side by side with it, so the
   picture is shown once rather than repeated for each entry. The image keeps
   its own proportions — height follows width, nothing is cropped or stretched.
   -------------------------------------------------------------------------- */
.price-group { border-bottom: 1px solid var(--rule); }
.price-group .price-block:last-child { border-bottom: 0; }

.price-group-photo {
  margin: 0 0 clamp(1.75rem, 3.5vw, 2.5rem);
  max-width: 17rem;
}
.price-group-photo img {
  display: block;
  width: 100%; height: auto;
  border-radius: var(--radius);
}

@media (min-width: 800px) {
  .price-group {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 15rem;
    gap: clamp(1.75rem, 4vw, 3rem);
    align-items: center;
  }
  .price-group-photo { margin: 0; max-width: none; }
}
