:root {
  --bg: #fbfaf7;
  --bg-soft: #f3f0ea;
  --surface: #ffffff;
  --surface-muted: #f7f5f0;
  --ink: #24231f;
  --ink-soft: #55524a;
  --muted: #777169;
  --line: #ded8cd;
  --green: #173d35;
  --green-soft: #e7eee9;
  --gold: #b79a5d;
  --shadow: 0 24px 70px rgba(27, 35, 31, 0.11);
  --max: 1180px;
  --narrow: 780px;
  --measure: 620px;
  --radius: 8px;
  --pad-x: clamp(20px, 4vw, 56px);
  --pad-y: clamp(72px, 9vw, 132px);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  line-height: 1.55;
  letter-spacing: 0;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

p,
li {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
}

p {
  margin: 0;
  max-width: var(--measure);
}

h1,
h2,
h3,
p,
li,
summary {
  overflow-wrap: break-word;
  hyphens: auto;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 500;
  hyphens: none;
  letter-spacing: 0;
  line-height: 1.04;
  overflow-wrap: normal;
}

h1 {
  max-width: 720px;
  font-size: clamp(3rem, 6vw, 5.55rem);
}

h2 {
  max-width: 820px;
  font-size: clamp(2.25rem, 4.55vw, 4.45rem);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px var(--pad-x);
  border-bottom: 1px solid rgba(222, 216, 205, 0.72);
  background: rgba(251, 250, 247, 0.91);
  backdrop-filter: blur(18px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
}

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

.brand strong {
  display: block;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 650;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 34px);
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.nav-links a,
.header-cta {
  text-decoration: none;
}

.header-cta {
  min-width: max-content;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 650;
}

.section-pad {
  padding: var(--pad-y) var(--pad-x);
}

.narrow {
  width: 100%;
  max-width: calc(var(--narrow) + (var(--pad-x) * 2));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  min-height: calc(100svh - 75px);
  max-width: calc(var(--max) + (var(--pad-x) * 2));
  margin-inline: auto;
  padding-top: clamp(54px, 7vw, 92px);
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.hero-subhead,
.section-subhead {
  color: var(--ink-soft);
  font-size: clamp(1.15rem, 2vw, 1.52rem);
  line-height: 1.48;
  max-width: 720px;
}

.hero-copy > p:not(.hero-subhead, .microcopy) {
  color: var(--ink-soft);
}

.hero-media {
  position: relative;
  margin: 0;
  height: clamp(520px, 68svh, 680px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-muted);
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 61, 53, 0), rgba(23, 61, 53, 0.16));
  pointer-events: none;
}

.hero-landscape {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(0.92) contrast(0.96);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 21px;
  border-radius: 999px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  border: 1px solid var(--green);
  background: var(--green);
  color: #fff;
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

.button-on-dark {
  border-color: #fff;
  background: #fff;
  color: var(--green);
}

.microcopy {
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.93rem;
}

.section-intro {
  display: grid;
  gap: 18px;
  max-width: 820px;
  margin-bottom: clamp(36px, 6vw, 72px);
}

.section-intro > * {
  min-width: 0;
  max-width: 100%;
}

.text-flow {
  display: grid;
  gap: 20px;
  color: var(--ink-soft);
  min-width: 0;
  max-width: var(--measure);
}

.positioning {
  display: grid;
  gap: 26px;
}

.positioning > *,
.trust-section > * {
  min-width: 0;
  max-width: 100%;
}

.positioning h2,
.trust-section h2,
.section-subhead {
  overflow-wrap: break-word;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 0.92fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  max-width: calc(var(--max) + (var(--pad-x) * 2));
  margin-inline: auto;
}

.trust-copy {
  display: grid;
  gap: 22px;
}

.question-section,
.options,
.faq {
  background: var(--surface);
}

.question-section > *,
.options > *,
.faq > *,
.gap-section > *,
.process > * {
  max-width: var(--max);
  margin-inline: auto;
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(34px, 5vw, 72px);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.question-grid li {
  position: relative;
  min-height: 86px;
  padding: 24px 0 24px 30px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.question-grid li::before,
.decision-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 36px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

.section-note {
  margin-top: 30px;
  color: var(--ink-soft);
}

.foundation,
.decision,
.contract-check,
.regional,
.kevin {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.86fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  max-width: calc(var(--max) + (var(--pad-x) * 2));
  margin-inline: auto;
}

.foundation-copy,
.decision-copy,
.contract-copy,
.regional-copy,
.kevin-copy {
  display: grid;
  gap: 22px;
}

.pillar-stack {
  display: grid;
  border: 1px solid var(--line);
  background: var(--surface);
}

.pillar-stack article {
  display: grid;
  gap: 12px;
  padding: clamp(26px, 3vw, 38px);
  border-bottom: 1px solid var(--line);
}

.pillar-stack article:last-child {
  border-bottom: 0;
}

.pillar-stack span,
.factor-grid span,
.option-grid span,
.trust-grid span,
.process-list span {
  color: var(--gold);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.pillar-stack p,
.factor-grid p,
.option-grid p,
.trust-grid p,
.process-list p {
  color: var(--ink-soft);
}

.gap-section,
.process {
  background: var(--bg-soft);
}

.factor-grid,
.option-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--line);
}

.factor-grid article,
.option-grid article,
.trust-grid article {
  display: grid;
  gap: 16px;
  min-height: 260px;
  padding: clamp(25px, 3vw, 38px);
  background: var(--surface-muted);
}

.trust-intro {
  margin-bottom: clamp(28px, 4vw, 46px);
}

.trust-grid {
  margin-bottom: clamp(56px, 7vw, 92px);
}

.trust-grid article {
  min-height: 230px;
}

.note-block {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: clamp(28px, 4vw, 46px);
  padding: clamp(24px, 3vw, 34px);
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.58);
}

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

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.decision-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.decision-list li {
  position: relative;
  padding: 18px 0 18px 28px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.decision-list li::before {
  top: 31px;
}

.contract-check {
  background: var(--surface);
  max-width: none;
}

.contract-check > * {
  max-width: none;
}

.detail-media,
.regional-media,
.portrait-slot,
.trust-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-muted);
  box-shadow: var(--shadow);
}

.detail-media img,
.regional-media img,
.trust-media img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  background: var(--line);
}

.process-list li {
  display: grid;
  gap: 16px;
  min-height: 250px;
  padding: clamp(26px, 3.2vw, 42px);
  background: var(--surface-muted);
}

.regional-media img {
  aspect-ratio: 4 / 5;
}

.region-tags,
.principle-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.region-tags li,
.principle-list li {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.56);
}

.region-tags a {
  text-decoration: none;
}

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

.portrait-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
}

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

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

summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px 0;
  color: var(--ink);
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
  line-height: 1.25;
}

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

summary::after {
  content: "";
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-right: 1.5px solid var(--green);
  border-bottom: 1.5px solid var(--green);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

details[open] summary::after {
  transform: rotate(225deg);
}

details p {
  max-width: var(--measure);
  padding: 0 0 30px;
  color: var(--ink-soft);
}

.final-cta {
  background: var(--green);
  color: #fff;
}

.final-cta-inner {
  display: grid;
  gap: 24px;
  max-width: 860px;
  margin-inline: auto;
}

.final-cta .section-subhead,
.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta .microcopy {
  color: rgba(255, 255, 255, 0.66);
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
}

.contact-options a {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.46);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 38px var(--pad-x);
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-footer p {
  margin-top: 5px;
  font-size: 0.92rem;
}

.site-footer a {
  font-size: 0.92rem;
}

:focus-visible {
  outline: 3px solid rgba(183, 154, 93, 0.65);
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .foundation,
  .decision,
  .contract-check,
  .regional,
  .kevin,
  .trust-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    height: auto;
    min-height: 420px;
    aspect-ratio: 16 / 10;
  }

  .question-grid,
  .factor-grid,
  .option-grid,
  .trust-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .factor-grid article,
  .option-grid article,
  .trust-grid article,
  .process-list li {
    min-height: auto;
  }

  .detail-media img,
  .regional-media img,
  .trust-media img {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .portrait-slot {
    max-width: 420px;
  }
}

@media (min-width: 1600px) {
  :root {
    --max: 1360px;
    --pad-x: clamp(56px, 6vw, 120px);
    --pad-y: clamp(96px, 8vw, 144px);
  }

  h1 {
    max-width: 760px;
    font-size: 5.1rem;
  }

  h2 {
    font-size: 4.05rem;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
    padding-bottom: 104px;
  }

  .hero-media {
    min-height: 610px;
    max-height: 650px;
    height: min(64svh, 650px);
  }
}

@media (max-width: 620px) {
  :root {
    --pad-x: 20px;
    --pad-y: 68px;
  }

  .site-header {
    padding: 14px var(--pad-x);
  }

  .brand small {
    display: none;
  }

  .header-cta {
    padding: 10px 13px;
    font-size: 0.8rem;
  }

  .hero {
    width: calc(100% - (var(--pad-x) * 2));
    max-width: 100%;
    margin-inline: auto;
    padding-right: 0;
    padding-left: 0;
    padding-top: 42px;
  }

  .hero > * {
    min-width: 0;
  }

  h1 {
    font-size: clamp(2.32rem, 12vw, 3rem);
  }

  h2 {
    overflow-wrap: anywhere;
    font-size: clamp(2.02rem, 10vw, 2.7rem);
    word-break: break-word;
  }

  .hero-copy {
    gap: 20px;
  }

  .hero-media {
    width: 100%;
    min-width: 0;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .hero-landscape {
    object-position: 62% center;
  }

  .cta-row,
  .note-block,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .question-grid li {
    min-height: auto;
  }

  .pillar-stack article,
  .factor-grid article,
  .option-grid article,
  .trust-grid article,
  .process-list li {
    padding: 28px 22px;
  }

  .detail-media img,
  .regional-media img,
  .trust-media img {
    aspect-ratio: 1 / 1;
  }

  summary {
    padding: 24px 0;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 2.28rem;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .header-cta {
    font-size: 0.74rem;
    padding-inline: 10px;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
