/* ==========================================================================
   Baby Clean Crew — design system v2
   Emerald / cream editorial. Built to feel calm on arrival.
   ========================================================================== */

:root {
  /* ---- Brand palette ---- */
  --emerald:    #284139;   /* primary */
  --emerald-dk: #1B2E28;
  --wasabi:     #809076;   /* soft green — decorative, never body text */
  --khaki:      #F8D794;   /* warm highlight, used sparingly */
  --khaki-soft: #FCEDCB;
  --earth:      #B86830;   /* accent */
  --earth-dk:   #9A5325;
  --noir:       #111A19;

  /* ---- Derived surfaces ---- */
  --cream:      #F7F3E8;   /* page background */
  --cream-2:    #EFE9DA;   /* alternate band */
  --cream-3:    #FBF8F1;   /* cards on cream */
  --paper:      #FFFDF8;

  /* ---- Text ---- */
  --text:       #2C3B34;
  --text-soft:  #5C6B5F;
  --on-dark:    #DDE5DC;
  --on-dark-2:  #A9BAAB;

  /* ---- Type ---- */
  --display: "Instrument Serif", "Iowan Old Style", Georgia, serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* ---- Space & shape ---- */
  --pad: clamp(1.25rem, 4vw, 2.75rem);
  --maxw: 1200px;
  --r-xl: 40px;
  --r-lg: 28px;
  --r-md: 20px;
  --r-sm: 14px;

  --shadow-soft: 0 2px 8px rgba(40,65,57,.04), 0 20px 50px -20px rgba(40,65,57,.14);
  --shadow-lift: 0 4px 14px rgba(40,65,57,.06), 0 30px 70px -30px rgba(40,65,57,.24);
}

/* --------------------------------------------------------- reset + base */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--emerald); text-underline-offset: 3px; }

h1, h2 {
  font-family: var(--display);
  font-weight: 400;
  color: var(--emerald);
  line-height: 1.06;
  letter-spacing: -0.012em;
  margin: 0 0 .4em;
}
h1 { font-size: clamp(2.9rem, 7vw, 5.2rem); }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h3, h4 {
  font-family: var(--body);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.005em;
  color: var(--emerald);
  line-height: 1.35;
  margin: 0 0 .5rem;
}
h2 em, h1 em { font-style: italic; color: var(--earth); }
p { margin: 0 0 1.15em; }
.lede { font-size: clamp(1.06rem, 1.6vw, 1.22rem); line-height: 1.65; color: var(--text-soft); }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.narrow { max-width: 720px; }
section { padding-block: clamp(4rem, 9vw, 8rem); }
.tight { padding-block: clamp(2.75rem, 5vw, 4.5rem); }

.eyebrow {
  font-size: .7rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--wasabi);
  margin: 0 0 1.1rem; display: block;
}
.eyebrow::before { content: "/"; margin-right: .45em; opacity: .8; }
.center { text-align: center; }
.muted { color: var(--text-soft); }
.small { font-size: .9rem; }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }

/* ------------------------------------------------------------ calm entry */
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.rise { animation: rise 1s cubic-bezier(.22,.7,.28,1) both; }
.rise-1 { animation-delay: .05s; } .rise-2 { animation-delay: .18s; }
.rise-3 { animation-delay: .31s; } .rise-4 { animation-delay: .44s; }

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--body); font-weight: 500; font-size: .97rem;
  padding: 1.05rem 1.9rem; border-radius: 999px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer; line-height: 1;
  transition: background .35s ease, color .35s ease, border-color .35s ease, transform .35s cubic-bezier(.22,.7,.28,1);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--emerald); color: var(--cream); }
.btn-primary:hover { background: var(--emerald-dk); }
.btn-ghost { background: transparent; color: var(--emerald); border-color: rgba(40,65,57,.24); }
.btn-ghost:hover { border-color: var(--emerald); background: rgba(40,65,57,.04); }
.btn-earth { background: var(--earth); color: #fff; }
.btn-earth:hover { background: var(--earth-dk); }
.btn-cream { background: var(--cream); color: var(--emerald); }
.btn-cream:hover { background: #fff; }
.btn-lg { padding: 1.2rem 2.2rem; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn .arr { font-size: 1.05em; line-height: 0; transition: transform .35s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* ---------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247,243,232,.82);
  backdrop-filter: saturate(180%) blur(14px);
  transition: box-shadow .4s ease, background .4s ease;
}
.site-header.stuck { box-shadow: 0 1px 0 rgba(40,65,57,.08), 0 10px 30px -20px rgba(40,65,57,.4); }
.nav { display: flex; align-items: center; gap: 1.75rem; height: 82px; }
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; margin-right: auto; }
.brand svg { width: 38px; height: 38px; flex: none; }
.brand-name {
  font-family: var(--display); font-weight: 400; font-size: 1.4rem;
  color: var(--emerald); letter-spacing: -.01em; line-height: 1;
}
.brand-sub { display: block; font-family: var(--body); font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--wasabi); font-weight: 600; margin-top: 5px; }
.nav-links { display: flex; gap: 1.85rem; align-items: center; }
.nav-links a {
  color: var(--text); text-decoration: none; font-weight: 450; font-size: .93rem;
  position: relative; padding: .3rem 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--emerald); transition: right .4s cubic-bezier(.22,.7,.28,1);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.nav .btn { padding: .82rem 1.45rem; font-size: .9rem; }
.nav-toggle { display: none; background: none; border: 0; padding: .5rem; cursor: pointer; }
.nav-toggle svg { width: 26px; height: 26px; stroke: var(--emerald); }

@media (max-width: 920px) {
  .nav { height: 72px; }
  .nav-links {
    position: absolute; inset: 72px 0 auto; flex-direction: column; gap: 0;
    background: var(--cream); padding: .5rem var(--pad) 1.5rem; display: none;
    box-shadow: 0 20px 40px -24px rgba(40,65,57,.5);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: .95rem 0; border-bottom: 1px solid rgba(40,65,57,.08); }
  .nav-toggle { display: block; order: 3; }
  .nav .btn-primary { order: 2; }
}
@media (max-width: 600px) {
  .nav { gap: .7rem; height: 66px; }
  .nav-links { inset: 66px 0 auto; }
  .brand svg { width: 32px; height: 32px; }
  .brand-name { font-size: 1.14rem; white-space: nowrap; }
  .brand-sub { display: none; }
  .nav .btn { padding: .7rem 1.05rem; font-size: .84rem; white-space: nowrap; }
  .nav-toggle { padding: .35rem; }
}

/* ------------------------------------------------------------------ hero */
.hero {
  position: relative; overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 7rem) clamp(3.5rem, 8vw, 6.5rem);
}
.hero::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: 90vw; height: 90vw; max-width: 1100px; max-height: 1100px;
  left: 50%; top: -55%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(248,215,148,.5) 0%, rgba(248,215,148,.16) 42%, transparent 68%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
.hero h1 { margin-bottom: .3em; }
.hero .lede { max-width: 36ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero-note { margin-top: 1.4rem; font-size: .88rem; color: var(--text-soft); display: flex; align-items: center; gap: .5rem; }
.hero-note svg { width: 15px; height: 15px; stroke: var(--wasabi); flex: none; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } .hero .lede { max-width: none; } }

/* --------------------------------------------------------------- tag row */
.tags { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; margin: 1.6rem 0 0; list-style: none; }
.tags li {
  border: 1px solid rgba(40,65,57,.18); border-radius: 999px;
  padding: .45rem 1.05rem; font-size: .82rem; color: var(--text-soft);
  background: rgba(255,253,248,.6);
}

/* ------------------------------------------------------------ trust bar */
.trustbar { background: var(--cream-2); }
.trustbar .wrap { display: flex; flex-wrap: wrap; gap: 1rem 3rem; justify-content: center; padding-block: 1.5rem; }
.trustbar span { display: inline-flex; align-items: center; gap: .6rem; font-size: .85rem; color: var(--text); }
.trustbar svg { width: 17px; height: 17px; stroke: var(--wasabi); flex: none; }

/* ----------------------------------------------------------------- grids */
.grid { display: grid; gap: 1.15rem; }
.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: 940px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------------- cards */
.card {
  background: var(--cream-3); border: 1px solid rgba(40,65,57,.07);
  border-radius: var(--r-lg); padding: 1.9rem 1.75rem;
  transition: transform .45s cubic-bezier(.22,.7,.28,1), box-shadow .45s ease;
}
a.card { text-decoration: none; display: block; color: inherit; }
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.card p:last-child { margin-bottom: 0; }
.card-icon {
  width: 46px; height: 46px; border-radius: 14px; background: rgba(128,144,118,.16);
  display: grid; place-items: center; margin-bottom: 1.3rem;
}
.card-icon svg { width: 23px; height: 23px; stroke: var(--emerald); }

/* --------------------------------------------------------------- ribbons */
.ribbon-sand { background: var(--cream-2); }
.ribbon-khaki { background: var(--khaki-soft); }

/* Big rounded emerald block — the signature element */
.block-green {
  background: var(--emerald); color: var(--on-dark);
  border-radius: var(--r-xl); padding: clamp(2.75rem, 6vw, 5.5rem) clamp(1.75rem, 5vw, 4.5rem);
  margin-block: clamp(1rem, 3vw, 2rem);
}
.block-green h2, .block-green h3 { color: var(--cream); }
.block-green h2 em { color: var(--khaki); }
.block-green .eyebrow { color: var(--khaki); }
.block-green .lede, .block-green .muted { color: var(--on-dark-2); }
.block-green a:not(.btn) { color: var(--khaki); }
.block-green .card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); }
.block-green .card-icon { background: rgba(248,215,148,.14); }
.block-green .card-icon svg { stroke: var(--khaki); }
.block-green .ticks li {
  color: var(--on-dark);
}
.block-green .ticks li::before {
  background-color: rgba(248,215,148,.16);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F8D794' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.wrap-flush { max-width: calc(var(--maxw) + 2 * 2.75rem); margin-inline: auto; padding-inline: var(--pad); }

/* ---------------------------------------------------------------- steps */
.steps { counter-reset: step; }
.step { position: relative; padding-top: 2.4rem; }
.step::before {
  counter-increment: step; content: "/0" counter(step);
  position: absolute; top: 0; left: 0;
  font-family: var(--body); font-size: .78rem; font-weight: 600; letter-spacing: .12em;
  color: var(--wasabi);
}
.step::after { content: ""; position: absolute; top: 1.7rem; left: 0; width: 26px; height: 1px; background: rgba(128,144,118,.5); }
.block-green .step::before { color: var(--khaki); }
.block-green .step::after { background: rgba(248,215,148,.4); }

/* --------------------------------------------------------------- pricing */
.price-card { display: flex; flex-direction: column; position: relative; }
.price-card.featured { background: var(--paper); border-color: rgba(184,104,48,.35); box-shadow: var(--shadow-soft); }
.price-card.featured::after {
  content: "Most booked"; position: absolute; top: 1.5rem; right: 1.5rem;
  background: var(--khaki); color: var(--emerald-dk); font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; padding: .35rem .75rem; border-radius: 999px;
}
.price {
  font-family: var(--display); font-size: 3.2rem; color: var(--emerald);
  line-height: 1; margin: .5rem 0 .3rem; font-weight: 400;
}
.price sub { font-family: var(--body); font-size: .78rem; color: var(--text-soft); font-weight: 500; vertical-align: baseline; letter-spacing: .02em; }
.ticks { list-style: none; margin: 1.4rem 0 1.9rem; padding: 0; display: grid; gap: .65rem; }
.ticks li { position: relative; padding-left: 1.85rem; font-size: .93rem; line-height: 1.5; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .3em; width: 1.15rem; height: 1.15rem;
  border-radius: 50%; background: rgba(128,144,118,.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23284139' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: .72rem;
}
.price-card .btn { margin-top: auto; }

table.rate { width: 100%; border-collapse: collapse; background: var(--cream-3); border-radius: var(--r-md); overflow: hidden; }
table.rate th, table.rate td { text-align: left; padding: 1.05rem 1.35rem; border-bottom: 1px solid rgba(40,65,57,.07); font-size: .94rem; }
table.rate th { background: rgba(128,144,118,.13); font-weight: 600; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--emerald); }
table.rate td:last-child, table.rate th:last-child { text-align: right; white-space: nowrap; font-weight: 500; color: var(--emerald); }
table.rate tr:last-child td { border-bottom: 0; }

/* -------------------------------------------------------------------- faq */
.faq-list { counter-reset: faq; }
details.faq {
  background: var(--cream-3); border: 1px solid rgba(40,65,57,.07);
  border-radius: var(--r-md); padding: 0 1.6rem; margin-bottom: .6rem;
  transition: background .4s ease, border-color .4s ease;
}
details.faq[open] { background: var(--paper); border-color: rgba(40,65,57,.14); }
details.faq summary {
  cursor: pointer; list-style: none; padding: 1.35rem 2.5rem 1.35rem 3rem; position: relative;
  font-weight: 500; color: var(--emerald); font-size: 1rem;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::before {
  counter-increment: faq; content: "/0" counter(faq);
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  font-size: .74rem; font-weight: 600; letter-spacing: .1em; color: var(--wasabi);
}
details.faq summary::after {
  content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(40,65,57,.18);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23284139' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/13px no-repeat;
  transition: transform .4s cubic-bezier(.22,.7,.28,1), background-color .3s ease;
}
details.faq[open] summary::after {
  transform: translateY(-50%) rotate(135deg);
  background-color: var(--khaki); border-color: transparent;
}
details.faq[open] summary { padding-bottom: .5rem; }
details.faq .faq-body { padding: 0 1rem 1.5rem 3rem; font-size: .95rem; color: var(--text-soft); }
details.faq .faq-body p:last-child { margin-bottom: 0; }
.block-green details.faq { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); }
.block-green details.faq[open] { background: rgba(255,255,255,.09); }
.block-green details.faq summary { color: var(--cream); }
.block-green details.faq summary::before { color: var(--khaki); }
.block-green details.faq summary::after { border-color: rgba(255,255,255,.3); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F8D794' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E"); }
.block-green details.faq .faq-body { color: var(--on-dark-2); }

/* -------------------------------------------------------------- quotes */
.quote { background: var(--cream-3); border-radius: var(--r-lg); padding: 2rem 1.85rem; border: 1px solid rgba(40,65,57,.07); }
.quote p { font-family: var(--display); font-size: 1.28rem; line-height: 1.45; color: var(--emerald); }
.quote cite { font-style: normal; font-size: .84rem; color: var(--text-soft); letter-spacing: .02em; }
.stars { color: var(--earth); letter-spacing: .18em; font-size: .8rem; margin-bottom: .9rem; }

/* --------------------------------------------------------------- towns */
.towns { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; margin: 1.8rem 0 0; list-style: none; }
.towns a {
  display: inline-block; border: 1px solid rgba(40,65,57,.16);
  border-radius: 999px; padding: .5rem 1.15rem; font-size: .88rem; text-decoration: none;
  color: var(--text); transition: background .35s ease, border-color .35s ease, color .35s ease;
}
.towns a:hover { background: var(--emerald); border-color: var(--emerald); color: var(--cream); }
.block-green .towns a { border-color: rgba(255,255,255,.2); color: var(--on-dark); }
.block-green .towns a:hover { background: var(--khaki); border-color: var(--khaki); color: var(--emerald-dk); }

/* ---------------------------------------------------------------- media */
.frame { border-radius: var(--r-xl); overflow: hidden; background: var(--cream-2); box-shadow: var(--shadow-lift); }
.frame-sm { border-radius: var(--r-lg); }
.ph {
  aspect-ratio: 4 / 3; display: grid; place-items: center; text-align: center;
  background:
    repeating-linear-gradient(135deg, rgba(40,65,57,.03) 0 14px, transparent 14px 28px),
    var(--cream-2);
  color: var(--wasabi); font-size: .72rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; padding: 1.25rem;
}
.ph-tall { aspect-ratio: 4 / 5; }
.ph-wide { aspect-ratio: 16 / 10; }
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.ba .ph { aspect-ratio: 1; }
.ba-label { position: relative; }
.ba-label span {
  position: absolute; top: .85rem; left: .85rem; background: rgba(17,26,25,.72); color: var(--cream);
  font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* ------------------------------------------------------------------ cta */
.cta-band { text-align: center; }
.cta-band .block-green { text-align: center; }

/* --------------------------------------------------------------- footer */
.site-footer { background: var(--noir); color: var(--on-dark-2); padding-block: 4.5rem 0; font-size: .93rem; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.site-footer h4 { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--wasabi); margin-bottom: 1.1rem; font-weight: 600; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.site-footer a { color: var(--on-dark-2); text-decoration: none; transition: color .3s ease; }
.site-footer a:hover { color: var(--khaki); }
.site-footer .brand-name { color: var(--cream); }
.site-footer .brand-sub { color: var(--wasabi); }
.footer-wordmark {
  font-family: var(--display); font-size: clamp(3.5rem, 15vw, 13rem); line-height: .85;
  color: rgba(128,144,118,.13); margin: 3rem 0 -.12em; letter-spacing: -.02em; white-space: nowrap;
  user-select: none;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.09); margin-top: 2.5rem; padding-block: 1.5rem;
  display: flex; flex-wrap: wrap; gap: .75rem 1.75rem; justify-content: space-between; align-items: center;
  color: rgba(169,186,171,.75); font-size: .82rem;
}
.operated-by { display: inline-flex; align-items: center; gap: .55rem; }
.operated-by::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--khaki); opacity: .8; flex: none; }
.operated-by a { color: var(--on-dark); border-bottom: 1px solid rgba(248,215,148,.45); padding-bottom: 1px; }
.operated-by a:hover { color: var(--khaki); border-bottom-color: var(--khaki); }

/* -------------------------------------------------------- config banner */
.config-banner {
  background: var(--khaki-soft); border-bottom: 1px solid rgba(184,104,48,.25);
  color: var(--earth-dk); font-size: .82rem; font-weight: 500; text-align: center;
  padding: .65rem 1rem; line-height: 1.45;
}

/* ------------------------------------------------- landing page (/book) */
body.lp { background: var(--cream); }
.lp-hero { padding-block: clamp(2.5rem, 6vw, 5rem) clamp(2.5rem, 6vw, 4.5rem); position: relative; overflow: hidden; }
.lp-hero::before {
  content: ""; position: absolute; inset: -40% 0 auto; height: 90vw; max-height: 900px;
  background: radial-gradient(ellipse at 50% 0%, rgba(248,215,148,.45), transparent 62%);
  pointer-events: none;
}
.lp-hero .wrap { position: relative; z-index: 1; }
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: rgba(247,243,232,.95); backdrop-filter: blur(14px);
  border-top: 1px solid rgba(40,65,57,.1); padding: .75rem var(--pad);
  display: none; box-shadow: 0 -10px 30px -18px rgba(40,65,57,.5);
}
@media (max-width: 780px) { .sticky-cta { display: block; } body.lp { padding-bottom: 82px; } }
#booking-embed.live { min-height: 700px; border-radius: var(--r-lg); overflow: hidden; background: var(--paper); box-shadow: var(--shadow-soft); }
#booking-embed.live + .booking-fallback { display: none; }

/* --------------------------------------------------------------- a11y */
.skip { position: absolute; left: -9999px; top: 0; background: var(--emerald); color: var(--cream); padding: .8rem 1.3rem; z-index: 100; border-radius: 0 0 10px 0; }
.skip:focus { left: 0; }
:focus-visible { outline: 2px solid var(--earth); outline-offset: 3px; border-radius: 6px; }

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