/* ============ THEME VARIABLES ============ */
:root {
  --bg: #F5F2EC;
  --bg-alt: #EDE9E1;
  --bg-card: #FFFFFF;
  --bg-inverse: #0F0F0E;
  --text: #0F0F0E;
  --text-muted: #57554F;
  --text-subtle: #8A8780;
  --border: rgba(15, 15, 14, 0.12);
  --border-strong: rgba(15, 15, 14, 0.22);
  --accent: #B8612A;
  --accent-hover: #9A4F1F;
  --accent-soft: rgba(184, 97, 42, 0.1);
  --placeholder-bg: #E5E1D8;
  --shadow-card: 0 1px 0 rgba(15, 15, 14, 0.04);
}

[data-theme="dark"] {
  --bg: #0E0E0D;
  --bg-alt: #161614;
  --bg-card: #1A1A18;
  --bg-inverse: #F5F2EC;
  --text: #F5F2EC;
  --text-muted: #ADAAA3;
  --text-subtle: #7A7872;
  --border: rgba(245, 242, 236, 0.12);
  --border-strong: rgba(245, 242, 236, 0.22);
  --accent: #E08452;
  --accent-hover: #F09868;
  --accent-soft: rgba(224, 132, 82, 0.12);
  --placeholder-bg: #222220;
  --shadow-card: 0 1px 0 rgba(0, 0, 0, 0.3);
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  transition: background 0.25s ease, color 0.25s ease;
}
h1, h2, h3, h4 {
  margin: 0;
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.025em;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-header {
  max-width: 720px;
  margin: 0 0 72px;
}
.section-header h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.section-header p.section-intro {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 620px;
}

.section-kicker {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}
.section-kicker.inverse { color: var(--accent); opacity: 0.9; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border-radius: 6px;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  font-family: inherit;
  letter-spacing: -0.005em;
}
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 15px 26px; font-size: 15px; }
.btn-icon { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--bg-inverse);
  color: var(--bg);
  border-color: var(--bg-inverse);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--text);
  background: var(--bg-alt);
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 20px;
  z-index: 100;
  padding: 0 20px;
  margin-top: 20px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 16px 12px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 8px 32px -12px rgba(15, 15, 14, 0.18), 0 2px 6px -2px rgba(15, 15, 14, 0.08);
  max-width: 1400px;
  margin: 0 auto;
}
[data-theme="dark"] .header-inner {
  box-shadow: 0 8px 32px -12px rgba(0, 0, 0, 0.5), 0 2px 6px -2px rgba(0, 0, 0, 0.3);
}
.site-nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}
.site-nav a {
  color: var(--text-muted);
  transition: color 0.15s ease;
}
.site-nav a:hover { color: var(--text); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: var(--bg-inverse);
  color: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-family: 'Inter Tight', sans-serif;
}
.logo-text { color: var(--text); font-weight: 600; }

/* ============ THEME TOGGLE ============ */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 16px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.theme-toggle:hover { border-color: var(--border-strong); }
.theme-icon {
  position: absolute;
  transition: opacity 0.2s ease, transform 0.3s ease;
  line-height: 1;
}
.theme-icon.sun { opacity: 1; transform: rotate(0deg) scale(1); }
.theme-icon.moon { opacity: 0; transform: rotate(-90deg) scale(0.6); }
[data-theme="dark"] .theme-icon.sun { opacity: 0; transform: rotate(90deg) scale(0.6); }
[data-theme="dark"] .theme-icon.moon { opacity: 1; transform: rotate(0deg) scale(1); }

/* ============ HERO ============ */
.hero { padding: 56px 0 50px; }
.hero-content {
  max-width: 860px;
}
.hero-visual {
  margin: 36px 0;
  display: flex;
  justify-content: flex-start;
}
.hero-visual .coaching-mockup {
  max-width: 620px;
  width: 100%;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--text-subtle);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  width: 100%;
  max-width: 900px;
}
.hero-title {
  font-size: clamp(42px, 6.5vw, 84px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 28px;
}
.highlight {
  color: var(--accent);
  font-style: italic;
  font-weight: 700;
}
.hero-sub {
  font-size: 21px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 0 40px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============ HERO MOCKUP ============ */
.coaching-mockup {
  width: 100%;
  max-width: 480px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px -12px rgba(15,15,14,0.18), 0 4px 16px -4px rgba(15,15,14,0.1);
}
.mockup-topbar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  display: block;
}
.mockup-tab-row {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.mockup-tab {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-subtle);
  padding: 4px 10px;
  border-radius: 4px;
}
.mockup-tab.active {
  background: var(--accent);
  color: #fff;
}
.mockup-body { padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.mockup-session-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.mockup-session-card.featured {
  background: var(--accent);
  border-color: var(--accent);
}
.mockup-session-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-subtle);
}
.mockup-session-card.featured .mockup-session-avatar {
  background: rgba(255,255,255,0.25);
  color: #fff;
}
.mockup-session-info { flex: 1; min-width: 0; }
.mockup-session-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 2px;
}
.mockup-session-card.featured .mockup-session-name { color: #fff; }
.mockup-session-meta {
  font-size: 11.5px;
  color: var(--text-muted);
  margin: 0;
}
.mockup-session-card.featured .mockup-session-meta { color: rgba(255,255,255,0.75); }
.mockup-session-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.22);
  color: #fff;
  flex-shrink: 0;
}
.mockup-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mockup-stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 12px;
  text-align: center;
}
.mockup-stat-val {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  display: block;
}
.mockup-stat-label {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-subtle);
  display: block;
  margin-top: 2px;
}
.mockup-stat-bar-track {
  width: 100%;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}
.mockup-stat-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}
.mockup-week-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.mockup-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.mockup-day-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-subtle);
}
.mockup-day-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
}
.mockup-day-dot.done { background: var(--accent); border-color: var(--accent); }
.mockup-day-dot.today {
  border-color: var(--accent);
  background: var(--bg);
  box-shadow: 0 0 0 2px var(--accent);
}

/* ============ LOGO STRIP ============ */
.logo-strip {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.strip-label {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-subtle);
  margin-bottom: 32px;
  font-weight: 600;
}
.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px;
}
.logo-placeholder {
  height: 44px;
  min-width: 150px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--border-strong);
  border-radius: 4px;
  color: var(--text-subtle);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
}

/* ============ PRINCIPLES ============ */
.principles { padding: 80px 0; border-bottom: 1px solid var(--border); }
.principles-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.principle {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.principle-num {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.principle p {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  font-family: 'Inter Tight', sans-serif;
  letter-spacing: -0.015em;
  color: var(--text);
  line-height: 1.3;
}

/* ============ MYTH / REALITY / SOLUTION ============ */
.myth-reality { padding: 60px 0; }
.mr-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 4px 24px -8px rgba(15,15,14,0.1);
}
.mr-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.mr-col {
  padding: 40px 32px 40px 0;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mr-col:last-child { border-right: none; padding-right: 0; }
.mr-col:not(:first-child) { padding-left: 32px; }
.mr-col h3 {
  font-size: 22px;
  font-weight: 700;
}
.mr-col p {
  color: var(--text-muted);
  font-size: 19.5px;
  line-height: 1.6;
}
.mr-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.mr-icon svg { width: 20px; height: 20px; }
.icon-x { color: #B43A2E; }
.icon-check { color: #3A7D44; }
.icon-arrow { color: var(--accent); background: var(--accent-soft); border-color: transparent; }

/* ============ ARMS ============ */
.arms { padding: 60px 0; background: var(--bg-alt); }
.arm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.arm-grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
}
.arm-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: default;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
/* Full adoption — rich orange hover */
.arm-grid.two-up .arm-card:first-child:hover {
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent) 10%, var(--bg-card)), color-mix(in srgb, var(--accent) 5%, var(--bg-card)));
  border-color: var(--accent);
  box-shadow: 0 16px 40px -8px color-mix(in srgb, var(--accent) 28%, transparent);
  transform: translateY(-4px);
}
.arm-grid.two-up .arm-card:first-child:hover h3 {
  color: var(--accent);
}
.arm-grid.two-up .arm-card:first-child:hover .arm-icon svg {
  color: var(--accent);
}

/* Allocated seats — softer tint */
.arm-grid.two-up .arm-card:last-child:hover {
  background: color-mix(in srgb, var(--accent) 4%, var(--bg-card));
  border-color: color-mix(in srgb, var(--accent) 40%, var(--border));
  box-shadow: 0 12px 32px -8px color-mix(in srgb, var(--accent) 12%, transparent);
  transform: translateY(-4px);
}
.arm-grid.two-up .arm-card:last-child:hover h3 {
  color: color-mix(in srgb, var(--accent) 70%, var(--text));
}
.arm-grid.two-up .arm-card:last-child:hover .arm-icon svg {
  color: color-mix(in srgb, var(--accent) 70%, var(--text));
}
.arm-image { width: 100%; }
.arm-body > * + * { margin-top: 0; }
.arm-card .arm-body { padding: 32px; gap: 14px; }
.arm-card h3 { font-size: 26px; }
.image-placeholder {
  background: var(--placeholder-bg);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-subtle);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.image-placeholder.portrait {
  aspect-ratio: 4 / 5;
}
.arm-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.arm-icon {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 4px;
}
.arm-icon svg { width: 22px; height: 22px; }
.audience {
  font-size: 11px;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}
.arm-card h3 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  transition: color 0.25s ease;
}
.arm-desc {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.55;
}
.arm-points {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.arm-points li {
  font-size: 16px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.arm-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 1px;
  background: var(--accent);
}
.arm-cta {
  margin-top: auto;
  padding-top: 16px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-top: 1px solid var(--border);
}
.inline-icon { width: 14px; height: 14px; transition: transform 0.15s ease; }
.arm-cta:hover .inline-icon { transform: translateX(3px); }

/* ============ WHO THIS IS FOR ============ */
.who-for { padding: 120px 0; border-top: 1px solid var(--border); }
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.who-header h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin: 4px 0 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.who-intro { color: var(--text-muted); font-size: 17px; line-height: 1.6; }
.who-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.who-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  font-size: 18px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.4;
}
.who-list li:first-child { border-top: 1px solid var(--border); }
.who-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.who-check svg { width: 16px; height: 16px; }

/* ============ FOUNDER ============ */
.founder { padding: 120px 0; }
.founder-block {
  max-width: 780px;
  margin: 0 auto;
}
.founder-heading-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 28px;
}
.founder-heading-row > div:first-child { flex: 0 0 auto; }
.founder-photo-small { margin-right: 32px; }
.founder-photo-small img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
  display: block;
  flex-shrink: 0;
}
.founder-block h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin: 4px 0 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.founder-block p {
  color: var(--text-muted);
  font-size: 19px;
  line-height: 1.65;
  margin-bottom: 24px;
}
.founder-block blockquote {
  margin: 0 0 28px;
  padding: 24px 28px;
  border-left: 3px solid var(--accent);
  background: var(--bg-alt);
  font-family: 'Inter Tight', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text);
  border-radius: 0 8px 8px 0;
}

/* ============ PARTNERSHIPS ============ */
.partnerships { padding: 120px 0; background: var(--bg-alt); }
.partnerships .section-header { text-align: left; }
.section-header-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header-center h2 { font-size: clamp(44px, 5.5vw, 72px); }
.partner-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.partner-grid .logo-placeholder { min-width: 0; width: 100%; }

/* ============ CTA ============ */
.cta-section {
  padding: 120px 0;
  background: var(--bg-inverse);
  color: var(--bg);
}
.cta-inner { max-width: 900px; }
.cta-section h2 {
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--bg);
}
.cta-section > .container > p {
  font-size: 18px;
  opacity: 0.75;
  margin-bottom: 48px;
  color: var(--bg);
}
.btn-on-dark {
  background: var(--bg);
  color: var(--text);
  border-color: var(--bg);
}
.btn-on-dark:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ============ CTA GRID + FORM ============ */
.cta-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}
.cta-copy {
  text-align: center;
}
.cta-copy h2 { color: var(--bg); margin-bottom: 8px; }
.cta-copy > p {
  color: var(--bg);
  opacity: 0.75;
  font-size: 19px;
  margin-bottom: 0;
  line-height: 1.6;
}
.enquiry-form {
  width: 100%;
  max-width: 600px;
}
.cta-expect {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-expect li {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--bg);
  font-size: 15px;
  opacity: 0.9;
}
.cta-expect .who-check {
  background: rgba(245, 242, 236, 0.1);
  color: var(--accent);
  width: 26px;
  height: 26px;
}
[data-theme="dark"] .cta-expect .who-check {
  background: rgba(15, 15, 14, 0.1);
}

.enquiry-form {
  background: color-mix(in srgb, var(--bg) 6%, transparent);
  border: 1px solid rgba(245, 242, 236, 0.12);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
[data-theme="dark"] .enquiry-form {
  border-color: rgba(15, 15, 14, 0.15);
  background: rgba(15, 15, 14, 0.04);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--bg);
  opacity: 0.7;
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--bg) 8%, transparent);
  border: 1px solid rgba(245, 242, 236, 0.15);
  color: var(--bg);
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
  width: 100%;
}
[data-theme="dark"] .field input,
[data-theme="dark"] .field select,
[data-theme="dark"] .field textarea {
  border-color: rgba(15, 15, 14, 0.2);
  background: rgba(15, 15, 14, 0.08);
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--bg);
  opacity: 0.35;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--bg) 12%, transparent);
}
.field textarea { resize: vertical; min-height: 100px; font-family: inherit; line-height: 1.5; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F5F2EC' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' opacity='0.6'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 42px;
}
[data-theme="dark"] .field select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F0F0E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' opacity='0.6'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}
.field select option { color: #0F0F0E; background: #F5F2EC; }

.form-submit { margin-top: 8px; align-self: flex-start; }
.form-success {
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 6px;
  background: var(--accent-soft);
  color: var(--bg);
  border-left: 3px solid var(--accent);
  font-size: 15px;
  font-weight: 500;
}

/* ============ FOOTER ============ */
.site-footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-tag {
  font-size: 12px;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.copyright { font-size: 13px; color: var(--text-subtle); }

/* ============ iOS BASE FIXES ============ */
* { -webkit-tap-highlight-color: transparent; }
html { -webkit-text-size-adjust: 100%; }
input, select, textarea, button { -webkit-appearance: none; }

/* Prevent iOS zoom on input focus — must be 16px+ */
.field input,
.field select,
.field textarea { font-size: 16px; }

/* Safe area support for notch/Dynamic Island */
.site-header {
  padding-left: max(20px, env(safe-area-inset-left));
  padding-right: max(20px, env(safe-area-inset-right));
}
.site-footer {
  padding-bottom: max(40px, calc(40px + env(safe-area-inset-bottom)));
}

/* ============ RESPONSIVE ============ */

/* Tablet */
@media (max-width: 1024px) {
  .site-nav { display: none; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 720px;
  }
  .hero-visual { justify-content: flex-start; }
  .coaching-mockup { max-width: 100%; }
  .arm-grid { grid-template-columns: 1fr; }
  .arm-grid.two-up { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .hero { padding: 32px 0 48px; }
  .hero-inner { gap: 36px; }
  .hero-title { font-size: clamp(36px, 9vw, 52px); }
  .hero-sub { font-size: 18px; }
  .eyebrow { margin-bottom: 20px; padding-bottom: 16px; }

  .coaching-mockup { max-width: 100%; }

  .myth-reality { padding: 48px 0; }
  .arms { padding: 48px 0; }
  .founder { padding: 56px 0; }
  .cta-section { padding: 56px 0; }

  .section-header { margin-bottom: 40px; }

  .mr-columns { grid-template-columns: 1fr; border-top: none; }
  .mr-col {
    border-right: none;
    border-top: 1px solid var(--border);
    padding: 28px 0 !important;
  }

  .arm-grid.two-up { grid-template-columns: 1fr; }

  .who-grid { grid-template-columns: 1fr; gap: 40px; }
  .field-row { grid-template-columns: 1fr; }
  .logo-row { gap: 24px; }

  .founder-photo img { max-width: 100%; }

  .btn-lg { padding: 14px 22px; font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* Small mobile */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .site-header { top: 12px; margin-top: 12px; }
  .header-inner { padding: 10px 12px 10px 16px; }
  .logo-text { display: none; }

  .hero { padding: 24px 0 40px; }
  .coaching-mockup { border-radius: 12px; }
  .mockup-stats-row { grid-template-columns: 1fr; gap: 8px; }
  .mockup-stats-row .mockup-stat { display: flex; align-items: center; gap: 12px; text-align: left; }
  .mockup-stats-row .mockup-stat-bar-track { margin-top: 0; flex: 1; }

  .arm-card .arm-body { padding: 24px; }

  .enquiry-form { padding: 24px 20px; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }

  .section-header h2 { font-size: clamp(28px, 7vw, 40px); }
}
