:root {
  --pine: #14392f;
  --moss: #496f4f;
  --river: #2a6f83;
  --ember: #c75f2a;
  --gold: #d9a441;
  --ink: #19211e;
  --muted: #66736e;
  --mist: #f3f7f2;
  --paper: #fffdf8;
  --line: rgba(25, 33, 30, 0.14);
  --shadow: 0 24px 70px rgba(17, 44, 35, 0.16);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--pine);
  color: white;
  padding: 10px 14px;
  border-radius: var(--radius);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(20, 57, 47, 0.1);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pine);
  color: var(--gold);
  font-weight: 800;
}
.brand strong { display: block; line-height: 1.1; }
.brand small { display: block; color: var(--muted); font-size: 0.8rem; }
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  font-size: 0.92rem;
  color: #34443f;
}
.site-nav a { padding: 8px 0; }
.site-nav a:hover { color: var(--ember); }
.nav-cta {
  border: 1px solid var(--pine);
  border-radius: 999px;
  padding: 10px 16px !important;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--pine);
}

.section {
  padding: clamp(70px, 8vw, 118px) clamp(18px, 5vw, 72px);
}
.section.compact {
  padding-top: clamp(46px, 6vw, 82px);
  padding-bottom: clamp(46px, 6vw, 82px);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--ember);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 980px;
  font-size: clamp(3rem, 7vw, 6.9rem);
  line-height: 0.95;
  letter-spacing: 0;
}
h2 {
  max-width: 880px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}
h3 { font-size: 1.25rem; line-height: 1.2; }

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--pine);
}
.sub-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  min-height: 68vh;
  background: var(--pine);
  color: white;
}
.sub-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.8rem);
}
.sub-hero p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 760px;
}
.sub-hero .template-photo {
  min-height: clamp(360px, 56vh, 640px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(0deg, rgba(10, 23, 19, 0.8), transparent);
  pointer-events: none;
}
.hero-media {
  position: absolute;
  inset: 0;
  opacity: 0.7;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  padding-top: 9vh;
}
.hero-copy {
  max-width: 760px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: rgba(255, 255, 255, 0.9);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  background: var(--ember);
  color: white;
  box-shadow: 0 16px 34px rgba(199, 95, 42, 0.28);
}
.button.secondary {
  background: white;
  color: var(--pine);
}
.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.46);
  color: white;
}
.hero-panel {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(44px, 8vw, 96px);
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.hero-panel a {
  min-height: 142px;
  padding: 24px;
  background: rgba(8, 28, 23, 0.66);
}
.hero-panel strong { display: block; margin-bottom: 8px; color: #fff; }
.hero-panel span { color: rgba(255, 255, 255, 0.78); }

.template-photo {
  position: relative;
  background-image: linear-gradient(135deg, rgba(20, 57, 47, 0.2), rgba(199, 95, 42, 0.08)), var(--photo);
  background-size: cover;
  background-position: center;
  min-height: 320px;
  overflow: hidden;
}
.hero .hero-media {
  position: absolute;
  inset: 0;
  min-height: 0;
}
.template-photo span {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(12, 25, 21, 0.72);
  color: white;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
  background: var(--mist);
}
.split.reverse {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  background: #fbfcf7;
}
.split.reverse .copy { order: 2; }
.copy p { color: #40504b; }
blockquote {
  margin: 28px 0 0;
  padding: 22px;
  border-left: 4px solid var(--ember);
  background: rgba(255, 255, 255, 0.72);
}
blockquote p { font-size: 1.2rem; color: var(--ink); }
blockquote cite { color: var(--muted); font-style: normal; }
.photo-stack { position: relative; }
.portrait {
  min-height: 560px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.bio-card, .mentor-card {
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}
.bio-card {
  position: absolute;
  right: -18px;
  bottom: 28px;
  max-width: 330px;
  padding: 24px;
}
.bio-card strong, .bio-card span { display: block; }
.bio-card span { margin-top: 7px; color: var(--muted); }

.section-heading {
  max-width: 960px;
  margin-bottom: 36px;
}
.section-heading p:not(.eyebrow) {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.05rem;
}
.narrow { max-width: 790px; margin-inline: auto; text-align: center; }
.cards.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card, .product-card, .journal-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 32px rgba(35, 54, 48, 0.06);
}
.page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.page-card {
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 32px rgba(35, 54, 48, 0.06);
}
.page-card h3 { margin-bottom: 10px; }
.page-card p, .page-card li { color: var(--muted); }
.page-card ul { padding-left: 20px; }
.source-note {
  border-left: 4px solid var(--gold);
  background: #fff9ea;
}
.placeholder-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 10px;
  border: 1px dashed rgba(199, 95, 42, 0.7);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--ember);
  font-weight: 900;
}
.conversion-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 42px);
  background: var(--pine);
  color: white;
}
.conversion-strip p { color: rgba(255, 255, 255, 0.78); margin-bottom: 0; }
.service-card .icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #e8f1ed;
  color: var(--pine);
  font-weight: 900;
}
.service-card p, .product-card p, .journal-grid p { color: var(--muted); }
.service-card a, .product-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--ember);
  font-weight: 900;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--pine);
  color: white;
}
.band-photo {
  min-height: 560px;
  border-radius: var(--radius);
}
.band-content p { color: rgba(255, 255, 255, 0.78); }
.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.mini-grid a {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  font-weight: 800;
}

.retreats { background: #f9fbf9; }
.retreat-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 18px;
  align-items: stretch;
}
.retreat-main {
  min-height: 610px;
  border-radius: var(--radius);
}
.retreat-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--pine);
  color: white;
}
.retreat-panel p, .retreat-panel li { color: rgba(255, 255, 255, 0.8); }
.retreat-panel ul { padding-left: 20px; }

.mentor-card {
  padding: 34px;
  border-top: 5px solid var(--gold);
}
.mentor-card p { color: var(--muted); }
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.pill-list span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: #43514d;
  font-weight: 700;
  font-size: 0.9rem;
}

.resources { background: var(--mist); }
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.filter {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 15px;
  background: white;
  color: var(--pine);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.filter.active { background: var(--pine); color: white; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product-card {
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: "Replace link";
  position: absolute;
  top: 16px;
  right: 16px;
  color: rgba(25, 33, 30, 0.45);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-card[hidden] { display: none; }

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.journal-grid article span {
  color: var(--river);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.testimonials { background: #fff; }
.quote-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.quote-row blockquote {
  margin: 0;
  min-height: 210px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--ember);
  border-left: 1px solid var(--line);
}

.connect {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--pine);
  color: white;
}
.connect-copy p { color: rgba(255, 255, 255, 0.78); }
.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  box-shadow: var(--shadow);
}
label {
  display: grid;
  gap: 7px;
  color: #30413c;
  font-weight: 800;
}
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(25, 33, 30, 0.18);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}
input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(217, 164, 65, 0.32);
  border-color: var(--gold);
}
.form-note { margin: 0; color: var(--muted); }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: #0e211b;
  color: white;
}
.site-footer p {
  max-width: 720px;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
}
.site-footer nav {
  display: flex;
  gap: 18px;
  min-width: max-content;
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 22px 22px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 0; }
  .hero-panel, .cards.three, .product-grid, .journal-grid, .quote-row, .mini-grid {
    grid-template-columns: 1fr;
  }
  .split, .split.reverse, .feature-band, .retreat-layout, .connect, .sub-hero, .page-grid, .conversion-strip {
    grid-template-columns: 1fr;
  }
  .split.reverse .copy { order: 0; }
  .portrait, .band-photo, .retreat-main { min-height: 420px; }
  .bio-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -58px 18px 0;
  }
}

@media (max-width: 620px) {
  .section { padding-inline: 18px; }
  h1 { font-size: clamp(2.65rem, 15vw, 4rem); }
  .hero { min-height: auto; padding-top: 94px; }
  .hero-panel a { min-height: auto; }
  .hero-actions .button { width: 100%; }
  .site-footer { flex-direction: column; }
  .site-footer nav { flex-wrap: wrap; min-width: 0; }
  .template-photo span { top: 10px; right: 10px; font-size: 0.64rem; }
}
