/* ===================================================
   All Heart Performance — Shared Stylesheet
   Aesthetic: Luxury cycling editorial / refined sport
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..500&display=swap');

/* ─── Variables ─────────────────────────────────── */
:root {
  --crimson:        #8B1E2D;
  --crimson-dark:   #6B1521;
  --crimson-muted:  rgba(139, 30, 45, 0.10);
  --navy:           #15245A;
  --navy-mid:       #404B73;
  --navy-black:     #141A30;
  --off-black:      #161318;
  --near-black:     #1D1921;
  --off-white:      #F5F2EC;
  --cream:          #EDE9E0;
  --warm-gray-lt:   #D6D0C7;
  --warm-gray:      #A09890;
  --warm-gray-dk:   #6E6660;
  --gold:           #B8903A;

  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'DM Sans', system-ui, sans-serif;

  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:       cubic-bezier(0.0, 0, 0.2, 1);
  --ease-spring:    cubic-bezier(0.25, 1, 0.5, 1);

  --nav-h:          80px;
  --max-w:          1080px;
  --pad-x:          40px;

  --shadow-card:    0 4px 28px rgba(22, 19, 24, 0.09);
  --shadow-lift:    0 14px 56px rgba(22, 19, 24, 0.17);
}

/* ─── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--off-black);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.inner-page {
  background:
    linear-gradient(
      180deg,
      rgba(210, 140, 60, 0.16) 0%,
      rgba(190, 110, 45, 0.07) 12%,
      rgba(235, 220, 195, 1) 26%,
      rgba(245, 242, 236, 1) 62%,
      rgba(232, 214, 188, 1) 100%
    );
}
main { flex: 1; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── Navigation ────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 var(--pad-x);
  transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease);
  pointer-events: none;
}
.site-header * {
  pointer-events: all;
}

.site-header.transparent { background: transparent; }
/* Subtle top scrim so the white logo/links stay legible over a bright hero */
.site-header.transparent::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(14, 8, 20, 0.38) 0%, rgba(14, 8, 20, 0) 100%);
  pointer-events: none;
  z-index: -1;
}

.site-header.solid {
  background: rgb(245, 242, 236);
  background: rgba(245, 242, 236, 0.97);
  box-shadow: 0 1px 0 rgba(22, 19, 24, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header.page {
  background: rgb(255, 253, 248);
  background: rgba(255, 253, 248, 0.97);
  box-shadow: 0 1px 0 rgba(22, 19, 24, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-nav {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--off-white);
  transition: color 0.4s var(--ease);
}
.site-header.solid .nav-brand,
.site-header.page .nav-brand { color: var(--navy); }

.nav-logo-img {
  height: auto;
  width: 340px;
  max-width: 60vw;
  display: block;
  object-fit: contain;
}

/* Logo variants: dark-ink lockup on light backgrounds, reversed on dark */
.nav-logo-light { display: block; }
.nav-logo-dark  { display: none; }
@media (min-width: 769px) {
  .site-header.solid .nav-logo-light,
  .site-header.page  .nav-logo-light { display: none; }
  .site-header.solid .nav-logo-dark,
  .site-header.page  .nav-logo-dark  { display: block; }
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-menu a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.82);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s var(--ease);
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease);
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

@media (min-width: 769px) {
  .site-header.solid .nav-menu a,
  .site-header.page .nav-menu a          { color: var(--warm-gray-dk); }
  .site-header.solid .nav-menu a.active,
  .site-header.solid .nav-menu a:hover,
  .site-header.page .nav-menu a.active,
  .site-header.page .nav-menu a:hover    { color: var(--crimson); }
}

.nav-cta {
  padding: 9px 22px !important;
  background: var(--crimson);
  color: white !important;
  border-radius: 2px;
  letter-spacing: 0.1em !important;
  transition: background 0.3s var(--ease), transform 0.2s var(--ease) !important;
}
.nav-cta:hover { background: var(--crimson-dark) !important; transform: translateY(-1px) !important; }
.nav-cta::after { display: none !important; }
.site-header.solid .nav-cta { color: white !important; }

/* ─── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  font-family: var(--font-body);
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.25s var(--ease), box-shadow 0.3s var(--ease);
}

.btn-primary {
  background: var(--crimson);
  color: #fff;
  border: 1px solid var(--crimson);
}
.btn-primary:hover {
  background: var(--crimson-dark);
  border-color: var(--crimson-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 30, 45, 0.32);
}

.btn-ghost {
  background: transparent;
  color: var(--off-white);
  border: 1px solid rgba(245, 242, 236, 0.38);
}
.btn-ghost:hover {
  background: rgba(245, 242, 236, 0.10);
  border-color: rgba(245, 242, 236, 0.75);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--crimson);
  border: 1px solid var(--crimson);
}
.btn-outline:hover {
  background: var(--crimson);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 30, 45, 0.28);
}

.btn-white {
  background: var(--off-white);
  color: var(--crimson);
  border: 1px solid transparent;
}
.btn-white:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.20);
}

/* ─── Hero (Home) ────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 var(--pad-x) clamp(56px, 9vh, 104px);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/editorial/hero.jpg');
  background-size: cover;
  background-position: center 55%;
  animation: kenBurns 24s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  from { transform: scale(1.00); }
  to   { transform: scale(1.06); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 8, 20, 0.12) 0%, rgba(14, 8, 20, 0.14) 42%, rgba(14, 8, 20, 0.62) 100%);
}
.hero-tagline {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.18;
  letter-spacing: -0.01em;
  text-align: left;
  text-shadow: 0 1px 20px rgba(14, 8, 20, 0.35);
  opacity: 0;
  animation: fadeUp 1s var(--ease-spring) 0.2s forwards;
}
.hero-tagline em {
  font-style: italic;
  color: var(--gold);
}

/* ─── Photography placeholder (honest gap marker) ── */
.photo-placeholder {
  background: linear-gradient(135deg, #CFC5B2, #B7AD9C);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: rgba(60, 52, 40, 0.45);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
/* ─── Home: Editorial gallery spreads ────────────── */
.spread {
  padding: 150px var(--pad-x) 0;
}
.spread:last-of-type { padding-bottom: 0; }
/* Text-only observation (photo temporarily removed) — no trailing gap under the quote */
.spread--text .spread-quote { margin-bottom: 0; }
.spread-quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  color: var(--navy);
  text-align: center;
  max-width: 680px;
  line-height: 1.4;
  margin: 0 auto 52px;
}
.spread-photo {
  max-width: var(--max-w);
  margin: 0 auto;
}
.spread-photo img,
.spread-photo .photo-placeholder {
  width: 100%;
  height: auto;
  display: block;
}
.spread-photo .photo-placeholder { aspect-ratio: 3 / 2; min-height: 280px; }

/* ─── Home: Minimal closing CTA ──────────────────── */
.cta-minimal {
  padding: 170px var(--pad-x) 150px;
  text-align: center;
}
.cta-minimal p {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--navy);
  margin-bottom: 34px;
}

/* ─── Animations ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s var(--ease-spring), transform 0.85s var(--ease-spring);
}
.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Shared Section Layout ──────────────────────── */
.section {
  padding: 110px var(--pad-x);
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.overline {
  font-size: 0.70rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--crimson);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.overline::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--crimson);
  flex-shrink: 0;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 14px;
}

.section-lead {
  font-size: 1.02rem;
  color: var(--warm-gray-dk);
  max-width: 540px;
  line-height: 1.85;
  margin-bottom: 56px;
}

/* ─── Services Section ───────────────────────────── */
.services { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--warm-gray-lt);
  border: 1px solid var(--warm-gray-lt);
}

.service-card {
  background: rgba(255, 250, 240, 0.96);
  padding: 44px 34px 48px;
  position: relative;
  overflow: hidden;
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
}
.service-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
  z-index: 1;
}
.service-card:hover::after { transform: scaleX(1); }

.service-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--warm-gray-dk);
  line-height: 1.75;
}

/* ─── Philosophy Strip ───────────────────────────── */
.philosophy {
  background: var(--near-black);
  padding: 100px var(--pad-x);
}
.philosophy-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.philosophy-top {
  margin-bottom: 72px;
}
.philosophy .overline          { color: var(--gold); }
.philosophy .overline::before  { background: var(--gold); }
.philosophy .section-heading   { color: var(--off-white); }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.pillar {
  padding: 0 56px 0 0;
  border-right: 1px solid rgba(245, 242, 236, 0.10);
}
.pillar + .pillar         { padding: 0 56px 0 56px; }
.pillar:last-child        { border-right: none; padding-right: 0; }

.pillar-num {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--off-white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.pillar p {
  font-size: 0.88rem;
  color: rgba(245, 242, 236, 0.55);
  line-height: 1.80;
}

/* ─── CTA Strip ──────────────────────────────────── */
.cta-strip {
  background: var(--crimson);
  padding: 88px var(--pad-x);
  text-align: center;
}
.cta-strip-inner {
  max-width: 620px;
  margin: 0 auto;
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--off-white);
  margin-bottom: 30px;
  letter-spacing: -0.01em;
}
/* Soft, blurb-led close (Home / About endings) */
.cta-strip .cta-blurb {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.55;
  margin-bottom: 34px;
}

/* ─── Page Hero (inner pages) ────────────────────── */
.page-hero {
  padding-top: var(--nav-h);
  height: 36vh;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  padding-bottom: 56px;
  position: relative;
  overflow: hidden;
  background-color: var(--navy-black);
  background-image:
    repeating-linear-gradient(
      -48deg,
      transparent 0px, transparent 38px,
      rgba(255,255,255,0.018) 38px, rgba(255,255,255,0.018) 39px
    ),
    linear-gradient(
      130deg,
      rgba(139, 30, 45, 0.18) 0%,
      transparent 55%
    );
}
.page-hero-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}
.breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.40);
  margin-bottom: 10px;
}
.breadcrumb a {
  color: rgba(245, 242, 236, 0.40);
  transition: color 0.3s;
}
.breadcrumb a:hover { color: rgba(245, 242, 236, 0.75); }
.breadcrumb span    { color: rgba(245, 242, 236, 0.65); }

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--off-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* ─── About Page ─────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}

.about-aside {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

.about-card {
  background: var(--navy-black);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4.2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.about-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-card-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 26, 48, 0.92) 0%,
    rgba(20, 26, 48, 0.55) 32%,
    rgba(20, 26, 48, 0.0) 62%
  );
}

.about-card-logo {
  width: 190px;
  opacity: 0.92;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.about-card-quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 242, 236, 0.92);
  line-height: 1.55;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.about-body .overline   { margin-bottom: 14px; }
.about-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 30px;
}
.about-body p {
  font-size: 1rem;
  color: var(--warm-gray-dk);
  line-height: 1.88;
  margin-bottom: 20px;
}
.about-body p:last-of-type { margin-bottom: 36px; }

/* Bio without the sidebar portrait — centred measure for readability */
.about-body--full {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.about-body--full .overline { justify-content: center; }
.about-body--full .overline::before { display: none; }
.about-body--full p { text-align: left; }

/* ── Founder portrait, standalone at the bottom of the page ───────── */
/* Kept small and modest — passport-photo scale, not a feature image */
.about-portrait-section { display: flex; justify-content: center; }
.about-portrait-img {
  width: 100%;
  max-width: 140px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.about-quote-strip {
  background: var(--cream);
  padding: 96px var(--pad-x);
  text-align: center;
}
.about-quote-strip blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--navy);
  max-width: 680px;
  margin: 0 auto 22px;
  line-height: 1.5;
}
.quote-attr {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── Contact Page ───────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}

.contact-body h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}
.contact-body p {
  font-size: 0.98rem;
  color: var(--warm-gray-dk);
  line-height: 1.85;
  margin-bottom: 20px;
  max-width: 440px;
}

.contact-methods {
  list-style: none;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 18px;
}
.method-icon {
  width: 46px;
  height: 46px;
  background: var(--crimson-muted);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.method-icon svg {
  width: 18px; height: 18px;
  stroke: var(--crimson);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.method-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 3px;
}
.method-value {
  font-size: 0.95rem;
  color: var(--off-black);
  font-weight: 400;
}
.method-value a { transition: color 0.3s; }
.method-value a:hover { color: var(--crimson); }

.contact-panel {
  background: var(--cream);
  padding: 52px 44px;
  border-top: 2px solid var(--crimson);
}
.contact-panel h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.contact-panel p {
  font-size: 0.9rem;
  color: var(--warm-gray-dk);
  line-height: 1.75;
  margin-bottom: 30px;
}
.contact-panel .btn { width: 100%; justify-content: center; }

.contact-panel-note {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--warm-gray-lt);
  font-size: 0.83rem;
  color: var(--warm-gray);
  line-height: 1.75;
}

/* ─── Footer ─────────────────────────────────────── */
.site-footer {
  background: var(--cream);
  border-top: 1px solid rgba(22, 19, 24, 0.08);
  padding: 64px var(--pad-x) 40px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(22, 19, 24, 0.10);
  flex-wrap: wrap;
}
.footer-logo {
  width: 240px;
  max-width: 68vw;
  height: auto;
}
.footer-nav {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.footer-nav-group h4 {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray-dk);
  margin-bottom: 16px;
}
.footer-nav-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-group a {
  font-size: 0.88rem;
  color: var(--warm-gray-dk);
  transition: color 0.3s;
}
.footer-nav-group a:hover { color: var(--crimson); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--warm-gray);
}
.footer-bottom a {
  color: var(--warm-gray-dk);
  transition: color 0.3s var(--ease);
}
.footer-bottom a:hover { color: var(--crimson); }

/* ── Hamburger button ───────────────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--off-white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.site-header.solid .nav-hamburger span,
.site-header.page .nav-hamburger span  { background: var(--off-black); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .about-layout       { grid-template-columns: 1fr; gap: 48px; }
  .about-aside        { position: static; }
  .about-card         { aspect-ratio: unset; min-height: 320px; padding: 40px 32px; }
  .contact-layout     { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root {
    --pad-x: 24px;
  }
  /* Light mobile bar to match the light hero: dark logo + dark hamburger */
  .site-header.solid .nav-logo-light,
  .site-header.page  .nav-logo-light { display: none; }
  .site-header.solid .nav-logo-dark,
  .site-header.page  .nav-logo-dark  { display: block; }
  .site-header.solid .nav-hamburger span,
  .site-header.page .nav-hamburger span { background: var(--off-black); }
  .section                 { padding: 72px var(--pad-x); }
  .philosophy              { padding: 72px var(--pad-x); }
  .cta-strip               { padding: 72px var(--pad-x); }
  .about-quote-strip       { padding: 72px var(--pad-x); }
  .services-grid           { grid-template-columns: 1fr; }
  .pillars                 { grid-template-columns: 1fr; }
  .pillar, .pillar + .pillar {
    padding: 36px 0;
    border-right: none;
    border-bottom: 1px solid rgba(245, 242, 236, 0.10);
  }
  .pillar:last-child       { border-bottom: none; }
  .footer-top              { flex-direction: column; }
  .footer-nav              { gap: 32px; }
  .contact-panel           { padding: 36px 28px; }
  .hero                    { min-height: 520px; }
  /* Nudge the crop on mobile so the recognisable rock stays in frame (runner falls off the left) */
  .hero-bg                 { background-position: 40% 55%; }
  .spread                  { padding: 96px var(--pad-x) 0; }
  .cta-minimal             { padding: 110px var(--pad-x) 96px; }
  .nav-logo-img            { width: 220px; max-width: 60vw; height: auto; }
  .nav-hamburger           { display: flex; }
  .nav-cta                 { display: block !important; background: none !important;
                             border: none !important; padding: 18px 0 !important;
                             color: var(--crimson) !important; }
  .nav-menu                {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -320px;
    width: 72vw;
    max-width: 300px;
    height: 100vh;
    background: var(--off-white);
    padding: 88px 36px 48px;
    gap: 0;
    z-index: 1000;
    box-shadow: -4px 0 32px rgba(22, 19, 24, 0.12);
    transition: right 0.3s ease;
  }
  .nav-menu li             { border-bottom: 1px solid rgba(22, 19, 24, 0.08); }
  .nav-menu li a           { display: block; padding: 18px 0; font-size: 1.1rem; color: var(--navy); }
  .nav-menu li a.active    { color: var(--crimson); }
  /* When the menu is open, the close (X) sits on the light panel — keep it dark */
  .nav-hamburger.open span { background: var(--off-black) !important; }
}
/* ===================================================
   New components (v15): audience, steps, founder,
   pricing/FAQ, contact form, gold accent
   =================================================== */

/* ─── Gold divider signature ─────────────────────── */
.gold-rule {
  width: 46px;
  height: 2px;
  background: var(--gold);
  margin: 0 0 26px;
  border: none;
}
.cta-strip .gold-rule,
.about-quote-strip .gold-rule { margin-left: auto; margin-right: auto; }

/* ─── Text link (gold, uppercase) ────────────────── */
a.text-link {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(184, 144, 58, 0.4);
  padding-bottom: 3px;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
a.text-link:hover { border-color: var(--gold); color: var(--crimson); }

/* ─── About: founder signature ───────────────────── */
.founder-sign {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
  margin-top: 4px;
}

/* ─── Pricing page ───────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 8px;
}
.price-card {
  background: rgba(255, 250, 240, 0.85);
  border: 1px solid var(--warm-gray-lt);
  border-top: 3px solid var(--crimson);
  padding: 44px 38px 40px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  background: var(--cream);
  box-shadow: var(--shadow-card);
}
.price-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 14px;
}
.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.price-tag {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--off-black);
  line-height: 1.1;
  margin-bottom: 4px;
}
.price-tag span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--warm-gray);
  letter-spacing: 0.02em;
}
.price-sub {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--warm-gray-dk);
  line-height: 1.6;
  margin: 14px 0 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--warm-gray-lt);
}
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 30px;
  flex: 1;
}
.price-features li {
  position: relative;
  padding-left: 26px;
  font-size: 0.91rem;
  color: var(--warm-gray-dk);
  line-height: 1.6;
}
.price-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--crimson);
  border-bottom: 2px solid var(--crimson);
  transform: rotate(-45deg);
}
.price-card .btn { width: 100%; justify-content: center; }
.price-note {
  text-align: center;
  font-size: 0.92rem;
  color: var(--warm-gray-dk);
  font-style: italic;
  margin-top: 38px;
}

/* ─── FAQ ────────────────────────────────────────── */
.faq { background: var(--off-white); }
.faq-list {
  margin-top: 8px;
  border-top: 1px solid var(--warm-gray-lt);
}
.faq-item {
  border-bottom: 1px solid var(--warm-gray-lt);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 44px 24px 0;
  position: relative;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.25s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--crimson); }
.faq-item summary::after {
  content: '';
  position: absolute;
  right: 6px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--crimson);
  border-bottom: 2px solid var(--crimson);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-35%) rotate(-135deg); }
.faq-item .faq-answer {
  padding: 0 44px 26px 0;
  font-size: 0.95rem;
  color: var(--warm-gray-dk);
  line-height: 1.78;
  margin: 0;
}

/* ─── Contact form ───────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 4px;
}
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray-dk);
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--off-black);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--warm-gray-lt);
  border-radius: 2px;
  padding: 12px 14px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px var(--crimson-muted);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 4px; }
.form-note {
  font-size: 0.8rem;
  color: var(--warm-gray);
  line-height: 1.6;
  margin-top: 2px;
}

/* ─── Responsive: new components ─────────────────── */
@media (max-width: 1024px) {
  .pricing-grid   { grid-template-columns: 1fr; }
}

/* ─── Health & readiness questionnaire (v20) ─────── */
.q-intro {
  background: var(--crimson-muted);
  border-left: 3px solid var(--crimson);
  padding: 20px 24px;
  margin-bottom: 36px;
  border-radius: 2px;
}
.q-intro p { font-size: 0.9rem; color: var(--warm-gray-dk); line-height: 1.7; margin: 0; }
.q-section-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin: 36px 0 6px;
}
.q-section-note { font-size: 0.85rem; color: var(--warm-gray); margin-bottom: 18px; }
.q-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--warm-gray-lt);
}
.q-item:last-of-type { border-bottom: none; }
.q-item .q-text { font-size: 0.93rem; color: var(--off-black); line-height: 1.6; flex: 1; }
.q-options { display: flex; gap: 16px; flex-shrink: 0; padding-top: 2px; }
.q-options label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--warm-gray-dk);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.q-options input[type="radio"] { accent-color: var(--crimson); width: 16px; height: 16px; }
.q-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 28px 0 8px;
  font-size: 0.88rem;
  color: var(--warm-gray-dk);
  line-height: 1.6;
}
.q-consent input[type="checkbox"] { accent-color: var(--crimson); width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; }
