/* ------------------------------------------------------------------
   Sanctuary at Home — design tokens
   Palette: eucalyptus ink / pale sage linen / moss / turmeric accent
------------------------------------------------------------------- */
:root {
  --ink:      #22372B;   /* deep eucalyptus — text & dark bands   */
  --paper:    #EEF1E8;   /* pale sage linen — page background     */
  --card:     #F7F8F2;   /* raised surfaces                        */
  --moss:     #46604C;   /* secondary text, borders                */
  --sage:     #A9BCA4;   /* rules, leaders, quiet UI               */
  --gold:     #C08A2D;   /* turmeric accent — actions & prices     */
  --gold-ink: #8F6314;

  --display: "Fraunces", Georgia, serif;
  --body: "Karla", -apple-system, "Segoe UI", sans-serif;
  --radius: 10px;
  --maxw: 980px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
}

h1, h2 { font-family: var(--display); font-weight: 500; line-height: 1.08; margin: 0 0 .5em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }

a { color: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

.eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-ink); margin: 0 0 .8em;
}

/* ---------- header / footer ---------- */
.site-header {
  max-width: var(--maxw); margin: 0 auto;
  padding: 1.4rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.wordmark { font-family: var(--display); font-size: 1.25rem; font-weight: 600; text-decoration: none; }
.site-header nav { display: flex; align-items: center; gap: 1.4rem; }
.site-header nav a { text-decoration: none; font-weight: 500; font-size: .95rem; }
.site-header nav a:hover:not(.btn) { color: var(--gold-ink); }

.site-footer {
  background: var(--ink); color: var(--paper);
  margin-top: 5rem; padding: 3rem 1.5rem;
  display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between;
}
.site-footer > div { max-width: var(--maxw); }
.site-footer p { color: var(--sage); margin: .4rem 0 0; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { color: var(--paper); text-decoration: none; }
.footer-links a:hover { color: var(--gold); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; background: var(--gold); color: var(--ink);
  font-weight: 700; text-decoration: none; border: none; cursor: pointer;
  font-family: var(--body); font-size: 1rem;
  padding: .85rem 1.8rem; border-radius: 999px;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { background: #D69B3B; transform: translateY(-1px); }
.btn-small { padding: .5rem 1.1rem; font-size: .9rem; }
.btn-light { background: var(--paper); }
.link-quiet { font-weight: 500; text-decoration: none; border-bottom: 1px solid var(--sage); }
.link-quiet:hover { color: var(--gold-ink); border-color: var(--gold); }

/* ---------- hero ---------- */
.hero {
  max-width: var(--maxw); margin: 0 auto; padding: 4.5rem 1.5rem 3rem;
}
.hero h1 { max-width: 12ch; }
.lede { max-width: 46ch; font-size: 1.15rem; color: var(--moss); }
.hero-actions { display: flex; align-items: center; gap: 1.6rem; margin-top: 2rem; flex-wrap: wrap; }

/* ---------- treatment menu (signature) ---------- */
.menu, .how, .reviews { max-width: var(--maxw); margin: 4.5rem auto 0; padding: 0 1.5rem; }
.section-note { color: var(--moss); margin-top: -.3rem; }
.menu-list { list-style: none; margin: 2rem 0 0; padding: 0; }
.menu-row {
  display: flex; align-items: baseline; gap: .9rem;
  padding: 1.1rem .4rem; text-decoration: none;
  border-radius: var(--radius);
  transition: background .15s ease;
}
.menu-row:hover { background: var(--card); }
.menu-list li + li .menu-row { border-top: 1px solid var(--sage); }
.menu-name { font-family: var(--display); font-size: 1.25rem; font-weight: 500; }
.menu-name small {
  display: block; font-family: var(--body); font-size: .88rem;
  color: var(--moss); font-weight: 400; max-width: 52ch; margin-top: .15rem;
}
.leader {
  flex: 1; min-width: 2rem;
  border-bottom: 2px dotted var(--sage);
  transform: translateY(-6px);
}
.menu-row:hover .leader { border-color: var(--gold); }
.menu-price { font-weight: 700; color: var(--gold-ink); white-space: nowrap; }

/* ---------- how it works ---------- */
.steps { margin: 2rem 0 0; padding-left: 1.2rem; max-width: 60ch; }
.steps li { margin-bottom: 1rem; color: var(--moss); }
.steps li strong { color: var(--ink); }
.steps li::marker { color: var(--gold-ink); font-weight: 700; }

/* ---------- reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.2rem; margin-top: 2rem; }
.review-card { margin: 0; background: var(--card); border-radius: var(--radius); padding: 1.4rem; }
.review-card blockquote { margin: .6rem 0; font-family: var(--display); font-size: 1.05rem; }
.review-card figcaption { color: var(--moss); font-size: .9rem; }
.stars { color: var(--gold-ink); letter-spacing: .15em; }

/* ---------- cta band ---------- */
.cta-band {
  background: var(--ink); color: var(--paper);
  margin: 5rem auto 0; max-width: var(--maxw);
  border-radius: 16px; padding: 3rem 2rem; text-align: center;
}
.cta-band h2 { max-width: 22ch; margin: 0 auto 1.5rem; }

/* ---------- forms ---------- */
.form-page { max-width: 640px; margin: 0 auto; padding: 3.5rem 1.5rem; }
.booking-form { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
.booking-form label { display: flex; flex-direction: column; gap: .35rem; font-weight: 700; font-size: .92rem; }
.optional { font-weight: 400; color: var(--moss); }
.booking-form input, .booking-form select, .booking-form textarea {
  font: inherit; font-weight: 400; color: var(--ink);
  background: var(--card); border: 1.5px solid var(--sage);
  border-radius: var(--radius); padding: .7rem .9rem; width: 100%;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-note { color: var(--moss); font-size: .92rem; }
.booking-form .btn { align-self: flex-start; }

/* ---------- confirmation ticket ---------- */
.ticket {
  background: var(--card); border: 1.5px solid var(--sage);
  border-radius: var(--radius); padding: .4rem 1.2rem; margin: 1.6rem 0;
}
.ticket-row {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .8rem 0; flex-wrap: wrap;
}
.ticket-row + .ticket-row { border-top: 1px dotted var(--sage); }
.ticket-row span { color: var(--moss); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 50;
  width: 54px; height: 54px; border-radius: 50%;
  background: #1FA855; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(34, 55, 43, .35);
  transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.07); }

/* ---------- responsive ---------- */
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .menu-name small { max-width: none; }
  .site-header nav { gap: .9rem; }
}
