@font-face {
  font-family: "Luthon Serif";
  src: url("/fonts/webfonts/LuthonSouthard-Serif.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Luthon Script";
  src: url("/fonts/webfonts/LuthonSouthard-Script.otf") format("opentype");
  font-display: swap;
}

:root {
  color-scheme: light;
  --pine: #2f4f3e;
  --forest: #203c2e;
  --moss: #557a5b;
  --sage: #8fb79a;
  --mist: #d9e5de;
  --paper: #f7f3ee;
  --cream: #fbf8f1;
  --oat: #e8dcc4;
  --sand: #f2c9a3;
  --clay: #e07a5f;
  --clay-text: #b5503a;
  --teal: #d0e6e3;
  --charcoal: #3f403d;
  --muted: #667268;
  --line: rgba(47, 79, 62, .14);
  --panel: rgba(255, 255, 255, .66);
  --panel-solid: #fffdf8;
  --shadow: 0 28px 90px rgba(47, 79, 62, .13);
  --soft-shadow: 0 16px 52px rgba(47, 79, 62, .08);
  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --display: "Luthon Serif", Georgia, "Times New Roman", serif;
  --script: "Luthon Script", cursive;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Cabin", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
  --gutter: clamp(18px, 4vw, 48px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--charcoal);
  background:
    radial-gradient(circle at 8% 4%, rgba(217, 229, 222, .82), transparent 27rem),
    radial-gradient(circle at 96% 22%, rgba(242, 201, 163, .44), transparent 26rem),
    radial-gradient(circle at 28% 102%, rgba(208, 230, 227, .44), transparent 27rem),
    var(--paper);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .12;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(rgba(47, 79, 62, .16) .6px, transparent .6px),
    radial-gradient(rgba(224, 122, 95, .13) .5px, transparent .5px);
  background-size: 13px 13px, 21px 21px;
  background-position: 0 0, 6px 9px;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--sand);
  outline-offset: 4px;
}

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

::selection {
  background: var(--sand);
  color: var(--forest);
}

.shell {
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: var(--gutter);
  top: -80px;
  z-index: 1000;
  background: var(--forest);
  color: var(--paper);
  padding: 12px 18px;
  border-radius: 999px;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: color-mix(in srgb, var(--paper) 84%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}

.nav-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--forest);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.04em;
  box-shadow: 0 16px 34px rgba(47, 79, 62, .22);
}

.brand-name {
  display: block;
  color: var(--forest);
  font-family: var(--display);
  font-size: 22px;
  line-height: 1;
}

.brand-sub {
  display: block;
  margin-top: 5px;
  color: var(--moss);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 780;
}

.top-nav a {
  opacity: .82;
  transition: opacity .2s ease, transform .2s ease;
}

.top-nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  padding: clamp(70px, 9vw, 118px) 0 clamp(72px, 8vw, 104px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(40px, 7vw, 88px);
  align-items: center;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--forest);
  font-weight: 760;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: .7;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--forest);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.038em;
}

h1,
h2 {
  font-family: var(--display);
}

h1 {
  margin-top: 18px;
  font-size: clamp(54px, 8vw, 104px);
  max-width: 950px;
}

h2 {
  font-size: clamp(36px, 5vw, 68px);
}

h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.1;
}

p {
  margin: 0;
  line-height: 1.74;
}

.lead {
  margin-top: 24px;
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  font-size: 14px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

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

.btn-primary {
  background: var(--forest);
  color: var(--paper);
  box-shadow: 0 18px 42px rgba(47, 79, 62, .22);
}

.btn-secondary {
  color: var(--forest);
  background: rgba(255, 255, 255, .56);
  border-color: var(--line);
  backdrop-filter: blur(12px);
}

.visual-card {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.visual-orbit {
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(47, 79, 62, .13);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, .76), transparent 56%),
    conic-gradient(from 110deg, rgba(143, 183, 154, .44), rgba(242, 201, 163, .52), rgba(208, 230, 227, .44), rgba(143, 183, 154, .44));
  box-shadow: var(--shadow);
}

.visual-panel {
  position: relative;
  width: min(390px, 86%);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 42px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, .82), rgba(255, 253, 248, .48)),
    radial-gradient(circle at 30% 12%, rgba(242, 201, 163, .48), transparent 17rem);
  box-shadow: var(--shadow);
}

.visual-panel img {
  position: absolute;
  left: 50%;
  bottom: -24px;
  width: min(320px, 88%);
  transform: translateX(-50%);
  filter: drop-shadow(0 32px 48px rgba(47, 79, 62, .18));
}

.floating-note {
  position: absolute;
  z-index: 2;
  max-width: 220px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 248, .78);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(16px);
}

.floating-note strong {
  display: block;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.12;
}

.floating-note span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.floating-note.one {
  left: 0;
  top: 76px;
}

.floating-note.two {
  right: 0;
  bottom: 74px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.metric {
  min-height: 132px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, .58);
  box-shadow: var(--soft-shadow);
}

.metric strong {
  display: block;
  color: var(--forest);
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 44px);
  line-height: .95;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.section {
  padding: clamp(76px, 9vw, 118px) 0;
  border-top: 1px solid var(--line);
}

.section-tint {
  background: color-mix(in srgb, var(--mist) 34%, transparent);
}

.section-head {
  max-width: 850px;
  margin-bottom: 42px;
}

.section-head h2 {
  margin-top: 14px;
}

.section-head p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  gap: clamp(34px, 6vw, 70px);
  align-items: start;
}

.prose {
  display: grid;
  gap: 18px;
  color: color-mix(in srgb, var(--charcoal) 88%, transparent);
}

.premium-panel,
.callout {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(16px);
}

.premium-panel {
  padding: clamp(24px, 4vw, 36px);
}

.callout {
  padding: 28px;
}

.callout .label {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--clay-text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: color-mix(in srgb, var(--panel-solid) 88%, transparent);
  box-shadow: var(--soft-shadow);
}

.card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--sage) 32%, transparent);
}

.card h3 {
  position: relative;
  z-index: 1;
}

.card p {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  color: var(--muted);
}

.card .micro {
  display: inline-flex;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  color: var(--clay-text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  min-height: 86px;
  padding: 20px 22px 20px 72px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 248, .72);
}

.steps li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 22px;
  top: 22px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--paper);
  font-weight: 900;
}

.steps strong {
  display: block;
  color: var(--forest);
  margin-bottom: 5px;
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.deliverables li {
  padding: 18px 18px 18px 44px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .58);
  color: color-mix(in srgb, var(--charcoal) 88%, transparent);
  position: relative;
}

.deliverables li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 27px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 6px rgba(224, 122, 95, .12);
}

.quote-band {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 6vw, 58px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 16% 0%, rgba(242, 201, 163, .26), transparent 24rem),
    linear-gradient(135deg, var(--forest), var(--pine));
  color: var(--paper);
  box-shadow: var(--shadow);
}

.quote-band h2,
.quote-band h3 {
  color: var(--paper);
}

.quote-band p {
  max-width: 920px;
  margin-top: 18px;
  color: rgba(255, 253, 248, .82);
  font-size: clamp(18px, 2vw, 22px);
}

.quote-band .eyebrow {
  color: var(--sand);
}

.evidence-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.evidence-item {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  background: rgba(255, 255, 255, .08);
}

.evidence-item strong {
  display: block;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 20px;
}

.evidence-item span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 253, 248, .72);
  font-size: 14px;
  line-height: 1.45;
}

.cta {
  margin: clamp(76px, 9vw, 118px) auto;
}

.cta .quote-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 44px 0 56px;
  background: color-mix(in srgb, var(--paper) 72%, transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.1fr) repeat(2, minmax(180px, .7fr));
  gap: 34px;
}

.footer-title {
  color: var(--forest);
  font-family: var(--display);
  font-size: 28px;
}

.footer-kicker {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.footer-group {
  display: grid;
  gap: 10px;
}

.footer-group h2 {
  color: var(--clay-text);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.footer-group a {
  color: var(--forest);
  font-weight: 760;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .cta .quote-band {
    grid-template-columns: 1fr;
  }

  .visual-card {
    min-height: 440px;
  }

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

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

@media (max-width: 680px) {
  .nav-row {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .top-nav {
    justify-content: flex-start;
  }

  .metric-grid,
  .deliverables,
  .evidence-list {
    grid-template-columns: 1fr;
  }

  .visual-card {
    min-height: 390px;
  }

  .floating-note {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    margin-top: 14px;
    max-width: none;
  }
}
