:root {
  --paper: #f4f0e8;
  --paper-light: #fbfaf6;
  --ink: #242421;
  --muted: #69695f;
  --olive: #57634a;
  --olive-dark: #36412f;
  --coral: #e56f51;
  --line: rgba(36, 36, 33, 0.18);
  --serif: "Prata", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --page: min(1240px, calc(100% - 96px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button { font: inherit; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 100; background: var(--ink); color: white; padding: 10px 14px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 86px;
  padding: 0 max(48px, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  transition: background-color .35s ease, color .35s ease, height .35s ease, box-shadow .35s ease;
}
.site-header.scrolled { height: 68px; color: var(--ink); background: rgba(244, 240, 232, .94); box-shadow: 0 1px 0 var(--line); backdrop-filter: blur(12px); }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 13px; font-weight: 700; text-transform: uppercase; }
.brand-mark { display: grid; place-items: center; width: 31px; height: 31px; border: 1px solid currentColor; border-radius: 50%; font-family: var(--serif); font-size: 15px; }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 13px; font-weight: 600; }
.site-nav > a:not(.nav-cta) { position: relative; }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.site-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 10px 17px; border: 1px solid currentColor; display: inline-flex; gap: 12px; align-items: center; }
.menu-toggle { display: none; }

.hero { position: relative; min-height: 760px; height: 92vh; max-height: 960px; color: #fff; overflow: hidden; }
.hero-image { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: center 58%; transform: scale(1.03); animation: hero-in 1.6s cubic-bezier(.2,.7,.2,1) forwards; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(19,22,17,.72) 0%, rgba(19,22,17,.4) 42%, rgba(19,22,17,.05) 74%), linear-gradient(0deg, rgba(15,18,13,.38), transparent 42%); }
.hero-content { position: relative; z-index: 2; width: var(--page); margin: 0 auto; height: 100%; padding: 160px 0 82px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.eyebrow { margin: 0 0 22px; font-size: 11px; line-height: 1.2; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
.hero h1 { margin: 0; max-width: 800px; font-family: var(--serif); font-size: 112px; line-height: .98; font-weight: 400; letter-spacing: 0; }
.hero-lead { max-width: 575px; margin: 34px 0 0; font-size: 18px; line-height: 1.55; }
.hero-actions { margin-top: 37px; display: flex; align-items: center; gap: 31px; }
.button { min-height: 54px; padding: 0 23px; display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; font-size: 13px; font-weight: 700; transition: transform .25s ease, background-color .25s ease, color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--coral); color: #fff; }
.button-primary:hover { background: #ce583e; }
.text-link { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.55); font-size: 13px; font-weight: 600; }
.hero-note { position: absolute; z-index: 2; right: max(48px, calc((100vw - 1240px) / 2)); bottom: 50px; width: 140px; border-top: 1px solid rgba(255,255,255,.6); padding-top: 14px; display: flex; flex-direction: column; }
.hero-note strong { font-family: var(--serif); font-size: 28px; font-weight: 400; }
.hero-note span { font-size: 11px; line-height: 1.4; text-transform: uppercase; }

.section-pad { width: var(--page); margin: 0 auto; }
.intro { padding-top: 105px; padding-bottom: 105px; display: grid; grid-template-columns: 1fr 2fr; gap: 80px; border-bottom: 1px solid var(--line); }
.intro-kicker { font-family: var(--serif); font-size: 16px; color: var(--olive); line-height: 1.55; }
.intro-copy { max-width: 780px; margin: 0; font-family: var(--serif); font-size: 34px; line-height: 1.5; }

.goals { padding-top: 120px; padding-bottom: 130px; }
.section-heading { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; margin-bottom: 70px; }
.section-heading h2, .about-content h2, .contact h2 { margin: 0; font-family: var(--serif); font-weight: 400; font-size: 66px; line-height: 1.17; }
.goal-list { border-top: 1px solid var(--line); }
.goal-item { min-height: 168px; display: grid; grid-template-columns: 1fr 2fr 120px; gap: 80px; align-items: center; border-bottom: 1px solid var(--line); }
.goal-number { align-self: start; margin-top: 34px; font-size: 11px; font-weight: 700; color: var(--muted); }
.goal-item h3 { margin: 0 0 9px; font-family: var(--serif); font-size: 29px; font-weight: 400; }
.goal-item p { max-width: 550px; margin: 0; color: var(--muted); }
.goal-symbol { justify-self: center; display: grid; place-items: center; width: 72px; height: 72px; border-radius: 50%; background: var(--olive); color: white; font-family: var(--serif); transform: rotate(-7deg); transition: transform .35s ease; }
.goal-item:hover .goal-symbol { transform: rotate(4deg) scale(1.05); }
.goal-symbol-square { border-radius: 3px; background: var(--coral); font-size: 25px; }
.goal-symbol-sun { background: transparent; color: var(--ink); border: 1px solid var(--ink); font-size: 27px; }

.about { display: grid; grid-template-columns: 1fr 1fr; min-height: 830px; background: var(--paper-light); }
.about-photo { position: relative; overflow: hidden; }
.about-photo img { height: 100%; object-fit: cover; object-position: center 30%; }
.about-photo p { position: absolute; left: 48px; bottom: 42px; margin: 0; padding: 16px 20px; background: var(--paper-light); font-family: var(--serif); font-size: 18px; line-height: 1.4; }
.about-content { width: 100%; padding: 110px clamp(48px, 7vw, 120px); align-self: center; }
.about-content .eyebrow { color: var(--coral); }
.about-lead { margin: 36px 0 22px; font-size: 21px; line-height: 1.55; }
.about-content > p:not(.eyebrow):not(.about-lead) { color: var(--muted); }
.about-points { margin-top: 48px; border-top: 1px solid var(--line); }
.about-points > div { display: grid; grid-template-columns: 48px 1fr; align-items: center; padding: 15px 0; border-bottom: 1px solid var(--line); }
.about-points span { font-size: 10px; color: var(--muted); }
.about-points p { margin: 0; font-size: 14px; font-weight: 600; }

.steps { padding-top: 125px; padding-bottom: 135px; }
.steps-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps-grid li { min-height: 270px; padding: 30px 38px 38px; border-right: 1px solid var(--line); }
.steps-grid li:first-child { padding-left: 0; }
.steps-grid li:last-child { border-right: 0; }
.steps-grid span { font-size: 11px; color: var(--coral); font-weight: 700; }
.steps-grid h3 { margin: 70px 0 12px; font-family: var(--serif); font-size: 26px; font-weight: 400; }
.steps-grid p { max-width: 300px; margin: 0; color: var(--muted); font-size: 14px; }

.contact { position: relative; width: 100%; overflow: hidden; padding-top: 110px; padding-bottom: 105px; background: var(--olive-dark); color: #fff; }
.contact::before { content: ""; position: absolute; width: 360px; height: 360px; right: -150px; top: -170px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; }
.contact-inner { position: relative; z-index: 2; width: min(1000px, calc(100% - 96px)); margin: 0 auto; text-align: center; }
.contact .eyebrow { color: #d8a795; }
.contact h2 { font-size: 78px; }
.contact-inner > p:not(.eyebrow) { margin: 27px auto 0; max-width: 520px; color: rgba(255,255,255,.72); }
.contact-actions { margin-top: 44px; display: flex; justify-content: center; align-items: stretch; gap: 14px; }
.button-light { background: var(--paper-light); color: var(--ink); }
.button-light:hover { background: #fff; }
.channel-link { min-width: 245px; padding: 10px 17px; display: grid; grid-template-columns: 1fr auto; text-align: left; border: 1px solid rgba(255,255,255,.5); }
.channel-link span { align-self: end; font-size: 13px; font-weight: 700; }
.channel-link small { grid-row: 2; font-size: 11px; color: rgba(255,255,255,.62); }
.channel-link b { grid-column: 2; grid-row: 1 / span 2; align-self: center; font-weight: 400; }
.contact-stamp { position: absolute; left: -60px; bottom: 60px; width: 145px; height: 145px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; display: grid; place-items: center; font-size: 9px; letter-spacing: 2px; animation: spin 18s linear infinite; }

.site-footer { width: var(--page); min-height: 105px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; font-size: 11px; color: var(--muted); }
.site-footer p { margin: 0; }
.site-footer p:last-child { text-align: right; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.65,.25,1); }
.js .reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes hero-in { to { transform: scale(1); } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  :root { --page: calc(100% - 48px); }
  .site-header { height: 72px; padding: 0 24px; }
  .menu-toggle { position: relative; z-index: 22; width: 42px; height: 42px; padding: 0; border: 0; background: transparent; color: inherit; display: grid; place-content: center; gap: 7px; }
  .menu-toggle span { width: 22px; height: 1px; background: currentColor; transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; z-index: 21; padding: 120px 24px 40px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 18px; background: var(--paper); color: var(--ink); transform: translateX(100%); visibility: hidden; transition: transform .35s ease, visibility .35s; }
  .site-nav.open { transform: translateX(0); visibility: visible; }
  .site-nav a { font-family: var(--serif); font-size: 31px; }
  .site-nav .nav-cta { margin-top: 20px; font-family: var(--sans); font-size: 14px; }
  .hero { height: 88vh; min-height: 690px; }
  .hero-content, .hero-content > * { min-width: 0; }
  .hero h1 { font-size: 72px; }
  .hero-image { object-position: 56% center; }
  .hero-content { padding: 115px 0 118px; justify-content: flex-end; }
  .hero-lead { max-width: 520px; }
  .hero-note { right: 24px; bottom: 35px; }
  .intro, .section-heading { grid-template-columns: 1fr; gap: 28px; }
  .intro { padding: 75px 0; }
  .intro-copy { font-size: 28px; }
  .goals, .steps { padding-top: 90px; padding-bottom: 100px; }
  .goal-item { grid-template-columns: 45px 1fr 78px; gap: 18px; }
  .about { min-height: auto; }
  .about-content { padding: 80px 48px; }
  .steps-grid h3 { margin-top: 55px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer > p:nth-child(2) { display: none; }
}

@media (max-width: 640px) {
  :root { --page: calc(100% - 36px); }
  body { font-size: 15px; }
  .hero { min-height: 660px; height: 92svh; }
  .hero-image { object-position: 51% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(18,21,16,.82) 0%, rgba(18,21,16,.4) 58%, rgba(18,21,16,.08) 100%); }
  .hero h1 { width: 100%; font-size: 50px; overflow-wrap: anywhere; }
  .hero-lead { margin-top: 25px; font-size: 16px; }
  .hero-actions { width: 100%; margin-top: 28px; align-items: flex-start; flex-direction: column; gap: 12px; }
  .hero-actions .button { width: 100%; }
  .hero-note { display: none; }
  .eyebrow { margin-bottom: 16px; }
  .intro { padding: 62px 0; }
  .intro-copy { font-size: 23px; line-height: 1.5; }
  .section-heading { margin-bottom: 44px; }
  .section-heading h2, .about-content h2 { font-size: 39px; }
  .goals { padding-top: 72px; padding-bottom: 80px; }
  .goal-item { min-height: 0; padding: 27px 0; grid-template-columns: 28px 1fr; gap: 12px; }
  .goal-number { margin-top: 8px; }
  .goal-item h3 { font-size: 23px; }
  .goal-item p { font-size: 14px; }
  .goal-symbol { display: none; }
  .about { display: flex; flex-direction: column; }
  .about-photo { min-height: 510px; }
  .about-photo img { position: absolute; inset: 0; }
  .about-photo p { left: 18px; bottom: 18px; font-size: 15px; }
  .about-content { padding: 70px 18px 75px; }
  .about-lead { margin-top: 28px; font-size: 18px; }
  .steps { padding-top: 74px; padding-bottom: 80px; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid li, .steps-grid li:first-child { min-height: 0; padding: 25px 0 30px; border-right: 0; border-bottom: 1px solid var(--line); }
  .steps-grid li:last-child { border-bottom: 0; }
  .steps-grid h3 { margin: 24px 0 7px; font-size: 23px; }
  .contact { padding-top: 78px; padding-bottom: 75px; }
  .contact-inner { width: calc(100% - 36px); }
  .contact h2 { font-size: 42px; }
  .contact-actions { flex-direction: column; }
  .contact-actions > a { width: 100%; min-height: 58px; }
  .channel-link { min-width: 0; }
  .contact-stamp { display: none; }
  .site-footer { min-height: 110px; }
  .site-footer .brand span:last-child { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
