/* ============================================================
   Outspoken Improv - outspokenimprov.com
   Design system: brand teal #5C9BAA, Archivo variable type,
   pill interactives / 20px surfaces, restrained motion.
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Archivo";
  src: url("assets/fonts/archivo-var.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("assets/fonts/archivo-var-italic.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-style: italic;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --brand: #5d9dab;        /* exact logo teal: graphic surfaces, marks, accents */
  --brand-strong: #4a8390; /* hover shade of brand surfaces */
  --brand-deep: #427d8b;   /* teal surfaces carrying white text (4.6:1) */
  --accent: #1f5966;       /* interactive: buttons, links (7.8:1 on white) */
  --accent-hover: #164650;
  --ink: #12272b;          /* headings (14.7:1) */
  --body: #456268;         /* body copy (6.6:1) */
  --faint: #5a757c;        /* meta text (4.6:1) */
  --bg: #f5f9fa;
  --paper: #ffffff;
  --tint: #ebf3f4;         /* teal-tinted wash */
  --line: #dde7e9;
  --dark: #153137;         /* footer + dark panels */
  --dark-ink: #ebf3f4;
  --dark-meta: #9fbfc6;    /* muted text on dark (7:1) */
  --dark-line: #23464d;    /* hairline on dark panels */

  --r-surface: 20px;       /* surfaces: 20px. interactives: full pill. */
  --r-pill: 999px;

  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --shadow-soft: 0 24px 60px -24px rgba(20, 51, 60, 0.18);
  --shadow-lift: 0 10px 30px -12px rgba(20, 51, 60, 0.22);

  --w-wide: 76rem;
  --w-copy: 65ch;
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Archivo", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-hover); }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.06; margin: 0 0 0.6em; letter-spacing: -0.025em; }
p { margin: 0 0 1em; max-width: var(--w-copy); }
::selection { background: var(--brand); color: #fff; }

.icon { width: 1.25em; height: 1.25em; flex: none; fill: currentColor; }

.wrap { max-width: var(--w-wide); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }

section { padding-block: clamp(4.5rem, 9vw, 7.5rem); }

.h2 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 800;
  font-stretch: 105%;
  letter-spacing: -0.03em;
  max-width: 22ch;
}
.lede { font-size: clamp(1.125rem, 1.8vw, 1.3rem); line-height: 1.6; }

/* ---------- Reveal motion ---------- */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001s !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 0;
  border-radius: var(--r-pill);
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  font: inherit;
  font-weight: 640;
  font-size: 1rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.45s var(--ease), color 0.45s var(--ease),
              transform 0.45s var(--ease), border-color 0.45s var(--ease);
}
.btn:active { transform: scale(0.98); }
.btn .btn-orb {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--r-pill);
  display: grid;
  place-items: center;
  flex: none;
  transition: transform 0.45s var(--ease);
}
.btn .btn-orb .icon { width: 1.05rem; height: 1.05rem; }
.btn:hover .btn-orb { transform: translate(2px, -1px); }

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; }
.btn-primary .btn-orb { background: rgba(255, 255, 255, 0.16); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--brand); color: var(--ink); }
.btn-ghost .btn-orb { background: var(--tint); color: var(--accent); }

.btn:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible { border-radius: var(--r-pill); }

/* ---------- Header ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.45s var(--ease);
}
.site-head.scrolled { border-bottom-color: var(--line); }
.site-head .bar {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
  height: 76px;
}
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}
.brand-lockup .mark { width: 40px; height: 40px; flex: none; }
.brand-lockup .word {
  font-weight: 870;
  font-stretch: 108%;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}
.brand-lockup .word small {
  display: block;
  font-size: 0.62em;
  font-weight: 700;
  letter-spacing: 0.34em;
  color: var(--accent);
}
.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(1.05rem, 2.1vw, 1.9rem);
}
.site-nav a { white-space: nowrap; }
.site-nav a.navlink {
  color: var(--ink);
  text-decoration: none;
  font-weight: 560;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  opacity: 0.86;
  transition: opacity 0.3s var(--ease), color 0.3s var(--ease);
}
.site-nav a.navlink:hover { opacity: 1; color: var(--accent); }
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  color: var(--ink);
  padding: 0.5rem;
  cursor: pointer;
}
.nav-toggle .icon { width: 1.6rem; height: 1.6rem; }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(2.5rem, 5vw, 5rem) clamp(3.5rem, 6vw, 5.5rem); }
.hero .grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.3rem, 5.6vw, 4.6rem);
  font-weight: 860;
  font-stretch: 107%;
  letter-spacing: -0.035em;
  line-height: 0.99;
  max-width: 22ch;
  margin-bottom: 0.45em;
}
.hero h1 em {
  font-style: italic;
  font-weight: 780;
  color: var(--accent);
  line-height: 1.1;
  padding-bottom: 0.06em;
}
.hero .lede { max-width: 46ch; margin-bottom: 2rem; }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }

/* Brand panel: the Outspoken logo artwork */
.brand-panel {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: auto;
  aspect-ratio: 1;
  border-radius: var(--r-surface);
  box-shadow: var(--shadow-soft);
  justify-self: end;
}

/* ---------- Industries strip ---------- */
.industries { padding-block: 0 clamp(3rem, 5vw, 4rem); }
.industries .row {
  border-top: 1px solid var(--line);
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2.2rem;
  align-items: baseline;
}
.industries .label { font-size: 0.95rem; font-weight: 640; color: var(--ink); }
.industries li {
  list-style: none;
  font-size: 0.95rem;
  font-weight: 560;
  color: var(--faint);
  letter-spacing: 0.01em;
}
.industries ul { display: contents; margin: 0; padding: 0; }

/* ---------- Why improv ---------- */
.why .top { max-width: 56rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.principles { border-top: 1px solid var(--line); }
.principle {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 16rem) minmax(0, 1fr);
  gap: 1.5rem 2.5rem;
  padding-block: 2.1rem;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.principle .num {
  font-weight: 800;
  font-stretch: 110%;
  font-size: 1rem;
  color: var(--brand);
  letter-spacing: 0.08em;
  padding-top: 0.35rem;
}
.principle h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 800;
  font-stretch: 106%;
  margin: 0;
}
.principle h3 span { color: var(--accent); font-style: italic; }
.principle p { margin: 0.15rem 0 0; }

/* ---------- Outcomes ---------- */
.outcomes { background: var(--paper); border-block: 1px solid var(--line); }
.outcomes .head-row { margin-bottom: clamp(2.5rem, 4vw, 3.5rem); }
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-surface);
  overflow: hidden;
}
.outcome {
  background: var(--paper);
  padding: 2rem 1.9rem 1.9rem;
  transition: background-color 0.5s var(--ease);
}
.outcome:hover { background: var(--tint); }
.outcome .icon { width: 1.7rem; height: 1.7rem; color: var(--accent); margin-bottom: 1.1rem; }
.outcome h3 { font-size: 1.13rem; font-weight: 700; margin-bottom: 0.35rem; letter-spacing: -0.015em; }
.outcome p { font-size: 0.98rem; margin: 0; line-height: 1.55; }

/* ---------- Workshops ---------- */
.workshops .intro { max-width: 56rem; margin-bottom: clamp(2.5rem, 4vw, 3.5rem); }
.workshop-list { display: grid; gap: 1.25rem; }
.workshop {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-surface);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 1.5rem 3rem;
  transition: box-shadow 0.6s var(--ease), transform 0.6s var(--ease), border-color 0.6s var(--ease);
}
.workshop:hover { box-shadow: var(--shadow-soft); transform: translateY(-3px); border-color: #cfe0e5; }
.workshop h3 {
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  font-weight: 800;
  font-stretch: 105%;
  margin-bottom: 0.5rem;
  max-width: 16ch;
}
.workshop .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}
.workshop .meta span { display: inline-flex; align-items: center; gap: 0.42rem; }
.workshop .meta .icon { width: 1rem; height: 1rem; }
.workshop .body p:first-child { margin-top: 0.15rem; }
.practice { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.1rem; }
.practice li {
  list-style: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--tint);
  border-radius: var(--r-pill);
  padding: 0.38rem 0.9rem;
}
.practice ul { display: contents; padding: 0; margin: 0; }
.workshop-note {
  margin-top: 1.25rem;
  background: var(--brand-deep);
  border-radius: var(--r-surface);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
}
.workshop-note h3 {
  color: #fff;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 830;
  font-stretch: 106%;
  margin: 0;
  max-width: 24ch;
}
.workshop-note p { color: #fff; font-weight: 560; font-size: 1.05rem; margin: 0.35rem 0 0; max-width: 52ch; }
.workshop-note .btn-primary { background: #fff; color: var(--accent); }
.workshop-note .btn-primary:hover { background: var(--tint); color: var(--accent-hover); }
.workshop-note .btn-primary .btn-orb { background: var(--tint); color: var(--accent); }

/* ---------- What to expect ---------- */
.expect { background: var(--paper); border-block: 1px solid var(--line); }
.expect .grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
.steps { counter-reset: step; display: grid; gap: 0; margin-top: 2.25rem; }
.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  gap: 1.4rem;
  padding-block: 1.6rem;
  border-top: 1px solid var(--line);
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-weight: 830;
  font-stretch: 112%;
  font-size: 1.05rem;
  color: var(--brand);
  padding-top: 0.2rem;
  letter-spacing: 0.06em;
}
.step h3 { font-size: 1.22rem; font-weight: 720; margin-bottom: 0.3rem; }
.step p { margin: 0; font-size: 1rem; }
.reassure {
  background: var(--dark);
  color: var(--dark-ink);
  border-radius: var(--r-surface);
  padding: clamp(2rem, 4vw, 3rem);
  position: sticky;
  top: 108px;
}
.reassure .icon-q { width: 2.2rem; height: 2.2rem; color: var(--brand); margin-bottom: 1.4rem; }
.reassure blockquote {
  margin: 0 0 0.9rem;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 780;
  font-stretch: 104%;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
}
.reassure .attribution { font-size: 0.98rem; color: var(--dark-meta); margin-bottom: 2rem; }
.reassure ul { margin: 0; padding: 0; display: grid; gap: 0.85rem; }
.reassure li {
  list-style: none;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 1.02rem;
  font-weight: 500;
}
.reassure li .icon { color: var(--brand); margin-top: 0.22rem; }

/* ---------- Testimonials ---------- */
.voices .spotlight {
  max-width: 58rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.voices .spotlight blockquote {
  margin: 0 0 1.1rem;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 780;
  font-stretch: 104%;
  letter-spacing: -0.028em;
  line-height: 1.14;
  color: var(--ink);
}
.voices .spotlight blockquote span { color: var(--accent); font-style: italic; }
.voice-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.voice {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-surface);
  padding: 1.9rem 2rem;
}
.voice blockquote { margin: 0 0 1rem; font-size: 1.08rem; line-height: 1.6; color: var(--ink); font-weight: 520; }
.attribution { font-size: 0.92rem; font-weight: 620; color: var(--faint); letter-spacing: 0.01em; }

/* ---------- About ---------- */
.about { background: var(--paper); border-block: 1px solid var(--line); }
.about .grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.portrait-card {
  background: var(--brand-deep);
  border-radius: var(--r-surface);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 108px;
}
.portrait-card img {
  width: 100%;
  border-radius: calc(var(--r-surface) - 8px);
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
}
.portrait-card figcaption {
  color: #fff;
  padding: 1rem 0.6rem 0.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.portrait-card figcaption small {
  display: block;
  font-weight: 560;
  font-size: 0.85em;
  opacity: 0.9;
  letter-spacing: 0.02em;
}
.about .creds { margin: 1.75rem 0 0; padding: 0; display: grid; gap: 0.85rem; }
.about .creds li { list-style: none; display: flex; gap: 0.85rem; align-items: flex-start; color: var(--ink); font-weight: 540; }
.about .creds li .icon { color: var(--accent); margin-top: 0.24rem; }

/* ---------- FAQ ---------- */
.faq .grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0.25rem;
  font-weight: 680;
  font-size: 1.13rem;
  color: var(--ink);
  letter-spacing: -0.015em;
  transition: color 0.3s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent); }
.faq summary .icon {
  color: var(--accent);
  transition: transform 0.5s var(--ease);
  width: 1.1rem; height: 1.1rem;
}
.faq details[open] summary .icon { transform: rotate(180deg); }
.faq .answer { padding: 0 0.25rem 1.5rem; }
.faq .answer p { margin-bottom: 0.6em; }
.faq .answer p:last-child { margin-bottom: 0; }

/* ---------- Booking ---------- */
.book { background: var(--dark); }
.book .grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
.book .h2, .book h3 { color: #fff; }
.book .lede { color: var(--dark-meta); }
.book .contact-alt { margin-top: 2.25rem; display: grid; gap: 1rem; }
.book .contact-alt a, .book .contact-alt span {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--dark-ink);
  font-weight: 560;
  text-decoration: none;
  font-size: 1.05rem;
}
.book .contact-alt a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.book .contact-alt .icon { color: var(--brand); }

.booking-form {
  background: var(--paper);
  border-radius: var(--r-surface);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  box-shadow: var(--shadow-soft);
}
.booking-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: grid; gap: 0.4rem; margin-bottom: 1.1rem; }
.field label { font-weight: 660; font-size: 0.95rem; color: var(--ink); letter-spacing: -0.005em; }
.field label .opt { font-weight: 520; color: var(--faint); font-size: 0.88em; }
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 0.78rem 1rem;
  width: 100%;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
}
.field textarea { resize: vertical; min-height: 7.5rem; }
.field input::placeholder, .field textarea::placeholder { color: #7d98a1; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(92, 155, 170, 0.18);
}
.field input.invalid, .field textarea.invalid { border-color: #b3453c; }
.field .err { color: #9e352d; font-size: 0.88rem; font-weight: 560; display: none; }
.field.show-err .err { display: block; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-foot { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; margin-top: 0.5rem; }
.form-foot .fine { font-size: 0.9rem; color: var(--faint); margin: 0; }
.btn[disabled] { opacity: 0.65; cursor: default; }
.btn .spin { animation: spin 0.9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-status {
  display: none;
  align-items: flex-start;
  gap: 0.8rem;
  border-radius: 12px;
  padding: 1rem 1.15rem;
  margin-top: 1.1rem;
  font-weight: 560;
  font-size: 0.98rem;
}
.form-status.show { display: flex; }
.form-status.ok { background: #e8f4ec; color: #1d5c34; }
.form-status.ok .icon { color: #2e7d4b; }
.form-status.bad { background: #f9ebe9; color: #8c2f27; }
.form-status.bad .icon { color: #b3453c; }
.form-status .icon { margin-top: 0.15rem; }
.form-status p { margin: 0; }
.form-status a { color: inherit; font-weight: 700; }

.form-success {
  display: none;
  text-align: left;
  padding: 1rem 0;
}
.form-success.show { display: block; }
.form-success .icon { width: 2.6rem; height: 2.6rem; color: var(--accent); margin-bottom: 1rem; }
.form-success h3 { font-size: 1.6rem; font-weight: 800; font-stretch: 105%; color: var(--ink); }
.form-success p { color: var(--body); }

/* ---------- Footer ---------- */
.site-foot { background: var(--dark); color: var(--dark-ink); border-top: 1px solid var(--dark-line); }
.site-foot .top {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 4fr) auto;
  gap: 2.5rem;
  padding-block: clamp(3rem, 6vw, 4.5rem) 2.5rem;
}
.site-foot .brand-lockup { color: #fff; }
.site-foot .brand-lockup .word small { color: var(--brand); }
.site-foot .tagline {
  margin-top: 1.4rem;
  font-weight: 830;
  font-stretch: 108%;
  font-size: 1.3rem;
  letter-spacing: 0.14em;
  color: var(--brand);
}
.site-foot nav { display: grid; gap: 0.7rem; align-content: start; }
.site-foot nav a, .site-foot .meta a {
  color: var(--dark-ink);
  text-decoration: none;
  font-weight: 540;
  opacity: 0.92;
}
.site-foot nav a:hover, .site-foot .meta a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.site-foot .meta { display: grid; gap: 0.7rem; align-content: start; }
.site-foot .meta span { display: inline-flex; gap: 0.7rem; align-items: center; }
.site-foot .meta .icon { color: var(--brand); }
.site-foot .legal {
  border-top: 1px solid var(--dark-line);
  padding-block: 1.5rem;
  font-size: 0.9rem;
  color: var(--dark-meta);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero .grid { grid-template-columns: 1fr; }
  .brand-panel { max-width: 30rem; }
  .expect .grid, .about .grid, .faq .grid, .book .grid { grid-template-columns: 1fr; }
  .reassure, .portrait-card { position: static; }
  .portrait-card { max-width: 22rem; }
  .outcome-grid { grid-template-columns: 1fr 1fr; }
  .workshop { grid-template-columns: 1fr; gap: 1rem; }
  .workshop h3 { max-width: none; }
  .site-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem clamp(1.25rem, 4vw, 2.5rem) 1.75rem;
    gap: 1.1rem;
    display: none;
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .site-foot .top { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 2rem 2.5rem; }
  .site-foot .top > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .voice-row { grid-template-columns: 1fr; }
  .outcome-grid { grid-template-columns: 1fr; }
  .booking-form .row2 { grid-template-columns: 1fr; }
  .principle { grid-template-columns: 1fr; gap: 0.4rem; padding-block: 1.75rem; }
  .principle .num { padding: 0; }
  .site-foot .top { grid-template-columns: 1fr; gap: 2rem; }
  .step { grid-template-columns: 2.6rem 1fr; gap: 1rem; }
}
@media (max-width: 380px) {
  .hero h1 { font-size: clamp(1.6rem, 9.7vw, 2.3rem); }
}
