/* ============================================================
   AMBER'S ESSENTIAL TOUCH — design system
   Source of truth: "Amber's Essential Touch - Home.dc.html"
   (Claude Design project 69d0ee60), reconciled with 03_SPECIFICATION.md
   Previous crimson/gold system preserved at css/legacy-styles.css.bak
   ============================================================ */

:root {
  /* palette — from the .dc.html design */
  --cream: #FFF9F3;        /* page background */
  --sand: #F7F1E8;         /* soft panel */
  --sand-2: #EFE9E2;
  --ink: #33231E;          /* primary text */
  --muted: #71655F;        /* secondary text */
  --brown: #6F3F2A;        /* deep brand brown */
  --copper: #B8734A;       /* copper accent */
  --rose: #A95870;         /* rose accent */
  --rose-soft: #D89BAA;
  --lav: #D7C6E6;
  --sage: #A9B8A6;
  --line: rgba(111, 63, 42, 0.18);
  --line-soft: rgba(111, 63, 42, 0.10);

  --grad-cta: linear-gradient(135deg, #B8734A, #A95870);
  --grad-hero: linear-gradient(160deg, #FFF9F3 30%, #F7F1E8 62%, #EFE9E2 100%);
  --grad-panel: linear-gradient(150deg, #F7F1E8 0%, #EEF0EA 55%, #EDE7F0 100%);
  --grad-footer: linear-gradient(140deg, #6F3F2A, #7E4450 60%, #A95870);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --script: 'Parisienne', cursive;
  --sans: 'Manrope', system-ui, -apple-system, sans-serif;

  --r-card: 24px;
  --r-tile: 18px;
  --shadow-card: 0 16px 38px rgba(111, 63, 42, 0.14);
  --shadow-cta: 0 6px 18px rgba(169, 88, 112, 0.28);

  --wrap: 1440px;
  --wrap-narrow: 1080px;
  --wrap-mid: 1240px;
  --pad-x: clamp(16px, 4vw, 48px);
  --pad-section: clamp(56px, 7vw, 104px);
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
a { color: var(--brown); }
a:hover { color: var(--rose); }
img { max-width: 100%; }

@keyframes aetFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--brown); color: var(--cream);
  padding: 12px 20px; z-index: 200;
}
.skip-link:focus { left: 12px; color: var(--cream); }

/* ---------- type ---------- */
.eyebrow {
  margin: 0 0 14px; font-size: 12px; letter-spacing: 0.2em;
  font-weight: 700; color: var(--copper); text-transform: uppercase;
}
.eyebrow--rose { color: var(--rose); }
h1, .h1 {
  margin: 0 0 24px; font-family: var(--serif); font-weight: 500;
  font-size: clamp(42px, 6.5vw, 88px); line-height: 1.04; color: var(--ink);
  text-wrap: balance;
}
h2, .h2 {
  margin: 0 0 14px; font-family: var(--serif); font-weight: 500;
  font-size: clamp(34px, 4.4vw, 60px); line-height: 1.1; color: var(--ink);
}
h3, .h3 {
  margin: 0; font-family: var(--serif); font-weight: 600;
  font-size: 27px; color: var(--ink); line-height: 1.2;
}
.script { font-family: var(--script); color: var(--rose); font-weight: 400; }
.em-rose { font-style: italic; color: var(--rose); }
.lede { margin: 0 0 32px; font-size: clamp(16px, 1.4vw, 20px); line-height: 1.65; color: var(--muted); max-width: 56ch; }
.small { font-size: 13px; color: var(--muted); }

/* ---------- layout ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.wrap--narrow { max-width: var(--wrap-narrow); }
.wrap--mid { max-width: var(--wrap-mid); }
.section { padding-top: var(--pad-section); padding-bottom: var(--pad-section); }
.section--sand { background: linear-gradient(170deg, #F7F1E8, #F1EFE7); }
.section--panel { background: var(--grad-panel); }
.section--about { background: linear-gradient(150deg, #F7F1E8, #F2EAEC); }
.section--shop { background: linear-gradient(160deg, #F7F1E8, #F2ECE2); }
.grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.grid--cards { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--tight { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid--steps { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(20px, 3vw, 36px); }
.split { display: flex; flex-wrap: wrap; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split > * { min-width: 300px; }
.split__main { flex: 1 1 460px; }
.split__side { flex: 1 1 340px; min-width: 280px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  font-family: var(--sans); font-size: 15px; font-weight: 700;
  letter-spacing: 0.04em; border-radius: 999px; border: none;
  transition: box-shadow 200ms ease, transform 200ms ease, background 200ms ease;
  text-align: center;
}
.btn--primary {
  color: var(--cream); background: var(--grad-cta);
  padding: 17px 34px; box-shadow: var(--shadow-cta);
}
.btn--primary:hover { color: var(--cream); box-shadow: 0 10px 26px rgba(169, 88, 112, 0.4); transform: translateY(-1px); }
.btn--ghost {
  color: var(--brown); background: transparent;
  border: 1.5px solid var(--copper); padding: 15px 30px;
}
.btn--ghost:hover { color: var(--brown); background: rgba(184, 115, 74, 0.08); }
.btn--light {
  color: var(--brown); background: var(--cream);
  padding: 17px 34px; box-shadow: 0 8px 24px rgba(51, 35, 30, 0.25);
}
.btn--light:hover { color: var(--brown); box-shadow: 0 12px 30px rgba(51, 35, 30, 0.35); }
.btn--outline-light {
  color: var(--cream); border: 1.5px solid rgba(255, 249, 243, 0.8);
  background: transparent; padding: 15px 30px;
}
.btn--outline-light:hover { color: var(--cream); background: rgba(255, 249, 243, 0.12); }
.btn--sm { font-size: 13px; padding: 12px 20px; }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; box-shadow: none; transform: none; }
.textlink {
  text-decoration: none; font-size: 14px; font-weight: 700;
  letter-spacing: 0.04em; color: var(--brown);
  display: inline-flex; align-items: center; gap: 8px;
}
.textlink:hover { color: var(--rose); }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 249, 243, 0.9);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(111, 63, 42, 0.12);
  transition: background 200ms ease;
}
.site-header.is-scrolled { background: rgba(255, 249, 243, 0.97); }
.nav {
  max-width: var(--wrap); margin: 0 auto;
  padding: 12px var(--pad-x);
  display: flex; align-items: center; gap: 20px; justify-content: space-between;
}
.nav__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav__logo {
  width: 52px; height: 52px; object-fit: cover; border-radius: 50%;
  border: 1px solid var(--line); background: var(--sand);
}
.nav__name { display: flex; flex-direction: column; line-height: 1.05; }
.nav__name-main { font-family: var(--serif); font-weight: 600; font-size: 20px; color: var(--brown); }
.nav__name-sub { font-size: 10px; letter-spacing: 0.16em; color: var(--muted); font-weight: 600; }
.nav__links { display: flex; align-items: center; gap: clamp(14px, 2vw, 26px); }
.nav__links a:not(.btn) {
  text-decoration: none; font-size: 14px; font-weight: 600; color: var(--ink);
}
.nav__links a:not(.btn):hover { color: var(--rose); }
.nav__links a.is-active { color: var(--rose); }
.nav__mobile { display: none; align-items: center; gap: 10px; }
.nav__burger {
  width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid rgba(111, 63, 42, 0.24);
  background: var(--cream); color: var(--brown);
  font-size: 18px; cursor: pointer;
}
.nav-drawer {
  display: none;
  border-top: 1px solid rgba(111, 63, 42, 0.12);
  background: var(--cream);
  padding: 12px var(--pad-x) 20px;
  flex-direction: column; gap: 4px;
}
.nav-drawer.is-open { display: flex; }
.nav-drawer a {
  text-decoration: none; font-size: 17px; font-weight: 600; color: var(--ink);
  padding: 12px 4px; border-bottom: 1px solid rgba(111, 63, 42, 0.08);
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a.is-active { color: var(--rose); }
@media (max-width: 920px) {
  .nav__links { display: none; }
  .nav__mobile { display: flex; }
}

/* ---------- hero ---------- */
.hero { background: var(--grad-hero); overflow: hidden; }
.hero__inner {
  max-width: var(--wrap); margin: 0 auto;
  padding: clamp(40px, 6vw, 88px) var(--pad-x) clamp(48px, 6vw, 96px);
  display: flex; flex-wrap: wrap; gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero__copy { flex: 1 1 480px; min-width: 300px; animation: aetFadeUp 500ms cubic-bezier(0.2, 0.8, 0.2, 1) both; }
.hero__media { flex: 1 1 380px; min-width: 290px; position: relative; animation: aetFadeUp 500ms cubic-bezier(0.2, 0.8, 0.2, 1) 120ms both; }
.hero__cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 28px; }
.hero__badges { margin: 0; font-size: 13px; font-weight: 600; color: var(--muted); letter-spacing: 0.02em; }
.media-frame {
  position: relative; border-radius: 28px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(111, 63, 42, 0.18);
  background: var(--sand);
}
.media-frame img { display: block; width: 100%; height: auto; }
.media-frame--fade::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255, 249, 243, 0) 55%, rgba(51, 35, 30, 0.32) 100%);
}
.quote-card {
  margin: -46px 16px 0 auto; max-width: 340px; position: relative;
  background: rgba(255, 249, 243, 0.92);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 20px;
  padding: 20px 22px; box-shadow: 0 12px 30px rgba(111, 63, 42, 0.12);
}
.quote-card blockquote {
  margin: 0 0 8px; font-family: var(--serif); font-style: italic;
  font-size: 18px; line-height: 1.5; color: var(--ink);
}
.quote-card figcaption { font-family: var(--script); font-size: 22px; color: var(--rose); }

/* ---------- cards ---------- */
.card {
  background: #FFFFFF; border: 1px solid var(--line);
  border-radius: var(--r-card); overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 250ms ease, transform 250ms ease;
}
.card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.card__media { height: 170px; position: relative; overflow: hidden; }
.card__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 24px 26px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__desc { margin: 0; font-size: 15px; line-height: 1.6; color: var(--muted); flex: 1; }
.card__meta { margin: 4px 0 8px; font-size: 13px; font-weight: 700; letter-spacing: 0.06em; color: var(--copper); }
.card__actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.tile {
  background: #FFFFFF; border: 1px solid var(--line);
  border-radius: var(--r-tile); padding: 16px 22px;
  text-decoration: none;
  display: flex; align-items: center; gap: 18px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.tile:hover { transform: translateX(6px); box-shadow: 0 10px 26px rgba(111, 63, 42, 0.12); }
.tile__dot { width: 46px; height: 46px; flex-shrink: 0; border-radius: 50%; border: 1px solid rgba(111, 63, 42, 0.14); }
.tile__label { font-family: var(--serif); font-size: 23px; font-weight: 600; color: var(--ink); display: block; }
.tile__sub { font-size: 14px; color: var(--muted); display: block; }
.tile__arrow { font-size: 20px; color: var(--copper); margin-left: auto; }
.step-card {
  position: relative; padding: 30px 28px; border-radius: var(--r-card);
  background: linear-gradient(160deg, #FFF9F3, #F7F1E8);
  border: 1px solid var(--line);
}
.step-card__num { margin: 0 0 12px; font-family: var(--serif); font-size: 46px; color: rgba(184, 115, 74, 0.4); }
.step-card h3 { margin: 0 0 10px; font-size: 28px; }
.step-card p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--muted); }
.pill-list { list-style: none; margin: 0 0 30px; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.pill-list li {
  font-size: 14px; color: var(--ink);
  background: rgba(255, 255, 255, 0.7); border: 1px solid rgba(111, 63, 42, 0.16);
  border-radius: 14px; padding: 12px 16px;
}
.pill-list strong { color: var(--brown); }
.testimonial {
  margin: 0; background: #FFFFFF; border: 1px solid var(--line);
  border-radius: 22px; padding: 28px 26px;
  display: flex; flex-direction: column; gap: 14px;
}
.testimonial p { margin: 0; font-family: var(--serif); font-style: italic; font-size: 20px; line-height: 1.55; color: var(--ink); }
.testimonial cite { font-style: normal; font-size: 14px; font-weight: 700; color: var(--brown); }
.testimonial .meta { font-size: 13px; color: var(--muted); }
.badge-pill {
  margin: 0; font-size: 15px; font-weight: 700; color: var(--brown);
  background: rgba(255, 255, 255, 0.75); border: 1px solid rgba(111, 63, 42, 0.16);
  border-radius: 999px; padding: 12px 22px; display: inline-block;
}

/* ---------- forms ---------- */
.field { display: flex; flex-direction: column; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: var(--brown); text-transform: uppercase; }
.field input, .field select, .field textarea {
  border: 1px solid rgba(111, 63, 42, 0.3); border-radius: 12px;
  padding: 13px 14px; font-size: 15px; font-family: var(--sans);
  background: var(--cream); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--rose); outline: 2px solid rgba(169, 88, 112, 0.3);
}
.field textarea { resize: vertical; min-height: 90px; }
.check { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink); font-weight: 500; }
.check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--rose); flex-shrink: 0; }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.form-note { margin: 14px 0 0; font-size: 11px; line-height: 1.5; color: var(--muted); }

/* ---------- booking flow ---------- */
.booking-shell {
  background: #FFFFFF; border: 1px solid var(--line);
  border-radius: var(--r-card); padding: clamp(22px, 3vw, 40px);
  box-shadow: 0 12px 30px rgba(111, 63, 42, 0.08);
}
.booking-steps { display: flex; gap: 8px; margin: 0 0 30px; padding: 0; flex-wrap: wrap; }
.booking-steps li {
  list-style: none; font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--muted); padding: 9px 16px; border-radius: 999px;
  border: 1px solid var(--line-soft); background: var(--sand);
}
.booking-steps li.is-current { color: var(--cream); background: var(--grad-cta); border-color: transparent; }
.booking-steps li.is-done { color: var(--brown); background: rgba(184, 115, 74, 0.12); }
.svc-option {
  width: 100%; text-align: left; cursor: pointer;
  background: var(--cream); border: 1.5px solid var(--line);
  border-radius: var(--r-tile); padding: 18px 20px;
  display: flex; align-items: center; gap: 16px;
  font-family: var(--sans);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.svc-option:hover { border-color: var(--copper); }
.svc-option.is-selected { border-color: var(--rose); box-shadow: 0 0 0 2px rgba(169, 88, 112, 0.25); }
.svc-option__name { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); display: block; }
.svc-option__meta { font-size: 12.5px; font-weight: 700; letter-spacing: 0.05em; color: var(--copper); display: block; margin-top: 2px; }
.svc-option__desc { font-size: 14px; color: var(--muted); display: block; margin-top: 4px; }
.cal { border: 1px solid var(--line-soft); border-radius: var(--r-tile); padding: 18px; background: var(--cream); }
.cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal__title { font-family: var(--serif); font-size: 22px; font-weight: 600; }
.cal__nav {
  width: 40px; height: 40px; border-radius: 10px; cursor: pointer;
  border: 1px solid rgba(111, 63, 42, 0.24); background: #fff; color: var(--brown); font-size: 16px;
}
.cal__nav[disabled] { opacity: 0.35; cursor: default; }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal__dow { text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; color: var(--muted); padding: 6px 0; }
.cal__day {
  aspect-ratio: 1; border-radius: 10px; border: none; background: transparent;
  font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--ink); cursor: pointer;
}
.cal__day:hover:not([disabled]) { background: rgba(184, 115, 74, 0.14); }
.cal__day[disabled] { color: rgba(51, 35, 30, 0.25); cursor: default; }
.cal__day.is-selected { background: var(--grad-cta); color: var(--cream); }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(104px, 1fr)); gap: 10px; }
.slot {
  border: 1.5px solid var(--line); border-radius: 999px; background: var(--cream);
  padding: 11px 8px; font-family: var(--sans); font-size: 13.5px; font-weight: 700;
  color: var(--brown); cursor: pointer; text-align: center;
}
.slot:hover { border-color: var(--copper); }
.slot.is-selected { background: var(--grad-cta); color: var(--cream); border-color: transparent; }
.review-box { background: var(--sand); border: 1px solid var(--line-soft); border-radius: var(--r-tile); padding: 22px 24px; }
.review-box dt { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--copper); text-transform: uppercase; }
.review-box dd { margin: 2px 0 14px; font-size: 15px; color: var(--ink); }
.booking-nav { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; justify-content: space-between; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(135deg, #6F3F2A, #A95870); }
.cta-band::before {
  content: ""; position: absolute; inset: 0; opacity: 0.5;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(216, 155, 170, 0.55), transparent),
    radial-gradient(ellipse 50% 60% at 80% 70%, rgba(215, 198, 230, 0.35), transparent),
    radial-gradient(ellipse 40% 40% at 60% 10%, rgba(255, 249, 243, 0.25), transparent);
}
.cta-band__inner {
  position: relative; max-width: 900px; margin: 0 auto;
  padding: clamp(64px, 8vw, 128px) var(--pad-x); text-align: center;
}
.cta-band .script { color: rgba(255, 249, 243, 0.9); font-size: clamp(26px, 3vw, 38px); margin: 0 0 10px; display: block; }
.cta-band h2 { color: var(--cream); font-size: clamp(36px, 5vw, 66px); line-height: 1.08; margin: 0 0 18px; }
.cta-band p.sub { margin: 0 0 36px; font-size: clamp(16px, 1.4vw, 19px); color: rgba(255, 249, 243, 0.85); }
.cta-band__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- footer ---------- */
.site-footer { background: var(--grad-footer); color: var(--cream); }
.site-footer a { color: var(--cream); text-decoration: none; }
.site-footer a:hover { color: var(--cream); text-decoration: underline; }
.footer__grid {
  max-width: var(--wrap); margin: 0 auto;
  padding: clamp(48px, 6vw, 88px) var(--pad-x) 32px;
  display: flex; flex-wrap: wrap; gap: clamp(32px, 5vw, 72px);
}
.footer__brand { flex: 2 1 300px; min-width: 260px; }
.footer__brand-row { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer__brand-row img { width: 60px; height: 60px; object-fit: cover; border-radius: 50%; background: var(--sand); }
.footer__brand-row span { font-family: var(--serif); font-size: 24px; font-weight: 600; }
.footer__tag { margin: 0 0 16px; font-family: var(--serif); font-style: italic; font-size: 19px; line-height: 1.55; color: rgba(255, 249, 243, 0.9); }
.footer__loc { margin: 0 0 20px; font-size: 13px; color: rgba(255, 249, 243, 0.7); }
.footer__lockup { display: inline-block; background: var(--cream); border-radius: 16px; padding: 10px; }
.footer__lockup img { display: block; width: 210px; height: auto; border-radius: 8px; }
.footer__col { flex: 1 1 140px; min-width: 130px; }
.footer__col h3 { margin: 0 0 14px; font-family: var(--sans); font-size: 12px; letter-spacing: 0.18em; font-weight: 700; color: rgba(255, 249, 243, 0.7); }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer__bar { border-top: 1px solid rgba(255, 249, 243, 0.2); }
.footer__bar-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 22px var(--pad-x);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
}
.footer__motto { margin: 0; font-size: 12px; letter-spacing: 0.16em; font-weight: 700; color: rgba(255, 249, 243, 0.85); }
.footer__copy { margin: 0; font-size: 12px; color: rgba(255, 249, 243, 0.6); }

/* email capture panel */
.capture {
  background: linear-gradient(150deg, #F2EAEC, #EDE7F0);
  border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 30px 28px;
}
.capture h3 { margin: 0 0 8px; font-size: 28px; }
.capture > p { margin: 0 0 20px; font-size: 14px; line-height: 1.6; color: var(--muted); }
.capture form { display: flex; flex-wrap: wrap; gap: 10px; }
.capture .field--first { flex: 1 1 130px; }
.capture .field--email { flex: 2 1 190px; }
.capture button { flex: 1 1 100%; margin-top: 4px; }
.capture .joined-msg { margin: 0; font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--brown); }

/* ---------- mobile sticky book bar ---------- */
.book-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 249, 243, 0.94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(111, 63, 42, 0.16);
  display: none;
}
.book-bar a {
  display: block; text-align: center; text-decoration: none;
  font-size: 15px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--cream); background: var(--grad-cta);
  padding: 15px; border-radius: 999px;
}
@media (max-width: 920px) {
  .book-bar { display: block; }
  body.has-book-bar { padding-bottom: 84px; }
}

/* ---------- misc ---------- */
.promise { display: flex; flex-direction: column; gap: 10px; }
.promise svg { flex-shrink: 0; }
.promise h3 { font-size: 22px; }
.promise p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--muted); }
.gradient-media { display: flex; align-items: center; justify-content: center; }
.pending-tag {
  font-family: var(--serif); font-style: italic; font-size: 14px;
  color: rgba(51, 35, 30, 0.5); background: rgba(255, 249, 243, 0.7);
  padding: 5px 12px; border-radius: 999px;
}
details.policy { border: 1px solid var(--line-soft); border-radius: 14px; background: #fff; padding: 0 20px; margin-bottom: 10px; }
details.policy summary {
  cursor: pointer; font-weight: 700; font-size: 15px; color: var(--brown);
  padding: 16px 0; list-style: none;
}
details.policy summary::-webkit-details-marker { display: none; }
details.policy summary::after { content: "+"; float: right; color: var(--copper); font-size: 18px; }
details.policy[open] summary::after { content: "–"; }
details.policy p { margin: 0 0 16px; font-size: 14.5px; color: var(--muted); }
.note-italic { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--brown); }
