:root {
  --ink: #1e2118;
  --muted: #5f6557;
  --paper: #fbf3df;
  --paper-deep: #f3dfb8;
  --sage: #9ab391;
  --moss: #40513b;
  --clay: #d96846;
  --sun: #f5b84b;
  --sky: #9ccbd5;
  --white: #fffaf0;
  --shadow: 0 24px 80px rgba(56, 42, 21, 0.18);
  --radius-lg: 34px;
  --radius-md: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background: linear-gradient(135deg, #fff8e9 0%, var(--paper) 42%, #e6efe8 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(30, 33, 24, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 33, 24, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 72%);
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -10rem;
  z-index: 10;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--max), calc(100% - 2rem));
  margin: 1rem auto 0;
  padding: 0.75rem;
  border: 1px solid rgba(30, 33, 24, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 50px rgba(56, 42, 21, 0.08);
}

.brand,
nav,
.hero-actions,
.signal-row,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.7rem;
  padding-left: 0.35rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 28%;
  object-fit: cover;
}

nav {
  gap: 1.4rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

nav a,
.site-footer a {
  text-decoration: none;
}

nav a:hover,
.site-footer a:hover {
  color: var(--clay);
}

.section-shell {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2rem, 5vh, 3.25rem) 0 clamp(2.5rem, 6vh, 3.75rem);
}

.hero-copy {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.75rem);
}

.hero-media {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.eyebrow {
  margin: 0 0 1rem;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-eyebrow {
  margin: 0;
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7d9471;
}

.hero-accent {
  color: #8aa37d;
  font-style: italic;
  font-weight: 600;
}

.button.hero-cta {
  justify-self: start;
  gap: 0.55rem;
  background: var(--clay);
  border-color: var(--clay);
  box-shadow: 0 12px 0 rgba(180, 80, 45, 0.18);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Fraunces", serif;
  font-weight: 760;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 1rem;
  font-size: clamp(2.85rem, 4.4vw, 4.8rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.35rem;
  line-height: 1.15;
}

.lede {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.82rem 1.2rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 0 rgba(30, 33, 24, 0.16);
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(3px);
  box-shadow: 0 6px 0 rgba(30, 33, 24, 0.16);
}

.button-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.button-small {
  min-height: 2.5rem;
  padding: 0.55rem 1rem;
  box-shadow: none;
  font-size: 0.9rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.35rem 0 1rem;
}

.signal-row {
  flex-wrap: wrap;
  gap: 0.7rem;
}

.signal-row span {
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(30, 33, 24, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.62);
  color: var(--moss);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-card {
  position: relative;
  height: clamp(360px, 54svh, 520px);
  min-height: 0;
  border-radius: 28px;
  background:
    linear-gradient(150deg, rgba(64, 81, 59, 0.95), rgba(30, 33, 24, 0.92)),
    radial-gradient(circle at 30% 20%, var(--sun), transparent 40%);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0.8rem;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 22px;
}

.orbit {
  position: absolute;
  border: 2px solid rgba(255, 250, 240, 0.16);
  border-radius: 50%;
  animation: spin 22s linear infinite;
}

.orbit-one {
  width: 420px;
  height: 420px;
  top: 2rem;
  right: -5rem;
}

.orbit-two {
  width: 260px;
  height: 260px;
  left: -4rem;
  bottom: 2rem;
  animation-direction: reverse;
}

.focus-card,
.note-card {
  position: absolute;
  border: 1px solid rgba(30, 33, 24, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.focus-card {
  left: 50%;
  top: 50%;
  width: min(78%, 340px);
  padding: 1.25rem;
  background: var(--white);
  transform: translate(-50%, -50%) rotate(-3deg);
}

.focus-card p {
  margin-bottom: 0.8rem;
  color: var(--clay);
  font-weight: 900;
  text-transform: uppercase;
}

.focus-card strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3vw, 2.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.focus-card span {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
  font-weight: 700;
}

.note-card {
  padding: 1rem;
  background: var(--sun);
  font-weight: 900;
  max-width: 210px;
}

.note-card-one {
  left: 2rem;
  top: 5rem;
  transform: rotate(8deg);
}

.note-card-two {
  right: 1.5rem;
  bottom: 5rem;
  background: var(--sky);
  transform: rotate(-8deg);
}

.section-heading p,
.booking p {
  color: var(--muted);
  font-size: 1.1rem;
}

.faq-section,
.booking,
.approach,
.method,
.story,
.pathfinder,
.prob {
  padding: 5rem 0;
}

.hero + .approach {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
}

.pathfinder__wrap {
  max-width: 900px;
  margin: 0 auto;
}

.pathfinder__eyebrow {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-weight: 700;
  color: #236b78;
}

.pathfinder h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.pathfinder__hint {
  margin: 0.9rem 0 2rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.pathfinder__grid {
  display: grid;
  gap: 0.85rem;
}

.pathfinder__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.15rem 1.4rem;
  border: 1px solid rgba(30, 33, 24, 0.16);
  border-radius: 14px;
  background: rgba(255, 250, 240, 0.7);
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.pathfinder__option:hover,
.pathfinder__option:focus-visible {
  border-color: var(--clay);
  background: var(--white);
  transform: translateX(4px);
  box-shadow: 0 14px 40px rgba(56, 42, 21, 0.09);
  outline: none;
}

.pathfinder__option.is-selected {
  border-color: var(--clay);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(56, 42, 21, 0.1);
}

.pathfinder__label {
  font-family: "Fraunces", serif;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 600;
}

.pathfinder__arrow {
  flex-shrink: 0;
  color: #236b78;
  font-size: 1.25rem;
  font-weight: 700;
  transition: transform 0.2s ease, color 0.2s ease;
}

.pathfinder__option:hover .pathfinder__arrow,
.pathfinder__option:focus-visible .pathfinder__arrow,
.pathfinder__option.is-selected .pathfinder__arrow {
  transform: translateX(5px);
  color: var(--clay);
}

.pathfinder__reveal {
  margin-top: 1.4rem;
  padding: 1.6rem 1.75rem;
  border-left: 3px solid var(--clay);
  border-radius: 0 14px 14px 0;
  background: rgba(154, 179, 145, 0.16);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.pathfinder__reveal[hidden] {
  display: none;
}

.pathfinder__reveal.is-open {
  opacity: 1;
  transform: translateY(0);
}

.pathfinder__message {
  margin: 0 0 1.25rem;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.55;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.prob__wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.prob__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-top: 0;
}

.prob__figure {
  position: relative;
  margin: 0;
}

.prob__figcap {
  max-width: 34ch;
  margin: 1.5rem auto 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
}

.prob .venn {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.prob .venn circle {
  mix-blend-mode: multiply;
  transform-origin: center;
  transition: transform 1.1s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 1.1s ease;
}

.prob #c-work {
  fill: var(--clay);
}

.prob #c-rel {
  fill: var(--sage);
}

.prob #c-daily {
  fill: var(--sky);
}

.prob .venn__label {
  font-family: "Fraunces", serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.01em;
  fill: var(--moss);
}

.prob .venn__core-bg {
  fill: var(--ink);
}

.prob .venn__core {
  font-family: "Fraunces", serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.02em;
  fill: var(--white);
}

/* Pre-animation: circles scattered + faded, core hidden */
.prob__figure .venn circle {
  opacity: 0;
}

.prob__figure #c-work {
  transform: translate(0, -40px);
}

.prob__figure #c-rel {
  transform: translate(-38px, 26px);
}

.prob__figure #c-daily {
  transform: translate(38px, 26px);
}

.prob__figure .venn__core-bg,
.prob__figure .venn__core {
  opacity: 0;
}

/* Converge once the figure scrolls into view */
.prob__figure.is-visible .venn circle {
  opacity: 1;
  transform: translate(0, 0);
}

.prob__figure.is-visible .venn__core-bg {
  opacity: 1;
  transition: opacity 0.6s ease 0.9s;
}

.prob__figure.is-visible .venn__core {
  opacity: 1;
  transition: opacity 0.6s ease 1s;
}

.prob__copy .prob__rule {
  width: 44px;
  height: 3px;
  margin: 0 0 1.5rem;
  border-radius: 2px;
  background: var(--clay);
}

.prob__copy h3 {
  max-width: 20ch;
  margin: 0 0 1.25rem;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.prob__copy p {
  max-width: 42ch;
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.62;
}

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

.prob__copy .accent {
  color: var(--clay);
  font-weight: 800;
}

.story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.story-intro {
  margin-bottom: 0;
}

.story-intro h2 {
  margin-bottom: 1.35rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.story-photo {
  display: block;
  width: clamp(220px, 26vw, 340px);
  height: auto;
  aspect-ratio: 1 / 1;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: 0 18px 60px rgba(56, 42, 21, 0.14);
}

.credentials {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.approach-card {
  min-height: 210px;
  padding: 1.3rem;
  border: 1px solid rgba(30, 33, 24, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 240, 0.68);
  box-shadow: 0 18px 60px rgba(56, 42, 21, 0.08);
}

.approach-card span {
  display: inline-grid;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 1.3rem;
  place-items: center;
  border-radius: 50%;
  background: var(--moss);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 900;
}

.approach-card:nth-child(2n) span {
  background: var(--clay);
}

.approach-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.approach-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.method-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: clamp(0.6rem, 1.8vw, 1.3rem);
}

.method-scale {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.2rem;
}

.scale {
  width: clamp(88px, 11vw, 128px);
  height: auto;
  overflow: visible;
}

.scale__post,
.scale__bar,
.scale__chain {
  fill: none;
  stroke: var(--moss);
  stroke-linecap: round;
}

.scale__post {
  stroke-width: 4;
}

.scale__bar {
  stroke-width: 5.5;
}

.scale__chain {
  stroke-width: 2;
}

.scale__base,
.scale__foot,
.scale__pivot {
  fill: var(--moss);
}

.scale__pan--edu {
  fill: var(--moss);
}

.scale__pan--now {
  fill: var(--clay);
}

.scale__beam {
  transform-box: view-box;
  transform-origin: 100px 46px;
  animation: scale-rock 4.2s ease-in-out infinite;
}

@keyframes scale-rock {
  0%,
  100% {
    transform: rotate(-5.5deg);
  }
  50% {
    transform: rotate(5.5deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scale__beam {
    animation: none;
    transform: rotate(0);
  }
}

.method-card {
  padding: clamp(1.6rem, 2.4vw, 2.2rem);
  border: 1px solid rgba(30, 33, 24, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 240, 0.68);
  box-shadow: 0 18px 60px rgba(56, 42, 21, 0.08);
}

.method-tag {
  display: inline-block;
  margin-bottom: 1.1rem;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  background: var(--moss);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.method-tag--now {
  background: var(--clay);
}

.method-card h3 {
  margin: 0 0 0.6rem;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  letter-spacing: -0.01em;
}

.method-card p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.6;
}

.credential {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(30, 33, 24, 0.16);
  border-radius: 999px;
  background: rgba(154, 179, 145, 0.24);
  color: var(--moss);
  font-size: 0.85rem;
  font-weight: 800;
}

.story-body {
  display: grid;
  gap: 1.1rem;
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
}

.story-cta {
  margin: 0.4rem 0 0;
  color: var(--ink);
  font-weight: 700;
}

.story-cta a {
  color: var(--clay);
  text-underline-offset: 3px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.feature-card,
.contact-card,
details {
  border: 1px solid rgba(30, 33, 24, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 240, 0.68);
  box-shadow: 0 18px 60px rgba(56, 42, 21, 0.08);
}

.feature-card {
  min-height: 270px;
  padding: 1.3rem;
}

.feature-card span {
  display: inline-grid;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1.6rem;
  place-items: center;
  border-radius: 50%;
  background: var(--clay);
  color: var(--white);
  font-weight: 900;
}

.feature-card:nth-child(2n) span {
  background: var(--moss);
}

.booking {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--moss);
  font-size: 0.92rem;
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  border: 2px solid rgba(30, 33, 24, 0.16);
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 0.95rem 1rem;
}

select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  padding-right: 2.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%2340513b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.05rem center;
  background-size: 13px;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(217, 104, 70, 0.28);
  border-color: var(--clay);
}

.who-other[hidden] {
  display: none;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-status.is-success {
  color: var(--moss);
}

.form-status.is-error {
  color: var(--clay);
}

.button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.hp-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  display: none;
  overflow: hidden;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

details {
  padding: 1.2rem;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.site-footer {
  justify-content: space-between;
  gap: 2rem;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
}

.site-footer p {
  margin: 0.2rem 0 0;
}

body.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

body.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .hero,
  .booking,
  .story,
  .prob__grid {
    grid-template-columns: 1fr;
  }

  .prob__figure {
    max-width: 440px;
    margin: 0 auto;
  }

  .approach-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero {
    padding: 2.25rem 0 2.75rem;
  }

  h1 {
    max-width: 860px;
    font-size: clamp(2.75rem, 7vw, 4.35rem);
  }
}

@media (max-height: 840px) and (min-width: 981px) {
  .site-header {
    margin-top: 0.75rem;
    padding: 0.65rem;
  }

  .hero {
    padding: 1.75rem 0 2.5rem;
  }

  h1 {
    max-width: 760px;
    font-size: clamp(2.7rem, 4vw, 4.2rem);
  }

  .signal-row span {
    padding: 0.4rem 0.7rem;
    font-size: 0.84rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: min(var(--max), calc(100% - 1rem));
    margin-top: 0.5rem;
    padding: 0.55rem;
    border-radius: 28px;
  }

  .button-small {
    display: none;
  }

  .hero {
    padding: 2rem 0 2.5rem;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .lede {
    font-size: 1rem;
  }

  .hero-card {
    height: 320px;
    min-height: 0;
  }

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

  .feature-grid,
  .faq-grid,
  .method-grid {
    grid-template-columns: 1fr;
  }

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

  .focus-card strong {
    font-size: 2rem;
  }

  .note-card-one {
    left: 1rem;
    top: 3rem;
  }

  .note-card-two {
    right: 1rem;
    bottom: 3rem;
  }

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