/* ============================================================
   POLISHED PARTIES — Design System
   ------------------------------------------------------------
   >>> TO REBRAND: change only the variables in :root below.
   Every colour, font and spacing value on the site flows from
   here. See BRAND.md for instructions.
   ============================================================ */

:root {
  /* ---- BRAND COLOURS — taken from the Polished Parties Canva master ---- */
  --c-ink:        #33211F;   /* deep warm brown, headings and primary text */
  --c-body:       #5A4741;   /* body copy, warm, readable on cream and sand */
  --c-muted:      #7A6660;   /* captions, meta, on cream only */
  --c-line:       #E8DBD9;   /* borders, rules */
  --c-cream:      #FDFAFA;   /* page background, sampled from the logo */
  --c-card:       #FFFFFF;   /* card background */
  --c-sand:       #F4EAE8;   /* soft blush, alternating sections */
  --c-accent:     #4F1819;   /* BURGUNDY — buttons, links, flourishes */
  --c-accent-dk:  #3A1112;   /* burgundy hover */
  --c-accent-sf:  #F0E6E2;   /* burgundy tint — badges, highlights */
  --c-blush:      #8E5F5F;   /* muted burgundy tint for decorative marks */
  --c-on-dark:    #F6F1E9;   /* cream, for text on burgundy or espresso */

  /* Highlight — used ONLY to draw the eye: eyebrows, "most popular",
     tag pills, link underlines, bullets. Never for body copy. */
  --c-rose:       #A8365E;
  --c-rose-soft:  #FBE9EF;

  /* Pastels, drawn from the signature costumes */
  --c-lilac:      #C7B4E3;   /* decorative only */
  --c-pink:       #F0B9CB;   /* decorative only */
  --c-lilac-soft: #F0EAFA;   /* wash — text-safe */
  --c-pink-soft:  #FCEEF3;   /* wash — text-safe */
  --c-iris:       #F6F1FB;   /* wash — text-safe */
  --c-deep:       #4F1819;   /* burgundy section background, no grey anywhere */

  /* ---- TYPE ---- */
  --f-display: "Cormorant Garamond", "Didot", "Georgia", serif;
  --f-body:    "Jost", "Futura", "Avenir Next", "Helvetica Neue", sans-serif;
  --f-script:  "Cormorant Garamond", Georgia, serif;

  --fs-hero:  clamp(2.75rem, 7vw, 5.25rem);
  --fs-h1:    clamp(2.25rem, 5vw, 3.75rem);
  --fs-h2:    clamp(1.85rem, 3.6vw, 2.75rem);
  --fs-h3:    clamp(1.25rem, 2vw, 1.5rem);
  --fs-body:  clamp(1rem, 1.1vw, 1.0625rem);
  --fs-sm:    0.9375rem;
  --fs-xs:    0.8125rem;

  /* ---- SPACE / SHAPE ---- */
  --sp-section: clamp(4.5rem, 9vw, 8rem);
  --wrap:       1180px;
  --wrap-tight: 780px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --shadow:    0 2px 10px rgba(120,80,140,.07), 0 14px 36px rgba(79,24,25,.06);
  --shadow-lg: 0 6px 18px rgba(120,80,140,.10), 0 28px 64px rgba(79,24,25,.10);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
html { overflow-x: clip; }  /* clip, not hidden — hidden would break position:sticky */
body {
  font-family: var(--f-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--c-body);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
h1,h2,h3,h4 { font-family: var(--f-display); color: var(--c-ink); font-weight: 400; line-height: 1.12; letter-spacing: -.01em; }
a { color: var(--c-rose); text-decoration-thickness: 1px; text-underline-offset: 3px; }

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

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 999;
  background: var(--c-accent); color: #fff; padding: .75rem 1.25rem; border-radius: var(--r-sm);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.wrap--tight { max-width: var(--wrap-tight); }
.section { padding-block: var(--sp-section); }
.section--sand {
  background:
    radial-gradient(60% 90% at 12% 0%, var(--c-lilac-soft), transparent 60%),
    radial-gradient(55% 80% at 90% 100%, var(--c-pink-soft), transparent 60%),
    var(--c-iris);
}
/* --c-muted is only 3.7:1 on sand, so step it up inside sand sections. */
.section--sand .section-head p,
.section--sand .hint,
.page-head + * .hint { color: var(--c-body); }
.page-head { color: var(--c-body); }
.section--deep {
  background:
    radial-gradient(70% 100% at 85% 0%, rgba(199,180,227,.14), transparent 55%),
    radial-gradient(60% 90% at 8% 100%, rgba(240,185,203,.12), transparent 55%),
    var(--c-deep);
  color: #E8D6D3;
}
.section--deep h2, .section--deep h3 { color: var(--c-cream); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.eyebrow {
  font-size: var(--fs-xs); letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-rose); font-weight: 500; margin-bottom: 1rem;
}
/* On the dark espresso background burgundy is unreadable, so use gold —
   at this size it is large/bold enough to clear the 3:1 threshold. */
.section--deep .eyebrow { color: #EFD9D6; }

.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: var(--fs-h2); margin-bottom: 1rem; }
.section-head p { color: var(--c-muted); font-size: 1.0625rem; }
.section--deep .section-head p { color: #DCC0BC; }

.lede { font-size: clamp(1.0625rem, 1.6vw, 1.25rem); line-height: 1.7; color: var(--c-body); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.9rem;
  font-size: var(--fs-sm); font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  border: 1px solid transparent; border-radius: 100px;
  cursor: pointer; text-decoration: none; text-align: center;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--c-accent); color: #fff; }
.btn--primary:hover { background: var(--c-accent-dk); color: #fff; }
.btn--dark { background: var(--c-ink); color: #fff; }
.btn--dark:hover { background: #000; color: #fff; }
.btn--ghost { border-color: var(--c-ink); color: var(--c-ink); background: transparent; }
.btn--ghost:hover { background: var(--c-ink); color: #fff; }
.btn--light { border-color: rgba(255,255,255,.55); color: #fff; background: transparent; }
.btn--light:hover { background: #fff; color: var(--c-ink); }
.btn--lg { padding: 1.15rem 2.4rem; font-size: 1rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: var(--fs-sm); letter-spacing: .06em; text-transform: uppercase;
  color: var(--c-rose); text-decoration: none; font-weight: 500;
}
.link-arrow::after { content: "→"; transition: transform .25s var(--ease); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.announce {
  background: var(--c-accent); color: #F6EDE9;
  text-align: center; font-size: var(--fs-xs); letter-spacing: .07em;
  padding: .65rem 1rem;
}
.announce a { color: #F6F1E9; text-decoration: underline; text-underline-offset: 3px; font-weight: 500; }
.announce a:hover { text-decoration: underline; }

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253,250,250,.93);   /* --c-cream at 93% */
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--c-line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 122px; }

.logo { display: flex; flex-direction: column; text-decoration: none; line-height: 1; }
.logo__mark { font-family: var(--f-display); font-size: 1.5rem; color: var(--c-ink); letter-spacing: .01em; }
.logo__sub { font-size: .625rem; letter-spacing: .3em; text-transform: uppercase; color: var(--c-muted); margin-top: .3rem; }

.nav { display: flex; align-items: center; gap: .35rem; }
.nav__list { display: flex; align-items: center; gap: .35rem; list-style: none; padding: 0; margin: 0; }
.nav__link {
  display: block; padding: .6rem .9rem; border-radius: var(--r-sm);
  font-size: var(--fs-sm); color: var(--c-body); text-decoration: none;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--c-ink); background: var(--c-sand); }

/* --- Dropdown --- */
.nav__item { position: relative; }
.nav__toggle {
  display: inline-flex; align-items: center; gap: .35rem;
  background: none; border: 0; cursor: pointer;
  padding: .6rem .9rem; border-radius: var(--r-sm);
  font-size: var(--fs-sm); color: var(--c-body);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__toggle:hover, .nav__toggle[aria-expanded="true"] { color: var(--c-ink); background: var(--c-sand); }
.nav__toggle svg { transition: transform .25s var(--ease); }
.nav__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.dropdown::before {   /* invisible bridge so the pointer never leaves the item */
  content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px;
}
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; translate: -50% 0;
  min-width: 290px; padding: .6rem;
  background: var(--c-card); border: 1px solid var(--c-line); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  /* visibility flips instantly (0s) and only its *hiding* is delayed, so the
     panel can never be left half open if a transition is interrupted. */
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility 0s linear .2s;
}
.nav__item[data-open="true"] .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility 0s linear 0s;
}
.dropdown a {
  display: block; padding: .7rem .85rem; border-radius: var(--r-sm);
  text-decoration: none; color: var(--c-ink); font-size: var(--fs-sm); line-height: 1.35;
  transition: background .18s var(--ease);
}
.dropdown a:hover { background: var(--c-sand); }
.dropdown span { display: block; font-size: var(--fs-xs); color: var(--c-muted); margin-top: .2rem; }

.nav__cta { margin-left: .6rem; }

.burger {
  display: none; background: none; border: 1px solid var(--c-line); border-radius: var(--r-sm);
  padding: .6rem .7rem; cursor: pointer; line-height: 0;
}
.burger span { display: block; width: 20px; height: 1.5px; background: var(--c-ink); margin: 4px 0; transition: transform .28s var(--ease), opacity .2s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 960px) {
  /* backdrop-filter creates a containing block for fixed descendants in
     mobile WebKit, trapping the full-screen menu inside the header. */
  .header { backdrop-filter: none; }
  .burger { display: block; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw);
    background: var(--c-cream); border-left: 1px solid var(--c-line);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: 6.5rem 1.5rem 2rem; gap: .25rem;
    transform: translateX(100%);
    /* visibility:hidden keeps the closed menu out of the tab order AND stops the
       off-screen panel adding horizontal scroll to the page.
       It is switched with a 0s duration (not an interpolated transition) so the
       menu is never left in a half-open state if transitions are throttled —
       only the *hiding* is delayed, so the slide-out is still visible. */
    visibility: hidden;
    transition: transform .35s var(--ease), visibility 0s linear .35s;
    overflow-y: auto; box-shadow: var(--shadow-lg);
  }
  .nav[data-open="true"] {
    transform: translateX(0);
    visibility: visible;
    transition: transform .35s var(--ease), visibility 0s linear 0s;
  }
  .nav__list { flex-direction: column; align-items: stretch; gap: .25rem; }
  .nav__link, .nav__toggle { width: 100%; padding: .9rem .75rem; font-size: 1.0625rem; justify-content: space-between; }
  .dropdown {
    position: static; translate: none; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; border: 0; border-left: 1px solid var(--c-line);
    border-radius: 0; margin: .1rem 0 .5rem .75rem; padding: 0 0 0 .5rem;
    display: none; min-width: 0;
  }
  .nav__item[data-open="true"] .dropdown { display: block; }
  .nav__cta { margin: 1rem 0 0; }
  .nav__cta .btn { width: 100%; }
}

.scrim {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(51,33,31,.45); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s;
}
.scrim[data-open="true"] { opacity: 1; visibility: visible; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; background: var(--c-sand); overflow: hidden; }
.hero__inner {
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-block: clamp(3.5rem, 8vw, 7rem);
}
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--c-card); border: 1px solid var(--c-line); border-radius: 100px;
  padding: .45rem 1rem; font-size: var(--fs-xs); letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-accent-dk); margin-bottom: 1.75rem;
}
.hero__badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--c-accent); }
.hero h1 { font-size: var(--fs-hero); margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--c-accent-dk); }
.hero__lede { font-size: clamp(1.0625rem, 1.7vw, 1.3125rem); line-height: 1.65; max-width: 34ch; margin-bottom: 2.25rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2.25rem; }
.hero__note { font-size: var(--fs-sm); color: var(--c-muted); display: flex; align-items: center; gap: .5rem; }

.hero__media { position: relative; }
.hero__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.hero__caption {
  position: absolute; bottom: -18px; left: -18px;
  background: var(--c-card); border: 1px solid var(--c-line); border-radius: var(--r-md);
  padding: .9rem 1.35rem; box-shadow: var(--shadow);
  white-space: nowrap;   /* keep the caption on one line */
}
.hero__caption strong { display: block; font-family: var(--f-display); font-size: 1.5rem; color: var(--c-ink); line-height: 1; }
.hero__caption span { font-size: var(--fs-xs); color: var(--c-muted); letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .hero__media img { aspect-ratio: 3/2; }
  .hero__caption { display: none; }
  .hero__lede { max-width: none; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { border-block: 1px solid var(--c-line); background: var(--c-cream); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust__item { padding: clamp(1.5rem, 3vw, 2.25rem) 1.25rem; text-align: center; border-left: 1px solid var(--c-line); }
.trust__item:first-child { border-left: 0; }
.trust__item strong { display: block; font-family: var(--f-display); font-size: clamp(1.5rem,2.6vw,2rem); color: var(--c-ink); line-height: 1.1; margin-bottom: .35rem; }
.trust__item span { font-size: var(--fs-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--c-muted); }
@media (max-width: 760px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__item:nth-child(3) { border-left: 0; }
  .trust__item:nth-child(n+3) { border-top: 1px solid var(--c-line); }
}

/* ============================================================
   CARDS / GRIDS
   ============================================================ */
.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--c-card); border: 1px solid var(--c-line); border-radius: var(--r-md);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-6px) rotate(-.3deg); box-shadow: var(--shadow-lg); border-color: var(--c-rose); }
.card__media { aspect-ratio: 3/2; background: var(--c-sand); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.04); }
.card__body { padding: clamp(1.35rem, 2.4vw, 1.85rem); display: flex; flex-direction: column; flex: 1; gap: .85rem; }
.card__body h3 { font-size: var(--fs-h3); }
.card__body p { font-size: var(--fs-sm); color: var(--c-body); }
.card__foot { margin-top: auto; padding-top: .35rem; }

.tag {
  display: inline-block; align-self: flex-start;
  background: var(--c-rose); color: #fff;
  font-size: .6875rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
  padding: .35rem .7rem; border-radius: 100px;
}
.tag--neutral { background: var(--c-lilac-soft); color: var(--c-body); }

.tick-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.tick-list li { position: relative; padding-left: 1.6rem; font-size: var(--fs-sm); }
.tick-list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--c-rose);
}

/* ============================================================
   SPLIT FEATURE
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--flip .split__media { order: 2; }
.split__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.split h2 { font-size: var(--fs-h2); margin-bottom: 1.25rem; }
.split p + p { margin-top: 1rem; }
.split .btn, .split .link-arrow { margin-top: 1.75rem; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
}

/* ============================================================
   CALLOUT (themed vs character clarity)
   ============================================================ */
.callout {
  background: var(--c-card); border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-rose);
  border-radius: var(--r-md); padding: clamp(1.5rem, 3vw, 2.25rem);
}
.callout h3 { font-size: 1.3125rem; margin-bottom: .75rem; }
.callout p { font-size: var(--fs-sm); }
.callout p + p { margin-top: .75rem; }

/* ============================================================
   STEPS
   ============================================================ */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
.step { counter-increment: step; }
.step::before {
  content: counter(step, decimal-leading-zero);
  display: block; font-family: var(--f-display); font-size: 2.25rem;
  color: #EFD9D6; line-height: 1; margin-bottom: .9rem;
}
.step h3 { font-size: 1.1875rem; margin-bottom: .5rem; }
.step p { font-size: var(--fs-sm); }
.section--deep .step p { color: #DCC0BC; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quote {
  background: var(--c-card); border: 1px solid var(--c-line); border-radius: var(--r-md);
  padding: clamp(1.6rem, 3vw, 2.25rem); display: flex; flex-direction: column; gap: 1.15rem; height: 100%;
}
.quote__stars { color: var(--c-rose); letter-spacing: .15em; font-size: .875rem; }
.quote blockquote { font-family: var(--f-display); font-size: clamp(1.125rem,1.7vw,1.3125rem); line-height: 1.5; color: var(--c-ink); font-style: italic; }
.quote figcaption { margin-top: auto; font-size: var(--fs-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--c-muted); }

/* Placeholder flag — DELETE the .is-placeholder class once real quotes are in */
.quote.is-placeholder { border-style: dashed; border-color: #C9A6A2; background: #FDF7F5; }
.quote.is-placeholder::before {
  content: "Placeholder — replace with a real customer quote";
  font-family: var(--f-body); font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-accent); background: var(--c-accent-sf); padding: .3rem .6rem; border-radius: var(--r-sm); align-self: flex-start;
}

/* ============================================================
   ACCORDION (FAQ)
   ============================================================ */
.accordion { border-top: 1px solid var(--c-line); }
.acc { border-bottom: 1px solid var(--c-line); }
.acc__btn {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem 0; text-align: left;
  font-family: var(--f-display); font-size: 1.1875rem; color: var(--c-ink);
}
.acc__btn:hover { color: var(--c-rose); }
.acc__icon { flex: none; width: 20px; height: 20px; position: relative; }
.acc__icon::before, .acc__icon::after {
  content: ""; position: absolute; inset: 50% 0 auto; height: 1.5px; background: var(--c-rose);
  transition: transform .3s var(--ease);
}
.acc__icon::after { transform: rotate(90deg); }
.acc__btn[aria-expanded="true"] .acc__icon::after { transform: rotate(0deg); }
.acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.acc__panel[data-open="true"] { grid-template-rows: 1fr; }
.acc__panel > div { overflow: hidden; }
.acc__panel p { padding-bottom: 1.5rem; font-size: var(--fs-sm); max-width: 68ch; }

/* ============================================================
   FORM
   ============================================================ */
.form { display: grid; gap: 1.5rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; align-items: start; }
@media (max-width: 640px) { .form__row { grid-template-columns: 1fr; } }

.field { display: grid; gap: .5rem; }
.field label { font-size: var(--fs-sm); font-weight: 500; color: var(--c-ink); }
.field label .opt { font-weight: 400; color: var(--c-muted); font-size: var(--fs-xs); letter-spacing: .04em; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem;
  background: var(--c-card); color: var(--c-ink);
  border: 1px solid var(--c-line); border-radius: var(--r-sm);
  font-size: 1rem; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--c-rose); box-shadow: 0 0 0 3px var(--c-rose-soft);
}
.field textarea { resize: vertical; min-height: 130px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8078' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.field .hint { font-size: var(--fs-xs); color: var(--c-muted); }
.field .error { font-size: var(--fs-xs); color: #A8403A; display: none; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #A8403A; }
.field.is-invalid .error { display: block; }

.checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: .65rem; }
@media (max-width: 640px) { .checks { grid-template-columns: 1fr; } }
.check { display: flex; align-items: flex-start; gap: .65rem; padding: .8rem .9rem; border: 1px solid var(--c-line); border-radius: var(--r-sm); background: var(--c-card); cursor: pointer; font-size: var(--fs-sm); transition: border-color .2s var(--ease), background .2s var(--ease); }
.check:hover { border-color: #C9A6A2; }
.check input { width: 17px; height: 17px; margin-top: .18rem; accent-color: var(--c-rose); flex: none; }
.check:has(input:checked) { border-color: var(--c-rose); background: var(--c-rose-soft); }

.form__aside {
  background: var(--c-sand); border-radius: var(--r-md); padding: clamp(1.5rem,3vw,2rem);
  align-self: start; position: sticky; top: 140px;
}
.form__aside h3 { font-size: 1.25rem; margin-bottom: .85rem; }
.form__aside p { font-size: var(--fs-sm); }
.form__aside dl { margin-top: 1.5rem; display: grid; gap: 1.15rem; }
.form__aside dt { font-size: var(--fs-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--c-muted); margin-bottom: .2rem; }
.form__aside dd { margin: 0; font-size: var(--fs-sm); }
.form__aside dd a { color: var(--c-ink); text-decoration: none; border-bottom: 1px solid var(--c-accent); }
.form__aside dd a:hover { color: var(--c-accent-dk); }
@media (max-width: 960px) { .form__aside { position: static; } }

.form-status { padding: 1rem 1.25rem; border-radius: var(--r-sm); font-size: var(--fs-sm); display: none; }
.form-status[data-state="error"] { display: block; background: #FBEEED; color: #8E3630; border: 1px solid #EBCFCC; }
.form-status[data-state="sending"] { display: block; background: var(--c-sand); color: var(--c-body); }

.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: var(--c-deep); color: #E8D6D3; text-align: center; }
.cta-band h2 { font-size: var(--fs-h2); color: var(--c-cream); margin-bottom: 1.15rem; }
.cta-band p { max-width: 52ch; margin: 0 auto 2.25rem; color: #DCC0BC; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; }

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-head { background: var(--c-sand); padding-block: clamp(3rem, 6vw, 5rem); text-align: center; }
.page-head h1 { font-size: var(--fs-h1); margin-bottom: 1.15rem; }
.page-head p { max-width: 60ch; margin-inline: auto; color: var(--c-body); font-size: 1.0625rem; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.75rem, 1.5vw, 1.15rem); }
@media (max-width: 860px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery figure { margin: 0; border-radius: var(--r-md); overflow: hidden; background: var(--c-sand); position: relative; }
.gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .5s var(--ease); }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute; inset: auto 0 0; padding: 2.5rem 1.15rem .95rem;
  background: linear-gradient(to top, rgba(51,33,31,.75), transparent);
  color: #fff; font-size: var(--fs-sm);
}
.gallery figure.is-tall { grid-row: span 2; }
.gallery figure.is-tall img { aspect-ratio: 1/2.06; }
@media (max-width: 620px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery figure.is-tall { grid-row: span 1; }
  .gallery figure.is-tall img { aspect-ratio: 1; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--c-accent); color: #E0C9C6; padding-block: clamp(3rem, 6vw, 4.5rem) 0; border-top: 1px solid #6E3233; font-size: var(--fs-sm); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(2rem, 4vw, 3.5rem); padding-bottom: 3rem; }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 { color: var(--c-cream); font-family: var(--f-body); font-size: var(--fs-xs); letter-spacing: .16em; text-transform: uppercase; font-weight: 500; margin-bottom: 1.15rem; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .65rem; }
.footer a { color: #E4CFCC; text-decoration: none; transition: color .2s var(--ease); }
.footer a:hover { color: #F6F1E9; }
.footer__logo .logo__mark { color: var(--c-cream); font-size: 1.65rem; }
.footer__logo .logo__sub { color: #C9A9A5; }
.footer__blurb { margin-top: 1.15rem; max-width: 34ch; line-height: 1.7; }
.footer__bottom {
  border-top: 1px solid #6E3233; padding-block: 1.75rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: var(--fs-xs); color: #CBAFAC;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
/* Progressive enhancement: content is visible by default. It is only hidden
   for the reveal animation once the inline <head> script confirms JS is running,
   so a JS failure can never leave a section blank. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* ============================================================
   PLACEHOLDER IMAGE STYLING (remove once real photos are in)
   ============================================================ */
.ph {
  display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(45deg, #F0E3E1, #F0E3E1 12px, #F7EEED 12px, #F7EEED 24px);
  color: var(--c-accent); font-size: var(--fs-xs); letter-spacing: .1em; text-transform: uppercase;
  text-align: center; padding: 1rem; width: 100%; height: 100%; min-height: 180px;
}

/* Package card meta line (duration · capacity) */
.meta {
  font-size: var(--fs-xs) !important; letter-spacing: .08em; text-transform: uppercase;
  color: var(--c-muted); border-top: 1px solid var(--c-line); padding-top: .8rem;
}
.pkg-price {
  font-family: var(--f-display); font-size: 1.125rem; color: var(--c-accent);
  border-top: 1px solid var(--c-line); padding-top: .85rem;
}
.collection-note { font-size: var(--fs-sm); color: var(--c-body); max-width: 60ch; }

/* Enquiry page layout */
.enquire-layout { grid-template-columns: 1.6fr .9fr; align-items: start; gap: clamp(2rem,5vw,4rem); }
@media (max-width: 960px) { .enquire-layout { grid-template-columns: 1fr; } }
.form fieldset { border: 0; padding: 0; margin: 0; display: grid; gap: 1.5rem; }
.form legend { padding: 0; margin-bottom: .25rem; }
.check span { display: block; font-size: var(--fs-xs); color: var(--c-muted); letter-spacing: .06em; text-transform: uppercase; margin-top: .15rem; }
.check { flex-wrap: wrap; }
.check input { order: -1; }


/* ============================================================
   DARK-SECTION BUTTON OVERRIDE
   The burgundy primary button is only ~1.3:1 against the espresso
   background, so it visually disappears on .section--deep and the
   CTA band. Use a cream button with espresso text instead.
   ============================================================ */
.section--deep .btn--primary,
.cta-band .btn--primary {
  background: var(--c-cream);
  color: var(--c-ink);
}
.section--deep .btn--primary:hover,
.cta-band .btn--primary:hover {
  background: #EFD9D6;
  color: var(--c-ink);
}

/* ============================================================
   ICON TILES
   Stand in for photography, and stay as a small badge once the
   real photos land. Colours come from the brand palette.
   ============================================================ */
.ph--icon {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .7rem; width: 100%; height: 100%; min-height: 190px; padding: 1.5rem;
  background:
    radial-gradient(circle at 30% 25%, var(--c-lilac-soft), transparent 60%),
    radial-gradient(circle at 75% 80%, var(--c-pink-soft), transparent 60%),
    var(--c-iris);
  color: var(--c-accent); text-align: center;
}
.ph--icon svg.tile-icon { width: 46px; height: 46px; color: var(--c-rose); }
.ph--icon .tile-label {
  font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-rose); font-weight: 500;
}
.ph--icon .tile-sparkle { width: 13px; height: 13px; color: var(--c-lilac); }
.ph--icon .tile-sparkle:nth-child(2) { color: var(--c-pink); width: 10px; height: 10px; }
.ph--icon .tile-sparkles { display: flex; gap: .3rem; align-items: center; }

/* Small inline icon beside a heading */
.icon-inline { width: 20px; height: 20px; color: var(--c-accent); flex: none; vertical-align: -4px; margin-right: .45rem; }
.card__body h3 .icon-inline { color: var(--c-accent); }


/* Announcement bar sparkle + logo image */
.announce { display: flex; align-items: center; justify-content: center; gap: .6rem; flex-wrap: wrap; }
.announce__sparkle { width: 11px; height: 11px; color: #E3C7C3; flex: none; }
.logo { flex-direction: row; align-items: center; gap: .7rem; }
.logo__img { height: 46px; width: auto; flex: none; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.cta-band p.cta-band__alt { margin: 2.75rem auto 0; font-size: var(--fs-sm); color: #DCC0BC; }  /* out-specify .cta-band p */
.cta-band__alt a { color: var(--c-cream); }
@media (max-width: 520px) { .logo__img { height: 36px; } .logo__sub { display: none; } }

/* ============================================================
   ENQUIRY TYPE SWITCHER
   ============================================================ */
.switcher {
  display: inline-flex; gap: .25rem; margin-bottom: 2rem;
  background: var(--c-sand); padding: .3rem; border-radius: 100px;
}
.switcher__btn {
  border: 0; background: transparent; cursor: pointer;
  padding: .6rem 1.25rem; border-radius: 100px;
  font-size: var(--fs-sm); color: var(--c-body);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.switcher__btn.is-active { background: var(--c-accent); color: #fff; }
.switcher__btn:not(.is-active):hover { color: var(--c-ink); }
@media (max-width: 480px) {
  .switcher { display: flex; width: 100%; }
  .switcher__btn { flex: 1; padding: .6rem .5rem; }
}
/* Business-only blocks are hidden until the business tab is chosen.
   These need to out-specify `.form fieldset { display: grid }`, so they are
   written as `.form ...` rather than a bare attribute selector. */
.form [data-mode="business"],
.form fieldset[data-mode="business"] { display: none; }
.form.is-business [data-mode="business"],
.form.is-business fieldset[data-mode="business"] { display: grid; }
.form.is-business [data-mode="family"],
.form.is-business fieldset[data-mode="family"] { display: none; }

/* Photography keeps its native 3:2 shape rather than being cropped to a square-ish box */
.hero__media img,
.split__media img { aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--r-lg); }


/* Corporate line under the CTA stays on one line on anything but small phones */
.cta-band__alt { white-space: nowrap; }
@media (max-width: 620px) { .cta-band__alt { white-space: normal; } }

/* ============================================================
   LOGO
   ============================================================ */
.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;
}
.logo__img { height: 96px; width: auto; display: block; }
@media (max-width: 700px) { .logo__img { height: 62px; } .header__inner { min-height: 86px; } }

/* Centred hero with the full logo lockup */
.hero--center {
  position: relative; overflow: hidden;
  background:
    radial-gradient(50% 60% at 8% 10%, var(--c-lilac-soft), transparent 65%),
    radial-gradient(45% 55% at 94% 22%, var(--c-pink-soft), transparent 65%),
    radial-gradient(60% 50% at 50% 108%, var(--c-iris), transparent 70%),
    var(--c-cream);
  text-align: center; padding-top: clamp(2.5rem, 5vw, 4.5rem);
}
.hero--center .wrap { display: flex; flex-direction: column; align-items: center; }
.hero__logo {
  width: clamp(280px, 34vw, 440px); height: auto;
  margin-bottom: clamp(1rem, 2.5vw, 1.75rem);
}
.hero--center h1 { font-size: var(--fs-hero); margin-bottom: 1.5rem; max-width: 16ch; }
.hero--center .hero__lede { max-width: 56ch; margin-inline: auto; margin-bottom: 2.25rem; }
.hero--center .hero__actions { justify-content: center; }
.hero--center .hero__note { justify-content: center; max-width: 46ch; }
.hero__banner { margin-top: clamp(2.5rem, 5vw, 4rem); }
.hero__banner img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 3 / 2; object-fit: cover; object-position: center 30%;
  max-height: 560px;
}
@media (max-width: 700px) { .hero__banner img { aspect-ratio: 4 / 3; } }

/* Portrait-shaped photos keep their upright crop instead of the 3:2 default */
.split__media img.portrait { aspect-ratio: 4 / 5; object-position: center 20%; }
@media (max-width: 860px) { .split__media img.portrait { aspect-ratio: 4 / 3; } }


/* Cream logo on the burgundy footer */
.footer__logo-img { width: clamp(170px, 20vw, 210px); height: auto; margin-bottom: 1rem; }
.footer__slogan {
  font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase;
  color: #C9A9A5; margin-bottom: 1.15rem;
}

/* ============================================================
   HEADER v2 — centred logo above a centred menu bar
   ============================================================ */
.header__inner {
  flex-direction: column; align-items: center; justify-content: center;
  gap: .35rem; min-height: 0; padding-block: 1rem .4rem; position: relative;
}
.header .logo { justify-content: center; }
.header .logo__img { height: 104px; }
.header .nav { gap: 0; }
.header .nav__list { justify-content: center; }
.header .nav__cta { margin-left: 1rem; }
.header .nav__link, .header .nav__toggle {
  font-size: .875rem; letter-spacing: .13em; text-transform: uppercase;
}
.header .burger { position: absolute; right: 0; top: 50%; transform: translateY(-50%); }

@media (min-width: 961px) { .header .burger { display: none; } }
@media (max-width: 960px) {
  .header__inner { padding-block: .9rem; }
  .header .logo__img { height: 74px; }
}
@media (max-width: 700px) { .header .logo__img { height: 62px; } }

/* ============================================================
   TYPOGRAPHY — stop headings and short intros breaking unevenly.
   Applied globally so every page gets it, not just the one that
   was reported.
   ============================================================ */
h1, h2, h3,
.page-head p,
.section-head p,
.hero__lede,
.lede,
.cta-band p,
.callout h3 { text-wrap: balance; }

.page-head p { max-width: 62ch; }

/* ============================================================
   HERO v2 — positioning statement, primary actions, trust row
   ============================================================ */
.hero__kicker {
  font-size: var(--fs-xs); letter-spacing: .22em; text-transform: uppercase;
  color: var(--c-accent); font-weight: 500; margin-bottom: 1.25rem;
}
.hero__what {
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem); line-height: 1.7;
  max-width: 60ch; margin-inline: auto; margin-bottom: 2.5rem; color: var(--c-body);
}
.hero__what strong { color: var(--c-ink); font-weight: 500; }

/* Classic trust row */
.badges {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(1rem, 3vw, 2.75rem); margin-top: 2.75rem;
  padding-top: 2.25rem; border-top: 1px solid var(--c-line);
  width: 100%;
}
.badge { display: flex; align-items: center; gap: .55rem; font-size: var(--fs-sm); color: var(--c-body); }
.badge svg { width: 19px; height: 19px; color: var(--c-rose); flex: none; }

/* ============================================================
   QUICK PACKAGE LINKS (front page)
   ============================================================ */
.quicklinks {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .6rem; margin-top: 2.5rem; max-width: 780px;
}
.quicklinks a {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .6rem 1.1rem; border: 1px solid var(--c-line); border-radius: 100px;
  background: var(--c-card); color: var(--c-ink); text-decoration: none;
  font-size: var(--fs-sm); line-height: 1.2;
  transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.quicklinks a:nth-child(3n+1) { background: var(--c-lilac-soft); border-color: transparent; }
.quicklinks a:nth-child(3n+2) { background: var(--c-pink-soft); border-color: transparent; }
.quicklinks a:nth-child(3n)   { background: var(--c-iris); border-color: transparent; }
.quicklinks a:hover { background: var(--c-rose-soft); border-color: var(--c-rose); color: var(--c-rose); transform: translateY(-2px); }
.quicklinks a { transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease); }
.quicklinks em {
  font-style: normal; font-size: .625rem; letter-spacing: .12em; text-transform: uppercase;
  background: var(--c-rose); color: #fff; padding: .2rem .5rem; border-radius: 100px;
}
/* the "most popular" chip is the one we actually want clicked */
.quicklinks a:first-child { box-shadow: 0 0 0 1.5px var(--c-rose) inset; }
@media (max-width: 520px) { .quicklinks a { font-size: var(--fs-xs); padding: .5rem .85rem; } }


/* Even vertical rhythm through the hero: one 44px step between blocks.
   (.hero__actions carries a 2.25rem bottom margin from the two-column hero,
   which stacked with .quicklinks' top margin to make a 76px outlier.) */
.hero--center .hero__actions { margin-bottom: 0; }
.hero--center .quicklinks { margin-top: 2.75rem; }
.hero--center .badges { margin-top: 2.75rem; }

/* Paired styling shots */
.style-shot { margin: 0; }
.style-shot img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--r-md); box-shadow: var(--shadow); display: block;
}
.style-shot figcaption {
  margin-top: .85rem; font-size: var(--fs-sm); color: var(--c-body); text-align: center;
}

/* Anchor target that clears the sticky header when jumped to */
.anchor-offset { display: block; height: 0; scroll-margin-top: 160px; }
[id] { scroll-margin-top: 160px; }


/* ============================================================
   HERO SPARKLES — gentle drift, off for reduced motion
   ============================================================ */
.hero__sparkles { position: absolute; inset: 0; pointer-events: none; }
.hero__sparkles svg { position: absolute; animation: drift 7s ease-in-out infinite; }
.hero__sparkles svg:nth-child(1) { top: 12%; left: 7%;  width: 22px; height: 22px; color: var(--c-lilac); }
.hero__sparkles svg:nth-child(2) { top: 30%; left: 14%; width: 13px; height: 13px; color: var(--c-pink); animation-delay: -2.2s; }
.hero__sparkles svg:nth-child(3) { top: 15%; right: 9%; width: 26px; height: 26px; color: var(--c-pink); animation-delay: -4s; }
.hero__sparkles svg:nth-child(4) { top: 38%; right: 15%; width: 14px; height: 14px; color: var(--c-lilac); animation-delay: -1.2s; }
.hero__sparkles svg:nth-child(5) { top: 55%; left: 4%;  width: 17px; height: 17px; color: var(--c-pink); animation-delay: -3.1s; }
.hero__sparkles svg:nth-child(6) { top: 60%; right: 5%; width: 19px; height: 19px; color: var(--c-lilac); animation-delay: -5.4s; }
@keyframes drift {
  0%, 100% { transform: translateY(0) scale(1); opacity: .85; }
  50%      { transform: translateY(-13px) scale(1.12); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .hero__sparkles svg { animation: none; } }
@media (max-width: 700px) { .hero__sparkles svg:nth-child(4), .hero__sparkles svg:nth-child(5) { display: none; } }

/* Hero banner becomes a framed photo card instead of a hard full-bleed strip */
.hero__banner { margin-top: clamp(2.5rem, 5vw, 4rem); padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.hero__banner img {
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  max-width: var(--wrap); margin-inline: auto;
}

/* Section headings get a small sparkle flourish above the eyebrow */
.section-head--center .eyebrow::before {
  content: ""; display: block; width: 15px; height: 15px; margin: 0 auto .7rem;
  background: var(--c-rose);
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
}

/* Steps: numbered pastel discs instead of bare numerals */
.step::before {
  width: 54px; height: 54px; display: flex; align-items: center; justify-content: center;
  background: rgba(199,180,227,.16); border: 1px solid rgba(199,180,227,.35);
  border-radius: 50%; font-size: 1.5rem;
}

/* Quote cards pick up a whisper of pastel */
.quote { border-radius: var(--r-lg); }
.quote:nth-child(3n+1) { background: linear-gradient(150deg, var(--c-lilac-soft), var(--c-card) 55%); }
.quote:nth-child(3n+2) { background: linear-gradient(150deg, var(--c-pink-soft), var(--c-card) 55%); }

/* Badges soften into pills */
.badge {
  background: var(--c-card); border: 1px solid var(--c-line);
  padding: .55rem 1.05rem; border-radius: 100px;
}
.badges { border-top: 0; padding-top: 0; }

/* ============================================================
   HERO v3 — full-frame photo
   ============================================================ */
.hero--photo {
  position: relative; overflow: hidden;
  min-height: clamp(560px, 82vh, 820px);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 38%;
}
/* Burgundy veil: deep at the base for text, lifting to let the photo glow */
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(43,12,13,.82) 0%, rgba(58,17,18,.55) 42%, rgba(58,17,18,.28) 100%),
    radial-gradient(90% 60% at 50% 100%, rgba(43,12,13,.35), transparent 70%);
}
.hero__content { position: relative; z-index: 2; padding-block: clamp(4rem, 10vh, 7rem); }
.hero--photo .hero__kicker { color: var(--c-pink); text-shadow: 0 1px 12px rgba(43,12,13,.4); }
.hero--photo h1 {
  color: #FFF9F7; max-width: 17ch; margin-inline: auto; margin-bottom: 1.35rem;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  text-shadow: 0 2px 24px rgba(43,12,13,.45);
}
.hero--photo h1 em { color: var(--c-pink); }
.hero__tag {
  color: #F3E2DE; font-size: clamp(1rem, 1.5vw, 1.1875rem); letter-spacing: .04em;
  margin-bottom: 2.5rem; text-shadow: 0 1px 12px rgba(43,12,13,.5);
}
.hero--photo .hero__actions { justify-content: center; margin-bottom: 0; }

/* Buttons that pop against the photo */
.btn--hero { background: var(--c-cream); color: var(--c-accent); box-shadow: 0 6px 24px rgba(43,12,13,.35); }
.btn--hero:hover { background: #fff; color: var(--c-accent-dk); transform: translateY(-2px); }
.btn--heroghost { border-color: rgba(255,255,255,.75); color: #fff; background: rgba(43,12,13,.18); backdrop-filter: blur(3px); }
.btn--heroghost:hover { background: #fff; color: var(--c-accent); border-color: #fff; }

/* Sparkles over the photo read light, not pastel-on-pastel */
.hero--photo .hero__sparkles { z-index: 1; }
.hero--photo .hero__sparkles svg { color: rgba(255,235,240,.9); filter: drop-shadow(0 0 6px rgba(255,220,230,.5)); }
.hero--photo .hero__sparkles svg:nth-child(2),
.hero--photo .hero__sparkles svg:nth-child(4) { color: rgba(240,185,203,.95); }

/* Intro section directly below picks up the pastel wash */
.intro {
  background:
    radial-gradient(55% 80% at 10% 0%, var(--c-lilac-soft), transparent 60%),
    radial-gradient(50% 70% at 92% 100%, var(--c-pink-soft), transparent 60%),
    var(--c-cream);
}
.intro .hero__what { margin-bottom: 0; }
.intro .quicklinks { margin-top: 2.5rem; }
.intro .badges { margin-top: 2.5rem; }

@media (max-width: 700px) {
  .hero--photo { min-height: 74vh; }
  .hero__bg { object-position: 62% 38%; }  /* keep the performers in frame */
}

/* ============================================================
   SECTION PANELS — washed and dark sections become inset,
   rounded sheets so each block reads as its own object
   instead of one continuous page.
   ============================================================ */
.section--sand, .section--deep {
  --panel-r: clamp(24px, 4vw, 44px);
  margin-inline: clamp(.6rem, 2vw, 1.75rem);
  border-radius: var(--panel-r);
  margin-block: clamp(1rem, 2.5vw, 2rem);
}
/* the CTA band stays full-bleed so it fuses with the footer */
.cta-band { margin-inline: 0; border-radius: 0; margin-block: 0; }

/* ============================================================
   PHOTO BREAK — full-width image band mid-page
   ============================================================ */
.photoband {
  position: relative; overflow: hidden;
  background: var(--c-accent);   /* never a pale hole while the image loads */
  margin: clamp(1rem, 2.5vw, 2rem) clamp(.6rem, 2vw, 1.75rem);
  border-radius: clamp(24px, 4vw, 44px);
  min-height: clamp(320px, 44vh, 460px);
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.photoband__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}
.photoband__veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(43,12,13,.72), rgba(58,17,18,.34) 60%, rgba(58,17,18,.22));
}
.photoband__content { position: relative; z-index: 1; padding: 2rem; }
.photoband__spark { width: 22px; height: 22px; color: rgba(255,235,240,.95); margin-bottom: 1rem; filter: drop-shadow(0 0 6px rgba(255,220,230,.5)); }
.photoband__line {
  font-family: var(--f-display); font-size: clamp(1.75rem, 3.6vw, 2.9rem);
  color: #FFF9F7; line-height: 1.2; margin-bottom: 1.35rem;
  text-shadow: 0 2px 20px rgba(43,12,13,.5); text-wrap: balance;
}
.photoband__line em { font-style: italic; color: var(--c-pink); }
.link-arrow--light { color: #F3E2DE; }
.link-arrow--light:hover { color: #fff; }

/* ============================================================
   PILLARS — numbered trio, deliberately not another card grid
   ============================================================ */
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem); text-align: center;
}
.pillar { padding-inline: clamp(0rem, 1.5vw, 1rem); }
.pillar__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 62px; height: 62px; border-radius: 50%; margin-bottom: 1.35rem;
  font-family: var(--f-display); font-style: italic; font-size: 1.55rem;
  color: var(--c-rose);
}
.pillar:nth-child(1) .pillar__num { background: var(--c-lilac-soft); }
.pillar:nth-child(2) .pillar__num { background: var(--c-pink-soft); }
.pillar:nth-child(3) .pillar__num { background: var(--c-iris); }
.pillar h3 { font-size: var(--fs-h3); margin-bottom: .75rem; }
.pillar p { font-size: var(--fs-sm); max-width: 38ch; margin-inline: auto; }
@media (max-width: 860px) { .pillars { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ============================================================
   READABILITY — the page was dense, so give the eye rest points
   ============================================================ */
body { line-height: 1.72; }
.card__body p, .pillar p, .acc__panel p { line-height: 1.72; }
.section-head p, .lede, .hero__what { line-height: 1.75; }

/* Lead sentence of each card sits slightly larger, so the eye can
   skim card-to-card without reading every list. */
.card__body > p:first-of-type { font-size: 1rem; color: var(--c-ink); }

/* Rose accents on the burgundy panels need to be light, not dark */
.section--deep .eyebrow, .cta-band .eyebrow { color: var(--c-pink); }
.section--deep .eyebrow::before { background: var(--c-pink); }
.section--deep .tick-list li::before { background: var(--c-pink); }
.section--deep a, .cta-band a { color: #FBE9EF; }

/* Pull-quote treatment for the one line per section worth pausing on */
.pullquote {
  font-family: var(--f-display); font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.4; color: var(--c-ink); text-wrap: balance;
  border-left: 3px solid var(--c-rose); padding-left: clamp(1rem, 2vw, 1.5rem);
  margin-block: 1.75rem;
}
.pullquote em { font-style: italic; color: var(--c-rose); }

/* ------------------------------------------------------------
   FIX: `.section-head p { color: var(--c-muted) }` (0,1,1) was
   out-specifying `.eyebrow` (0,1,0), so every section label was
   rendering muted instead of the accent colour. Scope it so the
   eyebrow keeps its highlight everywhere.
   ------------------------------------------------------------ */
.section-head p.eyebrow,
.page-head p.eyebrow,
.split p.eyebrow { color: var(--c-rose); }
.section--deep .section-head p.eyebrow,
.section--deep p.eyebrow { color: var(--c-pink); }
.section--deep .section-head p { color: #DCC0BC; }


/* ============================================================
   NAV SPACING — the items were bunched at .35rem under a wide
   logo, reading as one block. Give them real separation and a
   divider before the CTA.
   ============================================================ */
.header .nav__list { gap: clamp(.5rem, 1.6vw, 1.5rem); align-items: center; }
.header .nav__link,
.header .nav__toggle { padding: .65rem .35rem; letter-spacing: .16em; }
.header .nav { gap: 0; }
.header .nav__cta {
  margin-left: clamp(1rem, 2.5vw, 2rem);
  padding-left: clamp(1rem, 2.5vw, 2rem);
  border-left: 1px solid var(--c-line);
}
/* underline that grows from the middle on hover */
@media (min-width: 961px) {
  .header .nav__link, .header .nav__toggle { position: relative; }
  .header .nav__link::after,
  .header .nav__toggle::after {
    content: ""; position: absolute; left: 50%; right: 50%; bottom: .28rem;
    height: 1.5px; background: var(--c-rose);
    transition: left .28s var(--ease), right .28s var(--ease);
  }
  .header .nav__link:hover::after,
  .header .nav__toggle:hover::after,
  .header .nav__toggle[aria-expanded="true"]::after { left: .3rem; right: .3rem; }
  .header .nav__link:hover, .header .nav__toggle:hover { background: transparent; color: var(--c-rose); }
  .header .nav__toggle[aria-expanded="true"] { background: transparent; color: var(--c-rose); }
}
@media (max-width: 960px) {
  .nav__list { gap: .35rem; }
  .header .nav__cta { margin-left: 0; padding-left: 0; border-left: 0; }
}

/* ============================================================
   PHOTO PAGE HEADERS
   ============================================================ */
.page-head--photo { position: relative; overflow: hidden; padding-block: clamp(4.5rem, 9vw, 7rem); }
.page-head--photo .page-head__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 32%;
}
.page-head--photo .page-head__veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(43,12,13,.86), rgba(58,17,18,.62) 55%, rgba(58,17,18,.5));
}
.page-head--photo .wrap { position: relative; z-index: 1; }
.page-head--photo h1 { color: #FFF9F7; text-shadow: 0 2px 20px rgba(43,12,13,.45); }
.page-head--photo p  { color: #F3E2DE; }
.page-head--photo a  { color: #FBE9EF; }

/* ============================================================
   PHOTO STRIP — four-up gallery band
   ============================================================ */
.photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.7rem, 1.4vw, 1.1rem); }
.photo-strip figure { margin: 0; overflow: hidden; border-radius: var(--r-md); background: var(--c-lilac-soft); }
.photo-strip img {
  width: 100%; height: 100%; aspect-ratio: 3 / 4; object-fit: cover; display: block;
  transition: transform .6s var(--ease);
}
.photo-strip figure:hover img { transform: scale(1.05); }
.photo-strip figure:nth-child(even) { margin-top: clamp(1rem, 2.5vw, 2.25rem); }
@media (max-width: 700px) {
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .photo-strip figure:nth-child(even) { margin-top: 0; }
}
.gallery-band {
  background:
    radial-gradient(60% 80% at 90% 0%, var(--c-pink-soft), transparent 60%),
    radial-gradient(50% 70% at 5% 100%, var(--c-lilac-soft), transparent 60%),
    var(--c-cream);
}

/* Card photos: consistent crop, gentle zoom on hover */
.card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   ADD-ON TILES — a small tinted icon so each feature reads at a
   glance. Deliberately subtle: no photography, no hard edges.
   ============================================================ */
.addon-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  margin-bottom: 1.2rem; flex: none;
  box-shadow: 0 0 0 1px rgba(168,54,94,.16) inset;   /* soft ring so the disc has an edge */
}
.addon-icon svg { width: 30px; height: 30px; color: var(--c-rose); stroke-width: 1.6; }
/* Deeper tints: the previous ones were so pale they read as blank space. */
.addon-icon--a { background: #EADFF8; }
.addon-icon--b { background: #FBDCE6; }
.addon-icon--c { background: #EFE3F6; }
#addons .card__body { align-items: flex-start; }
#addons .card:hover .addon-icon { transform: scale(1.06); }
.addon-icon { transition: transform .28s var(--ease); }
.addon-icon svg { transition: color .25s var(--ease); }

/* ============================================================
   CONDENSED SPACING — less scrolling across the whole site
   ============================================================ */
:root { --sp-section: clamp(3.25rem, 6vw, 5.5rem); }
.section-head { margin-bottom: clamp(1.75rem, 3vw, 2.5rem); }
.split { gap: clamp(1.75rem, 4vw, 3.25rem); }
.grid { gap: clamp(1rem, 2vw, 1.6rem); }
.card__body { padding: clamp(1.15rem, 2vw, 1.5rem); gap: .7rem; }
.accordion .acc__btn { padding: 1.15rem 0; }
.acc__panel p { padding-bottom: 1.15rem; }

/* The "communication" block had a full empty column beside it */
.wrap--tight .lede, .wrap--tight .pullquote { max-width: none; }

/* Practical details sat marooned below the preceding section */
.section--tight { padding-block: clamp(2rem, 4vw, 3rem); }

/* Corporate block was unnecessarily tall */
#corporate { padding-block: clamp(2.25rem, 4vw, 3.25rem); }
#corporate .split { align-items: center; gap: clamp(1.5rem, 3vw, 2.5rem); }
#corporate .split__media img,
#corporate .split__media .ph { aspect-ratio: 16 / 9; }
#corporate .lede { font-size: 1.0625rem; }

/* ============================================================
   OTHER COMMONLY REQUESTED OPTIONS
   ============================================================ */
.requests {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--c-card); border: 1px solid var(--c-line);
  border-radius: var(--r-md); padding: clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex; flex-wrap: wrap; align-items: center; gap: .9rem 1.25rem;
}
.requests__label {
  font-size: var(--fs-xs); letter-spacing: .16em; text-transform: uppercase;
  color: var(--c-rose); font-weight: 500; margin: 0;
}
.requests__list { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; margin: 0; padding: 0; }
.requests__list li {
  padding: .4rem .9rem; border-radius: 100px;
  background: var(--c-lilac-soft); color: var(--c-ink); font-size: var(--fs-sm);
}
.requests__note { font-size: var(--fs-xs); color: var(--c-muted); margin: 0; flex-basis: 100%; }

/* ============================================================
   SOCIAL BAND (replaces the old gallery strip)
   ============================================================ */
.social-box {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--r-lg); background: var(--c-accent); color: #F3E2DE;
}
.social-box h2 { color: #FFF9F7; font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: .35rem; }
.social-box p { color: #E0C9C6; font-size: var(--fs-sm); margin: 0; }
.social-box .eyebrow { color: var(--c-pink); }
.social-box .btn--primary { background: var(--c-cream); color: var(--c-accent); }
.social-box .btn--primary:hover { background: #fff; }

/* ============================================================
   EXPANDABLE PACKAGE DETAIL
   Keeps the secondary packages to name + photo + one line,
   so the page scans instead of scrolling.
   ============================================================ */
.pkg-more {
  display: inline-flex; align-items: center; gap: .45rem;
  background: none; border: 0; cursor: pointer; padding: .2rem 0;
  font-size: var(--fs-sm); font-weight: 500; color: var(--c-rose);
  letter-spacing: .04em;
}
.pkg-more svg { transition: transform .28s var(--ease); }
.pkg-more[aria-expanded="true"] svg { transform: rotate(180deg); }
.pkg-more:hover { color: var(--c-accent); }
.pkg-detail { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.pkg-detail[data-open="true"] { grid-template-rows: 1fr; }
.pkg-detail > div { overflow: hidden; }

/* ============================================================
   HEADER v3 — logo to the left, menu to the right
   ============================================================ */
@media (min-width: 961px) {
  .header__inner {
    flex-direction: row; justify-content: space-between; align-items: center;
    gap: 2rem; padding-block: .75rem;
  }
  .header .logo__img { height: 118px; }
  .header .nav { flex: 0 0 auto; }
  .header .nav__list { justify-content: flex-end; }
  .header .burger { display: none; }
}

/* ============================================================
   HERO VIDEO BACKGROUND
   ============================================================ */
.hero--photo video.hero__bg { object-position: center 30%; }
.hero__bg--fallback { display: none; }
/* If the viewer prefers reduced motion, show the still instead */
@media (prefers-reduced-motion: reduce) {
  .hero--photo video.hero__bg { display: none; }
  .hero__bg--fallback { display: block; }
}

/* Credit line on a package photo */
.card__media { position: relative; }
.media-note {
  position: absolute; left: .6rem; bottom: .6rem;
  background: rgba(43,12,13,.72); color: #FFF4F1;
  font-size: .6875rem; letter-spacing: .06em;
  padding: .28rem .6rem; border-radius: 100px;
  backdrop-filter: blur(2px);
}

/* ============================================================
   WHERE WE STAND OUT — face painting gallery
   ============================================================ */
.standout__tabs { display: flex; gap: .5rem; justify-content: center; margin-bottom: 2rem; flex-wrap: wrap; }
.standout__tab {
  border: 1px solid var(--c-line); background: var(--c-card); color: var(--c-ink);
  padding: .65rem 1.35rem; border-radius: 100px; cursor: pointer;
  font-size: var(--fs-sm); transition: all .25s var(--ease);
}
.standout__tab[aria-selected="true"] { background: var(--c-rose); border-color: var(--c-rose); color: #fff; }
.standout__panel[hidden] { display: none; }
.standout__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.6rem, 1.4vw, 1rem); }
@media (max-width: 760px) { .standout__grid { grid-template-columns: repeat(2, 1fr); } }
.standout__grid figure { margin: 0; border-radius: var(--r-md); overflow: hidden; background: var(--c-lilac-soft); }
.standout__grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.standout__grid figure:hover img { transform: scale(1.05); }
.standout__note { text-align: center; font-size: var(--fs-sm); color: var(--c-muted); margin-top: 1.25rem; }
.media-caption {
  margin-top: .7rem; font-size: var(--fs-sm); color: var(--c-rose);
  display: flex; align-items: center; gap: .4rem;
}
.media-caption span { font-size: 1.05rem; }

/* About header: the founders sit slightly high in frame */
.page-head--photo .page-head__bg { object-position: center 42%; }

/* A selfie is a close crop, so the About banner needs real height or it
   slices through their faces. */
.page-head--photo { min-height: clamp(260px, 26vw, 340px); display: flex; align-items: center; }
.page-head--photo .wrap { width: 100%; }
.page-head--photo .page-head__bg { object-position: center 46%; }
@media (max-width: 700px) { .page-head--photo { min-height: 240px; } }

/* ============================================================
   ABOUT HEADER — split layout.
   A close selfie cannot survive a 4.6:1 full-bleed banner without
   slicing through faces, so the photo sits beside the title at its
   own proportions instead.
   ============================================================ */
.page-head--split {
  background:
    radial-gradient(60% 90% at 8% 0%, var(--c-lilac-soft), transparent 62%),
    radial-gradient(55% 80% at 95% 100%, var(--c-pink-soft), transparent 62%),
    var(--c-cream);
  padding-block: clamp(2rem, 4vw, 3.25rem);
  text-align: left;
}
.page-head__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
}
.page-head--split h1 { font-size: clamp(2.25rem, 4.4vw, 3.4rem); margin-bottom: .75rem; color: var(--c-ink); }
.page-head--split .page-head__text p:last-child { color: var(--c-body); max-width: 34ch; margin: 0; }
.page-head__portrait { margin: 0; position: relative; }
.page-head__portrait img {
  width: 100%; height: auto; display: block;
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
}
.page-head__portrait figcaption {
  position: absolute; left: .75rem; bottom: .75rem;
  background: rgba(43,12,13,.72); color: #FFF4F1;
  font-size: .6875rem; letter-spacing: .07em;
  padding: .3rem .7rem; border-radius: 100px; backdrop-filter: blur(2px);
}
@media (max-width: 780px) {
  .page-head__inner { grid-template-columns: 1fr; text-align: center; }
  .page-head--split .page-head__text p:last-child { margin-inline: auto; }
}
/* Home sits first in the menu and marks the current page */
.nav__home[aria-current="page"] { color: var(--c-rose); }

/* Note under the signature packages about additional children */
.pkg-footnote {
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
  text-align: center; font-size: var(--fs-sm); color: var(--c-body);
  max-width: 62ch; margin-inline: auto;
}
.pkg-footnote a { color: var(--c-rose); }

/* ============================================================
   MOBILE TAP TARGETS
   Footer and menu links were ~22px tall, below the 44px that
   phones need for reliable tapping.
   ============================================================ */
@media (max-width: 860px) {
  .footer ul { gap: 0; }
  .footer ul li a {
    display: block; padding: .7rem 0; min-height: 44px;
    display: flex; align-items: center;
  }
  .footer__bottom { gap: .5rem; line-height: 1.7; }
  .link-arrow { padding-block: .5rem; }
  .announce a { display: inline-block; padding: .35rem 0; }
}
/* Dropdown items in the mobile drawer */
@media (max-width: 960px) {
  .dropdown a { padding: .85rem .85rem; min-height: 44px; }
}

/* Notice shown when a saved draft is restored */
.draft-note {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .75rem; padding: .8rem 1.1rem; border-radius: var(--r-sm);
  background: var(--c-rose-soft); border: 1px solid #E9C7D2;
  font-size: var(--fs-sm); color: var(--c-body);
}
.draft-note__clear {
  background: none; border: 0; cursor: pointer; padding: .4rem .2rem;
  color: var(--c-rose); font-size: var(--fs-sm); font-weight: 500;
  text-decoration: underline; text-underline-offset: 3px;
}
.draft-note__clear:hover { color: var(--c-accent); }
