/* ============================================================
   NineMind Bodywork — Global Stylesheet
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --royal-blue: #132b4c;
  --royal-blue-dark: #0b1d34;
  --royal-blue-light: #1e3a5c;
  --slate: #415666;
  --gold: #cba35a;
  --gold-light: #dbb96e;
  --gold-pale: #f5ecd4;
  --cream: #f4efe6;
  --cream-dark: #e8e2d5;
  --text-dark: #1c1c1c;
  --text-mid: #444;
  --text-muted: #777;
  --white: #ffffff;

  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;

  --max-width: 1100px;
  --section-pad: 6rem 2rem;
  --radius: 4px;
  --transition: 0.25s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

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

/* ---------- Layout Utilities ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: var(--section-pad); }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--dark { background: var(--royal-blue); color: var(--cream); }
.section--blue-light { background: var(--royal-blue-dark); color: var(--cream); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--royal-blue-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--royal-blue-dark);
}
.btn-outline-dark {
  background: transparent;
  color: var(--royal-blue);
  border-color: var(--royal-blue);
}
.btn-outline-dark:hover {
  background: var(--royal-blue);
  color: var(--cream);
}

/* ---------- Nav ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-nav.scrolled {
  background: var(--royal-blue-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  margin-left: -40px;
  position: relative;
  z-index: 1;
}
.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--cream);
  letter-spacing: 0.05em;
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.52rem;
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
}
.logo-num {
  width: 27px;
  height: 27px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: 0;
  font-family: var(--font-heading);
}
.logo-octopus {
  height: 84px;
  width: auto;
  color: var(--gold);
  flex-shrink: 0;
}
.footer-brand .logo-octopus { height: 34px; }
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  transition: opacity var(--transition), color var(--transition);
}
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-links .btn { opacity: 1; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  background: var(--royal-blue-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 6rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(26,42,94,0.8) 0%, transparent 50%);
}
.hero-bg-art {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  max-width: 680px;
  opacity: 0.07;
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 640px;
}
.hero h1 {
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-lead {
  font-size: 1.15rem;
  color: rgba(248,244,236,0.8);
  margin-bottom: 2.5rem;
  line-height: 1.85;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- Divider ---------- */
.gold-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.gold-divider.center { margin: 1.5rem auto; }

/* ---------- Intro / What Is ---------- */
.intro-grid { gap: 5rem; }
.intro-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.circle-art {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.circle-art::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.15);
}
.circle-art .inner-symbol {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.6;
  user-select: none;
}

/* ---------- Pillars ---------- */
.pillar-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  transition: border-color var(--transition), transform var(--transition);
}
.pillar-card:hover {
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-4px);
}
.pillar-icon {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  color: var(--gold);
}
.pillar-card h3 {
  color: var(--cream);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.pillar-card p { color: rgba(248,244,236,0.75); font-size: 0.95rem; }

/* ---------- For Whom ---------- */
.for-whom-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.for-whom-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-mid);
}
.for-whom-list li::before {
  content: '·';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: 0 8px 40px rgba(26,42,94,0.1);
  transform: translateY(-3px);
}
.service-card.featured {
  border-color: var(--gold);
  background: var(--gold-pale);
}
.service-card .badge {
  position: absolute;
  top: -0.75rem;
  left: 2rem;
  background: var(--gold);
  color: var(--royal-blue-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.75rem;
  border-radius: 2px;
}
.service-card h3 {
  font-size: 1.4rem;
  color: var(--royal-blue);
  margin-bottom: 0.25rem;
}
.service-card .duration {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.service-card .price {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--royal-blue);
  margin-bottom: 1rem;
}
.service-card p { font-size: 0.95rem; color: var(--text-mid); }

/* ---------- Testimonial/Quote ---------- */
.pull-quote {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.pull-quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.pull-quote cite {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--cream-dark);
  padding: 1.5rem 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
}
.faq-question h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--royal-blue);
  font-weight: 400;
}
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform var(--transition);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
}
.faq-answer p {
  padding-top: 1rem;
  font-size: 0.97rem;
  color: var(--text-mid);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-answer { max-height: 400px; }

/* ---------- Contact Form ---------- */
.contact-form {
  max-width: 580px;
  margin: 0 auto;
}
.form-group { margin-bottom: 1.5rem; }
label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
input, textarea, select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  transition: border-color var(--transition);
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--royal-blue);
}
textarea { resize: vertical; min-height: 140px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--royal-blue-dark);
  color: rgba(248,244,236,0.65);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.footer-brand .nav-logo { display: inline-flex; margin-bottom: 1rem; }
.footer-brand .nav-logo-text { margin-left: 0.35rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  opacity: 0.65;
  transition: opacity var(--transition);
}
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom .disclaimer {
  font-size: 0.78rem;
  opacity: 0.5;
  max-width: 500px;
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: var(--royal-blue-dark);
  padding: 10rem 2rem 5rem;
  text-align: center;
}
.page-hero h1 { color: var(--cream); }
.page-hero p {
  max-width: 520px;
  margin: 1.5rem auto 0;
  color: rgba(248,244,236,0.75);
  font-size: 1.1rem;
}

/* ---------- What to Expect Steps ---------- */
.steps-list { max-width: 740px; margin: 0 auto; counter-reset: step; }
.step-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
  counter-increment: step;
}
.step-content h3 { color: var(--royal-blue); margin-bottom: 0.5rem; }
.step-content p { color: var(--text-mid); }

/* ---------- About Page ---------- */
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: rgba(248,244,236,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.2);
}

/* ---------- Booking Section ---------- */
.booking-box {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}
.booking-box h3 { color: var(--royal-blue); margin-bottom: 1rem; }
.booking-box p { color: var(--text-mid); margin-bottom: 2rem; }

/* ============================================================
   Homepage v2 — New Components
   ============================================================ */

/* Hero load-in animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
.hero-animate > * {
  opacity: 0;
  animation: fadeUp 0.75s ease forwards;
}
.hero-animate > *:nth-child(1) { animation-delay: 0.08s; }
.hero-animate > *:nth-child(2) { animation-delay: 0.22s; }
.hero-animate > *:nth-child(3) { animation-delay: 0.36s; }
.hero-animate > *:nth-child(4) { animation-delay: 0.50s; }

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- Hero v2 ---- */
.hero-v2 {
  min-height: 100svh;
  background: var(--royal-blue-dark);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 9rem 2rem 6rem;
}
.hero-v2::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 75% 45%, rgba(201,168,76,0.06) 0%, transparent 100%),
    radial-gradient(ellipse 50% 60% at 10% 70%, rgba(17,29,69,0.7) 0%, transparent 100%);
  pointer-events: none;
}
.hero-v2-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.hero-v2-content {
  max-width: 620px;
}
.hero-v2 h1 {
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.hero-v2 h1 em { color: var(--gold); font-style: italic; }
.hero-v2 .hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(248,244,236,0.78);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-v2 .hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero-v2 .hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(248,244,236,0.35);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* Network SVG */
.hero-network-svg {
  position: absolute;
  right: -3%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  max-width: 560px;
  pointer-events: none;
  z-index: 0;
}

/* ---- Statement Banner ---- */
.statement-banner {
  background: var(--cream);
  padding: 6rem 2rem;
  text-align: center;
}
.statement-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--royal-blue);
  line-height: 1.15;
  font-weight: 300;
}
.statement-headline em {
  color: var(--gold);
  font-style: italic;
}
.statement-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.02rem);
  color: var(--text-mid);
  max-width: 500px;
  margin: 1.75rem auto 0;
  line-height: 1.75;
}

/* ---- What Is NineMind ---- */
.what-is-layout {
  max-width: 680px;
}
.what-is-body p { color: var(--text-mid); }
.what-is-visual { display: none; }
.node-diagram { width: 100%; max-width: 380px; }

/* ---- Differentiation ---- */
.diff-section {
  background: var(--royal-blue);
  padding: var(--section-pad);
}
.diff-statements {
  max-width: 780px;
  margin: 0 auto;
}
.diff-item {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 3rem;
  align-items: start;
}
.diff-item:last-child { border-bottom: none; padding-bottom: 0; }
.diff-item:first-child { padding-top: 0; }
.diff-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
  padding-top: 0.3rem;
}
.diff-claim {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.diff-explain {
  font-size: 0.97rem;
  color: rgba(248,244,236,0.65);
  margin: 0;
  line-height: 1.75;
}

/* ---- How It Works (4 Steps) ---- */
.how-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.how-step {
  padding: 3rem;
  border-bottom: 1px solid var(--cream-dark);
  border-right: 1px solid var(--cream-dark);
  position: relative;
}
.how-step:nth-child(2n) { border-right: none; }
.how-step:nth-child(3), .how-step:nth-child(4) { border-bottom: none; }
.how-step-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 1.25rem;
  user-select: none;
}
.how-step h3 {
  font-size: 1.3rem;
  color: var(--royal-blue);
  margin-bottom: 0.75rem;
}
.how-step p { font-size: 0.95rem; color: var(--text-mid); margin: 0; }

/* ---- How It Works — 5-column collaborative process ---- */
.how-steps-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 3rem;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
}
.how-step-5 {
  padding: 2.25rem 1.25rem;
  text-align: center;
  border-right: 1px solid var(--cream-dark);
  background: var(--white);
}
.how-step-5:last-child { border-right: none; }
.step-icon-5 {
  width: 42px;
  height: 42px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 50%;
  color: var(--gold);
}
.how-step-5 h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--royal-blue);
  margin-bottom: 0.75rem;
}
.how-step-5 p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.how-quote-bar {
  text-align: center;
  padding: 2.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
}
.how-quote-bar p {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  color: var(--royal-blue);
  margin: 0;
}
.how-quote-bar em { color: var(--gold); font-style: italic; }

/* ---- Who It's For ---- */
.for-whom-intro {
  max-width: 660px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.recognition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.recognition-item {
  padding: 2rem 1.75rem;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.recognition-item:hover {
  border-color: rgba(26,42,94,0.25);
  box-shadow: 0 6px 28px rgba(26,42,94,0.07);
  transform: translateY(-3px);
}
.recognition-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--royal-blue);
  margin-bottom: 0.75rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  line-height: 1.2;
}
.recognition-item p {
  font-size: 0.97rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.7;
}

/* ---- What to Expect (brief) ---- */
.expect-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
.expect-steps::before {
  content: '';
  position: absolute;
  top: 1.6rem;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(to right, var(--gold) 0%, rgba(201,168,76,0.2) 100%);
}
.expect-step {
  position: relative;
  text-align: center;
}
.expect-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  margin: 0 auto 1.25rem;
}
.expect-step h4 {
  font-size: 1rem;
  color: var(--royal-blue);
  margin-bottom: 0.5rem;
}
.expect-step p {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ---- About Austin ---- */
.about-austin-section {
  background: var(--royal-blue-dark);
  padding: var(--section-pad);
}
.about-austin-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
}
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--royal-blue-light) 0%, var(--royal-blue) 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(201,168,76,0.18);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2rem;
  overflow: hidden;
  position: relative;
}
.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(201,168,76,0.06) 0%, transparent 70%);
}
.about-photo-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248,244,236,0.3);
  position: relative;
  z-index: 1;
}
.about-bio .eyebrow { margin-bottom: 0.75rem; }
.about-bio h2 { color: var(--cream); margin-bottom: 0.25rem; }
.about-bio .about-title {
  font-size: 0.85rem;
  color: rgba(201,168,76,0.7);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  display: block;
}
.about-bio p { color: rgba(248,244,236,0.75); }

/* ---- FAQ on homepage ---- */
.faq-item.light { border-bottom-color: var(--cream-dark); }
.faq-item.light .faq-question h4 { color: var(--royal-blue); }
.faq-item.light .faq-answer p { color: var(--text-mid); }

/* ---- Formspree Ajax — form state styles ---- */
.form-success-msg {
  background: var(--gold-pale);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.form-success-msg p {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--royal-blue);
  margin: 0;
  line-height: 1.4;
}
.form-error-msg:not(:empty) {
  color: #8b1a1a;
  font-size: 0.88rem;
  background: rgba(139,26,26,0.06);
  border: 1px solid rgba(139,26,26,0.2);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
}
.field-error:not(:empty) {
  display: block;
  color: #8b1a1a;
  font-size: 0.82rem;
  margin-top: 0.35rem;
}
input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: rgba(139,26,26,0.5);
  background: rgba(139,26,26,0.02);
}

/* ---- Photo — ready for real images ---- */
/* Homepage about section: replace the .about-photo div with this img tag */
.about-photo-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  display: block;
}
/* About page: replace the .about-photo-placeholder div with this img tag */
.practitioner-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  display: block;
  border: 1px solid rgba(201,168,76,0.2);
}

/* ---- Final CTA ---- */
.final-cta {
  background: var(--royal-blue);
  padding: var(--section-pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(201,168,76,0.05) 0%, transparent 100%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 0 auto;
}
.final-cta h2 { color: var(--cream); margin-bottom: 1rem; }
.final-cta p { color: rgba(248,244,236,0.7); margin-bottom: 2.5rem; font-size: 1.05rem; }
.final-cta .cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta .cta-note {
  font-size: 0.8rem;
  color: rgba(248,244,236,0.35);
  margin-top: 1.5rem;
  letter-spacing: 0.06em;
}

/* ============================================================
   Responsive — base breakpoints
   ============================================================ */
@media (max-width: 900px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .for-whom-list { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-bg-art { width: 80%; opacity: 0.04; }
  .circle-art { width: 260px; height: 260px; }
  /* homepage v2 */
  .what-is-layout { grid-template-columns: 1fr; }
  .what-is-visual { position: static; }
  .diff-item { grid-template-columns: 1fr; gap: 0.75rem; }
  .how-steps-grid { grid-template-columns: 1fr; }
  .how-step { border-right: none !important; }
  .how-step:nth-child(3) { border-bottom: 1px solid var(--cream-dark) !important; }
  .how-steps-5 { grid-template-columns: repeat(3, 1fr); }
  .how-step-5:nth-child(3) { border-right: none; }
  .how-step-5:nth-child(4) { border-top: 1px solid var(--cream-dark); }
  .how-step-5:nth-child(5) { border-top: 1px solid var(--cream-dark); border-right: none; }
  .expect-steps::before { display: none; }
  .recognition-grid { grid-template-columns: 1fr 1fr; }
  .about-austin-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo { aspect-ratio: 4/3; max-width: 400px; }
  .hero-network-svg { width: 70%; max-width: 70%; opacity: 0.7; }
}

@media (max-width: 640px) {
  :root { --section-pad: 4rem 1.25rem; }
  .nav-links { display: none; flex-direction: column; gap: 1rem; }
  .nav-links.open {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--royal-blue-dark);
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 99;
  }
  .nav-toggle { display: flex; z-index: 101; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .step-item { flex-direction: column; gap: 1rem; }
  .booking-box { padding: 2rem 1.5rem; }
  /* homepage v2 mobile */
  .hero-v2 { padding: 8rem 1.25rem 5rem; }
  .hero-v2 .hero-cta .btn { text-align: center; }
  .statement-banner { padding: 4rem 1.25rem; }
  .how-steps-5 { grid-template-columns: 1fr 1fr; }
  .how-step-5 { border-right: 1px solid var(--cream-dark); }
  .how-step-5:nth-child(2n) { border-right: none !important; }
  .how-step-5:nth-child(n+3) { border-top: 1px solid var(--cream-dark); }
  .how-step-5:last-child { grid-column: 1 / -1; border-right: none !important; }
  .recognition-grid { grid-template-columns: 1fr; }
  .expect-steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .how-step { padding: 2rem 1.25rem; }
  .how-step-num { font-size: 3rem; }
  .diff-item { padding: 2rem 0; }
  .hero-network-svg { width: 100%; max-width: none; right: -10%; opacity: 0.5; }
  .hero-v2 .hero-scroll-hint { display: none; }
  .final-cta .cta-group { flex-direction: column; }
  .final-cta .cta-group .btn { text-align: center; }
  /* Mobile client cards: title-only, tap to see full page */
  .recognition-item { cursor: pointer; }
  .recognition-item p { display: none; }
  .recognition-item strong {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
}

/* ---- Hover-reveal for client profile cards (JS-driven, desktop only) ---- */
body.has-hover .recognition-item { cursor: pointer; }

body.has-hover .recognition-item p {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin: 0;
  transition: opacity 0.3s ease, max-height 0.4s ease;
}
body.has-hover .recognition-item.hovered p {
  opacity: 1;
  max-height: 260px;
}
body.has-hover .recognition-item strong {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
  transition: margin-bottom 0.3s ease, padding-bottom 0.3s ease;
}
body.has-hover .recognition-item.hovered strong {
  margin-bottom: 0.75rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}

/* ---- Hero brand redesign ---- */
.hero-location-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
  margin-bottom: 2rem;
}
.hero-brand-name {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 7.5rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1;
  margin: 0 0 0.15em;
}
.hero-brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1.8vw, 0.88rem);
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}
.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: rgba(244,239,230,0.88);
  margin-bottom: 0.75rem;
  line-height: 1.45;
  font-weight: 300;
}

/* ---- Session steps (How it works) ---- */
.session-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
}
.session-step-num {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.session-step h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--royal-blue);
  margin-bottom: 0.5rem;
}
.session-step p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 640px) {
  .session-steps { grid-template-columns: 1fr; gap: 2rem; }
}
