/* ═══════════════════════════════════════════════
   Evergreen Essence Beauty & Spa
   Palette drawn from the logo:
   cream paper · blush rose · terracotta · evergreen
═══════════════════════════════════════════════ */

:root {
  /* Core */
  --cream: #F5F1EA;
  --cream-2: #EDE7DC;
  --cream-3: #E4DCCE;
  --white: #FFFFFF;

  /* Blush (from the logo's rose shape) */
  --blush: #E3C1B7;
  --blush-soft: #F4E4DE;
  --blush-deep: #C9A096;

  /* Warm accent (the gold flecks in the logo) */
  --terracotta: #C0763B;
  --terracotta-deep: #A25F2C;
  --gold: #DDA05A;
  --gold-soft: #F2DFC4;

  /* Evergreen */
  --evergreen: #3B4A3E;
  --evergreen-2: #2C3830;
  --evergreen-3: #222C25;
  --sage: #7C8B75;
  --sage-soft: #DCE3D7;

  /* Text */
  --ink: #2F332E;
  --text: #4F524A;
  --muted: #83857B;
  --light: #EFEBE3;
  --light-muted: #B6BDB0;

  /* Lines & shape */
  --line: #E2DBCC;
  --line-2: #D5CCBA;
  --line-dark: rgba(255, 255, 255, 0.15);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 32px;

  --shadow: 0 22px 60px rgba(47, 51, 46, 0.10);
  --shadow-sm: 0 10px 30px rgba(47, 51, 46, 0.07);
  --shadow-lg: 0 34px 80px rgba(47, 51, 46, 0.14);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  /* Subtle paper grain */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16.5px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  background-image: var(--grain);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

::selection { background: var(--blush); color: var(--evergreen-2); }

:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 3px;
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-weight: 400;
  line-height: 1.14;
  color: var(--evergreen);
  letter-spacing: -0.005em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.15rem; }

p { text-wrap: pretty; }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 26px; }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 26px; }

.section { padding: clamp(68px, 9vw, 116px) 0; position: relative; }
.section-tight { padding: clamp(52px, 6vw, 78px) 0; }

.bg-cream-2 { background: var(--cream-2); }
.bg-white { background: var(--white); }
.bg-blush { background: var(--blush-soft); }
.bg-sage { background: var(--sage-soft); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--evergreen); color: var(--light);
  padding: 12px 20px; border-radius: 0 0 10px 0;
  font-size: 0.9rem; letter-spacing: 0.04em;
}
.skip-link:focus { left: 0; }

/* ── Eyebrow & section heads ─────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.73rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px;
  background: var(--terracotta); opacity: 0.55; flex: none;
}
.eyebrow-light { color: var(--gold); }
.eyebrow-light::before { background: var(--gold); }
.eyebrow-center { justify-content: center; }
.eyebrow-center::after {
  content: ""; width: 26px; height: 1px;
  background: var(--terracotta); opacity: 0.55; flex: none;
}

.section-head { max-width: 660px; margin-bottom: clamp(38px, 5vw, 60px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-sub {
  margin-top: 18px; font-size: 1.06rem; color: var(--muted); line-height: 1.75;
}

.lead { font-size: clamp(1.05rem, 1.9vw, 1.22rem); line-height: 1.72; color: var(--text); }

/* Decorative divider — a small sprig */
.sprig {
  display: block; width: 84px; height: 22px; margin: 22px auto 0;
  color: var(--sage); opacity: 0.7;
}
.sprig-left { margin-left: 0; }

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Jost", sans-serif;
  font-size: 0.86rem; font-weight: 400;
  letter-spacing: 0.11em; text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.35s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn .ico { width: 17px; height: 17px; fill: currentColor; flex: none; }

.btn-primary { background: var(--evergreen); color: var(--light); box-shadow: 0 10px 26px rgba(59, 74, 62, 0.22); }
.btn-primary:hover { background: var(--evergreen-2); box-shadow: 0 16px 34px rgba(59, 74, 62, 0.28); }

.btn-warm { background: var(--terracotta); color: #FFF6EC; box-shadow: 0 10px 26px rgba(192, 118, 59, 0.24); }
.btn-warm:hover { background: var(--terracotta-deep); box-shadow: 0 16px 34px rgba(192, 118, 59, 0.3); }

.btn-ghost { border-color: var(--line-2); color: var(--evergreen); background: transparent; }
.btn-ghost:hover { border-color: var(--evergreen); background: rgba(59, 74, 62, 0.04); }

.btn-ghost-light { border-color: rgba(255, 255, 255, 0.34); color: var(--light); background: transparent; }
.btn-ghost-light:hover { border-color: var(--light); background: rgba(255, 255, 255, 0.09); }

.btn-light { background: var(--light); color: var(--evergreen); }
.btn-light:hover { background: #fff; }

.btn-sm { padding: 10px 21px; font-size: 0.76rem; }
.btn-lg { padding: 17px 38px; font-size: 0.9rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }

/* Text link with arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--terracotta); font-weight: 400;
}
.link-arrow svg { width: 16px; height: 16px; fill: currentColor; transition: transform 0.35s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ═══════════ HEADER ═══════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245, 241, 234, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(47, 51, 46, 0.05);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 22px; padding-top: 13px; padding-bottom: 13px;
}

.brand { display: flex; align-items: center; gap: 13px; flex: none; }
.brand-logo {
  width: 50px; height: 50px; border-radius: 50%;
  object-fit: cover; flex: none;
  box-shadow: 0 3px 12px rgba(47, 51, 46, 0.10);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.42rem; color: var(--evergreen); letter-spacing: 0.01em;
}
.brand-sub {
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted); margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav > a, .nav-item > button {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 15px; border: 0; background: none; cursor: pointer;
  font-family: "Jost", sans-serif;
  font-size: 0.83rem; font-weight: 300; letter-spacing: 0.07em;
  color: var(--text); border-radius: 999px;
  transition: color 0.25s, background 0.25s;
}
.nav > a:hover, .nav-item > button:hover,
.nav > a.active { color: var(--evergreen); background: rgba(124, 139, 117, 0.13); }
.nav > a.active { font-weight: 400; }
.nav-item { position: relative; }
.nav-item > button svg { width: 11px; height: 11px; fill: currentColor; transition: transform 0.3s; }
.nav-item.open > button svg { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 250px; padding: 10px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); box-shadow: var(--shadow);
  opacity: 0; visibility: hidden;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
}
.nav-item.open .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: block; padding: 10px 14px; border-radius: 8px;
  font-size: 0.87rem; color: var(--text);
  transition: background 0.22s, color 0.22s;
}
.dropdown a small {
  display: block; font-size: 0.72rem; color: var(--muted); letter-spacing: 0.03em;
}
.dropdown a:hover { background: var(--cream-2); color: var(--evergreen); }

.header-cta { display: flex; align-items: center; gap: 12px; flex: none; }
.header-phone {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.85rem; color: var(--evergreen);
}
.header-phone svg { width: 15px; height: 15px; fill: var(--terracotta); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  background: none; border: 1px solid var(--line-2); border-radius: 50%; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 17px; height: 1.5px; background: var(--evergreen);
  border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column; gap: 2px;
  padding: 12px 26px 26px;
  background: var(--cream);
  border-top: 1px solid var(--line);
  max-height: calc(100vh - 78px); overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 13px 4px; font-size: 1rem; color: var(--text);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a.sub { padding-left: 20px; font-size: 0.9rem; color: var(--muted); }
.mobile-nav .mn-label {
  padding: 16px 4px 6px; font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--terracotta);
}
.mobile-nav .btn { margin-top: 18px; }

/* ═══════════ HERO (home) ═══════════ */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(56px, 8vw, 104px) 0 clamp(70px, 9vw, 118px);
  background:
    radial-gradient(70% 60% at 82% 18%, rgba(227, 193, 183, 0.42), transparent 62%),
    radial-gradient(60% 55% at 8% 78%, rgba(220, 227, 215, 0.55), transparent 60%),
    var(--cream);
}
.hero-inner {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(30px, 5vw, 68px); align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 .script {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic; font-weight: 300;
  color: var(--terracotta);
}
.hero .lead { max-width: 520px; }
.hero-actions { margin-top: 32px; }

.hero-points {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  margin-top: 34px; padding-top: 26px;
  border-top: 1px solid var(--line);
  list-style: none;
}
.hero-points li {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.86rem; color: var(--muted); letter-spacing: 0.02em;
}
.hero-points svg { width: 15px; height: 15px; fill: var(--sage); flex: none; }

/* Hero art stack */
.hero-art { position: relative; }
.hero-art-main {
  position: relative; border-radius: 220px 220px 24px 24px;
  overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--blush-soft);
}
.hero-art-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; left: -26px; bottom: 10px;
  display: flex; align-items: center; gap: 11px;
  padding: 13px 20px 13px 15px;
  background: var(--white); border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 0.8rem; color: var(--evergreen); letter-spacing: 0.04em;
}
.hero-badge svg { width: 26px; height: 26px; fill: var(--terracotta); flex: none; }
.hero-badge strong { display: block; font-weight: 500; font-size: 0.86rem; }
.hero-badge span { display: block; font-size: 0.72rem; color: var(--muted); }

.hero-logo-mark {
  position: absolute; right: -14px; top: 22px;
  width: 96px; height: 96px; border-radius: 50%;
  box-shadow: var(--shadow); object-fit: cover;
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}

/* ═══════════ ART FRAMES ═══════════
   Layered gradient + line-art "photo" panels.
   Drop a real photo in by replacing .art-frame's
   contents with <img src="images/your-photo.jpg" alt="...">
════════════════════════════════════ */
.art-frame {
  position: relative; overflow: hidden;
  width: 100%; height: 100%;
  background:
    radial-gradient(120% 90% at 20% 12%, rgba(255, 255, 255, 0.85), transparent 55%),
    linear-gradient(155deg, var(--blush-soft) 0%, var(--blush) 46%, #D9BCAE 74%, var(--cream-2) 100%);
  display: grid; place-items: center;
}
.art-frame::after {
  content: ""; position: absolute; inset: 0;
  background: var(--grain); opacity: 0.6; pointer-events: none;
}
/* Soft concentric rings — gives the panels depth without a photo */
.art-frame::before {
  content: ""; position: absolute; inset: -30%;
  background: repeating-radial-gradient(
    circle at 50% 56%,
    transparent 0 46px,
    rgba(255, 255, 255, 0.4) 46px 47px
  );
  opacity: 0.55; pointer-events: none;
  -webkit-mask-image: radial-gradient(circle at 50% 56%, #000 30%, transparent 72%);
  mask-image: radial-gradient(circle at 50% 56%, #000 30%, transparent 72%);
}
.art-frame.deep::before { opacity: 0.16; }
/* No ring pattern on the home page hero — kept clean and flat. */
.hero-art-main .art-frame::before { display: none; }
.art-frame.sage {
  background:
    radial-gradient(120% 90% at 76% 14%, rgba(255, 255, 255, 0.8), transparent 55%),
    linear-gradient(150deg, var(--sage-soft) 0%, #BFCCB6 52%, var(--sage) 100%);
}
.art-frame.gold {
  background:
    radial-gradient(120% 90% at 24% 82%, rgba(255, 255, 255, 0.78), transparent 55%),
    linear-gradient(140deg, var(--gold-soft) 0%, #E9C48D 48%, var(--gold) 100%);
}
.art-frame.deep {
  background:
    radial-gradient(110% 90% at 74% 20%, rgba(124, 139, 117, 0.55), transparent 58%),
    linear-gradient(155deg, var(--evergreen-2) 0%, var(--evergreen) 60%, #4C5C4E 100%);
}
.art-frame .art-line {
  position: relative; z-index: 1;
  width: 68%; max-width: 300px; height: auto;
  color: var(--evergreen); opacity: 0.52;
}
.art-frame.deep .art-line { color: var(--light); opacity: 0.34; }
/* Large panels get bigger line art so they don't read as empty */
.split-art .art-line,
.page-hero-art .art-line,
.hero-art-main .art-line { width: 74%; max-width: 380px; }

.art-frame .art-glow {
  position: absolute; border-radius: 50%; filter: blur(34px); z-index: 0;
}
.art-frame .art-glow.g1 {
  width: 46%; aspect-ratio: 1; top: 8%; right: -8%;
  background: rgba(221, 160, 90, 0.42);
}
.art-frame .art-glow.g2 {
  width: 38%; aspect-ratio: 1; bottom: -6%; left: -6%;
  background: rgba(255, 255, 255, 0.5);
}

/* ═══════════ PAGE HERO (inner pages) ═══════════ */
.page-hero {
  position: relative; overflow: hidden;
  padding: clamp(52px, 7vw, 88px) 0 clamp(46px, 6vw, 72px);
  background:
    radial-gradient(64% 100% at 88% 0%, rgba(227, 193, 183, 0.4), transparent 62%),
    radial-gradient(50% 80% at 0% 100%, rgba(220, 227, 215, 0.5), transparent 62%),
    var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-hero-inner {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 5vw, 58px); align-items: center;
}
.page-hero h1 { margin-bottom: 20px; }
.page-hero .lead { max-width: 560px; }
.page-hero-art {
  aspect-ratio: 5 / 4; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
}

.crumbs {
  display: flex; align-items: center; gap: 9px; flex-wrap: wrap;
  font-size: 0.76rem; letter-spacing: 0.08em; color: var(--muted);
  margin-bottom: 20px;
}
.crumbs a:hover { color: var(--terracotta); }
.crumbs span { opacity: 0.5; }

/* ═══════════ CATEGORY CARDS ═══════════ */
.cat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: 24px;
}
.cat-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.35s;
}
.cat-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow);
  border-color: var(--blush);
}
.cat-card-art { aspect-ratio: 16 / 10; overflow: hidden; }
/* Photos fill the frame whatever shape they're swapped for later */
.cat-card-art img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.cat-card:hover .cat-card-art img { transform: scale(1.04); }
.cat-card-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.cat-card h3 { margin-bottom: 10px; }
.cat-card p { font-size: 0.94rem; color: var(--muted); margin-bottom: 18px; }
.cat-card .cat-from {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 20px;
}
.cat-card .link-arrow { margin-top: auto; }

/* ═══════════ FEATURE / BENEFIT GRID ═══════════ */
.benefit-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: clamp(20px, 3vw, 34px);
}
/* Explicit column counts so grids of 4 or 6 don't leave orphan cards */
@media (min-width: 920px) {
  .benefit-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
  .benefit-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .benefit-grid.cols-2,
  .cat-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 620px) and (max-width: 919px) {
  .benefit-grid.cols-4, .benefit-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
}
.benefit {
  padding: 30px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.benefit.plain { background: transparent; border: 0; padding: 0; }
.benefit.plain:hover { transform: none; box-shadow: none; }
.b-ico {
  display: grid; place-items: center;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--blush-soft); margin-bottom: 18px;
}
.b-ico svg { width: 24px; height: 24px; fill: var(--terracotta); }
.b-ico.sage { background: var(--sage-soft); }
.b-ico.sage svg { fill: var(--evergreen); }
.b-ico.gold { background: var(--gold-soft); }
.b-ico.gold svg { fill: var(--terracotta-deep); }
.benefit h3 { font-size: 1.24rem; margin-bottom: 9px; }
.benefit p { font-size: 0.94rem; color: var(--muted); }

/* Numbered list of benefits (long-form) */
.perk-list { list-style: none; display: grid; gap: 22px; }
.perk-list li { display: flex; gap: 17px; }
.perk-num {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--evergreen); color: var(--light);
  font-family: "Cormorant Garamond", serif; font-size: 1.05rem;
}
.perk-list h4 { margin-bottom: 4px; color: var(--evergreen); }
.perk-list p { font-size: 0.95rem; color: var(--muted); }

/* Split section: copy + art */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 66px); align-items: center;
}
.split.reverse .split-art { order: -1; }
.split-art {
  aspect-ratio: 4 / 5; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  background: var(--blush-soft);
}
.split-art > img { width: 100%; height: 100%; object-fit: cover; }
.split-art.wide { aspect-ratio: 5 / 4; }

/* ═══════════ PRICE MENU ═══════════ */
.menu-block { margin-bottom: clamp(38px, 5vw, 58px); }
.menu-block:last-child { margin-bottom: 0; }

.menu-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
  padding-bottom: 14px; margin-bottom: 8px;
  border-bottom: 1px solid var(--line-2);
}
.menu-head h3 { color: var(--evergreen); }
.menu-head .menu-note {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}

.price-list { list-style: none; }
.price-row {
  display: flex; align-items: baseline; gap: 12px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--line);
}
.price-row:last-child { border-bottom: 0; }
.pr-name {
  color: var(--ink); font-weight: 400; font-size: 1rem;
}
.pr-name .pr-time {
  display: inline-block; margin-left: 9px;
  font-size: 0.76rem; letter-spacing: 0.08em; color: var(--muted);
  text-transform: uppercase; font-weight: 300;
}
.pr-dots {
  flex: 1 1 auto; min-width: 18px; height: 1px;
  border-bottom: 1px dotted var(--line-2);
  transform: translateY(-3px);
}
.pr-price {
  flex: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.28rem; color: var(--terracotta); white-space: nowrap;
}
.pr-price small {
  font-family: "Jost", sans-serif; font-size: 0.7rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
  margin-right: 5px;
}

.menu-columns { columns: 2; column-gap: clamp(30px, 5vw, 64px); }
.menu-columns > * { break-inside: avoid; }

.menu-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(24px, 3.4vw, 40px);
}

.menu-footnote {
  margin-top: 26px; padding: 18px 22px;
  background: var(--cream-2); border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9rem; color: var(--muted);
}

/* ═══════════ FILTER PILLS ═══════════ */
.pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 34px;
}
.pill {
  padding: 9px 20px; border-radius: 999px;
  border: 1px solid var(--line-2); background: transparent;
  font-family: "Jost", sans-serif; font-size: 0.8rem;
  letter-spacing: 0.08em; color: var(--text); cursor: pointer;
  transition: background 0.28s, color 0.28s, border-color 0.28s;
}
.pill:hover { border-color: var(--sage); }
.pill.on { background: var(--evergreen); border-color: var(--evergreen); color: var(--light); }

/* ═══════════ ACCORDION ═══════════ */
.acc { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-btn {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  width: 100%; padding: 22px 4px; background: none; border: 0; cursor: pointer;
  text-align: left;
  font-family: "Cormorant Garamond", serif; font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--evergreen);
  transition: color 0.25s;
}
.acc-btn:hover { color: var(--terracotta); }
.acc-btn .acc-sign {
  flex: none; position: relative; width: 20px; height: 20px;
}
.acc-btn .acc-sign::before,
.acc-btn .acc-sign::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  background: currentColor; border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.acc-btn .acc-sign::before { width: 15px; height: 1.5px; transform: translate(-50%, -50%); }
.acc-btn .acc-sign::after { width: 1.5px; height: 15px; transform: translate(-50%, -50%); }
.acc-item.open .acc-btn .acc-sign::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.acc-panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.42s var(--ease);
}
.acc-item.open .acc-panel { grid-template-rows: 1fr; }
.acc-panel > div { overflow: hidden; }
.acc-panel .acc-inner { padding: 0 4px 26px; }
.acc-panel p { color: var(--muted); font-size: 0.97rem; }

/* ═══════════ MEMBERSHIP ═══════════ */
.vip-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.vip-card {
  position: relative; overflow: hidden;
  padding: 34px 30px 36px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.vip-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.vip-card.featured {
  background: linear-gradient(165deg, var(--evergreen) 0%, var(--evergreen-2) 100%);
  border-color: transparent; color: var(--light-muted);
}
.vip-card.featured h3, .vip-card.featured .vip-price { color: var(--light); }
.vip-card.featured .vip-price em { color: var(--gold); }
.vip-card.featured .vip-feats li { color: var(--light-muted); border-color: var(--line-dark); }
.vip-card.featured .vip-feats svg { fill: var(--gold); }
.vip-tag {
  position: absolute; top: 18px; right: 18px;
  padding: 5px 13px; border-radius: 999px;
  background: var(--gold); color: var(--evergreen-3);
  font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
}
.vip-card h3 { margin-bottom: 6px; }
.vip-kicker { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.vip-card.featured .vip-kicker { color: var(--sage); }
.vip-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.7rem; color: var(--evergreen); line-height: 1.1;
  margin: 16px 0 20px;
}
.vip-price em {
  font-style: normal; font-family: "Jost", sans-serif;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--terracotta); display: block; margin-top: 4px;
}
.vip-feats { list-style: none; display: grid; gap: 11px; margin-bottom: 26px; }
.vip-feats li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.92rem; color: var(--muted);
  padding-bottom: 11px; border-bottom: 1px solid var(--line);
}
.vip-feats li:last-child { border-bottom: 0; padding-bottom: 0; }
.vip-feats svg { width: 15px; height: 15px; fill: var(--sage); flex: none; margin-top: 5px; }
.vip-card .btn { margin-top: auto; width: 100%; }

/* ═══════════ STEPS ═══════════ */
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(22px, 3vw, 38px); counter-reset: step;
}
.step { position: relative; padding-top: 42px; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  position: absolute; top: 0; left: 0;
  font-family: "Cormorant Garamond", serif; font-size: 2.1rem;
  color: var(--blush); line-height: 1;
}
.step h3 { font-size: 1.22rem; margin-bottom: 8px; }
.step p { font-size: 0.94rem; color: var(--muted); }

/* ═══════════ QUOTE / CALLOUT ═══════════ */
.callout {
  position: relative; overflow: hidden;
  padding: clamp(34px, 4.6vw, 54px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.callout .callout-sprig {
  position: absolute; right: -20px; bottom: -24px;
  width: 190px; color: var(--sage-soft); opacity: 0.75; pointer-events: none;
}
.callout h2 { margin-bottom: 14px; }
.callout p { color: var(--muted); max-width: 620px; }

/* Safety / good-to-know notes */
.note-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}
.note {
  padding: 24px 26px; border-radius: var(--radius);
  background: var(--cream-2); border: 1px solid var(--line);
}
.note h4 { margin-bottom: 7px; font-family: "Jost", sans-serif; font-size: 0.86rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terracotta); font-weight: 400; }
.note p { font-size: 0.92rem; color: var(--muted); }

/* ═══════════ CTA BAND ═══════════ */
.cta-band {
  position: relative; overflow: hidden;
  padding: clamp(62px, 8vw, 100px) 0;
  background:
    radial-gradient(60% 100% at 82% 12%, rgba(124, 139, 117, 0.4), transparent 60%),
    radial-gradient(52% 90% at 6% 96%, rgba(192, 118, 59, 0.28), transparent 62%),
    linear-gradient(160deg, var(--evergreen) 0%, var(--evergreen-3) 100%);
  color: var(--light-muted);
  text-align: center;
}
.cta-band h2 { color: var(--light); margin-bottom: 16px; }
.cta-band p { max-width: 580px; margin: 0 auto 32px; color: var(--light-muted); }
.cta-band .btn-row { justify-content: center; }
.cta-sprig {
  position: absolute; left: 50%; top: 34px; transform: translateX(-50%);
  width: 110px; color: var(--sage); opacity: 0.4;
}

/* ═══════════ CONTACT ═══════════ */
.contact-grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 62px); align-items: start;
}
.contact-card {
  padding: clamp(26px, 3.4vw, 40px);
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.contact-list { list-style: none; display: grid; gap: 22px; }
.contact-list li { display: flex; gap: 15px; }
.cl-ico {
  flex: none; width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; background: var(--blush-soft);
}
.cl-ico svg { width: 19px; height: 19px; fill: var(--terracotta); }
.cl-k {
  display: block; font-size: 0.7rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 3px;
}
.cl-v { font-size: 1.02rem; color: var(--evergreen); }
.cl-v a:hover { color: var(--terracotta); }

.hours-list { list-style: none; }
.hours-list li {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 11px 0; border-bottom: 1px dashed var(--line);
  font-size: 0.94rem;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .hl-d { color: var(--muted); }
.hours-list .hl-t { color: var(--evergreen); }

.map-frame {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3; background: var(--cream-2);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Placeholder shown while owner details are still to come */
.tbc {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.9rem; color: var(--muted); font-style: italic;
}
.tbc::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex: none;
}

/* ═══════════ FOOTER ═══════════ */
.site-footer {
  background: var(--evergreen-2); color: var(--light-muted);
  padding-top: clamp(52px, 6vw, 78px);
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: clamp(28px, 4vw, 50px);
  padding-bottom: 46px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand img { width: 66px; height: 66px; border-radius: 50%; object-fit: cover; }
.footer-brand .brand-name { color: var(--light); font-size: 1.5rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 300px; }
.footer-col h4 {
  font-family: "Jost", sans-serif; font-size: 0.7rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sage); font-weight: 400; margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: grid; gap: 9px; }
.footer-col a, .footer-col span { font-size: 0.9rem; color: var(--light-muted); }
.footer-col a:hover { color: var(--light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  padding: 22px 0 26px; border-top: 1px solid var(--line-dark);
  font-size: 0.8rem; letter-spacing: 0.03em;
}
.footer-bottom a:hover { color: var(--light); }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line-dark);
  transition: background 0.28s, border-color 0.28s, transform 0.3s var(--ease);
}
.socials a:hover { background: rgba(255, 255, 255, 0.09); border-color: var(--sage); transform: translateY(-2px); }
.socials svg { width: 16px; height: 16px; fill: var(--light-muted); }
/* The TikTok glyph fills its whole viewBox where the others are inset —
   scale it down so all three read the same optical size. */
.socials a[data-social="tiktok"] svg { transform: scale(0.85); }

/* Same buttons on a light background (contact card) */
.socials-light { margin-top: 4px; }
.socials-light a { border-color: var(--line-2); }
.socials-light a:hover { background: var(--blush-soft); border-color: var(--blush); }
.socials-light svg { fill: var(--evergreen); }

/* ═══════════ STICKY MOBILE BAR ═══════════ */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: 10px; padding: 11px 16px calc(11px + env(safe-area-inset-bottom));
  background: rgba(245, 241, 234, 0.94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.sticky-bar .btn { flex: 1; padding: 13px 12px; font-size: 0.75rem; }

/* ═══════════ REVEAL ANIMATIONS ═══════════ */
/* Scoped to html.js so content is never hidden if JavaScript
   is blocked or fails — script.js adds the .js class on load. */
.js .reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.js .reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* Draw-in for the decorative sprigs */
.js .draw path, .js .draw line, .js .draw circle {
  stroke-dasharray: 480; stroke-dashoffset: 480;
  transition: stroke-dashoffset 1.7s var(--ease);
}
.js .draw.in path, .js .draw.in line, .js .draw.in circle { stroke-dashoffset: 0; }

.is-hidden { display: none !important; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1040px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-inner,
  .page-hero-inner,
  .split,
  .contact-grid { grid-template-columns: 1fr; }
  .split.reverse .split-art { order: 0; }
  .hero-art { max-width: 420px; margin: 0 auto; }
  .hero-art-main { aspect-ratio: 4 / 3; border-radius: var(--radius-lg); }
  .hero-logo-mark { width: 74px; height: 74px; right: 8px; top: -22px; }
  .hero-badge { left: 10px; bottom: -20px; }
  .split-art { aspect-ratio: 5 / 4; }
  .menu-columns { columns: 1; }
  .page-hero-art { max-width: 460px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .header-cta .btn { display: none; }
  .sticky-bar { display: flex; }
  main { padding-bottom: 72px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-points { gap: 8px 16px; }
  .pr-name { font-size: 0.95rem; }
  .pr-name .pr-time { display: block; margin: 2px 0 0; }
  .pr-price { font-size: 1.16rem; }
  .callout .callout-sprig { width: 130px; opacity: 0.5; }
}

@media (max-width: 460px) {
  .brand-logo { width: 42px; height: 42px; }
  .brand-name { font-size: 1.22rem; }
  .brand-sub { font-size: 0.55rem; letter-spacing: 0.24em; }
  .btn { padding: 13px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .draw path, .draw line, .draw circle { stroke-dashoffset: 0; }
}

@media print {
  .site-header, .sticky-bar, .cta-band, .site-footer, .btn { display: none !important; }
  body { background: #fff; }
  .price-row { break-inside: avoid; }
}

/* ═══════════════════════════════════════════════
   CONSENT & INTAKE FORMS
═══════════════════════════════════════════════ */
.form-shell {
  max-width: 820px; margin: 0 auto; padding: 0 26px;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
  margin-bottom: 26px;
}

.fs-legend {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  padding-bottom: 14px; margin-bottom: 24px;
  border-bottom: 1px solid var(--line-2);
}
.fs-legend h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.fs-legend .fs-step {
  font-family: "Jost", sans-serif; font-size: 0.68rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--terracotta);
}
.fs-intro { color: var(--muted); font-size: 0.95rem; margin-bottom: 24px; }

/* Fieldsets shouldn't inherit browser chrome */
.form-card fieldset { border: 0; padding: 0; margin: 0; }
.form-card legend { padding: 0; }

/* ── Text inputs ─────────────────────────────── */
.field { margin-bottom: 20px; }
.field-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; margin-bottom: 20px;
}
.field-row .field { margin-bottom: 0; }

.field label, .field > .field-label {
  display: block; margin-bottom: 7px;
  font-size: 0.86rem; font-weight: 400; color: var(--evergreen);
  letter-spacing: 0.01em;
}
.field .req { color: var(--terracotta); margin-left: 2px; }
.field .hint {
  display: block; margin-top: 6px;
  font-size: 0.8rem; color: var(--muted); line-height: 1.5;
}

.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field input[type="date"],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: "Jost", sans-serif;
  font-size: 1rem; font-weight: 300; color: var(--text);
  background: var(--cream);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.field textarea { min-height: 96px; resize: vertical; line-height: 1.6; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236E6A5F'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 20px;
  padding-right: 40px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: var(--white);
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(124, 139, 117, 0.16);
}
/* Only flag a field once the person has actually interacted with it —
   :invalid alone marks empty required fields as errors on page load. */
.field input:user-invalid,
.field select:user-invalid,
.field textarea:user-invalid {
  border-color: var(--terracotta);
  background: #FDF6EF;
}

/* ── Yes / No screening rows ─────────────────── */
.screen-list { list-style: none; display: grid; gap: 2px; }
.screen-item {
  display: grid; grid-template-columns: 1fr auto;
  gap: 14px; align-items: start;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}
.screen-item:last-child { border-bottom: 0; }
.screen-q { font-size: 0.95rem; color: var(--text); line-height: 1.55; }
.screen-q small { display: block; font-size: 0.8rem; color: var(--muted); margin-top: 3px; }

.yn { display: flex; gap: 8px; flex: none; }
.yn label {
  position: relative; cursor: pointer;
  display: grid; place-items: center;
  min-width: 54px; padding: 8px 12px;
  border: 1px solid var(--line-2); border-radius: 999px;
  font-size: 0.8rem; letter-spacing: 0.06em; color: var(--muted);
  background: var(--white);
  transition: background 0.22s, border-color 0.22s, color 0.22s;
  user-select: none;
}
.yn input { position: absolute; opacity: 0; width: 0; height: 0; }
.yn label:hover { border-color: var(--sage); }
.yn input:focus-visible + span { text-decoration: underline; }
.yn label:has(input:checked) {
  background: var(--evergreen); border-color: var(--evergreen); color: var(--light);
}
.yn label.yn-yes:has(input:checked) {
  background: var(--terracotta); border-color: var(--terracotta); color: #FFF6EC;
}

/* Flag shown when a screening answer needs the practitioner's attention */
.screen-flag {
  grid-column: 1 / -1;
  margin-top: 10px; padding: 11px 14px;
  background: var(--gold-soft);
  border-left: 2px solid var(--terracotta);
  border-radius: 0 8px 8px 0;
  font-size: 0.85rem; color: var(--terracotta-deep); line-height: 1.55;
}
.screen-flag[hidden] { display: none; }

/* ── Checkbox acknowledgements ───────────────── */
.ack-list { list-style: none; display: grid; gap: 4px; }
.ack {
  display: grid; grid-template-columns: auto 1fr;
  gap: 14px; align-items: start;
  padding: 14px 0; border-bottom: 1px dashed var(--line);
  cursor: pointer;
}
.ack:last-child { border-bottom: 0; }
.ack input[type="checkbox"] {
  appearance: none; flex: none;
  width: 22px; height: 22px; margin-top: 1px;
  border: 1.5px solid var(--line-2); border-radius: 6px;
  background: var(--white); cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: grid; place-items: center;
}
.ack input[type="checkbox"]::after {
  content: ""; width: 11px; height: 6px;
  border-left: 2px solid var(--light); border-bottom: 2px solid var(--light);
  transform: rotate(-45deg) scale(0); transition: transform 0.2s var(--ease);
}
.ack input[type="checkbox"]:checked {
  background: var(--evergreen); border-color: var(--evergreen);
}
.ack input[type="checkbox"]:checked::after { transform: rotate(-45deg) scale(1); }
.ack input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--terracotta); outline-offset: 2px;
}
.ack-text { font-size: 0.93rem; color: var(--text); line-height: 1.6; }
.ack-text strong { color: var(--evergreen); font-weight: 500; }

/* Checkbox grid for multi-select (e.g. which treatment) */
.pick-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px; margin-bottom: 24px;
}
.pick {
  display: flex; align-items: center; gap: 11px;
  padding: 13px 16px; cursor: pointer;
  border: 1px solid var(--line-2); border-radius: 12px;
  background: var(--white);
  font-size: 0.92rem; color: var(--text);
  transition: border-color 0.22s, background 0.22s;
}
.pick:hover { border-color: var(--sage); }
.pick:has(input:checked) { border-color: var(--evergreen); background: var(--sage-soft); }
.pick input { appearance: none; width: 18px; height: 18px; flex: none;
  border: 1.5px solid var(--line-2); border-radius: 5px; background: var(--white);
  display: grid; place-items: center; cursor: pointer; }
.pick input::after { content: ""; width: 9px; height: 5px;
  border-left: 2px solid var(--light); border-bottom: 2px solid var(--light);
  transform: rotate(-45deg) scale(0); transition: transform 0.2s; }
.pick input:checked { background: var(--evergreen); border-color: var(--evergreen); }
.pick input:checked::after { transform: rotate(-45deg) scale(1); }

/* ── Signature block ─────────────────────────── */
.sig-block {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: clamp(20px, 3vw, 30px);
  margin-top: 8px;
}
.sig-name input {
  font-family: "Cormorant Garamond", serif !important;
  font-size: 1.6rem !important;
  letter-spacing: 0.01em;
  background: var(--white) !important;
}

/* ── Notices ─────────────────────────────────── */
.form-notice {
  padding: 16px 20px; border-radius: var(--radius-sm);
  font-size: 0.88rem; line-height: 1.6;
  background: var(--sage-soft); border-left: 2px solid var(--sage);
  color: var(--evergreen-2);
  margin-bottom: 24px;
}
.form-notice strong { font-weight: 500; }
.form-notice.warm { background: var(--gold-soft); border-left-color: var(--terracotta); color: var(--terracotta-deep); }

/* Honeypot — hidden from humans */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-submit { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-submit .submit-note { font-size: 0.82rem; color: var(--muted); }

/* ── Forms hub cards ─────────────────────────── */
.form-index { display: grid; gap: 16px; }
.form-index a {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 18px; align-items: center;
  padding: 22px 24px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s;
}
.form-index a:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--blush); }
.form-index .fi-ico {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; background: var(--blush-soft); flex: none;
}
.form-index .fi-ico svg { width: 22px; height: 22px; fill: var(--terracotta); }
.form-index h3 { font-size: 1.2rem; margin-bottom: 3px; }
.form-index p { font-size: 0.88rem; color: var(--muted); }
.form-index .fi-go svg { width: 20px; height: 20px; fill: var(--terracotta); }

@media (max-width: 560px) {
  .screen-item { grid-template-columns: 1fr; }
  .yn { justify-content: flex-start; }
  .form-index a { grid-template-columns: auto 1fr; }
  .form-index .fi-go { display: none; }
}

@media print {
  .form-card { box-shadow: none; border-color: #ccc; break-inside: avoid; }
  .form-notice { border: 1px solid #ccc; }
}
