/* ===========================================================
   tomasvarela.cura — shared styles
   Editorial / retreat-brochure aesthetic
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* ---------------------------------------------------------------
   Display font: Cormorant Garamond Light — same family as body,
   in a lighter weight. Single-family typography is the most
   restrained, most editorial approach: hierarchy through size
   and weight, never noise.
   --------------------------------------------------------------- */

:root {
  /* ---- NEUTRALS · warm ivory ground → near-black ink ---- */
  --cream:        #FFFDFB;        /* ground — light warm ivory */
  --cream-soft:   #FAF4EC;        /* warm tint for cards */
  --cream-deep:   #F2E8D9;        /* deeper warm wash */
  --cream-light:  #F7EFE6;        /* ivory text on dark/gold bands */
  --ink:          #2A2412;        /* warm near-black for body copy */
  --white:        #FFFFFF;

  /* ---- PRIMARY · the golds ---- */
  --walnut:       #837B39;        /* primary brand & headlines (golden) */
  --walnut-soft:  #6F6730;        /* deeper golden for secondary text */
  --walnut-mute:  #A89C5C;        /* muted golden for eyebrows / captions */
  --gold-light:   #EBCB97;        /* warm gold highlight on dark bands */
  --gold-glow:    #F4E0A8;        /* soft gold for footer accents */
  --sage:         #837B39;        /* legacy alias of golden */

  /* ---- SECONDARY ACCENT · the terracottas ---- */
  --terracotta:   #B0763A;        /* action buttons */
  --terracotta-d: #8C5B29;        /* hover */
  --accent-vivid: #BE5424;        /* vibrant burnt sienna — headline & quote accents */

  /* ---- TERTIARY · the blues (glacier teal) ---- */
  --glacier:      #E4F0F1;        /* light glacier blue — soft section grounds */
  --glacier-soft: #F0F7F7;        /* lighter glacier wash */
  --glacier-eyebrow:#36605C;      /* eyebrow/label on glacier */
  --glacier-deep: #2E7C76;        /* mid teal — accents/italics on glacier */
  --glacier-body: #274543;        /* body copy on glacier */
  --glacier-ink:  #163230;        /* darkest teal — headings/buttons on glacier */

  /* soft pink highlight (ambient gradient only) */
  --blush:        #F8E9EB;

  --line:         rgba(131, 123, 57, 0.30);
  --line-soft:    rgba(131, 123, 57, 0.16);

  --display-font: 'Cormorant Garamond', 'EB Garamond', 'Garamond', Georgia, serif;
  --serif: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --sans:  'Jost', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --mono:  ui-monospace, 'SF Mono', 'JetBrains Mono', Menlo, monospace;

  --pad-x: clamp(24px, 5vw, 96px);
  --maxw: 1280px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  background-image:
    radial-gradient(120% 80% at 100% 0%, var(--blush) 0%, transparent 50%),
    radial-gradient(100% 70% at 0% 100%, rgba(131, 123, 57, 0.08) 0%, transparent 52%);
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- granular sand / film-grain texture on body ---------- */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='discrete' tableValues='0 0.5 0 0.7 0 0.4 0 0.6 0 0.45'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  background-position: 0 0;
  mix-blend-mode: multiply;
  opacity: 0.24;
}

/* =========================================================== */
/* NAV                                                          */
/* =========================================================== */
.nav {
  position: -webkit-sticky; /* iOS Safari */
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(131, 123, 57, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
}
/* Blur lives on a pseudo-element: putting backdrop-filter on .nav itself would
   make it the containing block for the position:fixed mobile drawer, which then
   anchors to the document instead of the viewport. */
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  pointer-events: none;
}
.nav-inner { position: relative; }
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav { background: rgba(131, 123, 57, 0.85); }
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  line-height: 1;
}
.brand-mark {
  width: 42px;
  height: 48px;
  background-color: currentColor;
  -webkit-mask: url('assets/logo-icon.svg') no-repeat center / contain;
          mask: url('assets/logo-icon.svg') no-repeat center / contain;
  display: inline-block;
  flex: 0 0 auto;
  transition: opacity .25s ease;
}
.brand:hover { opacity: 0.85; color: var(--white); }
.brand .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--terracotta);
  display: inline-block;
}
.brand .dim {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--walnut-mute);
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: 32px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  color: rgba(255, 255, 255, 0.78);
  transition: color .25s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--white);
}
.nav-cta {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.nav-cta:hover { background: var(--glacier); color: var(--glacier-ink); border-color: var(--glacier); }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-lang {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.82;
  transition: opacity .25s ease, color .25s ease;
}
.nav-lang:hover { opacity: 1; color: var(--white); }
@media (max-width: 1024px) {
  .nav-actions { margin-left: auto; margin-right: 10px; gap: 0; }
}

@media (max-width: 1024px) {
  .nav-links {
    /* drawer behaviour handled in mobile-nav section below */
  }
}

/* =========================================================== */
/* PAGE FRAME                                                   */
/* =========================================================== */
.page {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  position: relative;
  z-index: 2;
}
.section { padding: clamp(48px, 7vw, 96px) 0; }
#astrology.section { padding-bottom: clamp(20px, 3vw, 40px); }
#tarot.section { padding-top: clamp(20px, 3vw, 40px); }
.section + .section { border-top: 1px solid var(--line-soft); }

/* eyebrow tag */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--walnut-mute);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--walnut-mute);
  opacity: 0.7;
}

/* display headlines */
h1.display, h2.display, .display {
  font-family: var(--display-font);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--walnut);
  margin: 0;
}
.display-xl { font-size: clamp(56px, 9vw, 132px); }
.display-l  { font-size: clamp(40px, 5vw, 58px); }
.display-m  { font-size: clamp(32px, 4.4vw, 60px); }
.display .it {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-vivid);
  letter-spacing: 0;
}

h2.display { margin-bottom: 0.4em; }
p.lede {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.5;
  color: var(--ink);
  max-width: 60ch;
}

/* body copy */
p { max-width: 65ch; }
.muted { color: var(--walnut-mute); }
.center { text-align: center; }

/* =========================================================== */
/* PLACEHOLDER IMAGE                                            */
/* =========================================================== */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      var(--cream-deep) 0 14px,
      var(--cream-soft) 14px 28px
    );
  border: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ph::after {
  content: attr(data-label);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--walnut-mute);
  text-transform: lowercase;
  background: var(--cream);
  padding: 6px 10px;
  border: 1px solid var(--line-soft);
}
.ph.tall { aspect-ratio: 3/4; }
.ph.wide { aspect-ratio: 16/10; }
.ph.square { aspect-ratio: 1/1; }
.ph.portrait { aspect-ratio: 4/5; }
/* full-bleed bands use width:100vw, which includes the scrollbar gutter —
   clip the few px of horizontal overflow that creates */
html { overflow-x: hidden; }
/* real photos need no placeholder frame */
.ph--image { border: none; }

/* =========================================================== */
/* SERVICE BLOCKS                                               */
/* =========================================================== */
.service {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 80px);
  padding: clamp(40px, 6vw, 72px) 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.service:last-child { border-bottom: 1px solid var(--line); }
.service-meta { position: sticky; top: 100px; }
.service-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--walnut-mute);
  margin-bottom: 18px;
}
.service-title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 300;
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--walnut);
}
.service-title em { color: var(--terracotta); }
.service-tag {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
}
.service-body p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.55;
  color: var(--walnut-soft);
  max-width: none;
}
.service-durations {
  margin-top: 18px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.dur {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  background: var(--cream-soft);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--walnut);
}
.dur .price { color: var(--terracotta); margin-left: 8px; }

@media (max-width: 820px) {
  .service { grid-template-columns: 1fr; }
  .service-meta { position: static; }
}

/* =========================================================== */
/* QUOTE                                                        */
/* =========================================================== */
.quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.2;
  color: var(--walnut);
  max-width: 22ch;
  margin: 0;
}
.quote .accent { color: var(--accent-vivid); }
.signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  margin-top: 24px;
  color: var(--walnut-soft);
}

/* =========================================================== */
/* FOOTER                                                       */
/* =========================================================== */
.footer {
  position: relative;
  background-color: var(--walnut);
  background-image:
    linear-gradient(180deg, rgba(70, 64, 22, 0.45) 0%, rgba(70, 64, 22, 0.55) 50%, rgba(70, 64, 22, 0.70) 100%),
    url('assets/opt/footer-bg-flat.jpg');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  color: var(--white);
  margin-top: clamp(24px, 4vw, 48px);
  position: relative;
  z-index: 2;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(48px, 8vw, 120px);
  row-gap: 48px;
  align-items: start;
}
.footer-group {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.footer-group .footer-blurb { margin: 0; }
.footer-col {
  padding-top: 0;
}
.footer h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  margin: 0 0 24px;
  color: var(--cream);
}
.footer h3 em { color: var(--gold-glow); font-style: italic; }

/* full wordmark in footer */
.footer-mark {
  display: inline-block;
  width: 220px;
  height: 154px;
  background: url('assets/footer-logo-en.png') no-repeat left center / contain;
  margin-bottom: 22px;
}
html[lang="pt"] .footer-mark { background-image: url('assets/footer-logo-pt.png'); }
.footer-group .footer-mark { margin-bottom: 0; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  margin: 0 0 18px;
}
.footer-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
}
.footer-col ul a { transition: color .25s ease; }
.footer-col ul a:hover { color: var(--gold-glow); }
.footer-base {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 24px var(--pad-x);
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .footer-base { flex-direction: column; gap: 8px; }
}

/* =========================================================== */
/* BUTTONS                                                      */
/* =========================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 0;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { background: var(--walnut); color: var(--cream); border-color: var(--walnut); }
/* Secondary (non-solid): no frame, animated underline on hover */
.btn:not(.solid) {
  border-color: transparent;
  background: transparent;
  padding-left: 4px;
  padding-right: 4px;
  position: relative;
}
.btn:not(.solid)::after {
  content: "";
  position: absolute;
  left: 4px; right: 4px; bottom: 10px;
  height: 1px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left;
  opacity: .34; /* faint resting underline so ghost buttons read as tappable (esp. touch) */
  transition: opacity .3s ease;
}
.btn:not(.solid):hover {
  background: transparent;
  color: var(--ink);
  border-color: transparent;
}
.btn:not(.solid):hover::after,
a:hover > .btn:not(.solid)::after { opacity: 1; }
/* Keyboard focus visibility (a11y) */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}
.btn.solid { background: var(--terracotta); color: var(--cream); border-color: var(--terracotta); }
.btn.solid:hover { background: var(--terracotta-d); border-color: var(--terracotta-d); }
.btn .arrow {
  display: inline-block;
  transition: transform .25s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

/* =========================================================== */
/* MARQUEE WORDS                                                */
/* =========================================================== */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  padding: 22px 0;
}
.marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: scroll 40s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 3vw, 40px);
  color: var(--walnut-soft);
}
.marquee-track .star { color: var(--terracotta); font-style: normal; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================== */
/* TABLE                                                        */
/* =========================================================== */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
}
.price-table th, .price-table td {
  text-align: left;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}
.price-table th {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--walnut-mute);
  font-weight: 400;
}
.price-table td.tname {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
}
.price-table td.tdur { font-family: var(--mono); font-size: 13px; color: var(--walnut-soft); }
.price-table td.tprice {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--terracotta);
  text-align: right;
  font-style: italic;
}

/* =========================================================== */
/* CARD GRID (for collaborations)                               */
/* =========================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 920px) { .card-grid { grid-template-columns: 1fr; } }

.card {
  position: relative;
  background: var(--walnut) url('assets/opt/brand-tex-gold.jpg') center / cover no-repeat;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 32px 28px;
  border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(120,108,58,0.56) 0%, rgba(108,98,52,0.46) 100%);
  transition: opacity .35s ease;
}
.card > * { position: relative; z-index: 1; }
.card:hover { transform: translateY(-4px); }
.card:hover::before { opacity: 0.78; }

/* Card 2 — blush (Festivals) */
.card-grid .card:nth-child(2) {
  background-image: url('assets/opt/brand-tex-blush.jpg');
}
.card-grid .card:nth-child(2)::before {
  background: linear-gradient(180deg, rgba(146,98,62,0.60) 0%, rgba(132,88,55,0.50) 100%);
}
/* Card 3 — teal/sky (Workshops) */
.card-grid .card:nth-child(3) {
  background-image: url('assets/opt/brand-tex-sky.jpg');
}
.card-grid .card:nth-child(3)::before {
  background: linear-gradient(180deg, rgba(74,104,94,0.62) 0%, rgba(68,96,86,0.52) 100%);
}
.card-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}
.card-title {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--white);
}
.card-body {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.5;
  color: var(--white);
}
.card hr {
  border: 0; border-top: 1px solid rgba(255,255,255,0.25);
  margin: 24px 0 20px;
}
.card-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255,255,255,0.9);
}
.card-list li {
  display: flex; gap: 12px;
}
.card-list li::before {
  content: "—";
  color: rgba(255,255,255,0.7);
  flex: 0 0 auto;
}

/* =========================================================== */
/* FINE PRINT                                                    */
/* =========================================================== */
.fine {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--walnut-mute);
  line-height: 1.6;
}

/* =========================================================== */
/* HERO ARRANGEMENT                                              */
/* =========================================================== */
.hero {
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(40px, 6vw, 80px);
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-meta p { max-width: 36ch; }


/* ===========================================================
   CONTACT FORM
   =========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info {
  position: sticky;
  top: 100px;
}
/* Short viewports: sticky columns get pinned and clash with content while
   scrolling — let them flow normally instead */
@media (max-height: 760px) {
  .contact-info,
  .service-meta { position: static !important; }
}
.contact-info .lede { margin-top: 24px; }
.contact-details {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.contact-details li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: baseline;
}
.contact-details .ck {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--walnut-mute);
}
.contact-details .cv {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
}
.contact-details .cv a { color: var(--ink); border-bottom: 1px solid var(--line); padding-bottom: 1px; transition: color .25s ease, border-color .25s ease; }
.contact-details .cv a:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* ---------- form ---------- */
.form-card {
  background: var(--cream-soft);
  border: 1px solid var(--line-soft);
  padding: clamp(28px, 4vw, 48px);
  border-radius: 4px;
}
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}
.form .full { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--walnut-mute);
}
.field label .req { color: var(--terracotta); margin-left: 4px; }

.field input,
.field select,
.field textarea {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0 12px;
  width: 100%;
  border-radius: 0;
  outline: none;
  transition: border-color .25s ease;
}
.field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.5;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(43, 38, 20, 0.35);
  font-style: italic;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--terracotta);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--walnut) 50%),
                    linear-gradient(135deg, var(--walnut) 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 8px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 28px;
  cursor: pointer;
}

/* radio chip group (interest) */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chips input { position: absolute; opacity: 0; pointer-events: none; }
.chips label {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--walnut-soft);
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  background: var(--cream);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.chips label:hover { border-color: var(--terracotta); color: var(--terracotta); }
.chips input:checked + label {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

/* consent + submit row */
.form-foot {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--walnut-soft);
  max-width: 38ch;
  line-height: 1.55;
}
.consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px; height: 16px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--cream);
  cursor: pointer;
  margin-top: 2px;
  flex: 0 0 auto;
  position: relative;
}
.consent input[type="checkbox"]:checked {
  background: var(--terracotta);
  border-color: var(--terracotta);
}
.consent input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px; top: 1px;
  width: 4px; height: 8px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

button.btn { font: inherit; cursor: pointer; }
button.btn.solid {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* success state */
.form-success {
  display: none;
  text-align: left;
  padding: 24px 0;
}
.form-success.show { display: block; }
.form-success h4 {
  font-family: var(--display-font);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--walnut);
  margin: 0 0 12px;
}
.form-success p {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  max-width: 50ch;
}


/* ===========================================================
   HERO SPLIT LAYOUT (text + photo)
   =========================================================== */
.hero-grid--split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-copy { display: flex; flex-direction: column; }
.hero-photo {
  width: 100%;
  aspect-ratio: 4/5;
  min-height: 440px;
}
@media (max-width: 880px) {
  .hero-grid--split { grid-template-columns: 1fr; }
  .hero-photo { min-height: 360px; aspect-ratio: 4/5; }
}
.hero-photo > img { opacity: 0.8; }


/* booking CTA inside the sticky service-meta column */
.btn.solid.service-book {
  margin-top: 24px;
  padding: 13px 20px;
  font-size: 12px;
  letter-spacing: 0.14em;
  align-self: flex-start;
  background: var(--terracotta-d);
  color: var(--cream);
  border-color: var(--terracotta-d);
  opacity: 1;
  transition: opacity .25s ease, background .25s ease, border-color .25s ease;
}
.btn.solid.service-book:hover {
  background: var(--walnut);
  border-color: var(--walnut);
  color: var(--cream);
  opacity: 1;
}
.group-head.group-head--split { max-width: none; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.products-head { margin: clamp(8px, 2vw, 20px) 0 clamp(32px, 4vw, 52px); }
/* Astrology intro band — terracotta with the cosmology illustration */
.astro-band {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--terracotta-d);
  isolation: isolate;
  margin-bottom: clamp(48px, 6vw, 80px);
  overflow: hidden;
}
/* illustration, faded back */
.astro-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('assets/opt/astro-band-bg.jpg') center bottom / cover no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.38;
}
/* grainy / sandy texture over the top */
.astro-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  mix-blend-mode: overlay;
}
.astro-band-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) var(--pad-x);
}
.astro-band .group-head { margin-bottom: 0; }
.astro-band .eyebrow { color: var(--cream); opacity: 0.9; }
.astro-band .eyebrow::before { background: var(--cream); opacity: 0.6; }
.astro-band .display { color: var(--cream); }
.astro-band .display .it { color: #F0D9BC; }
.astro-band .lede { color: rgba(253,248,238,0.92); }
@media (max-width: 900px) {
  .astro-band { margin-bottom: clamp(32px, 6vw, 56px); }
  .astro-band-inner { padding: clamp(40px, 8vw, 64px) var(--pad-x); }
  .astro-band::before { background-position: center bottom; opacity: 0.3; }
}
@media (max-width: 1024px) {
  .products-head { margin: 4px 0 32px; }
}
@media (max-width: 640px) {
  .products-head { margin: 4px 0 28px; }
}
.group-head--split .gh-col:last-child { margin-top: clamp(56px, 8vw, 92px); }
@media (max-width: 760px) {
  .group-head.group-head--split { grid-template-columns: 1fr; gap: 24px; }
  .group-head--split .gh-col:last-child { margin-top: 0; }
}

/* ===========================================================
   SERVICE-COLUMN TESTIMONIALS
   =========================================================== */
.svc-quotes {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
}
@media (max-width: 700px) {
  .svc-quotes { grid-template-columns: 1fr; gap: 28px; }
}
.svc-quote {
  margin: 0;
  padding: 0;
}
.svc-quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
  padding-left: 18px;
  border-left: 1px solid var(--terracotta);
}
.svc-quote figcaption {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--walnut-mute);
  margin-top: 12px;
  padding-left: 18px;
}
.svc-quote figcaption span { color: var(--walnut-mute); opacity: 0.7; }

/* ===========================================================
   CLIENT VOICES — bold rotating quote feature
   =========================================================== */
.voices-feature {
  position: relative;
  z-index: 2;
  text-align: center;
  /* full-bleed band breaking out of .page container */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(48px, 6vw, 84px) var(--pad-x);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(124,116,54,0.90) 0%, rgba(110,103,48,0.94) 100%),
    url('assets/opt/voices-bg-c.jpg');
  background-size: cover, cover;
  background-position: center, center 40%;
  background-repeat: no-repeat, no-repeat;
  color: var(--cream-light);
}
/* organic grain over the band */
.voices-feature::after {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='vg'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='discrete' tableValues='0 0.5 0 0.7 0 0.4 0 0.6 0 0.45'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23vg)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  mix-blend-mode: overlay;
  opacity: 0.5;
}
.vf-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.vf-eyebrow { margin-bottom: clamp(22px, 3vw, 34px); }

/* ---- carousel with arrows ---- */
.voices-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 3vw, 40px);
}
.voices-arrow {
  flex: 0 0 auto;
  width: 60px; height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  color: var(--cream-light);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color .25s ease, transform .25s ease;
}
.voices-arrow:hover {
  background: transparent;
  color: var(--gold-light);
  transform: scale(1.15);
}
.voices-arrow span { display: block; transform: translateY(-2px); }

.eyebrow--light { color: rgba(247, 239, 230, 0.78); }
.eyebrow--light::before { background: rgba(247, 239, 230, 0.6); opacity: 1; }

@media (max-width: 600px) {
  .voices-arrow { width: 48px; height: 48px; font-size: 30px; }
}
.voices-feature .voices-stage {
  position: relative;
  flex: 1 1 auto;
  max-width: 40ch;
  margin: 0 auto;
  min-height: clamp(150px, 18vw, 190px);
}
.voices-feature .voice {
  position: absolute;
  inset: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  opacity: 0;
  transform: translateY(14px) scale(0.99);
  transition: opacity 1s ease, transform 1s ease;
  pointer-events: none;
}
.voices-feature .voice.is-on {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.voices-feature .voice blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(21px, 2.3vw, 31px);
  line-height: 1.3;
  color: var(--cream-light);
  margin: 0;
  position: relative;
}
.voices-feature .voice blockquote::before {
  content: "\201C";
  position: absolute;
  top: -0.45em; left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 2.4em;
  line-height: 1;
  color: var(--gold-light);
  opacity: 0.55;
}
.voices-feature .voice figcaption {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 239, 230, 0.65);
}
.voices-feature .voice .vname { color: var(--cream-light); }
.voices-feature .voice .vloc { position: relative; padding-left: 16px; }
.voices-feature .voice .vloc::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-light);
  transform: translateY(-50%);
}
.voices-feature .voices-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(22px, 3vw, 32px);
}
.voices-google {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: clamp(26px, 3.5vw, 38px);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-light);
  padding: 11px 22px;
  border: 1px solid rgba(247, 239, 230, 0.4);
  border-radius: 999px;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.voices-google:hover {
  background: var(--cream-light);
  color: var(--walnut);
  border-color: var(--cream-light);
}
.voices-google .vg-stars {
  color: var(--gold-light);
  letter-spacing: 0.05em;
  font-size: 13px;
}
.voices-google:hover .vg-stars { color: var(--terracotta); }
.voices-google .arrow { transition: transform .25s ease; }
.voices-google:hover .arrow { transform: translateX(4px); }
.voices-feature .voices-dot {
  width: 7px; height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(247, 239, 230, 0.30);
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.voices-feature .voices-dot:hover { background: rgba(247, 239, 230, 0.6); }
.voices-feature .voices-dot.is-on {
  background: var(--gold-light);
  transform: scale(1.4);
}


/* ===========================================================
   MOBILE RESPONSIVE OVERRIDES
   Most layouts already collapse via media queries above. This
   section catches inline grid styles, oversized inline fonts,
   and edge cases for ≤700px viewports.
   =========================================================== */

/* ---- Tablet (≤920) ---- */
@media (max-width: 920px) {
  /* Force any inline 2/3-column grids inside sections to stack */
  section .page > div[style*="grid-template-columns"],
  section > div[style*="grid-template-columns"],
  section [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: clamp(20px, 4vw, 32px) !important;
  }
  /* Tame oversized inline font-size on hero headline */
  .hero-copy h1[style*="font-size"] {
    font-size: clamp(50px, 12.5vw, 76px) !important;
  }
  .display-xl { font-size: clamp(48px, 12vw, 76px) !important; }
  .display-l  { font-size: clamp(34px, 7.5vw, 56px) !important; }
  .display-m  { font-size: clamp(24px, 5.5vw, 38px) !important; }
}

/* ---- Phone (≤640) ---- */
@media (max-width: 640px) {
  :root {
    --pad-x: 20px;
  }
  .section { padding: clamp(48px, 12vw, 80px) 0; }

  /* Brand mark slightly smaller in nav */
  .brand-mark { width: 36px; height: 42px; }
  .nav-inner { padding: 14px var(--pad-x); gap: 12px; }
  .nav-cta { padding: 9px 14px; font-size: 11px; letter-spacing: 0.14em; }

  /* Hero collage: stack to two-up */
  .hero-photo { min-height: 0; aspect-ratio: 4/5; }
  .hero-copy h1[style*="font-size"] { font-size: 54px !important; line-height: 1.06 !important; }

  /* Tall portrait image blocks: shorter crops on phones */
  .ph.portrait,
  .ph--image[style*="4/5"],
  .hero-photo,
  .hero-split .hero-frame {
    aspect-ratio: 4 / 3.4 !important;
    min-height: 0 !important;
    max-height: 360px;
  }

  /* Quotes shrink */
  .quote { font-size: clamp(24px, 6vw, 36px) !important; max-width: 28ch; }
  .display-xl { font-size: 54px !important; }
  .display-l  { font-size: 36px !important; }
  .display-m  { font-size: 28px !important; }

  /* Service blocks already stack via .service media query; reduce padding */
  .service { padding: 36px 0 !important; gap: 24px !important; }

  /* Voices band: pad above & below dots a bit more */
  .voices-inner { padding: 24px var(--pad-x); }
  .voices-stage { min-height: 100px; }

  /* Form: single column already; trim card padding */
  .form { grid-template-columns: 1fr !important; }
  .form-card { padding: 22px !important; }
  .form-foot { flex-direction: column; align-items: flex-start; }
  .form-foot button { width: 100%; justify-content: center; }
  .contact-details li { grid-template-columns: 90px 1fr; gap: 12px; }

  /* Footer — keep two columns side by side, scaled down */
  .footer-inner { grid-template-columns: 1fr 1fr !important; column-gap: 20px !important; row-gap: 28px !important; padding: 48px var(--pad-x) !important; }
  .footer-group { gap: 20px; }
  .footer-group .footer-blurb { font-size: 16px !important; }
  .footer-col h4 { font-size: 11px; margin-bottom: 12px; }
  .footer-col ul { font-size: 16px; }
  .footer-col ul li { margin-bottom: 8px; }
  .footer-base { flex-direction: column; gap: 6px; text-align: left; }
  .footer-mark { width: 150px; height: 105px; }

  /* Buttons: keep tap target generous */
  .btn { padding: 14px 22px; font-size: 12px; }
  .btn.solid, .btn { width: 100%; justify-content: center; }
  .btn[href^="tel"], .nav-cta { width: auto !important; }

  /* Price tables */
  .price-table td.tname { font-size: 18px; }
  .price-table td.tprice { font-size: 20px; }
  .price-table th, .price-table td { padding: 14px 0; }

  /* Card grid (collaborations) already single-col below 920 */
  .card { padding: 24px 22px; }
  .card-title { font-size: 26px; }

  /* Reduce paper-grain opacity on mobile (less GPU) */
  body::before { opacity: 0.3; background-size: 4px 4px, 9px 9px; }
}

/* ---- Tiny (≤380) ---- */
@media (max-width: 380px) {
  .hero-copy h1[style*="font-size"] { font-size: 46px !important; }
  .display-xl { font-size: 46px !important; }
  .display-l  { font-size: 30px !important; }
}


/* ===========================================================
   MOBILE NAVIGATION — hamburger + slide-down drawer
   =========================================================== */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
  color: var(--white);
  z-index: 70;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  position: absolute;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform .3s ease, top .3s ease, opacity .25s ease;
}
.nav-toggle span { top: 50%; left: 9px; transform: translateY(-50%); }
.nav-toggle span::before,
.nav-toggle span::after { content: ""; left: 0; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top:  7px; }
.nav-toggle.is-open { color: var(--walnut); }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before,
.nav-toggle.is-open span::after { height: 2px; }
.nav-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.is-open span::after  { top: 0; transform: rotate(-45deg); }

/* Drawer CTA — hidden on desktop, only appears in mobile drawer */
.nav-drawer-cta { display: none; }

/* Drawer behaviour ≤ 1024 */
@media (max-width: 1024px) {
  .nav-toggle { display: inline-flex; }
  /* keep the toggle clickable above the open drawer so it reads as the close X */
  .nav-toggle.is-open { position: relative; z-index: 60; }

  /* hide desktop CTA inside nav — appears in drawer */
  .nav-cta { display: none; }

  .nav-links {
    display: flex !important;
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 100px var(--pad-x) 56px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(160%) blur(16px);
    -webkit-backdrop-filter: saturate(160%) blur(16px);
    border-bottom: 1px solid var(--line-soft);
    transform: translateY(-110%);
    transition: transform .45s cubic-bezier(.2,.7,.2,1);
    z-index: 55;
    box-shadow: 0 24px 60px -20px rgba(40, 35, 12, 0.18);
  }
  .nav-links.is-open { transform: translateY(0); }

  .nav-links a {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(32px, 7vw, 48px);
    letter-spacing: 0;
    text-transform: none;
    color: var(--walnut);
    padding: 16px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-links a.active { color: var(--walnut); }
  .nav-links a.active::after { display: none; }
  .nav-links a:hover { color: var(--terracotta); }

  /* Drawer CTA — appended dynamically by JS; accent action button */
  .nav-drawer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: auto;
    align-self: center;
    margin-top: 36px;
    font-family: var(--sans) !important;
    font-style: normal !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    border: 1px solid var(--terracotta) !important;
    background: var(--terracotta) !important;
    color: #fff !important;
    padding: 16px 30px !important;
    border-radius: 999px !important;
    transition: background .25s ease, border-color .25s ease;
  }
  .nav-drawer-cta:hover { background: var(--terracotta-d) !important; border-color: var(--terracotta-d) !important; color: #fff !important; }

  /* Lock body scroll while drawer is open */
  body.has-drawer-open { overflow: hidden; }
}

/* Guidance service blocks — give the sticky meta column room to travel. */
.page-guidance .service { padding: clamp(48px, 6vw, 80px) 0; }
.page-guidance .service-body { min-height: 460px; }
.page-guidance .service-body p {
  font-size: 21px;
  line-height: 1.6;
}
/* Section intro heading for grouped services (Astrology / Tarot) */
.group-head {
  max-width: 64ch;
  margin-bottom: clamp(36px, 5vw, 64px);
}

/* Soft glow behind hero composition for warmth */
.hero { position: relative; }
.hero::before {
  content: "";
  position: absolute;
  top: -10%; right: 8%;
  width: 46%; height: 80%;
  background: radial-gradient(circle at 60% 40%, rgba(176, 118, 58, 0.16), transparent 64%);
  z-index: -1;
  pointer-events: none;
  filter: blur(8px);
}
.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero-split .hero-copy { display: flex; flex-direction: column; }
.hero-split .hero-frame {
  width: 100%;
  aspect-ratio: 4/5;
  min-height: 440px;
  position: relative;
  overflow: hidden;
  /* gate / arch frame */
  border-top-left-radius: 50% 22%;
  border-top-right-radius: 50% 22%;
  border: 1px solid var(--line);
  background: var(--cream-soft);
  box-shadow: 0 30px 70px -30px rgba(80, 56, 20, 0.30);
}
.hero-split .hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 15% bottom;
  display: block;
  opacity: 0.8;
  transform: scale(1.32);
  transform-origin: center bottom;
}
.page-collaborations .hero-split .hero-frame img { object-position: center 55%; }
/* Guidance hero: wide interior shot — zoom in on the charts on the table */
.page-guidance .hero-split .hero-frame img {  object-position: 40% 70%;
  transform: scale(1.55);
  transform-origin: 40% 70%;
}
/* Massage hero: frame the table and hands, not the feet below it */
.page-healing .hero-split .hero-frame img { object-position: center 8%; }
/* Narrow screens: the guidance hero reads as a backdrop — frame the charts and
   books on the table rather than the faces */
@media (max-width: 880px) {
  .page-guidance .hero-split .hero-frame img {
    object-position: 55% 100%;
    transform: scale(1.5);
    transform-origin: 55% 100%;
  }
}
@media (max-width: 880px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-split .hero-frame { min-height: 380px; aspect-ratio: 4/5; }
}

/* ===========================================================
   IMAGES — photo placeholders
   =========================================================== */

/* .ph--image: swap the striped placeholder for a real photo,
   keep the same .ph chrome but hide the data-label caption. */
.ph--image {
  background: var(--cream-soft);
}
.ph--image::after { display: none; }
.ph--image > img,
.ph--image > picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Arched gate frame variant */
.ph--gate {
  border-top-left-radius: 50% 22%;
  border-top-right-radius: 50% 22%;
}

/* ===========================================================
   NOTE BAND — in-house / online availability callouts
   =========================================================== */

/* ===========================================================
   NOTE FEATURE — full-bleed golden band with faded photo
   (mirrors the homepage reviews band)
   =========================================================== */
.note-feature {
  position: relative;
  z-index: 2;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(56px, 8vw, 110px) var(--pad-x);
  overflow: hidden;
  isolation: isolate;
  color: var(--cream-light);
  background:
    linear-gradient(100deg, rgba(82,77,32,0.97) 0%, rgba(96,90,40,0.90) 50%, rgba(110,103,48,0.82) 100%),
    url('assets/opt/in-house-villa-c.jpg');
  background-size: cover, cover;
  background-position: center, center 40%;
  background-repeat: no-repeat, no-repeat;
}
.nf-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.nf-title { color: var(--white); text-shadow: 0 2px 24px rgba(40, 36, 12, 0.55); }
.nf-title .it { color: var(--white); }
.note-feature .eyebrow--light { color: var(--white); }
.note-feature .eyebrow--light::before { background: var(--white); }
.note-feature .note-copy p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
  color: var(--white);
  max-width: 52ch;
  margin-top: 18px;
}
.note-feature .note-aside {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.nf-points {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 13px;
}
.nf-points li {
  display: flex; gap: 12px;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--white);
}
.nf-points li::before {
  content: "—";
  color: var(--white);
  flex: 0 0 auto;
}
.nf-btn.solid {
  background: var(--white);
  color: var(--walnut);
  border-color: var(--white);
}
.nf-btn.solid:hover {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
@media (max-width: 820px) {
  .nf-inner { grid-template-columns: 1fr; }
}

/* ===========================================================
   ETHOS BAND — soft glacier-blue section (collaborations)
   =========================================================== */
.ethos-band {
  background: var(--glacier);
  position: relative;
  z-index: 2;
  isolation: isolate;
  /* full-bleed: break out of the .page container, edge to edge */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.ethos-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(90,66,26,0.80), rgba(90,66,26,0.66)),
    url('assets/opt/ethos-bg-boa-viagem.jpg') center 40%/cover no-repeat;
  transform: none;
  opacity: 1;
}
/* sandy grain over the photo */
.ethos-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.45;
  mix-blend-mode: overlay;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}
.ethos-inner {
  padding: clamp(56px, 8vw, 104px) 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.ethos-head { max-width: 40ch; margin-bottom: 0; align-self: center; }
.ethos-band .eyebrow--glacier { color: #FFFFFF; }
.ethos-band .eyebrow--glacier::before { background: #FFFFFF; opacity: 1; }
.ethos-band .ethos-title { color: #FFFFFF; }
.ethos-band .ethos-title .it { color: #9FD8D2; }
.ethos-band .ethos-col h3 { color: #FFFFFF; border-bottom-color: rgba(255,255,255,0.28); }
.ethos-band .ethos-col p { color: rgba(255,255,255,0.88); }
.eyebrow--glacier { color: var(--glacier-deep); }
.eyebrow--glacier::before { background: var(--glacier-deep); opacity: 1; }
.ethos-band .ethos-title { color: #FFFFFF; }
.ethos-band .ethos-title .it { color: #9FD8D2; }
.ethos-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 44px);
  align-items: flex-start;
  text-align: left;
}
.ethos-col h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(22px, 2.2vw, 28px);
  color: var(--glacier-ink);
  margin: 0 0 6px;
  padding-bottom: 0;
  border-bottom: none;
}
.ethos-col p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  color: var(--glacier-body);
  margin: 0;
}
@media (max-width: 860px) {
  .ethos-inner { grid-template-columns: 1fr; gap: 40px; }
  .ethos-grid { align-items: flex-start; text-align: left; }
}
@media (max-width: 760px) {
  .ethos-grid { gap: 28px; }
}
/* Online (guidance) variant — light glacier-blue band */
.note-feature--online {
  background:
    linear-gradient(100deg, rgba(208,229,232,0.95) 0%, rgba(191,219,223,0.94) 55%, rgba(206,228,231,0.95) 100%),
    url('assets/cosmographical.jpg');
  background-size: cover, cover;
  background-position: center, center 22%;
  background-repeat: no-repeat, no-repeat;
  color: var(--glacier-ink);
}
.note-feature--online .eyebrow--light { color: var(--glacier-eyebrow); }
.note-feature--online .eyebrow--light::before { background: var(--glacier-eyebrow); }
.note-feature--online .nf-title { color: var(--glacier-ink); text-shadow: none; }
.note-feature--online .nf-title .it { color: var(--glacier-deep); }
.note-feature--online .note-copy p { color: var(--glacier-body); }
.note-feature--online .nf-points li { color: var(--glacier-body); }
.note-feature--online .nf-points li::before { color: var(--glacier-deep); }
.note-feature--online .nf-btn.solid {
  background: var(--glacier-ink);
  color: var(--white);
  border-color: var(--glacier-ink);
}
.note-feature--online .nf-btn.solid:hover {
  background: transparent;
  color: var(--glacier-ink);
  border-color: var(--glacier-ink);
}

/* In-house (healing) variant — arctic blue with image more visible */
.note-feature--arctic {
  background:
    linear-gradient(100deg, rgba(197,223,226,0.92) 0%, rgba(189,218,222,0.80) 48%, rgba(203,227,230,0.74) 100%),
    url('assets/opt/in-house-villa-c.jpg');
  background-size: cover, cover;
  background-position: center, center 38%;
  background-repeat: no-repeat, no-repeat;
  color: var(--glacier-ink);
}
.note-feature--arctic .eyebrow--light { color: var(--glacier-ink); }
.note-feature--arctic .eyebrow--light::before { background: var(--glacier-ink); }
.note-feature--arctic .nf-title { color: var(--glacier-ink); text-shadow: 0 1px 18px rgba(255, 255, 255, 0.55); }
.note-feature--arctic .nf-title .it { color: var(--glacier-deep); }
.note-feature--arctic .note-copy p { color: var(--glacier-ink); text-shadow: 0 1px 14px rgba(255, 255, 255, 0.6); }
.note-feature--arctic .nf-points li { color: #16332F; font-weight: 500; text-shadow: 0 1px 14px rgba(255, 255, 255, 0.75); }
.note-feature--arctic .nf-points li::before { color: var(--glacier-deep); }
.note-feature--arctic .nf-btn.solid {
  background: var(--glacier-ink);
  color: var(--white);
  border-color: var(--glacier-ink);
}
.note-feature--arctic .nf-btn.solid:hover {
  background: transparent;
  color: var(--glacier-ink);
  border-color: var(--glacier-ink);
}
.note-band {
  background: var(--cream-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.note-band .note-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(40px, 6vw, 72px) 0;
}
.note-band .note-copy h2 { margin-bottom: 18px; }
.note-band .note-copy p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
  color: var(--ink);
  max-width: 52ch;
}
.note-band .note-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.note-band .note-points {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.note-band .note-points li {
  display: flex; gap: 12px;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--walnut-soft);
}
.note-band .note-points li::before {
  content: "—";
  color: var(--terracotta);
  flex: 0 0 auto;
}
@media (max-width: 820px) {
  .note-band .note-inner { grid-template-columns: 1fr; }
}


/* ===========================================================
   CONTACT FORM — location & in-villa logistics
   =========================================================== */
.field-note {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.5;
  color: var(--walnut-mute);
  margin-top: 8px;
}
.villa-logistics { overflow: hidden; }
.villa-logistics[hidden] { display: none; }
/* hidden attribute must always win over display rules from .field etc. */
[hidden] { display: none !important; }

/* ===========================================================
   SERVICE PRICING — value-anchored
   =========================================================== */
.service-price {
  margin-top: 22px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.sp-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--walnut-mute);
}
.sp-amount {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  color: var(--terracotta);
}
.sp-unit {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--walnut-mute);
}
.includes {
  list-style: none;
  margin: 24px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.includes-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--walnut-mute);
  margin-bottom: 4px;
}
.includes li {
  font-family: var(--serif);
  font-size: 16.5px;
  line-height: 1.45;
  color: var(--walnut-soft);
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.includes li::before {
  content: "✦";
  color: var(--terracotta);
  font-size: 9px;
  flex: 0 0 auto;
  transform: translateY(-2px);
}
.includes-note {
  margin: clamp(40px, 6vw, 64px) auto 0;
  max-width: 60ch;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.5;
  color: var(--walnut-soft);
}
.villa-logistics-inner {
  margin-top: 4px;
  padding: 22px;
  background: var(--glacier-soft, #F0F7F7);
  border: 1px solid rgba(46, 124, 118, 0.18);
  border-radius: 6px;
}
.villa-logistics.is-open .villa-logistics-inner {
  animation: villa-in .4s ease both;
}
@keyframes villa-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.villa-logistics-head {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--glacier-deep, var(--glacier-deep));
  margin: 0 0 18px;
}
.villa-logistics-head span {
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--walnut-mute);
}
.villa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}
@media (max-width: 560px) {
  .villa-grid { grid-template-columns: 1fr; }
}


/* ===========================================================
   BOOKING FLOW — Cal.com inline embed, editorial skin
   =========================================================== */
.booking-head { max-width: 60ch; margin-bottom: clamp(36px, 5vw, 56px); }
.booking-head .lede { margin-top: 18px; }

.booking-flow { display: flex; flex-direction: column; gap: clamp(28px, 4vw, 44px); }

.booking-step { position: relative; }
.booking-step[hidden] { display: none; }
.booking-step-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--walnut-mute);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.booking-step-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-soft);
}

/* option grids */
.booking-options { display: flex; flex-wrap: wrap; gap: 12px; }
.booking-opt {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--walnut);
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.booking-opt:hover { border-color: var(--terracotta); color: var(--terracotta); }
.booking-opt.is-on {
  background: var(--walnut);
  color: var(--cream);
  border-color: var(--walnut);
}

/* location cards */
.booking-locations { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .booking-locations { grid-template-columns: 1fr; } }
.booking-loc {
  text-align: left;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 26px 28px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.booking-loc:hover { transform: translateY(-3px); border-color: var(--terracotta); }
.booking-loc.is-on { border-color: var(--terracotta); background: var(--cream-deep); }
.booking-loc .loc-name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 26px;
  color: var(--walnut);
}
.booking-loc .loc-sub {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--walnut-soft);
}

/* villa zone */
.booking-zone {
  margin-top: 22px;
  padding: 24px 26px;
  background: var(--glacier, #E4F0F1);
  border-radius: 6px;
  max-width: 560px;
}
.booking-zone[hidden] { display: none; }
.booking-zone label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--glacier-deep, var(--glacier-deep));
  display: block;
  margin-bottom: 10px;
}
.booking-zone input {
  width: 100%;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(46,124,118,0.4);
  padding: 8px 0 12px;
  outline: none;
}
.booking-zone input:focus { border-bottom-color: var(--glacier-deep, var(--glacier-deep)); }
.booking-zone .field-note { color: var(--glacier-body); }
.booking-zone .btn { margin-top: 20px; }
.zone-error { margin: 10px 0 0; font-size: 14px; color: var(--terracotta); font-style: italic; }

/* Cal embed shell */
.cal-embed {
  width: 100%;
  min-height: 600px;
  background: var(--cream-soft);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  overflow: hidden;
}
.cal-embed:has(.cal-embed-placeholder) { display: grid; place-items: center; padding: 32px; }
.form-error { font-family: var(--sans); font-size: 13px; line-height: 1.5; color: var(--terracotta-d); margin-bottom: 14px; }
.astro-cal { margin-top: 4px; }
.astro-cal .booking-step-label { margin-bottom: 18px; }
.form label .opt { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--walnut-mute); margin-left: 6px; }
.cal-embed-placeholder { font-family: var(--serif); font-size: 20px; font-weight: 300; line-height: 1.5; color: var(--walnut); text-align: center; max-width: 30ch; text-wrap: pretty; }
.cal-embed-note {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--walnut-mute);
  margin-top: 14px;
}

/* WhatsApp alt */
.booking-alt {
  margin-top: clamp(24px, 3vw, 32px);
  padding-top: clamp(20px, 2.5vw, 26px);
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.booking-alt p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 2vw, 23px);
  color: var(--walnut-soft);
  margin: 0;
}
.booking-alt--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: clamp(28px, 5vw, 64px);
}
.booking-alt--split .alt-col { display: flex; flex-direction: column; gap: 18px; align-items: center; text-align: center; height: 100%; justify-content: flex-end; }
.booking-alt--split .alt-title { margin: 0; font-size: clamp(26px, 3vw, 36px); line-height: 1.2; }
.booking-alt--split .alt-cta {
  background: transparent;
  border-color: transparent;
  color: var(--ink);
  padding: 4px;
}
.booking-alt--split .alt-cta:hover { background: transparent; color: var(--ink); }
@media (max-width: 720px) {
  .booking-alt--split { grid-template-columns: 1fr; gap: 36px; }
}
/* secondary pointer to the other booking flow (astrology/tarot) */
.booking-elsewhere {
  margin: clamp(16px, 2vw, 22px) 0 0;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.35;
  color: var(--walnut-soft);
}
.booking-elsewhere a {
  display: inline-block;
  font-style: italic;
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: 0;
  text-transform: none;
  color: var(--terracotta);
  margin-left: 8px;
  white-space: nowrap;
}
.booking-elsewhere a:hover { color: var(--walnut); }
.booking-alt p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.1vw, 24px);
  color: var(--glacier-ink, var(--glacier-ink));
  margin: 0;
}
.booking-alt .btn.alt-cta {
  background: transparent;
  border-color: transparent;
  color: var(--ink);
  padding: 16px 4px;
}
.booking-alt .btn.alt-cta {
  padding: 16px 4px 6px;
}
.booking-alt .btn.alt-cta::after {
  content: "";
  position: absolute;
  left: 4px; right: 4px; bottom: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform .3s ease;
}
.booking-alt .btn.alt-cta:hover {
  background: transparent;
  border-color: transparent;
  color: var(--ink);
}
.booking-alt .btn.alt-cta:hover::after { transform: scaleX(1); }
.booking-alt--split .alt-col--whatsapp {
  background: var(--terracotta);
  padding: clamp(24px, 3vw, 32px);
}
.booking-alt--split .alt-col--whatsapp p {
  color: var(--cream);
  font-style: italic;
}
.booking-alt--split .alt-col--whatsapp .alt-cta {
  color: var(--cream);
  padding: 16px 4px 6px;
}
.booking-alt--split .alt-col--whatsapp .alt-cta::after { background: var(--cream); }
.booking-alt--split .alt-col--whatsapp .alt-cta:hover { color: var(--cream); }
.booking-back {
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--walnut-mute);
  padding: 6px 0;
  margin-top: 16px;
  transition: color .25s ease;
}
.booking-back:hover { color: var(--terracotta); }


/* ===========================================================
   HOMEPAGE — desire + in-home + treatments (persuasion arc)
   =========================================================== */
.desire-statement {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.5;
  color: var(--ink);
}
.desire-statement + .desire-statement { margin-top: 18px; }

/* in-home bespoke bullets reuse .includes */

/* treatments list */
.tx-list { margin-top: clamp(32px, 5vw, 56px); border-top: 1px solid var(--line); }
.tx-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 32px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-soft);
}
.tx-row h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(21px, 2.3vw, 29px);
  color: var(--walnut);
  margin: 0;
}
.tx-row p {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--walnut-soft);
  margin: 6px 0 0;
  max-width: 54ch;
}
.tx-book {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  white-space: nowrap;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  transition: color .25s ease;
}
.tx-book .arrow { transition: transform .25s ease; }
.tx-book:hover { color: var(--terracotta-d); }
.tx-book:hover .arrow { transform: translateX(4px); }
@media (max-width: 640px) {
  .tx-row { grid-template-columns: 1fr; gap: 6px; }
}

/* repeated end CTA band */
.cta-band {
  text-align: center;
}
.cta-band .lede { margin: 18px auto 0; }
.cta-band .btn { margin-top: 30px; }


/* ===========================================================
   COLLABORATIONS — "the offering" faded image band
   =========================================================== */
.offering-band {
  position: relative;
  isolation: isolate;
}
.offering-band::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%) scaleX(-1);
  z-index: -1;
  background-image:
    linear-gradient(180deg, rgba(70,64,22,0.42) 0%, rgba(70,64,22,0.32) 100%),
    url('assets/opt/offering-moon-beach.jpg');
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
}
/* keep copy legible over the photo */
.offering-band .eyebrow { color: var(--cream-light); }
.offering-band .eyebrow::before { background: var(--cream-light); opacity: 0.8; }
.offering-band p { color: var(--cream-light) !important; }
/* Narrow screens: drop the photo — the text sits on the page background instead */
@media (max-width: 880px) {
  .offering-band::before { display: none; }
  .offering-band .eyebrow { color: var(--terracotta-d); }
  .offering-band .eyebrow::before { background: var(--terracotta-d); opacity: 1; }
  .offering-band p { color: var(--walnut) !important; }
}


/* ===========================================================
   RETREATS — lead card (full width) + secondary pair
   =========================================================== */
.card--lead {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.card--lead .card-num { grid-column: 1 / -1; }
.card--lead .card-title {
  font-size: clamp(34px, 4vw, 52px);
  margin: 0;
}
.card--lead .lead-left { display: flex; flex-direction: column; gap: 32px; }
.card--lead .lead-left .card-title { margin: 0; }
.card--lead .card-body {
  font-size: clamp(18px, 1.5vw, 21px);
  margin-top: 0;
}
.card--lead hr {
  grid-column: 1 / -1;
  margin: 4px 0;
}
.card--lead .card-list { grid-column: 1 / -1; }
.card--lead .card-list-old { display: none; }
.card-cta {
  margin-top: 24px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cream, #fdf8ee);
  background: transparent;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.01em;
}
.card-cta .label {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255,250,240,0.5);
  transition: text-decoration-color 0.25s;
}
.card-cta:hover .label { text-decoration-color: var(--cream, #fdf8ee); }
.card-cta .arrow { transition: transform 0.25s ease; display: inline-block; }
.card-cta:hover .arrow { transform: translateX(5px); }
.card--lead .card-cta { justify-self: start; margin-top: 20px; }
.card--lead .lead-left .card-list { display: flex; flex-direction: column; gap: 10px; }
@media (max-width: 760px) {
  .card--lead { grid-template-columns: 1fr; gap: 18px; }
  .card--lead .card-list { grid-template-columns: 1fr; gap: 10px; }
}
@media (max-width: 640px) {
  .card-grid--secondary { grid-template-columns: 1fr !important; }
}

/* Secondary pair — Festivals: blush/terracotta; Workshops: sky/teal */
.card-grid--secondary .card:nth-child(1) {
  background-image: url('assets/opt/brand-tex-blush.jpg');
}
.card-grid--secondary .card:nth-child(1)::before {
  background: linear-gradient(180deg, rgba(146,98,62,0.60) 0%, rgba(132,88,55,0.50) 100%);
}
.card-grid--secondary .card:nth-child(2) {
  background-image: url('assets/opt/brand-tex-sky.jpg');
}
.card-grid--secondary .card:nth-child(2)::before {
  background: linear-gradient(180deg, rgba(74,104,94,0.62) 0%, rgba(68,96,86,0.52) 100%);
}


/* Mobile footer: brand texture background instead of the photo */
@media (max-width: 640px) {
  .footer {
    background-image:
      linear-gradient(180deg, rgba(70, 64, 22, 0.25) 0%, rgba(70, 64, 22, 0.40) 100%),
      url('assets/opt/footer-bg-mobile.jpg');
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
  }
}


/* ===========================================================
   MOBILE HEROES — full-bleed image stripe behind the hero
   (edge to edge, nav → below CTAs; strong image + dark scrim,
   light text for contrast. Applies whenever the hero stacks.)
   =========================================================== */
@media (max-width: 880px) {
  .section.hero {
    position: relative;
    isolation: isolate;
    padding-top: clamp(40px, 10vw, 64px);
  }
  .hero-grid--split .hero-photo,
  .hero-split .hero-frame {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    left: calc(50% - 50vw) !important;
    right: auto !important;
    width: 100vw !important;
    height: 100% !important;
    max-height: none !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    margin: 0 !important;
    z-index: -1;
    border-radius: 0 !important;
    border: 0 !important;
    background: var(--walnut-soft);
    overflow: hidden;
  }
  .hero-grid--split .hero-photo > img,
  .hero-split .hero-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 85% 30%;
    opacity: 0.7 !important;
    transform: none !important;
  }
  /* warm golden scrim — brand palette, light enough to stay in tune */
  .hero-grid--split .hero-photo::before,
  .hero-split .hero-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
      rgba(111, 103, 48, 0.60) 0%,
      rgba(131, 123, 57, 0.44) 50%,
      rgba(111, 103, 48, 0.62) 100%);
    pointer-events: none;
  }
  .hero-copy { position: relative; z-index: 1; }

  /* light text over the image */
  .section.hero .hero-copy .eyebrow { color: #FFFFFF; }
  .section.hero .hero-copy .eyebrow::before { background: #FFFFFF; }
  .section.hero .hero-copy h1,
  .section.hero .hero-copy .display { color: var(--cream-light) !important; }
  .section.hero .hero-copy h1 .it,
  .section.hero .hero-copy h1 span { color: var(--gold-light) !important; }
  .section.hero .hero-copy .lede { color: var(--cream-light) !important; }
  .section.hero .hero-copy .fine { color: rgba(247, 239, 230, 0.85); }
  .section.hero .hero-copy .btn {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
  }
  .section.hero .hero-copy .btn:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--walnut-soft);
  }
  .section.hero .hero-copy .btn.solid {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: var(--white);
  }
  .section.hero .hero-copy .btn.solid:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--terracotta);
  }
}


/* ===========================================================
   SMALL SCREENS — section images become full-bleed top bands
   (edge to edge, first thing in their section)
   =========================================================== */
@media (max-width: 920px) {
  .section .ph--image:not(.hero-photo),
  .section .ph.portrait {
    order: -1;
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    margin-top: 0 !important;
    margin-bottom: 4px !important;
    border-radius: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    aspect-ratio: 21/10 !important;
    min-height: 0 !important;
    max-height: 300px;
  }
  .section .ph--image:not(.hero-photo) > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}


/* ===========================================================
   SMALL SCREENS — fluid section flow
   No divider lines; the full-bleed image bands do the
   separating, with more generous breathing room between sections.
   =========================================================== */
@media (max-width: 920px) {
  .section + .section { border-top: 0 !important; }
  .section { padding: clamp(64px, 13vw, 104px) 0; }
  /* comfortable default spacing under any image band */
  .section .ph--image:not(.hero-photo),
  .section .ph.portrait {
    margin-bottom: clamp(20px, 4vw, 28px) !important;
  }
  /* ONLY bands that open their section pull flush to the section start
     (grid is the section's first child; band is its direct child) */
  .section > div:first-child > .ph--image:not(.hero-photo),
  .section > div:first-child > .ph.portrait {
    margin-top: calc(-1 * clamp(64px, 13vw, 104px)) !important;
    margin-bottom: clamp(28px, 6vw, 44px) !important;
  }
  /* hero keeps its own rhythm */
  .section.hero { padding-top: clamp(40px, 10vw, 64px); }
}


/* ===========================================================
   SMALL SCREENS — treatments as pop-down (accordion)
   Header: title · durations · pricing · booking. The + symbol
   reveals description, image and reviews.
   =========================================================== */
.service-toggle { display: none; }

@media (max-width: 920px) {
  .service { position: relative; }
  .service-toggle {
    display: flex;
    position: absolute;
    top: 30px;
    right: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--cream-soft);
    color: var(--walnut);
    font-family: var(--sans);
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .3s ease, background .25s ease, color .25s ease;
    z-index: 2;
  }
  .service-toggle:hover { background: var(--cream-deep); }
  .service.is-open .service-toggle {
    transform: rotate(45deg);
    background: var(--walnut);
    color: var(--cream);
    border-color: var(--walnut);
  }
  /* collapsed by default: only the meta header shows */
  .service .service-body { display: none; }
  .service.is-open .service-body { display: block; margin-top: 16px; }
  /* tighter rhythm for the accordion list */
  .service { padding: 26px 0 !important; }
  .service-title { padding-right: 54px; cursor: pointer; }
}


/* ===========================================================
   SMALL SCREENS — treatments as compact CARDS
   image banner · title · durations & pricing · booking ·
   "Learn more" reveals description + reviews. Compact enough
   to scan all treatments in one screen.
   =========================================================== */
@media (max-width: 920px) {
  .service {
    display: flex;
    flex-direction: column;
    gap: 0 !important;
    background: var(--cream-soft);
    border: 1px solid var(--line-soft) !important;
    border-radius: 10px;
    padding: 12px 12px 12px !important;
    margin-bottom: 8px;
    overflow: hidden;
  }
  .service .service-body { display: contents; }
  .service.is-open .service-body { display: contents; }

  /* image becomes the card's top banner (kills full-bleed banding in cards) */
  .service .service-body > .ph {
    order: -1;
    width: calc(100% + 24px) !important;
    max-width: none !important;
    margin: -12px -12px 10px !important;
    border-radius: 0 !important;
    border: 0 !important;
    aspect-ratio: 21/4.5 !important;
    min-height: 0 !important;
    max-height: 72px;
  }

  /* collapsed: hide body content except the banner */
  .service:not(.is-open) .service-body > *:not(.ph) { display: none !important; }

  /* compact header */
  .service-meta { position: static; }
  .service-num { display: none; }
  .service-title {
    font-size: 22px !important;
    line-height: 1.1;
    margin: 0 0 4px !important;
    padding-right: 0;
  }
  .service-title br { display: none; }
  .service-tag { font-size: 10px; letter-spacing: 0.12em; }
  .service-durations { margin-top: 5px; }
  .service-durations .dur { padding: 5px 9px; font-size: 10px; }

  /* action row: booking + learn more side by side (two columns) */
  .service-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 8px;
    align-items: stretch;
  }
  .service-actions .service-book,
  .service-actions .service-toggle {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin: 0;
  }
  .service-actions .service-book { order: 2; }
  .service-actions .service-toggle { order: 1; }
  .btn.solid.service-book { margin: 0; padding: 0 16px; font-size: 12px; line-height: 1.2; height: 42px; align-self: stretch; }
  .service-toggle {
    display: inline-flex;
    position: static;
    width: auto;
    height: auto;
    border-radius: 0;
    padding: 0 16px;
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: transparent !important;
    border: 1px solid transparent;
    color: var(--walnut) !important;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    transform: none !important;
    margin-top: 0;
    line-height: 1.2;
    height: 42px;
    align-items: center;
    gap: 8px;
  }
  .service.is-open .service-toggle {
    transform: none !important;
    background: transparent !important;
    color: var(--walnut) !important;
    border-color: transparent;
  }
  .service-actions .service-toggle { width: 100%; align-self: stretch; justify-content: center; margin-top: 0; }

  /* expanded content spacing */
  .service.is-open .service-body > p { margin-top: 6px; }
  .service.is-open .svc-quotes { margin-top: 20px; padding-top: 18px; }
}


/* ===========================================================
   SMALL SCREENS — breathing room
   More generous side margins on full-bleed bands & content.
   =========================================================== */
@media (max-width: 920px) {
  .note-feature,
  .voices-feature {
    padding-left: clamp(26px, 7vw, 48px) !important;
    padding-right: clamp(26px, 7vw, 48px) !important;
  }
  .nf-inner { gap: 32px; }
  .note-feature .note-copy p { max-width: 60ch; }
}
@media (max-width: 640px) {
  :root { --pad-x: 26px; } /* more air than the previous 20px */
  .note-feature,
  .voices-feature {
    padding-top: clamp(48px, 11vw, 64px) !important;
    padding-bottom: clamp(48px, 11vw, 64px) !important;
  }
  .footer-inner { padding: 56px var(--pad-x) 48px !important; }
}

/* ===========================================================
   THE STUDIO — space gallery + conditions (healing)
   =========================================================== */
.studio-head { max-width: 62ch; }
.studio-gallery {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(12px, 1.6vw, 20px);
  margin-top: clamp(36px, 5vw, 56px);
  align-items: stretch;
}
.studio-gallery .ph { min-height: 0; }
.sg-left, .sg-right { display: flex; flex-direction: column; gap: clamp(12px, 1.6vw, 20px); }
.studio-gallery .sg-main { aspect-ratio: 16 / 11; }
.sg-right .ph { flex: 1; }
.studio-conditions {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 0;
}
.studio-conditions h3 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-d);
  margin: 0 0 12px;
}
.studio-conditions p {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}
@media (max-width: 880px) {
  .studio-gallery { grid-template-columns: 1fr; }
  .studio-gallery .sg-main { aspect-ratio: 4 / 3; }
  .sg-right { flex-direction: row; }
  .sg-right .ph { aspect-ratio: 4 / 3; }
  .studio-conditions { flex-direction: row; flex-wrap: wrap; }
  .studio-conditions > div { flex: 1 1 220px; }
}

/* Gallery tiles hold real images — opt out of the global ph--image mobile bleed */
.studio-gallery .ph--image { overflow: hidden; }
.studio-gallery .ph--image img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 920px) {
  .section .studio-gallery .ph--image:not(.hero-photo) {
    order: 0;
    max-height: none;
    width: auto !important;
    max-width: none;
    margin: 0 !important;
  }
}

/* ===========================================================
   MOBILE FIXES — reviews carousel overflow + footer contact icons
   =========================================================== */
/* Narrow/short screens: stop absolutely-positioning the quotes (they
   overflowed a fixed min-height and collided with the dots/CTA below).
   Grid-stacking keeps every slide in flow so the band grows to fit. */
@media (max-width: 700px) {
  .voices-feature .voices-stage {
    display: grid;
    min-height: 0;
    max-width: none;
  }
  .voices-feature .voice {
    position: static;
    grid-area: 1 / 1;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
  .voices-feature .voice.is-on {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .voices-feature .voice blockquote { text-wrap: pretty; }
  .voices-carousel { align-items: stretch; gap: 4px; }
  .voices-arrow { align-self: center; }
}

/* Footer contact list — social/contact icons */
.footer-col .fi {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-col .fi svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.75;
}
.footer-col li.fi-addr {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(242,234,217,0.7);
}
.footer-col li.fi-addr svg {
  flex: 0 0 auto;
  width: 15px; height: 15px;
  margin-top: 4px;
  stroke: currentColor; fill: none;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
  opacity: 0.75;
}

/* ===========================================================
   FAQ — topic groups with accordion questions
   =========================================================== */
.faq-topic { display: grid; grid-template-columns: 0.7fr 1.6fr; gap: clamp(28px, 5vw, 80px); padding: clamp(40px, 5vw, 64px) 0; border-top: 1px solid var(--line-soft); }
.faq-topic:first-of-type { border-top: none; padding-top: clamp(16px, 2vw, 24px); }
.faq-topic-head { align-self: start; position: sticky; top: 110px; }
.faq-topic-head h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(26px, 2.8vw, 34px); line-height: 1.2; color: var(--ink); margin: 14px 0 0; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-item:first-child { border-top: 1px solid var(--line-soft); }
.faq-q { font-family: var(--serif); font-weight: 400; font-size: clamp(19px, 1.9vw, 22px); line-height: 1.4; color: var(--ink); padding: 22px 46px 22px 0; cursor: pointer; list-style: none; position: relative; text-wrap: pretty; transition: color .25s ease; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--terracotta-d); }
.faq-q::after { content: ""; position: absolute; right: 8px; top: 50%; width: 15px; height: 1.5px; background: var(--terracotta-d); transform: translateY(-50%); }
.faq-q::before { content: ""; position: absolute; right: 14.75px; top: 50%; width: 1.5px; height: 15px; background: var(--terracotta-d); transform: translateY(-50%); transition: opacity .25s ease, transform .25s ease; }
.faq-item[open] .faq-q::before { opacity: 0; transform: translateY(-50%) rotate(90deg); }
.faq-item[open] .faq-q { color: var(--terracotta-d); }
.faq-a { padding: 0 46px 26px 0; max-width: 62ch; }
.faq-a p { font-family: var(--serif); font-weight: 300; font-size: 17.5px; line-height: 1.65; color: var(--walnut); text-wrap: pretty; }
.faq-a p + p { margin-top: 12px; }
.faq-a strong { font-weight: 500; color: var(--ink); }
.faq-a a { color: var(--terracotta-d); border-bottom: 1px solid var(--line); }
.faq-a a:hover { border-color: var(--terracotta-d); }
.faq-a ul { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 8px; }
.faq-a ul li { font-family: var(--serif); font-weight: 300; font-size: 17px; line-height: 1.5; color: var(--walnut); padding-left: 18px; position: relative; }
.faq-a ul li::before { content: "·"; position: absolute; left: 4px; color: var(--terracotta); }

/* fee table inside an answer */
.fee-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.fee-table td { font-family: var(--serif); font-size: 16.5px; font-weight: 300; color: var(--walnut); padding: 9px 0; border-bottom: 1px solid var(--line-soft); vertical-align: baseline; }
.fee-table tr:last-child td { border-bottom: none; }
.fee-table td.fee { font-family: var(--mono); font-size: 13px; color: var(--terracotta-d); text-align: right; white-space: nowrap; padding-left: 16px; }

/* compact inline FAQ used on the service pages */
.faq-inline { max-width: 74ch; }
.faq-inline .faq-list { margin-top: 26px; }
.faq-more { display: inline-block; margin-top: 26px; font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--terracotta-d); border-bottom: 1px solid var(--line); padding-bottom: 2px; }
.faq-more:hover { border-color: var(--terracotta-d); }

/* payment summary block in the booking flow */
.pay-note { margin-top: clamp(18px, 2.2vw, 26px); padding: clamp(18px, 2.2vw, 24px) clamp(20px, 2.4vw, 28px); background: var(--cream-soft); border: 1px solid var(--line-soft); border-radius: 6px; }
.pay-note h4 { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--walnut-mute); margin: 0 0 12px; }
.pay-note p { font-family: var(--serif); font-weight: 300; font-size: 16.5px; line-height: 1.6; color: var(--walnut); text-wrap: pretty; }
.pay-note p + p { margin-top: 9px; }
.pay-note a { color: var(--terracotta-d); border-bottom: 1px solid var(--line); }
.pay-note a:hover { border-color: var(--terracotta-d); }

/* legal / privacy prose page */
.legal { max-width: 68ch; }
.legal h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(24px, 2.5vw, 30px); color: var(--ink); margin: clamp(34px, 4vw, 48px) 0 14px; }
.legal p, .legal li { font-family: var(--serif); font-weight: 300; font-size: 17.5px; line-height: 1.68; color: var(--walnut); text-wrap: pretty; }
.legal p + p { margin-top: 12px; }
.legal ul { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 9px; }
.legal ul li { padding-left: 18px; position: relative; }
.legal ul li::before { content: "·"; position: absolute; left: 4px; color: var(--terracotta); }
.legal a { color: var(--terracotta-d); border-bottom: 1px solid var(--line); }
.legal a:hover { border-color: var(--terracotta-d); }
.legal-meta { font-family: var(--mono); font-size: 12px; color: var(--walnut-mute); margin-top: clamp(40px, 5vw, 60px); padding-top: 20px; border-top: 1px solid var(--line-soft); }

@media (max-width: 880px) {
  .faq-topic { grid-template-columns: 1fr; gap: 20px; }
  .faq-topic-head { position: static; }
}
