/* ==========================================================================
   Catten Performance Coaching — Design System
   ========================================================================== */

:root {
  /* Color palette: navy (business credibility) + gold (energy/CTA) + sage (health/wellness) */
  --color-navy: #1C2B3A;
  --color-navy-light: #2D4257;
  --color-navy-50: rgba(28, 43, 58, 0.05);
  --color-navy-100: rgba(28, 43, 58, 0.1);

  --color-gold: #C89B4A;
  --color-gold-dark: #A87F38;
  --color-gold-light: #F3E4C6;

  --color-sage: #6B8F71;
  --color-sage-dark: #547059;
  --color-sage-light: #E4EDE5;

  --color-cream: #FAF7F2;
  --color-cream-dark: #F1EBE0;
  --color-white: #FFFFFF;

  --color-text: #1C2B3A;
  --color-text-muted: #5B6672;
  --color-border: #E5E0D6;

  /* Typography */
  --font-heading: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --max-width: 1160px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 8px rgba(28, 43, 58, 0.06);
  --shadow-md: 0 8px 24px rgba(28, 43, 58, 0.08);
  --shadow-lg: 0 20px 48px rgba(28, 43, 58, 0.12);

  --transition: 0.2s ease;
}

/* ---------- Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-navy);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { color: var(--color-text-muted); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section {
  padding: var(--space-2xl) 0;
}

/* ---------- Eyebrow / label ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: var(--space-sm);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-navy);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--color-navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-navy);
  box-shadow: var(--shadow-sm);
}

.btn-gold:hover {
  background: var(--color-gold-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border: 1.5px solid var(--color-navy);
}

.btn-outline:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn-outline-light {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--color-border);
}

/* backdrop-filter lives on a pseudo-element (not the header itself) so the
   header doesn't become a containing block for fixed-position descendants
   (the mobile nav overlay) — backdrop-filter/filter/transform on an
   ancestor pins position:fixed children to that ancestor's box instead of
   the viewport. */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding-top/bottom only (not shorthand "padding") — this element is
     also ".container", and a shorthand here would zero out the container's
     horizontal padding, pulling the whole header flush to the viewport
     edges on every breakpoint. */
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-mark {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}

.logo-mark span {
  color: var(--color-gold);
}

.logo-sub {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-navy);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--color-gold-dark);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  z-index: 200;
}

/* Mirrors the desktop nav-cta button, but only ever shown inside the open
   mobile menu (see the max-width:900px block below) — hidden here so it
   doesn't also render inline in the normal horizontal nav-links row on
   wider screens. */
.nav-mobile-cta {
  display: none;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  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 {
  position: relative;
  padding: var(--space-3xl) 0 var(--space-2xl);
  background:
    radial-gradient(circle at 85% 10%, rgba(200, 155, 74, 0.16), transparent 45%),
    radial-gradient(circle at 5% 95%, rgba(107, 143, 113, 0.14), transparent 45%),
    var(--color-cream);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(28, 43, 58, 0.08);
}

.hero::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(200, 155, 74, 0.25);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
}

.hero h1 {
  margin-bottom: var(--space-md);
}

.hero h1 em {
  font-style: normal;
  color: var(--color-gold-dark);
  position: relative;
}

.hero-lede {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 46ch;
  margin-bottom: var(--space-lg);
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.hero-trust {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.hero-trust-item {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-sage);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  box-shadow: var(--shadow-lg);
}

.hero-visual-inner {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  text-align: center;
  padding: var(--space-lg);
}

.hero-visual-inner .stat {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--color-gold);
  display: block;
}

.hero-visual-inner .stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}

.hero-visual-card {
  position: absolute;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.hero-visual-card.card-1 {
  top: 8%;
  left: -8%;
}

.hero-visual-card.card-2 {
  bottom: 6%;
  right: -10%;
}

.hero-visual-card svg {
  width: 22px;
  height: 22px;
  color: var(--color-sage);
  flex-shrink: 0;
}

.hero-visual-card-text {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.25;
}

/* ==========================================================================
   Pillars
   ========================================================================== */

.pillars-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-xl);
}

.pillars-header .eyebrow {
  justify-content: center;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.pillar-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.pillar-icon svg {
  width: 26px;
  height: 26px;
}

.pillar-card.business .pillar-icon { background: var(--color-navy-100); }
.pillar-card.business .pillar-icon svg { color: var(--color-navy); }

.pillar-card.health .pillar-icon { background: var(--color-sage-light); }
.pillar-card.health .pillar-icon svg { color: var(--color-sage-dark); }

.pillar-card.growth .pillar-icon { background: var(--color-gold-light); }
.pillar-card.growth .pillar-icon svg { color: var(--color-gold-dark); }

.pillar-card h3 {
  margin-bottom: 0.6rem;
}

/* ==========================================================================
   Philosophy / split section
   ========================================================================== */

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.split-reverse .split {
  grid-template-columns: 1.1fr 0.9fr;
}

.split-visual {
  background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
}

.split-visual::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(200, 155, 74, 0.25);
  top: -60px;
  right: -60px;
}

.split-visual::after {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  bottom: -40px;
  left: -40px;
}

.split-visual-quote {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.4;
}

.split-body .eyebrow { }

.split-list {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.split-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--color-text-muted);
}

.split-list svg {
  width: 20px;
  height: 20px;
  color: var(--color-sage);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ==========================================================================
   Process steps
   ========================================================================== */

.process {
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-lg);
}

.process .pillars-header h2,
.process .pillars-header p {
  color: var(--color-white);
}

.process .pillars-header p {
  color: rgba(255,255,255,0.7);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.process-grid.process-grid-3col {
  grid-template-columns: repeat(3, 1fr);
}

.process-step {
  position: relative;
  padding-top: var(--space-md);
}

.process-step-number {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-gold);
  border: 1px solid rgba(200,155,74,0.5);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.process-step h3 {
  color: var(--color-white);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.process-step p {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
}

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  background: linear-gradient(120deg, var(--color-sage-dark) 0%, var(--color-sage) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  color: var(--color-white);
}

.cta-band h2 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.cta-band p {
  color: rgba(255,255,255,0.85);
  max-width: 50ch;
  margin: 0 auto var(--space-lg);
}

.cta-band-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   Page header (interior pages)
   ========================================================================== */

.page-header {
  padding: var(--space-2xl) 0 var(--space-xl);
  background:
    radial-gradient(circle at 90% 0%, rgba(200, 155, 74, 0.14), transparent 50%),
    var(--color-cream);
  text-align: center;
}

.page-header .eyebrow {
  justify-content: center;
}

.page-header p {
  max-width: 56ch;
  margin: var(--space-sm) auto 0;
  font-size: 1.05rem;
}

/* ==========================================================================
   About page
   ========================================================================== */

.bio-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-2xl);
  align-items: start;
}

.bio-portrait {
  background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bio-portrait::before {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(200, 155, 74, 0.22);
  top: -70px;
  left: -70px;
}

.bio-portrait-initials {
  position: relative;
  z-index: 2;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 4.5rem;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.bio-content h2 {
  margin-bottom: var(--space-sm);
}

.bio-lede {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.5;
  padding-left: var(--space-md);
  border-left: 3px solid var(--color-gold);
  margin-bottom: var(--space-lg);
}

.bio-content p {
  margin-bottom: var(--space-sm);
}

.bio-content p:last-child {
  margin-bottom: 0;
}

.credentials-note {
  margin-top: var(--space-lg);
  background: var(--color-white);
  border: 1px dashed var(--color-gold);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.credentials-note strong {
  color: var(--color-navy);
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.value-item {
  padding: var(--space-md);
  border-left: 2px solid var(--color-gold);
}

.value-item h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

/* ==========================================================================
   Services page
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.services-grid.services-grid-3col {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1100px) {
  .services-grid.services-grid-3col {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-navy-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-navy);
}

.service-tag {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--color-sage-light);
  color: var(--color-sage-dark);
}

.service-card h3 {
  margin-bottom: 8px;
}

.service-card p {
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--space-md);
}

.service-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.service-list svg {
  width: 16px;
  height: 16px;
  color: var(--color-gold-dark);
  margin-top: 3px;
  flex-shrink: 0;
}

.service-card .btn {
  align-self: flex-start;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-md) 0;
}

.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

/* ==========================================================================
   Contact page
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--space-2xl);
  align-items: start;
}

/* Grid items default to min-width:auto, so a track can be pushed wider than
   its fr share by its own content's min-content size — around 1024px this
   was quietly overflowing the form column a few px past the viewport edge.
   min-width:0 lets the tracks actually honor the 1fr/1.15fr split. */
.contact-cards,
.contact-form-wrap {
  min-width: 0;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-card {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.contact-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-navy-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* The label+value text block next to the icon — a flex child, so it needs
   min-width:0 to actually shrink below its content size on narrow phones
   (~360px), where an unbroken string like the email address was pushing a
   few px past the viewport edge instead of wrapping. */
.contact-card-icon + div {
  min-width: 0;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-navy);
}

.contact-card-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-card-value {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-navy);
  overflow-wrap: anywhere;
}

.contact-card.coming-soon {
  opacity: 0.55;
}

.contact-card.coming-soon .contact-card-value::after {
  content: 'Coming soon';
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.location-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--space-md);
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.location-note svg {
  width: 18px;
  height: 18px;
  color: var(--color-sage);
  flex-shrink: 0;
}

.contact-form-wrap {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-group {
  margin-bottom: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-navy);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-cream);
  color: var(--color-text);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-gold);
}

.form-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
}

.form-success {
  display: none;
  background: var(--color-sage-light);
  color: var(--color-sage-dark);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: var(--space-sm);
}

.form-success.show {
  display: block;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--color-navy);
  color: rgba(255,255,255,0.7);
  padding: var(--space-2xl) 0 var(--space-md);
  margin-top: var(--space-2xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand .logo-mark {
  color: var(--color-white);
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  margin-top: var(--space-sm);
  max-width: 32ch;
  font-size: 0.9rem;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.68);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--color-gold);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: var(--space-sm);
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.footer-social svg {
  width: 17px;
  height: 17px;
  color: rgba(255,255,255,0.85);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 10px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    /* The full-width "Book a Free Consult" button (not just its outline
       sibling) has to go too — logo + this button + the hamburger together
       are wider than any phone viewport, which was pushing .nav-toggle
       off-screen and making the menu impossible to open. The same action
       is still one tap away via the floating consult button and the link
       added inside the open mobile menu below. */
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    position: fixed;
    inset: 0 0 0 30%;
    background: var(--color-navy);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-2xl);
    z-index: 150;
  }

  .nav-links.open a {
    color: var(--color-white);
    font-size: 1.3rem;
  }

  .nav-links.open .nav-mobile-cta {
    display: inline-flex;
    margin-top: var(--space-sm);
  }

  /* Higher specificity than ".nav-links.open a" above, so the CTA keeps its
     normal button look (navy-on-gold, button-scale text) instead of
     inheriting the plain white/1.3rem link styling meant for nav links. */
  .nav-links.open a.nav-mobile-cta {
    color: var(--color-navy);
    font-size: 0.85rem;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    padding: 0.7rem 1.2rem;
    /* The narrowest phones (~360px) don't have room for this label on one
       line inside the 70%-width mobile panel — wrapped text in a 999px
       pill reads as an odd blob, so this falls back to a normal rounded
       rectangle instead, which wraps cleanly at any width. */
    border-radius: var(--radius-md);
  }

  .hero-grid,
  .split,
  .split-reverse .split,
  .bio-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 340px;
    margin: 0 auto;
  }

  .pillars-grid,
  .services-grid,
  .services-grid.services-grid-3col,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .process-grid.process-grid-3col {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .process-grid,
  .process-grid.process-grid-3col {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .cta-band-actions .btn {
    width: 100%;
    /* .btn defaults to white-space:nowrap, which is fine when it can size
       to its own content — but forced to width:100% here, a longer label
       ("Take the Owner Performance Diagnostic") no longer fits on one line
       and was overflowing past the button's own right edge instead of
       wrapping. */
    white-space: normal;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   Owner Journey — Foundation section
   ========================================================================== */

.foundation-section {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
}

.foundation-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.foundation-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--space-md);
}

.foundation-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-navy);
  background: var(--color-navy-100);
  padding: 8px 16px;
  border-radius: 999px;
}

.foundation-visual {
  background: linear-gradient(160deg, var(--color-gold-light) 0%, var(--color-cream-dark) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.foundation-visual::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(28,43,58,0.12);
  top: -50px;
  left: -50px;
}

.foundation-visual-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}

.foundation-visual-icon svg {
  width: 40px;
  height: 40px;
  color: var(--color-gold-dark);
}

/* ==========================================================================
   Owner Journey — 5 Stage band (O-W-N-E-R)
   ========================================================================== */

.journey-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-sm);
}

.journey-stage {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-sm);
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.journey-stage:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.journey-stage-letter {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
}

.journey-stage.is-final .journey-stage-letter {
  background: var(--color-gold);
  color: var(--color-navy);
}

.journey-stage-name {
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.journey-stage-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.journey-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-border);
}

.journey-connector svg {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   Owner Journey — Roadmap (3 pillars x 9 areas)
   ========================================================================== */

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.roadmap-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-gold);
}

.roadmap-card.pillar-vision { border-top-color: var(--color-sage); }
.roadmap-card.pillar-velocity { border-top-color: var(--color-gold); }
.roadmap-card.pillar-value { border-top-color: var(--color-navy); }

.roadmap-card-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.roadmap-card h3 {
  margin-bottom: var(--space-sm);
}

.roadmap-card p {
  margin-bottom: var(--space-md);
  font-size: 0.94rem;
}

.roadmap-areas {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.roadmap-area {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-navy);
  background: var(--color-cream);
  padding: 9px 12px;
  border-radius: var(--radius-sm);
}

.roadmap-area-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ==========================================================================
   Placeholder callout (reuse pattern for bio / TBD content)
   ========================================================================== */

.placeholder-callout {
  background: var(--color-white);
  border: 1px dashed var(--color-gold);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: var(--space-md);
}

.placeholder-callout strong {
  color: var(--color-navy);
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

@media (max-width: 900px) {
  .foundation-grid {
    grid-template-columns: 1fr;
  }

  .journey-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .roadmap-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .journey-band {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Floating consult CTA
   ========================================================================== */

.floating-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 130;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-navy);
  background: var(--color-gold);
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
}

/* Toggled by js/script.js whenever the button's own fixed position would
   otherwise sit on top of another tappable element (a service card, a form
   button, footer text, ...) as the page scrolls underneath it — see the
   collision check in script.js for what this is standing in for. */
.floating-cta.is-hidden {
  opacity: 0;
  transform: translateY(12px) scale(0.92);
  pointer-events: none;
}

.floating-cta:hover {
  background: var(--color-gold-dark);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(28,43,58,0.22);
}

.floating-cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.floating-cta-text {
  display: inline;
}

@media (max-width: 560px) {
  .floating-cta {
    bottom: 16px;
    right: 16px;
    padding: 0.8rem 1rem;
    font-size: 0;
  }

  .floating-cta svg {
    width: 22px;
    height: 22px;
  }

  .floating-cta-text {
    display: none;
  }
}

/* ==========================================================================
   Diagnostic page
   ========================================================================== */

.diagnostic-hero {
  background:
    radial-gradient(circle at 90% 10%, rgba(200, 155, 74, 0.16), transparent 45%),
    radial-gradient(circle at 5% 90%, rgba(107, 143, 113, 0.14), transparent 45%),
    var(--color-cream);
  padding: var(--space-2xl) 0;
}

.diagnostic-topics {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: var(--space-md) 0;
}

.diagnostic-topic {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-navy);
  background: var(--color-cream);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

.diagnostic-topic svg {
  width: 18px;
  height: 18px;
  color: var(--color-sage);
  flex-shrink: 0;
}

.diagnostic-future-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--color-sage-light);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  font-size: 0.86rem;
  color: var(--color-sage-dark);
  margin-top: var(--space-md);
}

.diagnostic-future-note svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Diagnostic quiz ---------- */

.diagnostic-quiz {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  max-width: 720px;
  margin: 0 auto;
}

.quiz-view {
  display: none;
}

.quiz-view.active {
  display: block;
}

.quiz-progress {
  margin-bottom: var(--space-lg);
}

.quiz-progress-track {
  height: 6px;
  background: var(--color-cream-dark);
  border-radius: 999px;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  background: var(--color-gold);
  width: 0%;
  transition: width 0.3s ease;
}

.quiz-progress-label {
  display: block;
  margin-top: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.quiz-group-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: var(--space-sm);
}

.quiz-question-text {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  max-width: 30ch;
}

.quiz-scale {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--space-md);
}

.quiz-scale-option {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--color-navy);
  text-align: left;
  background: var(--color-cream);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.2rem;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.quiz-scale-option:hover {
  border-color: var(--color-gold);
}

.quiz-scale-option.selected {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: var(--color-white);
}

.quiz-back-btn {
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 0.4rem 0;
}

.quiz-back-btn:hover {
  color: var(--color-navy);
}

.quiz-results-narrative {
  margin-bottom: var(--space-lg);
  max-width: 55ch;
}

.quiz-rungs {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: var(--space-xl);
}

.quiz-rung {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.quiz-rung-letter {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}

.quiz-rung-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.quiz-rung-solid .quiz-rung-letter {
  background: var(--color-sage);
  color: var(--color-white);
}

.quiz-rung-edge .quiz-rung-letter {
  background: var(--color-gold);
  color: var(--color-navy);
  box-shadow: 0 0 0 4px var(--color-gold-light);
}

.quiz-rung-pending .quiz-rung-letter {
  background: var(--color-cream-dark);
  color: var(--color-text-muted);
}

.quiz-foundation {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.quiz-foundation-card {
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  border: 1.5px solid var(--color-border);
}

.quiz-foundation-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.quiz-foundation-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-navy);
}

.quiz-foundation-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 999px;
}

.quiz-foundation-card p {
  font-size: 0.85rem;
  margin: 0;
}

.quiz-foundation-strong {
  background: var(--color-sage-light);
}

.quiz-foundation-strong .quiz-foundation-tag {
  background: var(--color-sage);
  color: var(--color-white);
}

.quiz-foundation-watch {
  background: var(--color-gold-light);
}

.quiz-foundation-watch .quiz-foundation-tag {
  background: var(--color-gold-dark);
  color: var(--color-white);
}

.quiz-foundation-risk {
  background: #F4C7C3;
}

.quiz-foundation-risk .quiz-foundation-tag {
  background: #8a3a35;
  color: var(--color-white);
}

@media (max-width: 640px) {
  .diagnostic-quiz {
    padding: var(--space-lg) var(--space-md);
  }

  .quiz-question-text {
    font-size: 1.25rem;
  }

  .quiz-foundation {
    grid-template-columns: 1fr;
  }

  .quiz-rung-label {
    font-size: 0.62rem;
  }
}

/* ---------- Consent checkbox (lead-capture step) ---------- */

.quiz-consent {
  margin: var(--space-sm) 0 var(--space-md);
}

.quiz-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.5;
}

.quiz-consent-label input[type="checkbox"] {
  margin-top: 3px;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  accent-color: var(--color-navy);
  cursor: pointer;
}

.quiz-consent-note {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 8px 0 0 27px;
}

.quiz-submit-error {
  background: #F4C7C3;
  color: #7a2e2a;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.86rem;
  margin-bottom: var(--space-sm);
}

.quiz-submit-error a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
}

.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ---------- Pillar Deep Dive (results) ---------- */

.pillar-deep-dive {
  margin-bottom: var(--space-lg);
}

.pillar-deep-dive-title {
  margin-bottom: 4px;
}

.pillar-deep-dive-sub {
  font-size: 0.86rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.pillar-block {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
}

.pillar-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pillar-block-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.pillar-block-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-navy);
}

.pillar-block-headline {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-gold-dark);
  text-align: right;
}

.mini-ladder {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.mini-rung {
  flex: 1;
  text-align: center;
}

.mini-rung-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin: 0 auto 6px;
  background: var(--color-cream-dark);
}

.mini-rung-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--color-text-muted);
  line-height: 1.3;
}

.mini-rung-solid .mini-rung-dot {
  background: var(--color-sage);
}

.mini-rung-edge .mini-rung-dot {
  background: var(--color-gold);
  box-shadow: 0 0 0 4px var(--color-gold-light);
}

.mini-rung-edge .mini-rung-label {
  color: var(--color-navy);
  font-weight: 700;
}

.pillar-block-narrative {
  font-size: 0.9rem;
  color: var(--color-text);
  margin: 0;
}

.quiz-overall-summary {
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-cream-dark);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (max-width: 640px) {
  .mini-rung-label {
    font-size: 0.6rem;
  }

  .pillar-block-head {
    flex-direction: column;
    gap: 2px;
  }

  .pillar-block-headline {
    text-align: left;
  }
}
