:root {
  --ink: #15110f;
  --paper: #f2ede5;
  --paper-deep: #e5ddd1;
  --oxblood: #781823;
  --oxblood-dark: #470b12;
  --copper: #b57a52;
  --muted: #6f655e;
  --line: rgba(21, 17, 15, .17);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}
a { color: inherit; }
img { display: block; width: 100%; height: auto; }
.site-header {
  min-height: 84px;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(242, 237, 229, .94);
}
.wordmark {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.55rem;
  text-decoration: none;
}
nav { display: flex; align-items: center; gap: 28px; font-size: .91rem; }
nav > a:not(.button) { text-decoration: none; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 12px 23px;
  border: 1px solid var(--oxblood);
  background: var(--oxblood);
  color: white;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.button:hover { background: var(--oxblood-dark); border-color: var(--oxblood-dark); transform: translateY(-1px); }
.button-small { min-height: 42px; padding: 9px 16px; font-size: .84rem; }
.button-light { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.button-light:hover { background: white; border-color: white; }
.text-link {
  font-weight: 600;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}
.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, .85fr);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  padding: clamp(72px, 10vw, 150px) clamp(30px, 7vw, 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow, .section-label {
  margin: 0 0 24px;
  color: var(--oxblood);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
}
h1, h2, blockquote {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .98;
}
h1 { max-width: 790px; font-size: clamp(3.5rem, 7vw, 7.8rem); }
h2 { font-size: clamp(2.6rem, 5vw, 5rem); }
.hero-lede {
  max-width: 670px;
  margin: 36px 0 0;
  color: #48403a;
  font-size: clamp(1.12rem, 1.8vw, 1.42rem);
  line-height: 1.5;
}
.hero-actions { margin-top: 38px; display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.reassurance { max-width: 520px; margin: 18px 0 0; color: var(--muted); font-size: .84rem; }
.hero-portrait { position: relative; margin: 0; min-height: 680px; background: var(--oxblood-dark); }
.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 70px 0 90px rgba(30, 6, 9, .21);
  pointer-events: none;
}
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; }
.manifesto {
  padding: clamp(90px, 12vw, 180px) clamp(28px, 9vw, 150px);
  background: var(--ink);
  color: var(--paper);
}
.manifesto .section-label { color: #d8a982; }
.manifesto blockquote { max-width: 1160px; font-size: clamp(3.2rem, 7vw, 7.5rem); }
.manifesto-copy {
  max-width: 760px;
  margin: 64px 0 0 auto;
  padding-left: clamp(0px, 6vw, 100px);
  border-left: 1px solid rgba(242,237,229,.27);
  color: #c8c0b6;
  font-size: 1.12rem;
}
.work { padding: clamp(90px, 11vw, 160px) clamp(28px, 7vw, 110px); }
.section-intro { max-width: 900px; }
.work-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.work-grid article { padding: 38px clamp(20px, 3vw, 44px) 38px 0; border-bottom: 1px solid var(--line); }
.work-grid article + article { padding-left: clamp(20px, 3vw, 44px); border-left: 1px solid var(--line); }
.work-grid span { color: var(--copper); font-size: .8rem; }
.work-grid h3 { margin: 40px 0 20px; font-family: "Newsreader", Georgia, serif; font-size: 2rem; font-weight: 500; line-height: 1.05; }
.work-grid p { color: var(--muted); }
.section-cta { margin-top: 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.section-cta p { font-family: "Newsreader", Georgia, serif; font-size: 1.8rem; }
.about {
  display: grid;
  grid-template-columns: minmax(330px, .8fr) minmax(0, 1.2fr);
  background: var(--paper-deep);
}
.about-portrait { margin: 0; min-height: 740px; }
.about-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-copy { max-width: 850px; padding: clamp(80px, 10vw, 150px) clamp(30px, 8vw, 130px); }
.about-copy h2 { margin-bottom: 45px; }
.about-copy p:not(.section-label) { max-width: 670px; color: #4d443e; }
.about-copy .text-link { display: inline-block; margin-top: 24px; }
.testimonial {
  padding: clamp(90px, 12vw, 170px) clamp(28px, 12vw, 190px);
  background: var(--ink);
  color: var(--paper);
}
.testimonial .section-label { color: #d8a982; }
.testimonial h2 {
  max-width: 850px;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
}
.testimonial blockquote {
  max-width: 780px;
  margin: 46px 0 0 auto;
  padding-left: clamp(24px, 4vw, 60px);
  border-left: 1px solid rgba(242,237,229,.27);
  color: #d8d0c6;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  letter-spacing: 0;
  line-height: 1.7;
}
.testimonial-credit {
  max-width: 780px;
  margin: 28px 0 0 auto;
  padding-left: clamp(24px, 4vw, 60px);
  color: #c8c0b6;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .08em;
}
.grounded {
  padding: clamp(100px, 13vw, 190px) clamp(28px, 9vw, 150px);
  background: var(--oxblood);
  color: white;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: end;
}
.grounded .section-label { color: #eccbb3; }
.grounded h2 { max-width: 950px; }
.grounded-intro > p:not(.section-label) { max-width: 720px; margin: 38px 0; color: #efdfe0; font-size: 1.16rem; }
.grounded-kicker {
  margin: 0 0 22px;
  color: #eccbb3;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.grounded-expect ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.28); }
.grounded-expect li { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.28); color: #f3e7e7; }
.final-cta { padding: clamp(100px, 14vw, 200px) 28px; text-align: center; }
.final-cta h2 { margin: 0 auto; }
.final-cta > p:not(.section-label) { max-width: 710px; margin: 34px auto; color: var(--muted); font-size: 1.1rem; }
.coaching-points {
  max-width: 760px;
  margin: 0 auto 36px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.coaching-points span { padding: 8px 14px; border: 1px solid var(--line); font-size: .86rem; }
.final-cta .call-note { max-width: 650px; margin-top: 0; font-size: .98rem; }
footer {
  padding: 30px clamp(24px, 5vw, 80px);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .83rem;
}
footer p { margin: 0; }
footer div { display: flex; gap: 24px; }

.links-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -10%, rgba(181,122,82,.32), transparent 38%),
    var(--oxblood-dark);
  color: var(--paper);
}
.links-shell {
  min-height: 100vh;
  padding: clamp(42px, 8vw, 90px) 20px;
  display: grid;
  place-items: center;
}
.links-card {
  width: min(100%, 660px);
  text-align: center;
}
.links-portrait {
  width: 124px;
  height: 124px;
  margin: 0 auto 26px;
  border: 2px solid rgba(242,237,229,.65);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 22%;
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}
.links-kicker {
  margin: 0 0 13px;
  color: #eccbb3;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.links-card h1 {
  max-width: none;
  font-size: clamp(3rem, 10vw, 5rem);
}
.links-intro { max-width: 560px; margin: 18px auto 0; color: #f0dfdf; font-size: 1.08rem; }
.links-motto {
  margin: 18px 0 34px;
  color: #eccbb3;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.42rem;
}
.links-actions { display: grid; gap: 14px; }
.links-button {
  min-height: 62px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(242,237,229,.42);
  background: rgba(242,237,229,.07);
  color: var(--paper);
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.links-button strong { display: block; }
.links-button small {
  display: block;
  margin-top: 4px;
  color: #d9caca;
  font-size: .78rem;
  font-weight: 400;
  line-height: 1.4;
}
.links-button-primary small { color: #655b54; }
.links-button:hover {
  background: rgba(242,237,229,.14);
  border-color: rgba(242,237,229,.75);
  transform: translateY(-1px);
}
.links-button-primary {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}
.links-button-primary:hover { background: white; border-color: white; }
.links-social {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 22px;
}
.links-social a {
  color: #d9caca;
  font-size: .85rem;
  text-underline-offset: 5px;
}

@media (max-width: 900px) {
  .site-header { min-height: 72px; }
  .site-header nav > a:not(.button) { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding-top: 80px; padding-bottom: 75px; }
  .hero-portrait { min-height: 70vh; }
  .work-grid { grid-template-columns: 1fr; margin-top: 55px; }
  .work-grid article, .work-grid article + article { padding: 34px 0; border-left: 0; }
  .work-grid h3 { margin-top: 20px; }
  .about { grid-template-columns: 1fr; }
  .about-portrait { min-height: 75vh; }
  .grounded { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .wordmark { font-size: 1.3rem; }
  .button-small { padding: 9px 12px; }
  .hero-copy { padding-inline: 24px; }
  h1 { font-size: clamp(3.3rem, 17vw, 5.3rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .text-link { text-align: center; }
  .section-cta { align-items: stretch; flex-direction: column; }
  .section-cta p { margin-bottom: 0; }
  footer { flex-direction: column; }
  footer div { flex-wrap: wrap; }
  .links-shell { padding-inline: 16px; }
  .links-portrait { width: 108px; height: 108px; }
  .links-button { min-height: 58px; padding-inline: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}

/* Full story */
.story-page { background: #eee8de; }
.story-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
  min-height: 78vh;
  background: var(--ink);
  color: var(--paper);
}
.story-hero > div {
  padding: clamp(90px, 11vw, 170px) clamp(28px, 8vw, 130px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-hero h1 { font-size: clamp(4rem, 8vw, 8.4rem); }
.story-hero p:last-child { max-width: 650px; margin: 38px 0 0; color: #c8c0b6; font-size: 1.18rem; }
.story-hero figure { min-height: 620px; margin: 0; }
.story-hero img { width: 100%; height: 100%; object-fit: cover; }
.story-body {
  max-width: 810px;
  margin: 0 auto;
  padding: clamp(90px, 12vw, 170px) 28px;
  color: #302a26;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.2rem, 1.7vw, 1.38rem);
  line-height: 1.68;
}
.story-body .story-lede { color: var(--ink); font-size: 1.35em; line-height: 1.45; }
.story-body h2 { margin: 110px 0 36px; color: var(--ink); font-size: clamp(2.6rem, 5vw, 4.6rem); }
.story-body blockquote {
  margin: 80px -10vw;
  padding: 55px clamp(28px, 8vw, 90px);
  border-left: 5px solid var(--oxblood);
  background: var(--paper);
  color: var(--oxblood-dark);
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
  line-height: 1.06;
}
.story-grounded {
  padding: clamp(100px, 13vw, 180px) 28px;
  text-align: center;
  background: var(--oxblood-dark);
  color: #fff;
}
.story-grounded .section-label { color: #eccbb3; }
.story-grounded h2 { max-width: 900px; margin: 0 auto; }
.story-grounded > p:not(.section-label) { max-width: 720px; margin: 34px auto; color: #f3e7e7; font-size: 1.1rem; }
.story-cta { padding: clamp(100px, 13vw, 180px) 28px; text-align: center; background: var(--paper); }
.story-cta h2 { max-width: 900px; margin: 0 auto; }
.story-cta > p:not(.section-label) { max-width: 680px; margin: 34px auto; color: var(--muted); font-size: 1.1rem; }

@media (max-width: 900px) {
  .story-hero { grid-template-columns: 1fr; }
  .story-hero figure { min-height: 65vh; }
}

@media (max-width: 700px) {
  .story-body blockquote { margin-inline: -8px; padding: 40px 25px; }
  .story-body h2 { margin-top: 80px; }
}
