:root {
  --viridian-green: #40826d;
  --dark-forest: #355e4b;
  --deep-teal: #004d4d;
  --soft-navy: #2c3e50;
  --slate: #405263;
  --charcoal: #333333;
  --soft-sage: #9caf88;
  --sage-wash: #d9e1d3;
  --warm-cream: #f8f4ed;
  --champagne-gold: #f7e7ce;
  --rich-gold: #d9a031;
  --soft-white: #fffaf2;
  --paper: #fffaf2;
  --ink: #203346;
  --muted: #465767;
  --line: rgba(44, 62, 80, 0.16);
  --line-light: rgba(248, 244, 237, 0.2);
  --surface-dark: #172b31;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: Montserrat, Avenir, "Segoe UI", Arial, sans-serif;
  --font-script: "La Belle Aurore", "Segoe Script", "Brush Script MT", cursive;
  --radius: 8px;
  --radius-lg: 18px;
  --container: 1180px;
  --header-height: 86px;
  --shadow-soft: 0 18px 54px rgba(35, 50, 61, 0.14);
  --shadow-deep: 0 30px 90px rgba(12, 30, 34, 0.3);
  --gold-rule: linear-gradient(90deg, rgba(217, 160, 49, 0), rgba(217, 160, 49, 0.86), rgba(247, 231, 206, 0.7), rgba(217, 160, 49, 0));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--soft-white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(217, 160, 49, 0.72);
  outline-offset: 4px;
}

::selection {
  color: var(--soft-white);
  background: var(--deep-teal);
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  transform: translateY(-180%);
  padding: 0.7rem 0.95rem;
  border-radius: var(--radius);
  background: var(--soft-navy);
  color: var(--soft-white);
  text-decoration: none;
}

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

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--soft-navy);
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.15rem, 4vw, 3.15rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  line-height: 1.1;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.18;
}

h4 {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
}

p,
li {
  font-size: clamp(0.96rem, 1.2vw, 1.05rem);
  line-height: 1.65;
}

p {
  margin: 0;
}

p + p {
  margin-top: 1rem;
}

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

li + li {
  margin-top: 0.42rem;
}

strong {
  color: var(--soft-navy);
  font-weight: 800;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.center {
  text-align: center;
}

.align-right {
  margin-left: auto;
}

.gold-foil-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #8f6519;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
}

.script-accent,
.botanical-script,
.script-accent--overlay {
  display: block;
  margin-bottom: 0.18rem;
  color: rgba(64, 130, 109, 0.9);
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
}

.script-accent--light {
  color: rgba(247, 231, 206, 0.95);
}

.gold-rule {
  width: min(220px, 64%);
  height: 1px;
  margin: 1.15rem 0 1.25rem;
  background: var(--gold-rule);
}

.center .gold-rule,
.backdrop-card.center .gold-rule {
  margin-inline: auto;
}

.promise-line,
.hero-prelude {
  color: var(--deep-teal);
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-weight: 700;
}

.microcopy,
.trust-footnote,
.micro-boundary,
.directory-note,
.vetting-note,
.referral-note {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.micro-boundary,
.trust-footnote,
.directory-note,
.vetting-note,
.referral-note {
  margin-top: 1.35rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(44, 62, 80, 0.14);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--header-height);
  padding: 0.72rem 1rem;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0.55rem 0.75rem;
  z-index: -1;
  border: 1px solid rgba(247, 231, 206, 0.68);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.93);
  box-shadow: 0 18px 58px rgba(0, 77, 77, 0.16);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled::before,
body.nav-open .site-header::before {
  background: rgba(255, 250, 242, 0.98);
  box-shadow: 0 18px 58px rgba(25, 43, 50, 0.22);
}

.header-inner {
  width: min(1320px, 100%);
  min-height: 62px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.55rem, 1.4vw, 1.2rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: clamp(154px, 18vw, 235px);
  max-height: 58px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.45rem, 1.1vw, 1rem);
  min-width: 0;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--soft-navy);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:not(.header-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.45rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--rich-gold);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  border: 1px solid rgba(0, 77, 77, 0.22);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.92);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--deep-teal);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-7px) rotate(-45deg);
}

.btn,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.82rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.btn-primary,
.header-cta {
  color: var(--warm-cream);
  background: var(--deep-teal);
  border-color: rgba(247, 231, 206, 0.42);
  box-shadow: 0 12px 26px rgba(0, 77, 77, 0.18);
}

.site-nav a.header-cta {
  color: var(--warm-cream);
}

.btn-primary:hover,
.header-cta:hover {
  background: var(--viridian-green);
  box-shadow: 0 16px 34px rgba(0, 77, 77, 0.24);
}

.btn-secondary {
  color: var(--warm-cream);
  background: rgba(255, 250, 242, 0.1);
  border-color: rgba(247, 231, 206, 0.7);
}

.btn-secondary:hover {
  color: var(--deep-teal);
  background: rgba(255, 250, 242, 0.88);
}

.btn-tertiary {
  color: var(--deep-teal);
  background: rgba(64, 130, 109, 0.1);
  border-color: rgba(64, 130, 109, 0.28);
}

.btn-tertiary:hover {
  background: rgba(64, 130, 109, 0.18);
}

.btn-small {
  min-height: 38px;
  padding: 0.62rem 0.85rem;
  font-size: 0.76rem;
}

.header-cta--mobile {
  display: none;
  flex: 0 0 auto;
  padding-inline: 0.85rem;
}

.garden-journey {
  background: var(--soft-white);
}

.section {
  padding: clamp(4.2rem, 8vw, 7.2rem) 0;
}

.section-white {
  background: var(--soft-white);
}

.section-cream {
  background:
    linear-gradient(180deg, rgba(248, 244, 237, 0.94), rgba(255, 250, 242, 0.98)),
    radial-gradient(circle at 10% 12%, rgba(156, 175, 136, 0.24), transparent 34%);
}

.section-sage {
  background:
    linear-gradient(135deg, rgba(217, 225, 211, 0.86), rgba(248, 244, 237, 0.92)),
    radial-gradient(circle at 90% 8%, rgba(64, 130, 109, 0.18), transparent 30%);
}

.story-system-section,
.scene-soft-band,
.leaf-wash {
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.94), rgba(248, 244, 237, 0.9)),
    radial-gradient(circle at 12% 18%, rgba(156, 175, 136, 0.16), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(217, 160, 49, 0.08), transparent 26%);
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

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

.section-heading h1,
.section-heading h2 {
  margin-top: 0.45rem;
}

.section-heading p {
  margin-top: 0.9rem;
  color: var(--muted);
}

.backdrop-scene {
  position: relative;
  isolation: isolate;
  min-height: clamp(470px, 70vh, 760px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + clamp(3rem, 7vw, 6rem)) 0 clamp(4rem, 7vw, 6.8rem);
  overflow: hidden;
  background-color: var(--surface-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.backdrop-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: inherit;
  background-size: inherit;
  background-position: inherit;
  background-repeat: no-repeat;
  transform: scale(1.01);
}

.backdrop-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      105deg,
      rgba(10, 28, 30, 0.62) 0%,
      rgba(0, 77, 77, 0.42) 44%,
      rgba(53, 94, 75, 0.12) 100%
    );
}

.backdrop-scene--light::after {
  background:
    linear-gradient(
      102deg,
      rgba(248, 244, 237, 0.84) 0%,
      rgba(248, 244, 237, 0.66) 44%,
      rgba(248, 244, 237, 0.28) 100%
    );
}

.backdrop-scene > .container,
.backdrop-scene > .botanical-photo-branch {
  position: relative;
  z-index: 2;
}

.home-hero,
.page-hero {
  min-height: clamp(540px, 82vh, 820px);
}

.compact-hero {
  min-height: clamp(420px, 58vh, 620px);
}

.backdrop-card,
.scene-card,
.hero-panel {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  padding: clamp(1.55rem, 3vw, 2.45rem);
  border: 1px solid rgba(44, 62, 80, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 242, 0.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.backdrop-card--dark,
.scene-card--dark {
  color: var(--soft-white);
  border-color: rgba(247, 231, 206, 0.28);
  background: rgba(18, 43, 47, 0.74);
  box-shadow: var(--shadow-deep);
}

.backdrop-card.center {
  margin-inline: auto;
}

.backdrop-card h1,
.backdrop-card h2,
.backdrop-card h3,
.scene-card h1,
.hero-panel h1,
.hero-panel h2 {
  margin-top: 0.5rem;
}

.hero-panel h1,
.backdrop-card h1,
.scene-card h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.25rem);
  line-height: 1.04;
}

.backdrop-card--dark h1,
.backdrop-card--dark h2,
.backdrop-card--dark h3,
.scene-card--dark h1,
.scene-card--dark h2,
.scene-card--dark h3 {
  color: var(--soft-white);
}

.backdrop-card--dark p,
.scene-card--dark p,
.backdrop-card--dark li,
.scene-card--dark li {
  color: rgba(255, 250, 242, 0.9);
}

.backdrop-card--dark strong,
.scene-card--dark strong {
  color: var(--soft-white);
}

.backdrop-card--dark .gold-foil-kicker,
.scene-card--dark .gold-foil-kicker {
  color: var(--champagne-gold);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.section-actions.center,
.hero-actions.center {
  justify-content: center;
}

.editorial-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 160, 49, 0.22);
  border-radius: var(--radius-lg);
  background: var(--warm-cream);
  box-shadow: 0 18px 52px rgba(44, 62, 80, 0.13);
}

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

.editorial-media--sm {
  max-width: 260px;
  aspect-ratio: 4 / 3;
}

.editorial-media--md {
  max-width: 380px;
  aspect-ratio: 4 / 5;
}

.editorial-media--wide {
  max-width: 920px;
  aspect-ratio: 16 / 7;
  margin-inline: auto;
}

.context-image-chip,
.section-image-accent {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(217, 160, 49, 0.18);
  background: var(--warm-cream);
  box-shadow: 0 14px 34px rgba(44, 62, 80, 0.12);
}

.context-image-chip {
  aspect-ratio: 4 / 3;
}

.context-image-chip img,
.section-image-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-image-row,
.context-image-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 880px;
  margin: clamp(1.8rem, 3vw, 2.6rem) auto 0;
}

.section-image-row .context-image-chip {
  min-height: 150px;
}

.rev3-category-thumbnail,
.section-heading .editorial-media {
  margin-top: 1.1rem;
}

.rev3-directory-editorial,
.rev3-ecosystem-editorial,
.rev3-investor-editorial {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 3vw, 2.4rem);
  align-items: center;
}

.editorial-split--reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.founder-story-section {
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

.founder-story-layout {
  width: min(1040px, calc(100% - 2rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(280px, 340px) minmax(0, 640px);
  gap: clamp(1.75rem, 3vw, 2.25rem);
  align-items: start;
}

.founder-photo {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--warm-cream);
  border: 1px solid rgba(217, 160, 49, 0.28);
  box-shadow: 0 22px 64px rgba(44, 62, 80, 0.16);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.founder-copy {
  max-width: 640px;
  padding: clamp(0.5rem, 1.5vw, 1rem) 0;
}

.founder-copy p {
  max-width: none;
  color: var(--muted);
}

.problem-web,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.problem-chip,
.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(64, 130, 109, 0.2);
  border-radius: 999px;
  color: var(--deep-teal);
  background: rgba(64, 130, 109, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
}

.guide-grid,
.pillar-grid,
.comparison-grid,
.pressure-grid,
.garden-beds,
.symbol-grid,
.situation-grid,
.learning-grid,
.learning-entry-grid,
.directory-preview-grid,
.partner-category-grid,
.process-steps {
  display: grid;
  gap: 1rem;
}

.guide-grid,
.pillar-grid,
.comparison-grid,
.pressure-grid,
.garden-beds,
.symbol-grid,
.situation-grid,
.partner-category-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-grid--wide,
.learning-grid,
.directory-preview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.learning-entry-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 2rem;
}

.process-steps {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: stretch;
}

.guide-card,
.pillar-card,
.comparison-card,
.pressure-card,
.garden-bed,
.symbol-card,
.situation-card,
.learning-card,
.directory-card,
.process-step,
.leaf-shadow-panel {
  position: relative;
  min-width: 0;
  padding: clamp(1.25rem, 2.3vw, 1.85rem);
  border: 1px solid rgba(44, 62, 80, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 242, 0.86);
  box-shadow: 0 14px 42px rgba(44, 62, 80, 0.1);
}

.guide-card h2,
.guide-card h3,
.pillar-card h3,
.comparison-card h3,
.pressure-card h3,
.garden-bed h3,
.symbol-card h3,
.situation-card h2,
.situation-card h3,
.learning-card h2,
.learning-card h3,
.directory-card h3,
.process-step h2,
.process-step h3 {
  margin-top: 0.65rem;
}

.guide-card p,
.pillar-card p,
.comparison-card p,
.pressure-card p,
.garden-bed p,
.symbol-card p,
.situation-card p,
.learning-card p,
.directory-card p,
.process-step p {
  margin-top: 0.7rem;
  color: var(--muted);
}

.guide-card .context-image-chip,
.pillar-card .context-image-chip,
.situation-card .context-image-chip {
  margin-bottom: 1rem;
}

.learning-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.learning-card span,
.learning-card small {
  display: block;
  color: var(--deep-teal);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.learning-card:hover,
.directory-card:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 160, 49, 0.28);
  box-shadow: 0 18px 48px rgba(44, 62, 80, 0.15);
}

.process-step span,
.symbol-number,
.gold-sun-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: var(--warm-cream);
  background: var(--deep-teal);
  font-weight: 900;
}

.gold-sun-dot {
  width: 20px;
  height: 20px;
  background: var(--rich-gold);
}

.scenario-selector {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 1rem;
  margin-top: 1rem;
}

.scenario-rail {
  display: grid;
  gap: 0.6rem;
}

.scenario-button,
.filter-button,
.detail-toggle {
  min-height: 44px;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(64, 130, 109, 0.25);
  border-radius: 999px;
  color: var(--deep-teal);
  background: rgba(255, 250, 242, 0.86);
  font-weight: 800;
  text-align: left;
}

.scenario-button[aria-selected="true"],
.filter-button.is-active,
.detail-toggle:hover {
  color: var(--warm-cream);
  background: var(--deep-teal);
}

.scenario-panel {
  width: 100%;
}

.scenario-meta {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.scenario-meta strong {
  color: inherit;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin: 1.4rem 0 2.4rem;
}

.resource-category {
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid rgba(44, 62, 80, 0.12);
}

.resource-category:first-of-type {
  border-top: 0;
}

.detail-panel {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(44, 62, 80, 0.12);
}

.reveal-detail {
  margin-top: 1rem;
}

.compact-list {
  display: grid;
  gap: 0.6rem;
}

.mark-hero-display {
  display: flex;
  justify-content: center;
}

.mark-orb {
  width: min(330px, 72vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 2rem;
  border: 1px solid rgba(217, 160, 49, 0.28);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 250, 242, 0.96), rgba(248, 244, 237, 0.74));
  box-shadow: 0 24px 68px rgba(44, 62, 80, 0.18);
}

.mark-orb img {
  max-width: 82%;
}

.botanical-branch-divider,
.botanical-photo-branch {
  display: none;
}

.guided-form {
  width: min(940px, 100%);
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(44, 62, 80, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 242, 0.96);
  box-shadow: var(--shadow-soft);
}

.form-progress {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.progress-dot {
  min-height: 36px;
  padding: 0.5rem 0.72rem;
  border: 1px solid rgba(64, 130, 109, 0.22);
  border-radius: 999px;
  color: var(--deep-teal);
  background: rgba(64, 130, 109, 0.08);
  font-size: 0.76rem;
  font-weight: 800;
}

.progress-dot.is-active {
  color: var(--warm-cream);
  background: var(--deep-teal);
}

.form-step {
  display: none;
}

.form-step.is-active {
  display: block;
}

.option-grid,
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.choice-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: center;
  min-height: 54px;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(44, 62, 80, 0.12);
  border-radius: 14px;
  background: rgba(248, 244, 237, 0.62);
}

.choice-card:has(input:checked) {
  border-color: rgba(64, 130, 109, 0.5);
  background: rgba(64, 130, 109, 0.12);
}

.choice-label {
  color: var(--soft-navy);
  font-weight: 800;
}

.form-field {
  display: grid;
  gap: 0.35rem;
  color: var(--soft-navy);
  font-weight: 800;
}

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

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(44, 62, 80, 0.18);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  color: var(--ink);
  background: var(--soft-white);
}

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

.success-message,
.form-error-message {
  display: none;
  margin-top: 1.5rem;
  padding: 1.1rem;
  border-radius: 14px;
}

.success-message.is-visible,
.form-error-message.is-visible {
  display: block;
}

.success-message {
  border: 1px solid rgba(64, 130, 109, 0.28);
  background: rgba(64, 130, 109, 0.1);
}

.form-error-message {
  border: 1px solid rgba(173, 75, 55, 0.28);
  background: rgba(173, 75, 55, 0.08);
}

.site-footer {
  color: rgba(255, 250, 242, 0.84);
  background: #172b31;
  padding: clamp(3rem, 6vw, 5rem) 0 1.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.8fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}

.footer-brand img {
  width: min(230px, 72vw);
  margin-bottom: 1rem;
}

.site-footer h3 {
  color: var(--soft-white);
  font-size: 1.05rem;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.8rem;
}

.footer-links a {
  color: rgba(255, 250, 242, 0.82);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--champagne-gold);
}

.site-footer .trust-footnote,
.site-footer .microcopy {
  color: rgba(255, 250, 242, 0.72);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 250, 242, 0.16);
  color: rgba(255, 250, 242, 0.62);
  font-size: 0.78rem;
}

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

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

@media (max-width: 1180px) {
  .site-nav {
    gap: 0.52rem;
  }

  .site-nav a {
    font-size: 0.76rem;
  }

  .header-cta--nav {
    padding-inline: 0.82rem;
  }

  .process-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) {
  .header-inner {
    min-height: 60px;
  }

  .brand img {
    width: clamp(142px, 33vw, 205px);
  }

  .header-cta--mobile,
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) - 0.2rem);
    right: 1rem;
    left: 1rem;
    display: none;
    max-height: calc(100vh - var(--header-height) - 1rem);
    overflow-y: auto;
    padding: 1rem;
    border: 1px solid rgba(44, 62, 80, 0.12);
    border-radius: var(--radius-lg);
    background: rgba(255, 250, 242, 0.98);
    box-shadow: var(--shadow-soft);
  }

  body.nav-open .site-nav {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .site-nav a {
    justify-content: center;
    white-space: normal;
  }

  .site-nav .header-cta--nav {
    margin-top: 0.25rem;
  }

  .guide-grid--wide,
  .learning-grid,
  .directory-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .founder-photo {
    width: min(360px, 100%);
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 78px;
  }

  .site-header {
    padding: 0.55rem 0.7rem;
  }

  .site-header::before {
    inset: 0.35rem 0.45rem;
  }

  .header-inner {
    gap: 0.5rem;
  }

  .brand img {
    width: clamp(126px, 38vw, 172px);
    max-height: 50px;
  }

  .header-cta--mobile {
    min-height: 44px;
    padding-inline: 0.72rem;
    font-size: 0.72rem;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .backdrop-scene,
  .home-hero,
  .page-hero,
  .compact-hero {
    min-height: auto;
    padding: calc(var(--header-height) + 2.4rem) 0 3.6rem;
  }

  .backdrop-card,
  .scene-card,
  .hero-panel,
  .guided-form {
    padding: 1.15rem;
    border-radius: 16px;
  }

  .script-accent,
  .botanical-script,
  .script-accent--overlay {
    font-size: clamp(1.65rem, 9vw, 2.1rem);
  }

  .section {
    padding-block: 3.6rem;
  }

  .section-image-row,
  .context-image-row,
  .guide-grid,
  .pillar-grid,
  .comparison-grid,
  .pressure-grid,
  .garden-beds,
  .symbol-grid,
  .situation-grid,
  .partner-category-grid,
  .learning-entry-grid,
  .guide-grid--wide,
  .learning-grid,
  .directory-preview-grid,
  .process-steps,
  .option-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .section-actions {
    align-items: stretch;
  }

  .hero-actions .btn,
  .section-actions .btn {
    width: 100%;
  }

  .scenario-button,
  .filter-button {
    text-align: center;
  }

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

@media (max-width: 420px) {
  .container {
    width: min(var(--container), calc(100% - 1rem));
  }

  .brand img {
    width: 122px;
  }

  .header-cta--mobile {
    padding-inline: 0.6rem;
    max-width: 132px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }

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


@media (max-width: 860px) {
  .founder-story-layout {
    grid-template-columns: 1fr;
  }

  .founder-photo {
    width: min(360px, 100%);
    margin-inline: auto;
  }
}
