:root {
  --paper: #fbf7f1;
  --paper-soft: #f3ece3;
  --ink: #1d2526;
  --muted: #66706d;
  --line: rgba(29, 37, 38, 0.14);
  --orange: #d86b1f;
  --orange-dark: #9f4313;
  --olive: #5b6445;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(29, 37, 38, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

img,
iframe {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(216, 107, 31, 0.5);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 46px);
  background: rgba(251, 247, 241, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 0.86rem;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.92rem;
}

.site-nav a {
  color: rgba(29, 37, 38, 0.82);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--orange-dark);
}

.nav-cta {
  padding: 9px 14px;
  color: var(--white) !important;
  background: var(--ink);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: clamp(34px, 6vw, 72px);
  min-height: calc(100vh - 68px);
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3.25rem, 8vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 640px;
  margin: 24px 0 0;
  color: #40504c;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  background: var(--orange-dark);
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--white);
}

.hero-image-wrap {
  position: relative;
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: 22px -20px -22px 20px;
  z-index: -1;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 28%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.proof-strip div {
  min-height: 132px;
  padding: 24px;
  background: var(--white);
}

.proof-strip strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.proof-strip span {
  display: block;
  max-width: 200px;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.35;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(24px, 5vw, 64px);
  margin-bottom: 40px;
}

.section-heading.compact {
  display: block;
  max-width: 740px;
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.story-grid,
.topic-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.story-card,
.topic-grid article,
.testimonial-grid blockquote {
  min-height: 100%;
  margin: 0;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.story-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--orange-dark);
  font-weight: 900;
}

.story-card p,
.topic-grid p,
.testimonial-grid p {
  margin: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(32px, 6vw, 76px);
}

.split-copy p:not(.eyebrow),
.beyond-copy p {
  color: #46534f;
  font-size: 1.05rem;
}

.mini-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}

.mini-facts span {
  padding: 12px 14px;
  color: #31413d;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.3;
}

.feature-photo {
  margin: 0;
}

.feature-photo img,
.beyond-section img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-photo figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.image-band {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 12px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.image-band img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 8px;
}

.video-section {
  padding-top: 72px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.ideas-section {
  border-top: 1px solid var(--line);
}

.topic-grid {
  grid-template-columns: repeat(4, 1fr);
}

.mentor-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 22px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.mentor-note p {
  margin: 0;
}

.mentor-note a {
  color: var(--white);
  font-weight: 800;
  white-space: nowrap;
}

.man-section {
  align-items: start;
}

.disclaimer {
  padding: 14px 16px;
  border-left: 4px solid var(--orange);
  background: rgba(255, 255, 255, 0.65);
}

.man-media {
  display: grid;
  gap: 14px;
}

.man-logo {
  width: 220px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
}

.strava-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.strava-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(29, 37, 38, 0.1);
}

.beyond-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(32px, 6vw, 76px);
  border-top: 1px solid var(--line);
}

.social-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 24px;
}

.social-links a,
.footer-links a {
  font-weight: 800;
}

.recommendations-section {
  background: var(--paper-soft);
  width: 100%;
  max-width: none;
  padding-right: max(18px, calc((100% - var(--max)) / 2));
  padding-left: max(18px, calc((100% - var(--max)) / 2));
}

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

.testimonial-grid blockquote {
  background: var(--paper);
}

.testimonial-grid p {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.45;
}

.testimonial-grid cite {
  display: block;
  margin-top: 20px;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.media-section {
  border-top: 1px solid var(--line);
}

.recognition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.recognition-grid > div {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.recognition-grid ul {
  padding-left: 20px;
  margin: 0;
  color: var(--muted);
}

.recognition-grid li + li {
  margin-top: 10px;
}

.media-links {
  display: grid;
  gap: 10px;
}

.media-links a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-weight: 800;
  text-decoration: none;
}

.media-links a::after {
  content: "Open";
  color: var(--orange-dark);
  font-size: 0.85rem;
}

.final-cta {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  padding-top: 56px;
}

.final-cta img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 46px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero,
  .split-section,
  .beyond-section,
  .final-cta,
  .recognition-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  .hero-image {
    max-height: 620px;
  }

  .proof-strip,
  .story-grid,
  .topic-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .image-band {
    grid-template-columns: 1fr;
  }

  .image-band img {
    height: auto;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .section,
  .proof-strip,
  .image-band {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    padding-top: 36px;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 4.6rem);
  }

  .hero-actions,
  .mentor-note,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .proof-strip,
  .story-grid,
  .topic-grid,
  .testimonial-grid,
  .mini-facts,
  .strava-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    min-height: auto;
  }

  .story-card,
  .topic-grid article,
  .testimonial-grid blockquote,
  .recognition-grid > div {
    padding: 20px;
  }

  .man-logo {
    width: 170px;
  }

  .strava-grid img {
    height: auto;
  }

  .final-cta {
    padding-top: 28px;
  }
}
