/* ============================================================
   CARRIE COOK CCH — Shared Design System
   ============================================================ */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  /* Palette — light mode */
  --bg:          #F0F4F1;
  --surface:     #FFFFFF;
  --surface-alt: #E6EDE8;
  --deep:        #1C3228;
  --primary:     #2C4C38;
  --primary-h:   #3A6349;
  --mid:         #4A7A5E;
  --gold:        #A07848;
  --gold-h:      #C09A62;
  --border:      #C4D5C9;
  --border-s:    #A8BDB0;
  --text:        #1E2E23;
  --text-mid:    #3C5444;
  --text-muted:  #62766A;
  --shadow:      rgba(28,50,40,.10);

  /* Modality accent colours */
  --rose:        #C8415C;  --rose-bg:    #FEF0F3;  --rose-b:   #F5C0CB;
  --teal:        #1F8A64;  --teal-bg:    #EBF8F2;  --teal-b:   #9FD8C1;
  --indigo:      #5048C0;  --indigo-bg:  #EEECFC;  --indigo-b: #BDB8EC;
  --amber:       #B86C24;  --amber-bg:   #FDF3E8;  --amber-b:  #F4C895;

  /* Typography */
  --font-serif:  Georgia, 'Times New Roman', serif;
  --font-body:   system-ui, -apple-system, 'Segoe UI', Helvetica, sans-serif;

  /* Layout */
  --max-w:   1100px;
  --pad-x:   clamp(1.25rem, 4vw, 2rem);
  --radius:  10px;
  --radius-l: 18px;
  --radius-pill: 100px;
}

/* Dark mode */
@media (prefers-color-scheme: dark) { :root { --bg:#141f18; --surface:#1c2b21; --surface-alt:#223329; --border:#2e4637; --border-s:#3f5e4a; --text:#dce8de; --text-mid:#a0bba8; --text-muted:#6e8f78; --shadow:rgba(0,0,0,.3); } }
:root[data-theme="dark"]  { --bg:#141f18; --surface:#1c2b21; --surface-alt:#223329; --border:#2e4637; --border-s:#3f5e4a; --text:#dce8de; --text-mid:#a0bba8; --text-muted:#6e8f78; --shadow:rgba(0,0,0,.3); }
:root[data-theme="light"] { --bg:#F0F4F1; --surface:#FFFFFF; --surface-alt:#E6EDE8; --border:#C4D5C9; --border-s:#A8BDB0; --text:#1E2E23; --text-mid:#3C5444; --text-muted:#62766A; --shadow:rgba(28,50,40,.10); }

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); font-size: 1rem; line-height: 1.65; color: var(--text); background: var(--bg); }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
input, select, textarea { font: inherit; }
ul, ol { list-style: none; }

/* ── Typography ──────────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: var(--font-serif); color: var(--text); text-wrap: balance; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; letter-spacing: -.015em; }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; font-family: var(--font-body); }
p { max-width: 66ch; }
p + p { margin-top: .85em; }
strong { font-weight: 600; }
em { font-style: italic; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .65rem;
}

/* ── Layout helpers ──────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }

@media (max-width: 900px) { .grid-2 { grid-template-columns: 1fr; } .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } .section { padding: 3.5rem 0; } }

.text-center { text-align: center; }
.text-center p { margin-inline: auto; }

/* ── Navigation ──────────────────────────────────────────────── */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(240,244,241,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#site-nav.scrolled { box-shadow: 0 2px 20px var(--shadow); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 1rem;
}
.nav-logo { display: flex; align-items: center; gap: .7rem; cursor: pointer; }
.nav-logo-mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--primary); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
  transition: transform .2s;
}
.nav-logo:hover .nav-logo-mark { transform: scale(1.06); }
.nav-logo-name { font-size: .88rem; font-weight: 700; color: var(--primary); font-family: var(--font-serif); line-height: 1.1; }
.nav-logo-sub  { font-size: .6rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--text-muted); }

.nav-links { display: flex; align-items: center; gap: .15rem; }
.nav-link {
  position: relative;
  padding: .45rem .8rem;
  border-radius: var(--radius-pill);
  font-size: .82rem; font-weight: 600;
  color: var(--text-muted);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--primary); background: var(--surface-alt); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + .5rem); left: 50%; transform: translateX(-50%);
  min-width: 230px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-l);
  box-shadow: 0 8px 32px var(--shadow);
  padding: .5rem;
  display: none;
  flex-direction: column;
  z-index: 300;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: flex; }
.nav-dropdown-item {
  display: flex; align-items: center; gap: .6rem;
  padding: .55rem .8rem; border-radius: var(--radius);
  font-size: .82rem; font-weight: 500; color: var(--text-mid);
  transition: background .15s, color .15s;
}
.nav-dropdown-item:hover { background: var(--surface-alt); color: var(--primary); }
.nav-dropdown-icon { width: 24px; height: 24px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: .85rem; flex-shrink: 0; }
.nav-dropdown-divider { height: 1px; background: var(--border); margin: .35rem 0; }
.nav-dropdown-group-label { font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); padding: .3rem .8rem .1rem; }

.nav-cta {
  padding: .5rem 1.2rem; border-radius: var(--radius-pill);
  background: var(--primary); color: #fff;
  font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  transition: background .2s, transform .15s;
  white-space: nowrap; flex-shrink: 0;
}
.nav-cta:hover { background: var(--primary-h); transform: translateY(-1px); }

/* Mobile */
.nav-hamburger { display: none; flex-direction: column; gap: 4px; padding: .5rem; }
.nav-hamburger span { display: block; width: 20px; height: 2px; background: var(--primary); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--surface); border-bottom: 1px solid var(--border);
    padding: 1rem var(--pad-x) 1.5rem;
    gap: .15rem;
    box-shadow: 0 12px 32px var(--shadow);
  }
  .nav-link { padding: .7rem 1rem; border-radius: var(--radius); }
  .nav-dropdown-menu { position: static; transform: none; box-shadow: none; border: none; background: var(--surface-alt); border-radius: var(--radius); margin-top: .25rem; display: none; padding: .25rem; }
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown-open .nav-dropdown-menu { display: flex; }
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.6rem; border-radius: var(--radius-pill);
  font-size: .88rem; font-weight: 700;
  transition: background .2s, transform .15s, box-shadow .2s;
  cursor: pointer; border: none; text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 3px 14px rgba(44,76,56,.22); }
.btn-primary:hover { background: var(--primary-h); box-shadow: 0 5px 20px rgba(44,76,56,.28); }
.btn-secondary { background: var(--surface); color: var(--primary); border: 1.5px solid var(--border-s); }
.btn-secondary:hover { background: var(--surface-alt); border-color: var(--primary); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-h); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
.btn-sm { padding: .5rem 1.1rem; font-size: .8rem; }
.btn-lg { padding: .95rem 2rem; font-size: .95rem; }

/* ── Hero (homepage) ─────────────────────────────────────────── */
.hero {
  padding-top: 68px; /* nav height */
  min-height: 100svh;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.hero-text { padding: 4rem 0 4rem var(--pad-x); }
.hero-visual { padding: 4rem var(--pad-x) 4rem 0; }
.hero h1 { color: var(--primary); margin-bottom: 1.25rem; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-lead { font-size: 1.05rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; }
.trust-item { display: flex; align-items: center; gap: .4rem; font-size: .78rem; color: var(--text-muted); }
.trust-item::before { content: '✓'; font-weight: 700; color: var(--mid); font-size: .7rem; }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 6rem var(--pad-x) 2rem; }
  .hero-visual { padding: 0 var(--pad-x) 3rem; }
}

/* ── Page hero (inner pages) ─────────────────────────────────── */
.page-hero {
  padding: calc(68px + 3.5rem) var(--pad-x) 3.5rem;
  background: linear-gradient(160deg, var(--deep) 0%, var(--primary) 100%);
  color: #fff;
}
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { color: #fff; max-width: 700px; }
.page-hero-lead { color: rgba(255,255,255,.72); font-size: 1.05rem; line-height: 1.7; max-width: 600px; margin-top: 1rem; }

/* ── Resonance card (homepage hero) ─────────────────────────── */
.resonance-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-l); padding: 1.75rem;
  box-shadow: 0 12px 48px var(--shadow);
  position: relative; overflow: hidden;
}
.resonance-card::before {
  content: '';
  position: absolute; top: -60%; right: -40%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(160,120,72,.12), transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulse-glow { 0%,100%{opacity:.6;transform:scale(1)} 50%{opacity:1;transform:scale(1.15)} }
.rc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.rc-title { font-size: .7rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--text-muted); }
.rc-dot  { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }
.modality-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: .85rem 1rem;
  margin-bottom: .6rem; cursor: pointer;
  transition: transform .18s, box-shadow .18s;
}
.modality-row:last-of-type { margin-bottom: 0; }
.modality-row:hover { transform: scale(1.015); box-shadow: 0 4px 16px var(--shadow); }
.modality-row-left { display: flex; align-items: center; gap: .75rem; }
.modality-row-icon { width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; }
.mi-rose    { background: var(--rose-bg); }
.mi-teal    { background: var(--teal-bg); }
.mi-indigo  { background: var(--indigo-bg); }
.mi-amber   { background: var(--amber-bg); }
.modality-level { font-size: .62rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; color: var(--text-muted); line-height: 1; margin-bottom: .15rem; }
.modality-name  { font-size: .83rem; font-weight: 700; color: var(--primary); }
.rc-chevron { color: var(--gold); font-size: .8rem; }
.rc-footer  { margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--border); text-align: center; }
.rc-footer p  { font-size: .73rem; color: var(--text-muted); margin-bottom: .35rem; }
.rc-footer a  { font-size: .73rem; font-weight: 700; color: var(--primary); text-decoration: underline; }

/* ── Cards ───────────────────────────────────────────────────── */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-l); padding: 1.5rem 1.6rem;
}
.card-icon { font-size: 1.6rem; margin-bottom: .75rem; }
.card h3 { margin-bottom: .5rem; }
.card p  { font-size: .88rem; color: var(--text-mid); line-height: 1.65; }
.card-tag { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); margin-top: 1rem; padding-top: .85rem; border-top: 1px solid var(--border); width: 100%; }

.service-card { transition: transform .2s, box-shadow .2s; }
.service-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px var(--shadow); }

/* ── Accent bar cards ────────────────────────────────────────── */
.accent-card { border-left: 3px solid; padding-left: 1.4rem; }
.accent-rose   { border-color: var(--rose); }
.accent-teal   { border-color: var(--teal); }
.accent-indigo { border-color: var(--indigo); }
.accent-amber  { border-color: var(--amber); }

/* ── Info boxes ──────────────────────────────────────────────── */
.info-box { padding: 1rem 1.25rem; border-radius: var(--radius); font-size: .85rem; line-height: 1.65; }
.info-rose   { background: var(--rose-bg);   border: 1px solid var(--rose-b);   color: #7a1c30; }
.info-teal   { background: var(--teal-bg);   border: 1px solid var(--teal-b);   color: #0f5239; }
.info-indigo { background: var(--indigo-bg); border: 1px solid var(--indigo-b); color: #28256a; }
.info-amber  { background: var(--amber-bg);  border: 1px solid var(--amber-b);  color: #6b3a10; }
.info-green  { background: var(--surface-alt); border: 1px solid var(--border-s); color: var(--text-mid); }

/* ── Process steps ───────────────────────────────────────────── */
.step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; counter-reset: steps; }
.step { position: relative; counter-increment: steps; }
.step::before {
  content: counter(steps);
  display: block; width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: #fff;
  font-size: 1rem; font-weight: 700; font-family: var(--font-serif);
  line-height: 40px; text-align: center;
  margin-bottom: 1rem;
}
.step h4 { margin-bottom: .4rem; }
.step p  { font-size: .85rem; color: var(--text-muted); }

/* ── Emotion grid (explorer) ─────────────────────────────────── */
.emo-grid-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.emo-table { width: 100%; min-width: 500px; border-collapse: collapse; }
.emo-table thead tr { background: var(--primary); color: #fff; }
.emo-table th { padding: .65rem 1rem; text-align: left; font-size: .7rem; text-transform: uppercase; letter-spacing: .07em; font-family: var(--font-body); font-weight: 700; }
.emo-table th:first-child { text-align: center; width: 72px; border-right: 1px solid rgba(255,255,255,.2); }
.emo-table th:nth-child(2) { border-right: 1px solid rgba(255,255,255,.2); }
.emo-table td { padding: .7rem 1rem; font-size: .78rem; vertical-align: top; border-bottom: 1px solid var(--border); }
.emo-table td:first-child { text-align: center; font-weight: 700; background: var(--surface-alt); border-right: 1px solid var(--border); color: var(--primary); font-family: var(--font-serif); }
.emo-table td:nth-child(2) { border-right: 1px solid var(--border); }
.emo-table tbody tr:last-child td { border-bottom: none; }
.emo-pills { display: flex; flex-wrap: wrap; gap: .3rem; }
.emo-pill {
  padding: .22rem .55rem; border-radius: 6px;
  border: 1px solid var(--border); background: var(--surface);
  color: var(--text-mid); cursor: pointer; font-size: .73rem;
  transition: all .15s;
}
.emo-pill:hover  { background: var(--surface-alt); border-color: var(--primary); color: var(--primary); }
.emo-pill.active { background: var(--rose); color: #fff; border-color: var(--rose); }
.emo-detail {
  margin-top: 1rem; padding: 1rem 1.25rem;
  background: var(--surface); border-left: 3px solid var(--rose);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.emo-empty {
  margin-top: 1rem; padding: 1.25rem; text-align: center;
  border: 1.5px dashed var(--border); border-radius: var(--radius);
  font-size: .8rem; color: var(--text-muted);
}

/* ── Belief tree ─────────────────────────────────────────────── */
.belief-tree { display: flex; flex-direction: column; gap: 1rem; }
.belief-node {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  transition: border-color .2s;
}
.belief-node:hover { border-color: var(--indigo); }
.belief-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--indigo-bg); color: var(--indigo);
  font-size: .8rem; font-weight: 700; text-align: center; line-height: 28px;
  flex-shrink: 0;
}
.belief-part { font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; color: var(--gold); margin-bottom: .2rem; }
.belief-name { font-size: .95rem; font-weight: 700; color: var(--primary); margin-bottom: .3rem; font-family: var(--font-serif); }
.belief-desc { font-size: .8rem; color: var(--text-muted); line-height: 1.55; }

/* ── Chakras ─────────────────────────────────────────────────── */
.chakra-row {
  display: flex; align-items: center; gap: 1rem;
  padding: .85rem 1.1rem; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: .6rem;
  transition: transform .2s;
}
.chakra-row:hover { transform: translateX(4px); }
.chakra-dot { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.chakra-name  { font-size: .88rem; font-weight: 700; color: var(--primary); }
.chakra-focus { font-size: .75rem; color: var(--text-muted); }

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials-band { background: linear-gradient(150deg, var(--deep) 0%, var(--primary) 100%); color: #fff; padding: 5rem 0; }
.testimonials-band .eyebrow { color: var(--gold); }
.testimonials-band h2 { color: #fff; }
.t-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.t-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-l); padding: 1.5rem; }
.t-stars { color: var(--gold); font-size: .85rem; margin-bottom: .6rem; }
.t-quote { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.82); font-style: italic; margin-bottom: 1rem; }
.t-author { font-weight: 700; font-size: .8rem; color: var(--gold); }
.t-service { font-size: .7rem; color: rgba(255,255,255,.4); margin-top: .15rem; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { max-width: 720px; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 0; text-align: left;
  font-size: .95rem; font-weight: 700; color: var(--text);
  background: none; border: none; cursor: pointer;
  gap: 1rem;
}
.faq-q:hover { color: var(--primary); }
.faq-icon { font-size: 1.2rem; flex-shrink: 0; color: var(--text-muted); transition: transform .25s; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--primary); }
.faq-a { display: none; padding: 0 0 1.25rem; font-size: .88rem; color: var(--text-mid); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ── CTA band ────────────────────────────────────────────────── */
.cta-band { background: var(--primary); color: #fff; padding: 5rem 0; }
.cta-band h2 { color: #fff; }
.cta-band p  { color: rgba(255,255,255,.72); }
.cta-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }

/* ── Booking panel ───────────────────────────────────────────── */
.booking-panel {
  background: var(--deep); color: #fff; border-radius: var(--radius-l);
  padding: 2rem; display: flex; flex-direction: column; gap: 1rem;
}
.booking-panel h3 { color: #fff; }
.booking-panel p  { font-size: .85rem; color: rgba(255,255,255,.62); }
.book-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 1.1rem; border-radius: var(--radius);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  font-size: .85rem; font-weight: 600; color: #fff;
  transition: background .2s;
  text-decoration: none;
}
.book-link:hover { background: rgba(255,255,255,.15); }
.book-link-arrow { color: var(--gold); font-size: 1rem; }

/* ── Contact ─────────────────────────────────────────────────── */
.contact-info-list { display: flex; flex-direction: column; gap: .85rem; }
.contact-info-item { display: flex; align-items: center; gap: .85rem; font-size: .9rem; color: var(--text-mid); }
.contact-info-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--surface-alt); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0;
}

/* ── Form ────────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.form-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); }
.form-input {
  width: 100%; padding: .75rem 1rem; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--bg);
  color: var(--text); font-size: .9rem;
  transition: border-color .2s;
}
.form-input:focus { outline: none; border-color: var(--primary); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
textarea.form-input { resize: vertical; min-height: 110px; }
.form-check { display: flex; align-items: flex-start; gap: .6rem; font-size: .82rem; color: var(--text-muted); line-height: 1.55; }
.form-check input { margin-top: .2rem; accent-color: var(--primary); }

/* ── Quiz ────────────────────────────────────────────────────── */
.quiz-card {
  max-width: 680px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-l); padding: 2.5rem;
  box-shadow: 0 8px 40px var(--shadow);
}
.quiz-progress-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: .4rem; }
.quiz-progress-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); }
.quiz-progress-count { font-size: .78rem; color: var(--text-muted); font-weight: 600; }
.quiz-bar { height: 4px; background: var(--surface-alt); border-radius: 2px; overflow: hidden; margin-bottom: 1.75rem; }
.quiz-bar-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--gold)); border-radius: 2px; transition: width .5s ease; }
.quiz-cat { display: inline-block; font-size: .67rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; padding: .2rem .65rem; background: var(--surface-alt); border: 1px solid var(--border); border-radius: 6px; color: var(--text-muted); margin-bottom: .9rem; }
.quiz-q { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: var(--primary); line-height: 1.45; margin-bottom: 1.75rem; }
.quiz-options { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1.5rem; }
.quiz-opt {
  display: flex; align-items: flex-start; gap: .85rem;
  padding: .95rem 1.1rem; border: 1px solid var(--border);
  border-radius: var(--radius); background: var(--surface);
  text-align: left; cursor: pointer;
  transition: border-color .18s, background .18s;
}
.quiz-opt:hover { border-color: var(--primary); background: var(--surface-alt); }
.quiz-opt-letter {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; color: var(--text-muted);
  flex-shrink: 0; margin-top: .08rem;
  transition: all .18s;
}
.quiz-opt:hover .quiz-opt-letter { background: var(--primary); color: #fff; border-color: var(--primary); }
.quiz-opt-text { font-size: .88rem; color: var(--text-mid); line-height: 1.55; font-weight: 500; }
.quiz-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--surface-alt); padding-top: 1.1rem; }
.quiz-back { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); transition: color .2s; }
.quiz-back:hover:not(:disabled) { color: var(--primary); }
.quiz-back:disabled { opacity: .3; cursor: not-allowed; }
.quiz-hint { font-size: .72rem; color: var(--text-muted); font-style: italic; }

/* Results */
.results-banner {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-l); padding: 2.5rem;
  text-align: center; margin-bottom: 2rem;
  box-shadow: 0 4px 24px var(--shadow);
}
.results-gauges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; max-width: 820px; margin: 2rem auto 0; }
@media (max-width: 700px) { .results-gauges { grid-template-columns: 1fr 1fr; } }
.gauge {
  padding: 1.25rem 1rem; text-align: center;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface);
}
.gauge.winner { box-shadow: 0 4px 20px var(--shadow); }
.gauge-level { font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: .75rem; }
.gauge-circle {
  width: 76px; height: 76px; border-radius: 50%;
  border: 2px solid; display: flex; align-items: center;
  justify-content: center; margin: 0 auto .75rem;
}
.gc-rose   { border-color: var(--rose-b);   background: var(--rose-bg);   }
.gc-teal   { border-color: var(--teal-b);   background: var(--teal-bg);   }
.gc-indigo { border-color: var(--indigo-b); background: var(--indigo-bg); }
.gc-amber  { border-color: var(--amber-b);  background: var(--amber-bg);  }
.gauge-pct { font-size: 1.5rem; font-weight: 900; font-family: var(--font-serif); }
.pct-rose   { color: var(--rose); }
.pct-teal   { color: var(--teal); }
.pct-indigo { color: var(--indigo); }
.pct-amber  { color: var(--amber); }
.gauge-name { font-size: .78rem; font-weight: 700; color: var(--primary); display: flex; align-items: center; justify-content: center; gap: .3rem; margin-bottom: .2rem; }
.gauge-sub  { font-size: .67rem; color: var(--text-muted); }

.rec-grid { display: grid; grid-template-columns: 1fr 340px; gap: 2rem; align-items: start; }
@media (max-width: 880px) { .rec-grid { grid-template-columns: 1fr; } }
.rec-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-l); padding: 2rem;
}
.rec-header { display: flex; align-items: center; gap: .85rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--surface-alt); margin-bottom: 1.5rem; }
.rec-icon-box { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.rec-super { font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; color: var(--gold); margin-bottom: .2rem; }
.rec-title { font-size: 1.2rem; font-weight: 700; color: var(--primary); font-family: var(--font-serif); }
.rec-badge { display: inline-block; padding: .28rem .75rem; background: var(--surface-alt); border: 1px solid var(--border); border-radius: 6px; font-size: .73rem; font-weight: 600; color: var(--text-mid); margin-bottom: 1rem; }
.rec-summary { font-size: .88rem; color: var(--text-mid); line-height: 1.72; margin-bottom: 1.5rem; }
.rec-focuses-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: .7rem; }
.rec-focuses { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; }
@media (max-width: 520px) { .rec-focuses { grid-template-columns: 1fr; } }
.rec-focus-item { display: flex; align-items: flex-start; gap: .5rem; padding: .65rem .8rem; background: var(--surface-alt); border-radius: var(--radius); }
.rec-focus-icon { width: 16px; height: 16px; border-radius: 50%; background: var(--teal-bg); display: flex; align-items: center; justify-content: center; font-size: .6rem; color: var(--teal); flex-shrink: 0; margin-top: .08rem; }
.rec-focus-text { font-size: .78rem; color: var(--text-mid); line-height: 1.4; }
.rec-note { display: flex; gap: .6rem; padding: 1rem; background: var(--amber-bg); border: 1px solid var(--amber-b); border-radius: var(--radius); margin-top: 1.25rem; font-size: .8rem; color: #6b3a10; line-height: 1.55; }
.rec-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-dark { background: var(--deep); border-radius: var(--radius-l); padding: 1.75rem; }
.sd-super { font-size: .6rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; color: var(--gold); display: block; margin-bottom: .35rem; }
.sd-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .45rem; font-family: var(--font-serif); }
.sd-desc  { font-size: .78rem; color: rgba(255,255,255,.6); line-height: 1.55; margin-bottom: 1.25rem; }
.sd-btns  { display: flex; flex-direction: column; gap: .6rem; }
.sd-btn-w { width: 100%; padding: .75rem; background: #fff; color: var(--primary); border-radius: 9px; font-size: .8rem; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: .5rem; transition: background .2s; }
.sd-btn-w:hover { background: var(--surface-alt); }
.sd-btn-g { width: 100%; padding: .75rem; background: var(--gold); color: #fff; border-radius: 9px; font-size: .8rem; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: .5rem; transition: background .2s; text-decoration: none; }
.sd-btn-g:hover { background: var(--gold-h); }
.sd-divider { border-top: 1px solid rgba(255,255,255,.12); margin: 1rem 0; text-align: center; }
.sd-retake { font-size: .72rem; font-weight: 700; color: var(--gold); text-decoration: underline; text-transform: uppercase; letter-spacing: .06em; }
.sidebar-light { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-l); padding: 1.5rem; }

/* ── Footer ──────────────────────────────────────────────────── */
footer { background: var(--deep); color: rgba(255,255,255,.5); padding: 4rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .footer-logo { font-family: var(--font-serif); font-size: 1.1rem; color: rgba(255,255,255,.88); font-weight: 700; margin-bottom: .35rem; }
.footer-brand p { font-size: .78rem; line-height: 1.6; color: rgba(255,255,255,.4); }
.footer-col h5 { font-family: var(--font-body); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: rgba(255,255,255,.4); margin-bottom: .85rem; }
.footer-link { display: block; font-size: .82rem; color: rgba(255,255,255,.5); padding: .2rem 0; transition: color .2s; }
.footer-link:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: flex-start; gap: 1.5rem; flex-wrap: wrap; }
.footer-copy { font-size: .72rem; }
.footer-disclaimer { font-size: .68rem; color: rgba(255,255,255,.25); max-width: 480px; line-height: 1.55; }

/* ── Utilities ───────────────────────────────────────────────── */
.mt-1{margin-top:.5rem} .mt-2{margin-top:1rem} .mt-3{margin-top:1.5rem} .mt-4{margin-top:2rem} .mt-5{margin-top:3rem}
.mb-1{margin-bottom:.5rem} .mb-2{margin-bottom:1rem} .mb-3{margin-bottom:1.5rem} .mb-4{margin-bottom:2rem}
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; }

/* Print */
@media print { #site-nav, footer, .nav-hamburger { display: none; } }
