/* ================================================================
   Love At First Sign by Foley Rentals — styles.css
   Stork yard-sign rentals · Carthage, TX
   Design language: botanical green script + warm blush/cream,
   baby blue & soft pink accent pair, dotted keepsake borders.
   ================================================================ */

/* ── Design tokens ─────────────────────────────────────────────── */
:root {
  /* Palette — drawn from the logo and printed flyers */
  --cream:       #FBF6F1;  /* warm page background */
  --cream-deep:  #F5EDE5;  /* raised cards on cream */
  --blush:       #F2E7E8;  /* alternate section background (flyer pink) */
  --blush-deep:  #EADADD;  /* borders / accents on blush */
  --green:       #496D30;  /* script leaf green (logo wordmark) — darkened from #5E8C3E to clear WCAG AA 4.5:1 as text on cream/blush/mist */
  --green-dark:  #1F4023;  /* deep forest headings */
  --green-mist:  #E4ECDA;  /* pale green tint */
  --pink:        #E4A8BB;  /* girl bow pink */
  --pink-soft:   #F7E1E8;  /* pale pink tint */
  --blue:        #9FC9E5;  /* boy bow blue */
  --blue-soft:   #E0EEF7;  /* pale blue tint */
  --orange:      #E39A4C;  /* stork beak/legs — tiny accents only */
  --ink:         #40372F;  /* warm charcoal body text */
  --ink-soft:    #695E56;  /* secondary text — darkened from #75695F to clear WCAG AA 4.5:1 on blush/mist */
  --white:       #FFFFFF;

  /* Type */
  --font-display: "Fraunces", "Georgia", serif;
  --font-script:  "Great Vibes", cursive;
  --font-body:    "Nunito Sans", "Segoe UI", sans-serif;

  /* Layout */
  --wrap:        1120px;
  --header-h:    78px;
  --header-h-sm: 64px;
  --r:           18px;
  --r-lg:        28px;
  --shadow:      0 10px 30px rgba(64, 55, 47, .12);
  --shadow-soft: 0 4px 16px rgba(64, 55, 47, .08);

  /* Layers — header UNDER scrim UNDER drawer (canonical pattern) */
  --z-header: 130;
  --z-scrim:  190;
  --z-drawer: 200;
}

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

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

body {
  margin: 0;
  overflow-x: hidden; /* guards against drawer/decoration overflow */
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--green-dark);
  line-height: 1.15;
  margin: 0 0 .6em;
  font-weight: 600;
}

p { margin: 0 0 1em; }

a { color: var(--green); }
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: min(var(--wrap), 100% - 2.5rem);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--green-dark);
  color: var(--cream);
  padding: .7rem 1.2rem;
  border-radius: 0 0 var(--r) var(--r);
  font-weight: 700;
  text-decoration: none;
  z-index: 2000;
  transition: top .25s ease;
}
.skip-link:focus { top: 0; }

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.7rem;
  min-height: 48px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn:active { transform: translateY(0); }

.btn-call {
  background: var(--green-dark);
  color: var(--cream);
}
.btn-call:hover { background: var(--green); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline:hover { background: var(--green-mist); }

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(251, 246, 241, .55);
}
.btn-outline-light:hover { background: rgba(251, 246, 241, .12); border-color: var(--cream); }

.btn-sm { padding: .55rem 1.25rem; min-height: 42px; font-size: .95rem; }
.btn-lg { padding: 1rem 2.1rem; font-size: 1.1rem; }

.ico { width: 1.15em; height: 1.15em; flex: none; }

/* ── Header ────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(251, 246, 241, .94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--blush-deep);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-soft); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  transition: min-height .25s ease;
}
.site-header.scrolled .header-inner { min-height: var(--header-h-sm); }

.brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  min-width: 0;
}
.brand-mark img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px dotted var(--green);
  padding: 2px;
  background: var(--white);
  transition: width .25s ease, height .25s ease;
}
.site-header.scrolled .brand-mark img { width: 44px; height: 44px; }

.brand-text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.brand-name {
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: var(--green);
  white-space: nowrap;
}
.brand-sub {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

.site-nav { display: none; align-items: center; gap: 1.6rem; }
.site-nav > a:not(.btn) {
  font-weight: 700;
  font-size: .98rem;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: .3rem 0;
}
.site-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--pink));
  transition: width .22s ease;
}
.site-nav > a:not(.btn):hover { color: var(--green-dark); }
.site-nav > a:not(.btn):hover::after { width: 100%; }

.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 12px 11px;
  background: transparent;
  border: 0;
  cursor: pointer;
  border-radius: 12px;
}
.hamburger span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--green-dark);
  transition: transform .25s ease, opacity .2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Mobile drawer (canonical pattern: header < scrim < drawer) ── */
.scrim {
  position: fixed;
  inset: 0;
  z-index: var(--z-scrim);
  background: rgba(64, 55, 47, .45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.scrim.show { opacity: 1; pointer-events: auto; }

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-drawer);
  width: min(84vw, 340px);
  background: var(--cream);
  border-left: 3px dotted var(--green);
  padding: 4.6rem 1.7rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  transform: translateX(105%);
  transition: transform .32s ease;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); box-shadow: var(--shadow); }

.mobile-nav-close {
  position: absolute;
  top: .9rem;
  right: .9rem;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--blush);
  color: var(--green-dark);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.mobile-nav-close:hover { background: var(--blush-deep); }

.mobile-nav > a:not(.btn) {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-dark);
  text-decoration: none;
  padding: .55rem .2rem;
  border-bottom: 1px dashed var(--blush-deep);
}
.mobile-nav > a:not(.btn):hover { color: var(--green); }

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-top: 1.5rem;
}
.mobile-nav-tag {
  margin-top: auto;
  padding-top: 1.5rem;
  font-family: var(--font-script);
  font-size: 1.35rem;
  color: var(--green);
  text-align: center;
}

/* ── Section shells ────────────────────────────────────────────── */
main { display: block; }

.section {
  padding: clamp(3.2rem, 7vw, 5.5rem) 0;
  scroll-margin-top: calc(var(--header-h) + 12px);
}
.section-blush { background: var(--blush); }
.section-mist  { background: var(--green-mist); }

.section-head {
  max-width: 680px;
  margin: 0 auto 2.6rem;
  text-align: center;
}
.kicker {
  display: inline-block;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .7rem;
}
.section-head h2 {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
}
.section-head .lede {
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin: 0;
}

/* Dotted keepsake rule under section headings (logo motif) */
.dotted-rule {
  width: 130px;
  margin: 1.1rem auto 0;
  border: 0;
  border-top: 4px dotted var(--green);
  opacity: .55;
}

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 10% 12%, var(--blue-soft) 0, transparent 30%),
    radial-gradient(circle at 92% 88%, var(--pink-soft) 0, transparent 30%),
    var(--cream);
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3.4rem, 8vw, 6.2rem);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.hero-script {
  font-family: var(--font-script);
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  color: var(--green);
  display: block;
  margin-bottom: .4rem;
}
.hero h1 {
  font-size: clamp(2.15rem, 4.6vw, 3.3rem);
  max-width: 17ch;
}
.hero-lead {
  max-width: 54ch;
  margin: 0 0 1.8rem;
  color: var(--ink-soft);
  font-size: 1.15rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}
.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  padding: 0;
  margin: 1.7rem 0 0;
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.hero-trust li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  flex: none;
}
.hero-trust li:nth-child(2n)::before { background: var(--pink); }

/* Photo in a keepsake "polaroid" frame over a polka-dot card */
.hero-photo {
  position: relative;
  max-width: 560px;
  margin-inline: auto;
}
.hero-photo::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 22px;
  right: -16px;
  bottom: -16px;
  border-radius: var(--r-lg);
  background-image: radial-gradient(var(--blue) 2.6px, transparent 3.1px);
  background-size: 24px 24px;
  opacity: .5;
  transform: rotate(2deg);
}
.hero-photo-frame {
  position: relative;
  margin: 0;
  background: var(--white);
  padding: 12px 12px 0;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  transform: rotate(-1.4deg);
}
.hero-photo-frame img {
  width: 100%;
  border-radius: calc(var(--r-lg) - 8px);
}
.hero-photo-frame figcaption {
  font-family: var(--font-script);
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--green);
  text-align: center;
  padding: .6rem .8rem .85rem;
}

@media (min-width: 940px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .hero-photo { margin-inline: 0 0; justify-self: end; width: 100%; }
}

/* ── How It Works — 5-step timeline ────────────────────────────── */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2rem;
}
.step {
  position: relative;
  text-align: center;
  padding: 0 .4rem;
  max-width: 420px;
  margin-inline: auto;
  width: 100%;
}
.step-icon {
  position: relative;
  width: 86px;
  height: 86px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-soft);
  border: 3px dotted var(--blue);
  color: var(--green-dark);
}
.step:nth-child(2n) .step-icon {
  background: var(--pink-soft);
  border-color: var(--pink);
}
.step-icon svg { width: 36px; height: 36px; }
.step-num {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--cream);
  font-weight: 800;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}
.step h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.step p { font-size: .97rem; color: var(--ink-soft); margin: 0; }

@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(5, 1fr); gap: 1.2rem; }
  .step { max-width: none; }
  .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 43px;
    left: calc(50% + 55px);
    width: calc(100% - 110px);
    border-top: 3px dotted var(--blush-deep);
  }
}

.steps-cta { margin-top: 2.8rem; text-align: center; }
.steps-tip {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--green);
  margin-bottom: 1rem;
}
.steps-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  justify-content: center;
}

/* ── Pricing ───────────────────────────────────────────────────── */
.price-grid {
  display: grid;
  gap: 1.8rem;
  align-items: stretch;
  margin-bottom: 2rem;
}
.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--blush-deep);
  border-radius: var(--r-lg);
  padding: 2.1rem 1.7rem 1.9rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  text-align: center;
}
.price-card h3 { font-size: 1.28rem; margin-bottom: .15rem; min-height: 2.5em; display: flex; align-items: center; justify-content: center; }
.price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
  margin: .15rem 0;
}
.price-sub {
  color: var(--ink-soft);
  font-size: .95rem;
  margin-bottom: 1.2rem;
}
.includes {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  text-align: left;
}
.includes li {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  font-size: .98rem;
}
.includes li::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
  flex: none;
}
.price-card .btn { margin-top: auto; }

.price-card-featured {
  border: 2px solid var(--green);
  box-shadow: var(--shadow);
}
.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-dark);
  color: var(--cream);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: .38rem 1.05rem;
  border-radius: 999px;
  white-space: nowrap;
}

@media (min-width: 880px) {
  .price-grid { grid-template-columns: repeat(3, 1fr); }
  .price-card-featured { transform: scale(1.045); }
}

/* Add-ons & keepsake plate */
.extras-grid {
  display: grid;
  gap: 1.8rem;
  margin-bottom: 2rem;
}
.extra-card {
  background: var(--white);
  border: 3px dotted var(--blush-deep);
  border-radius: var(--r-lg);
  padding: 1.7rem 1.7rem 1.6rem;
}
.extra-card p { margin: 0; color: var(--ink-soft); }
.extra-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .55rem;
}
.extra-head h3 { font-size: 1.18rem; margin: 0; }
.extra-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--green);
  white-space: nowrap;
}
.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  padding: 0;
  margin: .7rem 0 0;
}
.chips li {
  background: var(--blue-soft);
  border-radius: 999px;
  padding: .3rem .95rem;
  font-weight: 700;
  font-size: .92rem;
  color: var(--green-dark);
}
.chips li:nth-child(2n) { background: var(--pink-soft); }

@media (min-width: 880px) {
  .extras-grid { grid-template-columns: 1fr 1fr; }
}

.delivery-note {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  background: var(--cream);
  border-radius: var(--r);
  padding: 1.05rem 1.35rem;
  color: var(--ink-soft);
  font-size: .97rem;
  max-width: 660px;
  margin: 0 auto;
}
.delivery-note .ico { color: var(--green); margin-top: 3px; }

/* ── Footer ────────────────────────────────────────────────────── */
.site-footer {
  background: var(--green-dark);
  color: var(--cream);
  padding: 3.2rem 0 0;
}
.footer-grid {
  display: grid;
  gap: 2.2rem;
  padding-bottom: 2.4rem;
}
.footer-brand .brand-name { font-size: 2rem; color: var(--cream); }
.footer-brand .footer-tag {
  color: var(--blush-deep);
  max-width: 34ch;
  margin-top: .5rem;
}
.footer-col h3 {
  color: var(--cream);
  font-size: 1.05rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 800;
  margin-bottom: .9rem;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.footer-col a {
  color: var(--blush-deep);
  text-decoration: none;
}
.footer-col a:hover { color: var(--white); text-decoration: underline; }
.footer-col li { color: var(--blush-deep); }

.footer-call {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(251, 246, 241, .18);
  padding: 1.1rem 0;
  font-size: .88rem;
  color: var(--blush-deep);
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  align-items: center;
  justify-content: space-between;
}

/* ── Reveal-on-scroll hooks (activated in Phase 3 JS) ──────────── */
.anim .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.anim .reveal.is-visible { opacity: 1; transform: none; }

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

/* ── Breakpoints ───────────────────────────────────────────────── */
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}

@media (min-width: 900px) {
  .site-nav { display: flex; }
  .hamburger { display: none; }
  .mobile-nav { display: none; }
  .scrim { display: none; }
}

@media (max-width: 420px) {
  .brand-sub { display: none; }
  .brand-name { font-size: 1.45rem; }
}

/* ── Gallery ───────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  gap: 1.6rem;
}
.gallery-item {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--white);
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.2rem 1.1rem .9rem;
  background: linear-gradient(180deg, transparent, rgba(31, 64, 35, .82));
  color: var(--cream);
  font-size: .95rem;
  font-weight: 700;
}

.gallery-item-cta {
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blush);
  border: 3px dotted var(--pink);
  box-shadow: none;
}
.gallery-cta-inner {
  text-align: center;
  padding: 1.5rem;
}
.gallery-cta-inner .hero-script { font-size: 1.9rem; margin-bottom: .5rem; }
.gallery-cta-inner p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.gallery-cta-call {
  display: inline-block;
  margin-top: .8rem;
  font-weight: 700;
  font-size: .9rem;
  color: var(--green);
}

@media (min-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Service Area ──────────────────────────────────────────────── */
.area-layout {
  display: grid;
  gap: 2.4rem;
  align-items: start;
}
.area-copy p { color: var(--ink-soft); }
.area-copy p strong { color: var(--green-dark); }

.towns {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem;
}
.town {
  background: var(--white);
  border: 1px solid var(--blush-deep);
  border-radius: var(--r);
  padding: .9rem 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  text-align: center;
}
.town-home {
  grid-column: 1 / -1;
  background: var(--green-dark);
  color: var(--cream);
  border-color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-size: 1.05rem;
}
.town-home .ico { color: var(--pink); }
.town-home span {
  font-weight: 500;
  opacity: .8;
  font-size: .85em;
  text-transform: uppercase;
  letter-spacing: .08em;
}

@media (min-width: 860px) {
  .area-layout { grid-template-columns: 1.1fr .9fr; }
}

/* ── FAQ ───────────────────────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--blush-deep);
  border-radius: var(--r);
  padding: .3rem 1.3rem;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem .2rem;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--green);
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 .2rem 1.2rem;
  margin: 0;
  color: var(--ink-soft);
}

/* ── Final CTA band ────────────────────────────────────────────── */
.cta-band {
  background: var(--green-dark);
  padding: clamp(3.4rem, 7vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(251, 246, 241, .35) 2px, transparent 2.6px);
  background-size: 26px 26px;
  opacity: .12;
  pointer-events: none;
}
.cta-band-inner {
  position: relative;
  text-align: center;
  max-width: 640px;
}
.cta-band .hero-script { color: var(--pink-soft); }
.cta-band h2 { color: var(--cream); }
.cta-band-inner > p {
  color: var(--blush-deep);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
/* On the dark band, the default btn-call (green-dark fill) would blend into the
   background, so the primary Reserve button gets a high-contrast cream fill. */
.cta-band .btn-call {
  background: var(--cream);
  color: var(--green-dark);
}
.cta-band .btn-call:hover {
  background: var(--white);
  color: var(--green-dark);
}
