/* ---------- Tokens ---------- */
:root {
  --cream: #f5f1ea;
  --cream-2: #ece6d9;
  --ink: #1a2332;
  --ink-2: #0f1820;
  --muted: #5b6068;
  --line: #d8d0c1;
  --brick: #8b3a2d;
  --brick-2: #6f2c22;

  --maxw: 1120px;
  --pad-x: clamp(1.25rem, 4vw, 2.5rem);

  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;

  --r-sm: 4px;
  --r-md: 8px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; }
p { margin: 0; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--cream);
  padding: .5rem 1rem; z-index: 100;
}
.skip:focus { left: 1rem; top: 1rem; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 241, 234, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 68px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav__mark {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  position: relative;
  flex: none;
}
.nav__mark::before,
.nav__mark::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 50%;
  border: 1.5px solid var(--brick);
  border-top-color: transparent;
  border-left-color: transparent;
}
.nav__mark::after {
  transform: rotate(180deg);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: .95rem;
}
.nav__links a {
  text-decoration: none;
  color: var(--ink);
  opacity: 0.85;
  transition: opacity .15s ease;
}
.nav__links a:hover { opacity: 1; }
.nav__cta {
  background: var(--ink);
  color: var(--cream) !important;
  padding: .55rem 1rem;
  border-radius: var(--r-md);
  opacity: 1 !important;
  font-weight: 500;
}
.nav__cta:hover { background: var(--ink-2); }

@media (max-width: 640px) {
  .nav__links a:not(.nav__cta) { display: none; }
}

/* ---------- Type / utilities ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brick);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.eyebrow--light { color: #e8b9af; }

.section {
  padding-block: clamp(4rem, 9vw, 7rem);
  border-top: 1px solid var(--line);
}
.section:first-of-type { border-top: 0; }
.section__head {
  max-width: 760px;
  margin-bottom: 3rem;
}
.section__title {
  font-size: clamp(1.9rem, 3.8vw, 2.75rem);
  line-height: 1.1;
}

/* ---------- Hero ---------- */
.hero {
  padding-block: clamp(4rem, 11vw, 8rem) clamp(3rem, 7vw, 5rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 60vw;
  max-width: 700px;
  aspect-ratio: 1 / 1;
  background: radial-gradient(closest-side, rgba(139,58,45,0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-areas:
    "text image"
    "creds creds";
  column-gap: clamp(2rem, 5vw, 4rem);
  row-gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
.hero__text { grid-area: text; }
.hero .image-slot--hero { grid-area: image; }
.hero__creds { grid-area: creds; }

@media (max-width: 820px) {
  .hero__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "image"
      "creds";
    row-gap: 2.5rem;
  }
}
.hero__title {
  font-size: clamp(2.6rem, 7.5vw, 5.4rem);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}
.hero__lede {
  max-width: 56ch;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 2.25rem;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 3.5rem;
}
.hero__creds {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  max-width: 900px;
}
.hero__creds li {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.4;
}
.hero__creds span {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: .15rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: .85rem 1.5rem;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn--primary {
  background: var(--ink);
  color: var(--cream);
}
.btn--primary:hover { background: var(--ink-2); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--xl {
  background: var(--brick);
  color: #fdf6f1;
  font-size: 1.1rem;
  padding: 1.1rem 2.25rem;
}
.btn--xl:hover { background: var(--brick-2); transform: translateY(-1px); }

/* ---------- Image slots ---------- */
.image-slot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--cream-2);
  isolation: isolate;
}
.image-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  display: block;
}
.image-slot--hero { aspect-ratio: 4 / 5; }
.image-slot--portrait { aspect-ratio: 4 / 5; }
.image-slot--band { aspect-ratio: auto; height: clamp(280px, 42vw, 520px); border-radius: 0; }

/* ---------- Full-width band ---------- */
.band {
  background: var(--ink-2);
}
.band .image-slot {
  width: 100%;
  background: var(--ink-2);
}

/* ---------- Belief block ---------- */
.section--belief {
  background: var(--cream);
}
.lede {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  line-height: 1.4;
  max-width: 56ch;
  letter-spacing: -0.005em;
}
.lede--muted {
  color: var(--muted);
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  margin-top: 1.5rem;
}

/* ---------- Pillars ---------- */
.section--pillars { background: var(--cream-2); }
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.pillar {
  background: var(--cream-2);
  padding: 2.25rem 1.75rem 2rem;
  position: relative;
}
.pillar__num {
  font-family: var(--serif);
  font-size: .95rem;
  color: var(--brick);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 1rem;
}
.pillar h3 {
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: .75rem;
}
.pillar p {
  color: var(--muted);
  font-size: .98rem;
}

/* ---------- Coach ---------- */
.section--coach { background: var(--cream); }
.coach {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-areas:
    "portrait copy"
    "portrait card";
  column-gap: clamp(2rem, 5vw, 4rem);
  row-gap: 1.75rem;
  align-items: start;
}
.coach__portrait { grid-area: portrait; }
.coach__copy     { grid-area: copy; }
.coach__card     { grid-area: card; }

@media (max-width: 820px) {
  .coach {
    grid-template-columns: 1fr;
    grid-template-areas:
      "portrait"
      "copy"
      "card";
  }
}
.coach__lede {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 1.25rem;
}
.coach__copy p:last-child {
  color: var(--muted);
}
.coach__card {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.75rem;
}
.coach__card h3 {
  font-size: .8rem;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brick);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.timeline div {
  padding-block: 1rem;
  border-top: 1px solid var(--line);
}
.timeline div:first-child { border-top: 0; padding-top: 0; }
.timeline div:last-child { padding-bottom: 0; }
.timeline dt {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: .25rem;
}
.timeline dd {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.5;
}

/* ---------- Tools ---------- */
.section--tools { background: var(--cream-2); }
.tools__lede {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.1rem;
  margin-top: -1.5rem;
  margin-bottom: 3rem;
}
.tools {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem 3rem;
}
.tools li {
  border-top: 1px solid var(--ink);
  padding-top: 1.25rem;
}
.tools strong {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  margin-bottom: .5rem;
}
.tools span {
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.5;
}

/* ---------- Pull quote ---------- */
.section--quote {
  background: var(--cream);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}
.pullquote {
  margin: 0;
  max-width: 36ch;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--brick);
}

/* ---------- Contact ---------- */
.section--contact {
  background: var(--ink);
  color: var(--cream);
  border-top: 0;
  text-align: center;
}
.contact {
  max-width: 720px;
  margin: 0 auto;
}
.contact__title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.contact__lede {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.5;
  color: #d6cfc2;
  max-width: 50ch;
  margin: 0 auto 2.5rem;
}
.contact__email {
  margin-top: 1.75rem;
  font-size: .95rem;
  color: #b8b1a4;
}
.contact__email a {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(245,241,234,0.4);
}
.contact__email a:hover { text-decoration-color: var(--cream); }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink-2);
  color: #b8b1a4;
  padding-block: 2.5rem;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .9rem;
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--serif);
  font-weight: 500;
  color: var(--cream);
}
.footer__brand .nav__mark {
  background: transparent;
  border-color: var(--cream);
}
.footer__line {
  color: #b8b1a4;
}
.footer__email {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(245,241,234,0.3);
  padding-bottom: 1px;
}
.footer__email:hover { border-color: var(--cream); }

@media (max-width: 640px) {
  .footer__inner { flex-direction: column; align-items: flex-start; }
}
