@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --ink: #17362a;
  --ink-soft: #496057;
  --paper: #f4f0e7;
  --paper-bright: #fbf9f3;
  --forest: #173b2d;
  --forest-deep: #0e2c22;
  --moss: #6f8067;
  --gold: #b78a4d;
  --line: rgba(23, 54, 42, 0.18);
  --white-line: rgba(255, 255, 255, 0.23);
  --display: "Poppins", sans-serif;
  --body: "Inter", sans-serif;
  --shell: min(1280px, calc(100vw - 80px));
  --reading: 720px;
  --section: clamp(96px, 11vw, 176px);
  --header-h: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.theme-somatic {
  --paper: #edf0e7;
  --paper-bright: #f8f8f1;
  --ink: #143629;
  --ink-soft: #50685e;
  --forest: #164331;
  --forest-deep: #0c2d22;
  --moss: #70866b;
  --gold: #a98b58;
}

body.theme-intimacy {
  --paper: #f4e9df;
  --paper-bright: #fcf6ef;
  --ink: #4b2923;
  --ink-soft: #75584f;
  --forest: #6e3d32;
  --forest-deep: #3c211e;
  --moss: #9a745f;
  --gold: #c17c4f;
  --line: rgba(75, 41, 35, 0.18);
}

body.theme-coaching {
  --paper: #f1eadc;
  --paper-bright: #faf6ed;
  --ink: #2f352b;
  --ink-soft: #636458;
  --forest: #3e4a37;
  --forest-deep: #242c22;
  --moss: #7f835f;
  --gold: #c57f3c;
}

body.nav-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

figure {
  margin: 0;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #d49a50;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: #fff;
  color: #111;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-h);
  color: #fff;
  transition: color 350ms ease, background 350ms ease, border-color 350ms ease;
}

.site-header.scrolled,
.site-header.menu-open,
.site-header.header-light {
  color: var(--ink);
  background: color-mix(in srgb, var(--paper-bright) 92%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: var(--shell);
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 44px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
}

.brand-copy small {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.header-link {
  color: inherit;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  padding: 0;
  display: grid;
  place-content: center;
  gap: 5px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 1px;
  display: block;
  background: currentColor;
  transition: transform 240ms ease, opacity 240ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.site-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--paper-bright);
  visibility: hidden;
  opacity: 0;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.site-menu.open {
  visibility: visible;
  opacity: 1;
}

.menu-grid {
  width: min(980px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(230px, 0.65fr);
  gap: clamp(56px, 10vw, 140px);
  align-items: end;
}

.menu-primary,
.menu-secondary {
  display: grid;
}

.menu-kicker,
.eyebrow {
  margin: 0 0 20px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.menu-primary a {
  padding: 15px 0;
  font-family: var(--display);
  font-size: clamp(27px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.menu-secondary a {
  padding: 12px 0;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: min(920px, 100svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--forest-deep);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(7, 20, 15, 0.8) 0%, rgba(7, 20, 15, 0.35) 60%, rgba(7, 20, 15, 0.08) 100%), linear-gradient(0deg, rgba(7, 20, 15, 0.5), transparent 55%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: var(--shell);
  margin: 0 auto;
  padding: calc(var(--header-h) + 100px) 0 clamp(72px, 10vh, 120px);
}

.hero-copy {
  max-width: 870px;
}

.hero h1,
.display,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: 0;
}

.hero h1 {
  max-width: 1000px;
  font-size: clamp(46px, 7.1vw, 108px);
  font-weight: 500;
  line-height: 0.98;
}

.hero-lead {
  max-width: 700px;
  margin: 28px 0 0;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.55;
}

.hero-actions,
.button-row {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 50px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.light {
  color: var(--ink);
  background: var(--paper-bright);
  border-color: var(--paper-bright);
}

.button.ghost {
  color: inherit;
  background: transparent;
  border-color: currentColor;
}

.button.external::after {
  content: "↗";
  font-size: 15px;
}

.section {
  padding: var(--section) 0;
}

.section.compact {
  padding: clamp(72px, 8vw, 112px) 0;
}

.section.dark {
  color: #f7f3e9;
  background: var(--forest-deep);
}

.section.cream {
  background: var(--paper-bright);
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.reading {
  width: min(var(--reading), calc(100vw - 44px));
  margin: 0 auto;
}

.section-heading {
  max-width: 880px;
  margin-bottom: clamp(48px, 7vw, 88px);
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

h2 {
  max-width: 980px;
  font-size: clamp(37px, 5.3vw, 76px);
  font-weight: 500;
  line-height: 1.06;
}

h3 {
  font-size: clamp(22px, 2.1vw, 31px);
  font-weight: 500;
  line-height: 1.2;
}

.lead {
  max-width: 820px;
  margin: 24px 0 0;
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.6;
}

.prose p {
  margin: 0 0 1.4em;
}

.prose p:last-child {
  margin-bottom: 0;
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(56px, 9vw, 132px);
  align-items: start;
}

.editorial-split.reverse {
  grid-template-columns: minmax(360px, 1.08fr) minmax(0, 0.92fr);
}

.editorial-split.reverse .editorial-media {
  order: 2;
}

.editorial-media.sticky {
  position: sticky;
  top: calc(var(--header-h) + 30px);
}

.image-organic {
  width: 100%;
  overflow: hidden;
  border-radius: 18px 72px 24px 54px / 34px 20px 68px 26px;
}

.image-organic.alt {
  border-radius: 68px 18px 56px 22px / 28px 38px 24px 72px;
}

.image-organic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-frame {
  aspect-ratio: 4 / 5;
}

.landscape-frame {
  aspect-ratio: 4 / 3;
}

.tall-frame {
  aspect-ratio: 3 / 4;
}

.image-caption {
  margin: 14px 4px 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.collage {
  position: relative;
  min-height: 760px;
}

.collage .image-organic {
  position: absolute;
}

.collage-main {
  inset: 0 26% 15% 0;
}

.collage-secondary {
  width: 40%;
  height: 47%;
  right: 0;
  top: 5%;
}

.collage-detail {
  width: 35%;
  height: 36%;
  right: 8%;
  bottom: 0;
}

.quality-list,
.open-list,
.process-list,
.scope-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.quality-list li,
.process-list li {
  padding: 30px 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  border-top: 1px solid var(--line);
}

.quality-list li:last-child,
.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.quality-list span,
.process-list > li > span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
}

.quality-list p,
.process-list p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

.method-grid,
.audience-grid,
.pathway-grid,
.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.method-grid article,
.principle-grid article {
  min-height: 300px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--paper-bright);
}

.method-grid p,
.principle-grid p {
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.pathway-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pathway {
  min-height: 285px;
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--paper-bright);
  text-decoration: none;
  transition: color 220ms ease, background 220ms ease;
}

.pathway:hover {
  color: #fff;
  background: var(--forest);
}

.pathway .eyebrow {
  margin-bottom: auto;
}

.pathway p {
  margin: 16px 0 0;
  max-width: 460px;
  color: currentColor;
  opacity: 0.78;
}

.pathway.priority {
  min-height: 380px;
  grid-column: span 2;
  background: var(--forest);
  color: #fff;
}

.profile-credentials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 44px;
}

.profile-credentials div {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.profile-credentials dt {
  font-weight: 600;
}

.profile-credentials dd {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.image-pause {
  position: relative;
  min-height: clamp(520px, 75vw, 860px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.image-pause > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-pause::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 22, 16, 0.48);
}

.image-pause blockquote {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100vw - 44px));
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 5.2vw, 72px);
  font-weight: 500;
  line-height: 1.08;
}

.signal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 60px;
}

.signal-list p {
  margin: 0;
  padding: 23px 0;
  border-top: 1px solid var(--line);
}

.signal-list p:nth-last-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.relationship-stage {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.relationship-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.relationship-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(44, 22, 19, 0.82), rgba(44, 22, 19, 0.2));
}

.relationship-copy {
  position: relative;
  z-index: 1;
  width: var(--shell);
  color: #fff;
}

.relationship-copy > div {
  max-width: 660px;
}

.audience-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.audience-grid article {
  padding: clamp(32px, 5vw, 60px);
  background: var(--paper-bright);
}

.section.dark .audience-grid {
  background: var(--white-line);
  border-color: var(--white-line);
}

.section.dark .audience-grid article {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.section.dark .audience-grid article p {
  color: rgba(255, 255, 255, 0.74);
}

.audience-grid ul,
.scope-list {
  margin: 24px 0 0;
  padding-left: 1.1em;
}

.audience-grid li,
.scope-list li {
  margin: 0 0 12px;
}

.details-list {
  border-top: 1px solid var(--line);
}

.details-list details {
  border-bottom: 1px solid var(--line);
}

.details-list summary {
  padding: 23px 46px 23px 0;
  position: relative;
  cursor: pointer;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  list-style: none;
}

.details-list summary::-webkit-details-marker {
  display: none;
}

.details-list summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 19px;
  font-family: var(--body);
  font-size: 24px;
  font-weight: 300;
}

.details-list details[open] summary::after {
  content: "−";
}

.details-content {
  max-width: 760px;
  padding: 0 0 28px;
  color: var(--ink-soft);
}

.notice {
  padding: 24px 28px;
  color: var(--ink-soft);
  background: color-mix(in srgb, var(--paper-bright) 78%, var(--moss));
  border-left: 3px solid var(--gold);
  font-size: 14px;
}

.notice.spaced {
  margin-top: 34px;
}

.contact-section {
  color: #fff;
  background: var(--forest-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(56px, 10vw, 140px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-h) + 30px);
}

.contact-copy h2 {
  font-size: clamp(36px, 4.5vw, 68px);
  overflow-wrap: break-word;
}

.contact-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.73);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 20px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label,
.consent label {
  font-size: 13px;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 0;
  color: #fff;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--white-line);
  border-radius: 0;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field select option {
  color: var(--ink);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.field-error {
  min-height: 18px;
  color: #f0c5ad;
  font-size: 12px;
}

.consent {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 11px;
  color: rgba(255, 255, 255, 0.74);
}

.consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 5px;
  accent-color: var(--gold);
}

.consent .field-error {
  width: 100%;
  padding-left: 29px;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.site-footer {
  padding: 76px 0 24px;
  color: #f5f1e7;
  background: #0a2119;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid {
  width: var(--shell);
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(150px, 0.65fr));
  gap: 40px;
}

.footer-brand p {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  margin-bottom: 8px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-decoration: none;
}

.footer-column a:hover {
  color: #fff;
}

.footer-base {
  width: var(--shell);
  margin: 58px auto 0;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.46);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  :root {
    --shell: min(100% - 48px, 900px);
  }

  .header-link {
    display: none;
  }

  .editorial-split,
  .editorial-split.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .editorial-split.reverse .editorial-media {
    order: initial;
  }

  .editorial-media.sticky,
  .contact-copy {
    position: static;
  }

  .collage {
    min-height: 650px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .footer-grid > :last-child {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 36px);
    --header-h: 74px;
    --section: 88px;
  }

  body {
    font-size: 16px;
  }

  .image-organic {
    border-radius: 14px 46px 18px 34px / 24px 14px 42px 18px;
  }

  .image-organic.alt {
    border-radius: 42px 14px 36px 18px / 18px 26px 16px 46px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy small {
    font-size: 9px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .menu-primary a {
    font-size: clamp(24px, 8vw, 38px);
  }

  .hero {
    min-height: 760px;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(7, 20, 15, 0.78), rgba(7, 20, 15, 0.12) 75%);
  }

  .hero-inner {
    padding-bottom: 58px;
  }

  .hero h1 {
    font-size: clamp(42px, 13.2vw, 68px);
  }

  .hero-actions,
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .collage {
    min-height: 740px;
  }

  .collage-main {
    inset: 0 12% 38% 0;
  }

  .collage-secondary {
    width: 48%;
    height: 33%;
    top: auto;
    bottom: 20%;
  }

  .collage-detail {
    width: 43%;
    height: 24%;
    right: auto;
    left: 7%;
  }

  .method-grid,
  .principle-grid,
  .pathway-grid,
  .audience-grid,
  .signal-list,
  .profile-credentials {
    grid-template-columns: 1fr;
  }

  .pathway.priority {
    grid-column: auto;
  }

  .signal-list p:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .signal-list p:last-child {
    border-bottom: 1px solid var(--line);
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .field.full {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > :last-child {
    grid-column: auto;
  }

  .footer-base {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .brand img {
    width: 32px;
    height: 38px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero h1 {
    font-size: clamp(38px, 12.6vw, 48px);
  }

  h2 {
    font-size: clamp(32px, 10.5vw, 44px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
