@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f2eee6;
  --surface: #faf8f3;
  --ink: #202622;
  --muted: #4f5853;
  --accent: #9a6d25;
  --accent-soft: rgba(154,109,37,.09);
  --line: rgba(32,38,34,.16);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 94px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img { max-width: 100%; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 8px 12px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242,238,230,.96);
  border-bottom: 1px solid rgba(32,38,34,.10);
  backdrop-filter: blur(14px);
}
.navbar {
  width: min(var(--max), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: .72rem;
  letter-spacing: .08em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.38);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 700;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  border-color: rgba(154,109,37,.48);
  background: rgba(255,255,255,.72);
}

.page {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .72fr);
  gap: clamp(44px, 6vw, 88px);
  align-items: stretch;
  padding: 56px 0 64px;
  border-bottom: 1px solid var(--line);
}
.hero-copy { max-width: 720px; }
.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 800;
}
.hero-positioning {
  max-width: 700px;
  margin: 20px 0 0;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.35;
  font-weight: 700;
}
.hero-intro {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
}
.hero-intro strong { color: var(--ink); font-weight: 700; }
.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-size: .86rem;
  font-weight: 800;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-1px); border-color: rgba(154,109,37,.56); }
.button.primary { color: #fff; border-color: var(--ink); background: var(--ink); }
.button.secondary { background: rgba(255,255,255,.56); }

.hero-visual {
  width: 100%;
  height: auto;
  align-self: stretch;
  justify-self: stretch;
  overflow: hidden;
  border-radius: 18px;
  background: #d8d3c9;
  box-shadow: 0 16px 38px rgba(32,38,34,.08);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 18%;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
}
.facts > div {
  min-height: 150px;
  padding: 26px 24px;
  border-right: 1px solid var(--line);
}
.facts > div:first-child { padding-left: 0; }
.facts > div:last-child { border-right: 0; }
.facts span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.facts strong {
  display: block;
  font-size: .93rem;
  line-height: 1.5;
}

.section {
  padding: 78px 0;
}
.split-section {
  display: grid;
  grid-template-columns: minmax(260px,.82fr) minmax(0,1.18fr);
  gap: clamp(48px, 7vw, 96px);
}
.section-heading h2,
.section h2 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(1.85rem, 2.6vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -.03em;
  text-wrap: balance;
}
.section-heading.wide {
  max-width: 900px;
  margin-bottom: 34px;
}
.section-copy { max-width: 780px; }
.section-copy p,
.practice-list p,
.journey-list p,
.content-grid p,
.contact-section p,
.perspective p {
  color: var(--muted);
}
.section-copy p { margin: 0; font-size: 1rem; }
.section-copy p + p { margin-top: 18px; }

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  border-top: 1px solid var(--line);
}
.content-grid article {
  min-height: 190px;
  padding: 28px 30px 28px 0;
  border-bottom: 1px solid var(--line);
}
.content-grid article:nth-child(odd) {
  padding-right: 38px;
  border-right: 1px solid var(--line);
}
.content-grid article:nth-child(even) {
  padding-left: 38px;
}
.content-grid article:nth-last-child(-n+2) {
  border-bottom: 0;
}
.content-grid h3 {
  margin: 12px 0 8px;
  font-size: 1.08rem;
}
.content-grid p {
  max-width: 52ch;
  margin: 0;
}
.grid-index,
.practice-index,
.journey-no {
  color: var(--accent);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .10em;
}

.practice-list,
.journey-list { border-top: 1px solid var(--line); }
.practice-list article,
.journey-list article {
  display: grid;
  grid-template-columns: 90px minmax(0,1fr);
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.practice-list article:last-child,
.journey-list article:last-child {
  border-bottom: 0;
}
.practice-list h3,
.journey-list h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}
.practice-list p,
.journey-list p { max-width: 850px; margin: 0; }

.principles-grid article { min-height: 178px; }
.principles-grid article.wide-item {
  grid-column: 1 / -1;
  min-height: 0;
  padding-right: 0;
  border-right: 0;
}
.principles-grid article.wide-item p { max-width: 80ch; }

.perspective {
  position: relative;
  margin: 28px 0;
  padding: 58px clamp(28px, 4vw, 54px);
  border: 1px solid rgba(32,38,34,.14);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(59,73,65,.055), rgba(255,255,255,.20)),
    #ece8df;
}
.perspective-inner {
  max-width: 900px;
}
.perspective .section-label { color: var(--accent); }
.perspective p {
  max-width: 840px;
  margin: 18px 0 0;
  color: var(--muted);
}
.perspective strong { color: var(--ink); }
.perspective-statement {
  margin-top: 28px !important;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink) !important;
  font-size: 1.12rem;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 42px;
  align-items: end;
}
.contact-section p { max-width: 760px; margin: 14px 0 0; }
.contact-actions { margin-top: 0; justify-content: flex-end; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 0 36px;
  color: var(--muted);
  font-size: .82rem;
}

@media (max-width: 960px) {
  .navbar { align-items: flex-start; padding: 14px 0; }
  .nav-links { max-width: 520px; }
  .hero { grid-template-columns: minmax(0,1fr) 38%; gap: 40px; }
  .hero-visual { width: 100%; height: auto; }
  .facts { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .facts > div:nth-child(2) { border-right: 0; }
  .facts > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .facts > div:nth-child(3) { padding-left: 0; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 16px; }
  .site-header { position: static; }
  .navbar { min-height: 64px; align-items: center; }
  .nav-links { display: none; }
  .page { width: min(var(--max), calc(100% - 24px)); }
  .hero {
    grid-template-columns: 1fr;
    padding: 24px 0 56px;
  }
  .hero-visual { order: 1; width: 100%; height: auto; justify-self: stretch; }
  .hero-visual img { height: auto; aspect-ratio: 4 / 4.3; object-position: center 18%; }
  .hero-copy { order: 2; }
  .hero h1 { font-size: clamp(2.6rem, 12vw, 3.8rem); }
  .hero-positioning { font-size: 1.18rem; }
  .facts { grid-template-columns: 1fr; }
  .facts > div,
  .facts > div:first-child,
  .facts > div:nth-child(3) {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .facts > div:last-child { border-bottom: 0; }
  .section { padding: 62px 0; }
  .split-section,
  .contact-section { grid-template-columns: 1fr; gap: 32px; }
  .section-heading.wide { margin-bottom: 28px; }
  .content-grid { grid-template-columns: 1fr; }
  .content-grid article,
  .content-grid article:nth-child(odd),
  .content-grid article:nth-child(even),
  .principles-grid article.wide-item {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .content-grid article:last-child { border-bottom: 0; }
  .practice-list article,
  .journey-list article { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .perspective {
    margin: 22px 0;
    padding: 44px 24px;
    border-radius: 16px;
  }
  .contact-actions { justify-content: flex-start; }
  footer { flex-direction: column; gap: 4px; }
}