:root {
  --white: #ffffff;
  --paper: #fcfbf8;
  --slate: #2e3a44;
  --ink: #46505a;
  --muted: #8a929a;
  --forest: #1e3b2c;
  --hairline: #e7e4dd;
  --grey: #c7cbc9;
  --shadow: 0 24px 70px rgba(46, 58, 68, 0.10);
  --radius: 22px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--forest);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

p {
  margin: 0 0 1rem;
  color: var(--ink);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  color: var(--slate);
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.7rem);
  max-width: 9.7ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  max-width: 13ch;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

ul {
  margin: 0;
  padding-left: 1.25rem;
}

li {
  margin: 0.6rem 0;
  color: var(--ink);
}

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

.narrow {
  max-width: 920px;
}

.section {
  padding: clamp(76px, 10vw, 130px) 0;
}

.soft {
  background: var(--paper);
  border-block: 1px solid var(--hairline);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 10;
  background: var(--forest);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  left: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 9;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--slate);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
}

.brand-mark svg {
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
}

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

.nav-cta {
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  background: var(--paper);
}

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

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

/* Hero */
.hero {
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 78% 20%, rgba(30, 59, 44, 0.10), transparent 32%),
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.82fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.hero-copy .lead {
  margin-top: 1.8rem;
}

.lead {
  font-size: clamp(1.12rem, 1.9vw, 1.45rem);
  color: var(--slate);
  line-height: 1.45;
}

.eyebrow {
  color: var(--forest);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 1rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.98rem;
}

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

.button.secondary {
  background: var(--white);
  border-color: var(--hairline);
  color: var(--slate);
}

.hero-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--hairline);
  border-radius: calc(var(--radius) + 14px);
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.hero-card {
  display: grid;
  place-items: center;
}

.wheel-img {
  display: block;
  width: 100%;
  max-width: 430px;
}

.wheel-caption {
  margin: 1.1rem 0 0;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
  font-style: italic;
  font-size: 0.95rem;
}

.wise-wheel {
  display: grid;
  gap: 0.9rem;
}

.wise-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 0.2rem 1rem;
  align-items: center;
  padding: 1.15rem;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid var(--hairline);
}

.wise-item span {
  grid-row: span 2;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 800;
}

.wise-item strong {
  color: var(--slate);
  font-size: 1.1rem;
}

.wise-item small {
  color: var(--muted);
  font-weight: 700;
}

/* Content */
.text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.callout {
  margin-top: 1.8rem;
  padding: 1.5rem;
  border-left: 5px solid var(--forest);
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.14rem;
  color: var(--slate);
}

.callout.small {
  font-size: 1rem;
}

.callout em {
  font-style: italic;
  color: var(--forest);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.6rem;
}

.section-heading p:not(.eyebrow) {
  font-size: 1.12rem;
  margin-top: 1rem;
}

.cards {
  display: grid;
  gap: 1rem;
}

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

.card,
.panel,
.profile-card,
.details-box,
.notice,
.contact-form {
  border: 1px solid var(--hairline);
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 2.8vw, 2rem);
}

.card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.letter,
.framework-letter {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 1rem;
}

.emblem {
  width: 62px;
  height: 62px;
  object-fit: contain;
  margin-bottom: 0.9rem;
}

.framework-emblem {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.mini-heading {
  color: var(--forest);
  font-weight: 800;
  margin: 0.65rem 0;
}

.centered-statement {
  margin: 3rem auto 0;
  max-width: 760px;
  text-align: center;
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  line-height: 1.35;
  color: var(--slate);
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* Workshop */
.feature-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: calc(var(--radius) + 10px);
  padding: clamp(1.4rem, 4vw, 3rem);
  box-shadow: var(--shadow);
}

.feature-panel h2 {
  max-width: 11ch;
}

.details-box {
  background: var(--paper);
}

.details-box dl {
  margin: 0;
  display: grid;
  gap: 1rem;
}

.details-box dt {
  color: var(--forest);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 0.72rem;
}

.details-box dd {
  margin: 0.25rem 0 0;
  color: var(--slate);
  font-weight: 600;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
}

.check-list li::before {
  content: "•";
  position: absolute;
  left: 0.4rem;
  color: var(--forest);
  font-weight: 800;
}

.notice {
  margin-top: 1rem;
}

/* Framework */
.framework-list {
  display: grid;
  gap: 1rem;
}

.framework-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1.2rem;
  padding: clamp(1.25rem, 2.8vw, 2rem);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--paper);
}

.framework-row h3 span {
  display: block;
  margin-top: 0.35rem;
  color: var(--forest);
  font-size: 1rem;
  letter-spacing: 0;
}

.framework-letter {
  width: 64px;
  height: 64px;
  font-size: 1.65rem;
}

/* About */
.about-grid {
  align-items: start;
}

.profile-card {
  box-shadow: var(--shadow);
}

.quote {
  margin: 3rem 0 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: calc(var(--radius) + 10px);
  background: var(--forest);
}

.quote p {
  color: var(--white);
  font-size: clamp(1.25rem, 2.6vw, 2.2rem);
  line-height: 1.35;
  letter-spacing: -0.035em;
  margin: 0;
}

/* Resources */
.cards.resources {
  grid-template-columns: repeat(5, 1fr);
}

/* Contact */
.contact-section {
  background: var(--slate);
}

.contact-section h2,
.contact-section .lead,
.contact-section p,
.contact-section .eyebrow {
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.closing-line {
  font-weight: 800;
  font-size: 1.2rem;
  margin-top: 2rem;
}

.contact-form {
  background: var(--white);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--slate);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--slate);
  background: var(--paper);
}

input:focus,
select:focus,
textarea:focus,
.button:focus-visible,
.nav-toggle:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(30, 59, 44, 0.28);
  outline-offset: 3px;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 1rem 0 0;
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  background: var(--white);
  border-top: 1px solid var(--hairline);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer-grid p {
  margin: 0.25rem 0 0;
}

/* Responsive */
@media (max-width: 980px) {
  .cards.four,
  .cards.resources {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .feature-panel,
  .two-column,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 10ch;
  }
}

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

  .site-nav {
    position: absolute;
    top: 74px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 0.75rem;
  }

  .text-grid,
  .cards.four,
  .cards.resources,
  .framework-row {
    grid-template-columns: 1fr;
  }

  .framework-letter {
    margin-bottom: 0;
  }

  .footer-grid {
    flex-direction: column;
  }

  .section {
    padding: 72px 0;
  }
}

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

/* Humanizing photography */
.hero-photo {
  margin: 0;
  border-radius: calc(var(--radius) + 14px);
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow);
  background: var(--paper);
}

.hero-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 7 / 5;
  object-fit: cover;
}

.practice-wheel {
  display: block;
  width: clamp(160px, 22vw, 205px);
  margin: 0 auto 2.6rem;
}

.section-banner {
  display: block;
  width: 100%;
  height: clamp(220px, 34vw, 380px);
  object-fit: cover;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow);
  margin: 0 0 2.6rem;
}

/* ============================================================
   v3 humanize: spacing, horizontal pillars, divider, gold
   ============================================================ */

:root {
  --gold: #b8862f;   /* quiet gold promoted from the artwork */
  --clay: #b9744f;   /* terracotta, from the pots (available) */
  --sage: #8aa17f;   /* soft sage, from the foliage (available) */
}

/* More air between headings and the text beneath them */
.eyebrow { margin-bottom: 1.2rem; }
h2 + p, h3 + p { margin-top: 1.05rem; }
h2 + ul, h3 + ul, h2 + .check-list, h3 + .check-list { margin-top: 1rem; }
.section-heading p:not(.eyebrow) { margin-top: 1.25rem; }
.section-heading h2::after {
  content: "";
  display: block;
  width: 56px; height: 3px;
  border-radius: 2px;
  background: var(--gold);
  margin-top: 1.4rem;
}

/* More distinct breaks between sections */
.section { padding: clamp(94px, 11vw, 146px) 0; }
.soft { background: var(--paper); border-block: 1px solid var(--hairline); }

/* Horizontal pillar cards abstract art alternating with the text */
.pillars { display: grid; gap: 0; }
.pillar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2.2rem, 4.5vw, 3.8rem) 0;
}
.pillar + .pillar { border-top: 1px solid var(--hairline); }
.pillar:nth-child(even) .pillar-art { order: 2; }
.pillar-art img {
  display: block;
  width: 100%;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--hairline);
  background: #fff;
  box-shadow: var(--shadow);
}
.pillar-kicker {
  margin: 0 0 0.55rem;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}
.pillar-body h3 { font-size: clamp(1.6rem, 2.7vw, 2.1rem); }
.pillar-body h3 + p { margin-top: 0.9rem; }
.pillar-body ul { margin-top: 1rem; }

/* Full-bleed contemplative divider */
.divider-band { margin: 0; }
.divider-band img {
  display: block;
  width: 100%;
  height: clamp(300px, 42vw, 460px);
  object-fit: cover;
}
.divider-line {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(52px, 7vw, 88px) 24px;
  text-align: center;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: var(--slate);
}

@media (max-width: 760px) {
  .pillar { grid-template-columns: 1fr; gap: 1.4rem; }
  .pillar:nth-child(even) .pillar-art { order: 0; }
}

/* Hero headline: sit beside the photo, not over it */
.hero h1 {
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height: 1.12;
  max-width: 15ch;
}

/* Full-width heading + stacked offering panels */
h2.wide { max-width: none; }
.feature-panel h2 { max-width: 20ch; }
.feature-panel + .feature-panel { margin-top: 1.2rem; }

/* More space between titles and the text beneath them */
h2 + p { margin-top: 1.45rem; }
.section-heading p:not(.eyebrow) { margin-top: 1.5rem; }
.text-grid { margin-top: 1.7rem; }
