/* CSK Coaching — tokens and components */

:root {
  /* Palette — light (warm paper and clay) */
  --bg: #faf5ef;
  --surface: #fffcf7;
  --surface-2: #f5ece1;
  --text: #2c231c;
  --muted: #6d5f53;
  --accent: #9d4d2c;
  --accent-soft: rgba(157, 77, 44, 0.09);
  --sage: #5c6a50;
  --line: rgba(44, 35, 28, 0.13);
  --line-soft: rgba(44, 35, 28, 0.07);
  --shadow: 0 1px 2px rgba(44, 35, 28, 0.04), 0 12px 32px -18px rgba(44, 35, 28, 0.22);
  --shadow-lift: 0 2px 4px rgba(44, 35, 28, 0.05), 0 22px 48px -22px rgba(44, 35, 28, 0.28);

  /* Type */
  --display: "Zodiak", "Iowan Old Style", Georgia, serif;
  --body: "Switzer", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  --text-xs: clamp(0.75rem, 0.72rem + 0.12vw, 0.8125rem);
  --text-sm: clamp(0.875rem, 0.85rem + 0.1vw, 0.9375rem);
  --text-base: clamp(1rem, 0.97rem + 0.15vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.35vw, 1.3125rem);
  --text-xl: clamp(1.5rem, 1.25rem + 1.1vw, 2.125rem);
  --text-2xl: clamp(2rem, 1.5rem + 2.2vw, 3rem);
  --text-hero: clamp(2.6rem, 1.5rem + 5.2vw, 5.25rem);

  /* Space */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4.5rem, 9vw, 9rem);
  --measure: 62ch;
  --max: 1200px;

  --radius: 4px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  color-scheme: light;
}

/* Dark mode sits on a deep ink navy rather than a near-black. The text stays
   warm cream and the accent stays clay, so the warmth reads against the cool
   ground instead of disappearing into it. */
[data-theme="dark"] {
  --bg: #101722;
  --surface: #1a2432;
  --surface-2: #141d29;
  --text: #f3ece2;
  --muted: #a99e93;
  --accent: #dd9068;
  --accent-soft: rgba(221, 144, 104, 0.15);
  --sage: #9db08d;
  --line: rgba(226, 233, 242, 0.16);
  --line-soft: rgba(226, 233, 242, 0.08);
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 14px 34px -18px rgba(0, 0, 0, 0.6);
  --shadow-lift: 0 2px 6px rgba(0, 0, 0, 0.35), 0 24px 52px -22px rgba(0, 0, 0, 0.7);

  color-scheme: dark;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.002em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* ---------- Typography ---------- */

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

h1 {
  font-size: var(--text-hero);
}

h2 {
  font-size: var(--text-2xl);
}

h3 {
  font-family: var(--body);
  font-size: var(--text-lg);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.005em;
}

em {
  font-style: italic;
}

p {
  text-wrap: pretty;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
  opacity: 0.7;
}

.lede {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--muted);
  max-width: 46ch;
}

.prose p + p {
  margin-top: 1.15em;
}

.prose {
  max-width: var(--measure);
}

/* ---------- Layout ---------- */

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section {
  scroll-margin-top: 88px;
}

.section {
  padding-block: var(--section-y);
}

.section-head {
  max-width: 54ch;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head p {
  color: var(--muted);
  margin-top: 1.25rem;
  max-width: 50ch;
}

/* keep the eyebrow terracotta inside section heads */
.section-head p.eyebrow,
p.eyebrow {
  color: var(--accent);
  margin-top: 0;
}

.rule {
  height: 1px;
  background: var(--line-soft);
  border: 0;
  margin: 0;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), transform 0.25s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #fffdfa;
  border: 1px solid var(--accent);
}

[data-theme="dark"] .btn--primary {
  color: #111826;
}

.btn--primary:hover {
  transform: translateY(-1px);
  background: color-mix(in srgb, var(--accent) 88%, #000);
}

[data-theme="dark"] .btn--primary:hover {
  background: color-mix(in srgb, var(--accent) 88%, #fff);
}

.btn--ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: transparent;
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--text-sm);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), gap 0.25s var(--ease);
}

.link-arrow:hover {
  border-color: currentColor;
  gap: 0.75rem;
}

/* ---------- Header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.header--scrolled {
  border-bottom-color: var(--line-soft);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 72px;
  padding-block: 0.75rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.68rem;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

.logo svg {
  width: 40px;
  height: 36px;
  flex-shrink: 0;
  color: var(--accent);
}

/* Stacked wordmark: COACHING is tracked to the exact width of CSK, so the
   two lines lock together as one shape, divided by a fine clay rule. */
.logo__word {
  display: grid;
  gap: 0.3rem;
}

.logo__csk {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 0.88;
  letter-spacing: 0.02em;
}

.logo__sub {
  font-family: var(--body);
  font-size: 0.585rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.334em;
  /* balances the trailing letter-space so the line stays optically centred */
  text-indent: 0.334em;
  border-top: 1px solid color-mix(in srgb, var(--accent) 42%, transparent);
  padding-top: 0.3rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.6vw, 1.75rem);
  flex-shrink: 0;
}

.nav a {
  font-size: var(--text-sm);
  text-decoration: none;
  white-space: nowrap;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--text);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.icon-btn:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.icon-btn svg {
  width: 17px;
  height: 17px;
}

.theme-toggle .moon {
  display: none;
}

[data-theme="dark"] .theme-toggle .moon {
  display: block;
}

[data-theme="dark"] .theme-toggle .sun {
  display: none;
}

.menu-btn {
  display: none;
}

.mobile-nav {
  display: none;
}

/* ---------- Hero ---------- */

.hero {
  padding-top: clamp(3rem, 7vw, 6rem);
  padding-bottom: clamp(3.5rem, 7vw, 6.5rem);
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.hero h1 {
  margin-bottom: 1.75rem;
}

.hero h1 em {
  color: var(--accent);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.hero__note {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-top: 1.75rem;
  font-size: var(--text-sm);
  color: var(--muted);
  max-width: 42ch;
}

.hero__note::before {
  content: "";
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateY(-3px);
}

.hero__figure {
  position: relative;
}

.hero__figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 34%;
  border-radius: 2px;
  box-shadow: var(--shadow-lift);
}

.hero__figure figcaption {
  font-size: var(--text-xs);
  color: var(--muted);
  margin-top: 0.9rem;
  letter-spacing: 0.01em;
}

/* ---------- Credibility strip ---------- */

.strip {
  border-block: 1px solid var(--line-soft);
  background: var(--surface-2);
}

[data-theme="dark"] .strip {
  background: var(--surface-2);
}

.strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  padding: 0;
}

.strip__item {
  background: var(--surface-2);
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.1rem, 2vw, 1.75rem);
  font-size: var(--text-sm);
  line-height: 1.45;
  color: var(--text);
}

.strip__item strong {
  display: block;
  font-family: var(--display);
  font-size: 1.075rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--accent);
  margin-bottom: 0.55rem;
  text-wrap: balance;
}

.strip__item {
  color: var(--muted);
}

/* ---------- Cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.card:hover {
  border-color: var(--line);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.card__num {
  font-family: var(--display);
  font-size: var(--text-sm);
  color: var(--accent);
  letter-spacing: 0.05em;
}

.card {
  border-top: 2px solid transparent;
}

.card:hover {
  border-top-color: var(--accent);
}

.card p {
  color: var(--muted);
  font-size: var(--text-base);
}

/* ---------- About ---------- */

.about__grid {
  display: grid;
  /* the portrait carries a little more width so its height sits closer to the
     biography column and the two read as a balanced pair */
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.about__media {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 0.9rem;
  margin: 0;
}

.about__media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 22%;
  border-radius: 2px;
  box-shadow: var(--shadow-lift);
}

.about__media figcaption {
  margin: 0;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

/* The credentials sit in a full-width band below the About grid rather than
   stacked under the biography, so the prose column stays a similar height to
   the photograph instead of running far past it. */
.creds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.4vw, 2.25rem) clamp(1.75rem, 3.5vw, 3.5rem);
  margin-top: clamp(3rem, 2rem + 3vw, 4.5rem);
  padding: clamp(2rem, 1.4rem + 1.8vw, 3rem) 0 0;
  border-top: 1px solid var(--line-soft);
  list-style: none;
}

.creds li {
  padding-left: 1.1rem;
  border-left: 2px solid color-mix(in srgb, var(--accent) 35%, transparent);
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.55;
}

.creds li strong {
  display: block;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.2rem;
}

/* ---------- Principles + process ---------- */

.principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem) clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.principle {
  border-top: 2px solid color-mix(in srgb, var(--accent) 40%, transparent);
  padding-top: 1.4rem;
}

.principle h3 {
  margin-bottom: 0.6rem;
}

.principle p {
  color: var(--muted);
  font-size: var(--text-sm);
  max-width: 40ch;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 2.5rem;
}

.step__num {
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1;
  color: var(--accent);
  letter-spacing: 0.06em;
}

.step::after {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 2.6rem;
  right: -1rem;
  height: 1px;
  background: color-mix(in srgb, var(--accent) 30%, transparent);
}

.step:last-child::after {
  display: none;
}

.step h3 {
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--muted);
  font-size: var(--text-sm);
}

/* ---------- Quote band ---------- */

.quote-band {
  position: relative;
  isolation: isolate;
  padding-block: clamp(5rem, 11vw, 9.5rem);
  text-align: center;
  overflow: hidden;
}

.quote-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.quote-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: color-mix(in srgb, var(--bg) 76%, transparent);
}

[data-theme="dark"] .quote-band img {
  opacity: 0.16;
}

/* Heavier navy wash on dark, so the warm sunrise reads as a glow behind the
   band rather than a brown block interrupting the blue. */
[data-theme="dark"] .quote-band::after {
  background: color-mix(in srgb, var(--bg) 64%, transparent);
}

.quote-band blockquote {
  font-family: var(--display);
  font-size: clamp(1.75rem, 1.1rem + 3.2vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 24ch;
  margin-inline: auto;
  text-wrap: balance;
}

.quote-band blockquote em {
  color: var(--accent);
}

.quote-band cite {
  display: block;
  margin-top: 2rem;
  font-family: var(--body);
  font-style: normal;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

/* ---------- Pricing ---------- */

.prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: stretch;
}

.price {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 2.6vw, 2.25rem);
}

.price--lead {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.price__flag {
  position: absolute;
  top: -0.75rem;
  left: clamp(1.6rem, 2.6vw, 2.25rem);
  background: var(--accent);
  color: #fffdfa;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

[data-theme="dark"] .price__flag {
  color: #111826;
}

.price h3 {
  font-family: var(--display);
  font-size: var(--text-xl);
  font-weight: 400;
  margin-bottom: 0.9rem;
}

.price__fig small {
  font-size: 0.55em;
  letter-spacing: 0;
  color: var(--muted);
  margin-right: 0.15em;
}

.nowrap {
  white-space: nowrap;
}

.price__fig {
  font-family: var(--display);
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}

.price__per {
  font-size: var(--text-sm);
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.price ul {
  display: grid;
  gap: 0.7rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-soft);
  margin-bottom: 1.75rem;
}

.price li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--muted);
}

.price li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--sage);
  margin-top: 0.6em;
}

.price .btn {
  margin-top: auto;
}

.prices__note {
  font-size: var(--text-sm);
  color: var(--muted);
  margin-top: 2rem;
  max-width: 60ch;
}

/* ---------- Organisations ---------- */

.orgs {
  background: var(--surface-2);
  border-block: 1px solid var(--line-soft);
}

.orgs__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.orgs__list {
  display: grid;
  gap: 0.8rem;
  margin: 2rem 0 2.25rem;
}

.orgs__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.55;
}

.orgs__list li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: 0.62em;
}

.orgs__rate {
  font-size: var(--text-sm);
  color: var(--text);
  padding: 1.1rem 1.3rem;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

.orgs__rate strong {
  font-weight: 500;
}

.orgs__figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

/* ---------- Testimonials ---------- */

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.quote {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-top: 2px solid color-mix(in srgb, var(--accent) 45%, transparent);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 2.5vw, 2.1rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.quote p {
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--text);
}

.quote footer {
  margin-top: auto;
  padding-top: 0.4rem;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.quote__mark {
  font-family: var(--display);
  font-size: 2rem;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.55;
}

.quote p {
  color: var(--muted);
  font-size: var(--text-sm);
  font-style: italic;
}

.quote footer {
  margin-top: auto;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
}

.pending {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  align-self: flex-start;
}

/* ---------- FAQ ---------- */

.faq {
  max-width: 78ch;
}

.faq details {
  border-bottom: 1px solid var(--line-soft);
}

.faq details[open] summary {
  color: var(--accent);
}

.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  font-size: var(--text-lg);
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.faq summary:hover {
  color: var(--accent);
}

.faq summary::after {
  content: "";
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  margin-top: 0.5em;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease);
}

.faq details[open] summary::after {
  transform: rotate(-135deg);
}

.faq details > div {
  padding-bottom: 1.6rem;
  max-width: 62ch;
  color: var(--muted);
  font-size: var(--text-base);
}

.faq details > div p + p {
  margin-top: 1em;
}

/* ---------- Contact ---------- */

.contact {
  background: var(--surface-2);
  border-top: 1px solid var(--line-soft);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact h2 {
  margin-bottom: 1.5rem;
}

.contact__details {
  display: grid;
  gap: 1.6rem;
  padding: clamp(1.6rem, 3vw, 2.25rem);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.contact__row dt {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.contact__row dd {
  font-size: var(--text-base);
}

.contact__row a {
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.contact__row a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ---------- Footer ---------- */

.footer {
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-soft);
}

.footer__tag {
  color: var(--muted);
  font-size: var(--text-sm);
  max-width: 34ch;
  margin-top: 1.25rem;
}

.footer h4 {
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin: 0 0 1.1rem;
}

.footer ul {
  display: grid;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li a {
  font-size: var(--text-sm);
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer li a:hover {
  color: var(--accent);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  font-size: var(--text-xs);
  color: var(--muted);
}

/* ---------- Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */

/* ---------- Coaching philosophy ---------- */

.philosophy {
  background: var(--bg);
}

.phil__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.phil__head {
  position: sticky;
  top: 104px;
  margin-bottom: 0;
}

.phil {
  display: grid;
  gap: clamp(2.25rem, 4vw, 3.25rem);
  max-width: 64ch;
}

.phil__body {
  max-width: none;
  font-size: var(--text-base);
  line-height: 1.72;
  color: var(--muted);
}

.phil__lede {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--text);
}

.phil__pull {
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.25rem) 0 clamp(1rem, 1.6vw, 1.35rem);
  border-top: 2px solid color-mix(in srgb, var(--accent) 45%, transparent);
}

.phil__pull p {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.5rem, 1.05rem + 1.9vw, 2.35rem);
  line-height: 1.16;
  letter-spacing: -0.015em;
  color: var(--text);
  text-wrap: balance;
}

/* ---------- Hero strapline ---------- */

/* Sits below the hero as a quiet brand line. Flanking clay rules echo the
   leading dash on the section eyebrows and are drawn as pseudo-elements so
   the line stays optically centred at every width. */
.strapline {
  margin-top: clamp(3rem, 2rem + 3vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.9rem, 0.6rem + 1vw, 1.6rem);
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 0.92rem + 0.6vw, 1.5rem);
  line-height: 1.3;
  letter-spacing: 0.005em;
  color: var(--accent);
  text-align: center;
}

.strapline::before,
.strapline::after {
  content: "";
  flex: 0 1 clamp(1.5rem, 6vw, 5rem);
  height: 1px;
  background: color-mix(in srgb, var(--accent) 42%, transparent);
}

/* the header carries seven links, so hand over to the menu earlier */
@media (max-width: 1120px) {

  .nav,
  .header__actions .btn {
    display: none;
  }

  .menu-btn {
    display: grid;
  }

  .mobile-nav {
    display: block;
    position: fixed;
    inset: 72px 0 auto;
    z-index: 89;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 1.25rem var(--gutter) 2rem;
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s var(--ease), opacity 0.3s ease, visibility 0.3s;
    box-shadow: var(--shadow);
  }

  .mobile-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav ul {
    display: grid;
    gap: 0.25rem;
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
  }

  .mobile-nav a {
    display: block;
    padding: 0.7rem 0;
    font-size: var(--text-lg);
    text-decoration: none;
    border-bottom: 1px solid var(--line-soft);
  }

  .mobile-nav .btn {
    width: 100%;
  }
}

@media (max-width: 900px) {

  .hero__grid,
  .about__grid,
  .orgs__grid,
  .contact__grid,
  .phil__grid {
    grid-template-columns: 1fr;
  }

  .phil__head {
    position: static;
  }

  .hero__figure img {
    aspect-ratio: 16 / 11;
  }

  .about__media {
    position: static;
    max-width: 340px;
  }

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

  .strip__inner,
  .cards,
  .prices,
  .quotes,
  .steps,
  .principles {
    grid-template-columns: repeat(2, 1fr);
  }

  .step::after {
    display: none;
  }

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

@media (max-width: 620px) {
  .strip__inner,
  .cards,
  .prices,
  .quotes,
  .steps,
  .principles,
  .footer__top {
    grid-template-columns: 1fr;
  }

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

  .hero__cta .btn {
    width: 100%;
  }

  /* On a phone the strapline needs two lines, and flanking rules floating
     beside them read as unresolved. Stack instead: one short clay rule
     above the line, echoing the eyebrow dash. */
  .strapline {
    flex-direction: column;
    gap: 1rem;
    text-wrap: balance;
  }

  .strapline::before {
    flex: 0 0 auto;
    width: 2.5rem;
  }

  .strapline::after {
    display: none;
  }

  .quote-band blockquote {
    max-width: 20ch;
  }

  .footer__top > *:first-child {
    grid-column: 1 / -1;
  }
}
