:root {
  --sage: #a7b79a;
  --olive: #6e7f63;
  --warm: #f6f2ea;
  --oat: #e7ddc8;
  --charcoal: #2e2f31;
  --deep: #1d5630;
  --leaf: #4f8f3f;
  --white: #fbfaf5;
  --line: rgba(46, 47, 49, 0.14);
  --line-strong: rgba(46, 47, 49, 0.24);
  --shadow: rgba(46, 47, 49, 0.16);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 86% 8%, rgba(167, 183, 154, .34), transparent 24%),
    radial-gradient(circle at 14% 38%, rgba(231, 221, 200, .62), transparent 28%),
    linear-gradient(180deg, var(--warm), var(--white) 44%, #f1eadb);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.72' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
main, header, footer { position: relative; z-index: 3; }
section[id] { scroll-margin-top: 120px; }

.wrap {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 242, 234, .86);
  backdrop-filter: blur(18px);
}
.nav {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 250px;
}
.brand-mark {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex: 0 0 auto;
}
.brand-name {
  color: var(--deep);
  font-size: 43px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.055em;
}
.nav-links { display: flex; gap: 30px; font-size: 14px; color: var(--olive); }
.nav-links a, .text-link { position: relative; }
.nav-links a::after, .text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 1px;
  background: var(--deep);
  transition: right .45s var(--ease);
}
.nav-links a:hover::after, .text-link:hover::after { right: 0; }
.nav-auth { display: flex; align-items: center; gap: 18px; }
.nav-login {
  font-size: 14px;
  font-weight: 600;
  color: var(--olive);
  padding: 6px 2px;
}
.nav-cta, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 999px;
  background: var(--deep);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 16px 36px -20px var(--shadow);
  transition: transform .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.nav-cta { min-height: 46px; padding: 0 24px; }
.btn-primary { min-height: 58px; padding: 0 28px; }
.btn-primary span {
  width: 22px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width .3s var(--ease);
}
.btn-primary span::after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.nav-cta:hover, .btn-primary:hover {
  transform: translateY(-2px);
  background: #2a6a3b;
  box-shadow: 0 22px 42px -22px var(--shadow);
}
.btn-primary:hover span { width: 32px; }

.reveal {
  opacity: 1;
  transform: none;
}
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.js .reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

.hero {
  position: relative;
  padding: clamp(58px, 8vw, 104px) 0 clamp(58px, 7vw, 90px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(246, 242, 234, .95), rgba(246, 242, 234, .55) 55%, rgba(167, 183, 154, .22)),
    linear-gradient(135deg, transparent 0 64%, rgba(110, 127, 99, .16) 64% 64.5%, transparent 64.5%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: center;
}
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 7.2vw, 110px);
  line-height: .92;
  letter-spacing: -0.04em;
  font-weight: 340;
  max-width: 10.5ch;
}
.hero-lede {
  max-width: 39rem;
  margin: 28px 0 0;
  font-family: var(--serif);
  font-size: clamp(20px, 1.65vw, 25px);
  line-height: 1.38;
  color: #596756;
}
.hero-actions { display: flex; align-items: center; gap: 25px; margin-top: 30px; flex-wrap: wrap; }
.text-link { color: var(--deep); font-size: 15px; font-weight: 700; }
.hero-art {
  position: relative;
  aspect-ratio: 1.35;
  min-height: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 44px 90px -58px var(--shadow);
  isolation: isolate;
}
.hero-image-frame {
  background: var(--oat);
  border: 1px solid rgba(46, 47, 49, .08);
}
.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(231, 221, 200, .46);
  padding: 18px 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  gap: 58px;
  animation: ticker 38s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
  color: var(--deep);
}
.ticker-track span::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 58px;
  border-radius: 50%;
  background: var(--sage);
}
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: clamp(58px, 7vw, 104px) 0; border-top: 1px solid var(--line); }
.split-section {
  display: grid;
  grid-template-columns: minmax(165px, .42fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 76px);
}
.section-label {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--olive);
  padding-top: 10px;
}
h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 5.1vw, 76px);
  line-height: 1;
  letter-spacing: -0.032em;
  font-weight: 340;
  max-width: 14ch;
}
h2 em, h3 em { color: var(--deep); font-style: italic; font-weight: 330; }
.prose-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  max-width: 900px;
  margin-top: 34px;
  color: #596756;
  font-size: 18px;
}
.prose-pair a {
  color: var(--deep);
  font-weight: 700;
  border-bottom: 1px solid rgba(29, 86, 48, .32);
}
.service { background: rgba(251, 250, 245, .6); }
.touchpoints { background: linear-gradient(180deg, rgba(167, 183, 154, .24), rgba(246, 242, 234, .82)); }
.flow-list { margin-top: 48px; border-top: 1px solid var(--line-strong); }
.flow-item {
  display: grid;
  grid-template-columns: 92px minmax(220px, .75fr) minmax(0, 1fr);
  gap: 38px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.flow-item span, .onboard-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--deep);
  font-size: 50px;
  line-height: 1;
}
.flow-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 340;
}
.flow-item p { margin: 0; color: #596756; max-width: 46rem; }

.app-section {
  padding: clamp(64px, 8vw, 112px) 0;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 18%, rgba(246, 242, 234, .18), transparent 28%),
    linear-gradient(135deg, #6e7f63, #788b6b 58%, #5f7157);
  color: var(--warm);
}
.app-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(42px, 8vw, 110px);
  align-items: center;
}
.app-copy .section-label { color: rgba(246, 242, 234, .72); }
.app-copy h2 { color: var(--white); }
.app-copy p { color: rgba(251, 250, 245, .78); max-width: 34rem; font-size: 18px; }
.pricing p { color: #596756; max-width: 34rem; font-size: 18px; }
.platform-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: nowrap;
  align-items: flex-start;
}
.app-badge-link {
  display: inline-flex;
  width: 174px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  background: #050605;
  box-shadow: 0 14px 34px -26px rgba(17, 20, 18, .9);
  transition: transform .3s var(--ease), filter .3s var(--ease);
}
.app-badge-link:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}
.app-badge-link img {
  width: 100%;
  height: 100%;
  max-width: 174px;
  object-fit: fill;
}
.device-stage { position: relative; min-height: 640px; display: grid; place-items: center; }
.device-stage::before {
  content: "";
  position: absolute;
  width: min(86%, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 242, 234, .22), rgba(246, 242, 234, .08) 44%, transparent 70%);
}
.app-screenshot-shell {
  position: relative;
  z-index: 2;
  width: min(390px, 82vw);
  max-height: 640px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(246, 242, 234, .22);
  background: var(--warm);
  box-shadow: 0 38px 92px -46px rgba(17, 20, 18, .75);
}
.app-screenshot {
  width: 100%;
  height: auto;
  max-width: none;
}
.price-card > span {
  display: block;
  color: var(--olive);
  font: 11px/1 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.quote-name {
  font: 11px/1 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--olive);
}

.onboarding { background: linear-gradient(180deg, rgba(246, 242, 234, .82), rgba(167, 183, 154, .2)); }
.onboard-steps {
  list-style: none;
  margin: 64px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
}
.onboard-step {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 40px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.onboard-step h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 340;
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.018em;
}
.onboard-step p {
  margin: 14px 0 0;
  color: #596756;
  max-width: 56ch;
  font-size: 16px;
  line-height: 1.6;
}

.quote-section {
  padding: clamp(42px, 5vw, 76px) 0;
  border-top: 1px solid var(--line);
}
blockquote {
  margin: 0;
  max-width: 24ch;
  font: italic 340 clamp(34px, 4.8vw, 66px)/1.04 var(--serif);
  letter-spacing: -0.03em;
}
.quote-name { margin-top: 18px; }

.support {
  background:
    radial-gradient(circle at 18% 10%, rgba(167, 183, 154, .28), transparent 38%),
    var(--white);
}
.support-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.support-card {
  padding: 36px 32px 32px;
  border-radius: 8px;
  background: rgba(246, 242, 234, .84);
  border: 1px solid var(--line);
}
.support-card:first-child { border-top: 6px solid var(--olive); }
.support-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 340;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.support-card p {
  margin: 18px 0 22px;
  color: #596756;
}
.support-card ul, .price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.support-card li, .price-card li {
  color: #596756;
  padding-left: 22px;
  position: relative;
}
.support-card li::before, .price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .67em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
}

.pricing {
  padding: clamp(64px, 8vw, 112px) 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--warm), rgba(231, 221, 200, .62));
}
.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(330px, .72fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: start;
}
.price-card {
  border: 1px solid var(--line-strong);
  border-top: 6px solid var(--olive);
  border-radius: 8px;
  background: rgba(251, 250, 245, .9);
  padding: clamp(32px, 5vw, 56px);
  box-shadow: 0 38px 88px -58px rgba(46, 47, 49, .4);
}
.price {
  margin-top: 22px;
  font: 340 clamp(86px, 9vw, 126px)/.9 var(--serif);
  letter-spacing: -0.06em;
}
.price sup { color: var(--deep); font-size: .34em; }
.price small { color: #596756; font-size: .19em; font-style: italic; letter-spacing: 0; }
.price-card ul { margin: 32px 0; }

.closing {
  padding: clamp(54px, 7vw, 88px) 0;
  border-top: 1px solid var(--line);
  background: var(--charcoal);
  color: var(--white);
}
.closing .section-label { color: var(--sage); }
.closing-bar {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, .72fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}
.closing h2 {
  font-size: clamp(54px, 8vw, 118px);
  max-width: 8ch;
}
.quiz-card {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(251, 250, 245, .22);
  border-radius: 8px;
  background: rgba(251, 250, 245, .08);
}
.quiz-card p {
  margin: 0 0 22px;
  color: #e7ddc8;
  font: italic 21px/1.35 var(--serif);
}
.quiz-card ol {
  margin: 0 0 26px;
  padding-left: 22px;
  color: #f6f2ea;
}
.quiz-card li + li { margin-top: 10px; }
.quiz-card .btn-primary { background: var(--white); color: var(--deep); }

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: var(--oat);
  color: var(--charcoal);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(760px, 1fr) repeat(4, auto);
  gap: 28px;
  align-items: center;
  font-size: 14px;
}
.footer-brand {
  gap: 16px;
  min-width: 0;
}
.footer-brand .brand-mark {
  width: 82px;
  height: 82px;
}
.footer-brand .brand-name { font-size: 56px; }
.footer-slogan {
  margin: 14px 0 0;
  max-width: none;
  color: var(--deep);
  font: 340 clamp(30px, 3.35vw, 48px)/.95 var(--serif);
  letter-spacing: -0.035em;
  white-space: nowrap;
}
.footer-grid a { color: var(--deep); font-weight: 650; }

.legal-page {
  min-height: 100vh;
  display: grid;
  align-items: start;
  padding: clamp(38px, 8vw, 80px) 0;
}
.legal-wrap {
  display: grid;
  gap: 22px;
}
.legal-wrap .brand-link {
  min-width: 0;
  width: fit-content;
}
.legal-wrap h1 {
  margin: 20px 0 0;
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 112px);
  line-height: .92;
  letter-spacing: -0.04em;
  font-weight: 340;
}
.legal-wrap p:not(.section-label) {
  max-width: 42rem;
  color: #596756;
  font-size: 20px;
}

@media (max-width: 1040px) {
  .nav-links { gap: 18px; }
  .brand-link { min-width: 220px; }
  .brand-mark { width: 56px; height: 56px; }
  .brand-name { font-size: 37px; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-grid > div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    align-items: center;
  }
  .footer-slogan { margin: 0; font-size: clamp(36px, 6vw, 58px); }
}
@media (max-width: 920px) {
  .nav-links { display: none; }
  .hero-grid, .app-grid, .pricing-grid, .split-section, .closing-bar { grid-template-columns: 1fr; }
  .hero-art { min-height: 430px; max-width: 640px; }
  .flow-item { grid-template-columns: 70px 1fr; }
  .flow-item p { grid-column: 2; }
  .prose-pair, .support-grid { grid-template-columns: 1fr; }
  .note-card { right: 12px; bottom: 20px; }
}
@media (max-width: 620px) {
  .wrap { width: min(calc(100% - 32px), var(--max)); }
  .nav { height: 72px; }
  .brand-link { min-width: auto; gap: 9px; }
  .brand-mark { width: 44px; height: 44px; }
  .brand-name { font-size: 30px; }
  .nav-cta { min-height: 38px; padding: 0 16px; font-size: 13px; }
  .nav-auth { gap: 12px; }
  .nav-login { display: none; }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(45px, 13.5vw, 58px);
    line-height: .96;
    letter-spacing: -0.034em;
  }
  .hero-lede {
    max-width: 31ch;
    font-size: 18px;
    line-height: 1.43;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .btn-primary { width: min(100%, 280px); }
  .hero-art { min-height: 320px; }
  .platform-badges {
    align-items: flex-start;
    flex-direction: column;
  }
  .section-label { font-size: 12px; }
  .flow-item { grid-template-columns: 1fr; gap: 12px; }
  .flow-item p { grid-column: auto; }
  .device-stage { min-height: 560px; }
  .note-card { display: none; }
  .onboard-step { grid-template-columns: 60px 1fr; gap: 22px; padding: 32px 0; }
  .onboard-num { font-size: 38px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div { grid-column: 1 / -1; }
  .footer-grid > div { grid-template-columns: 1fr; gap: 10px; }
  .footer-slogan {
    font-size: clamp(32px, 10vw, 48px);
    white-space: normal;
  }
}

/* ---------------------------------------------------------------------------
   Subpages (Terms, Privacy, For dietitians) — shared top bar + the watercolor
   backdrop ported from the app's /login and /signup screens.
--------------------------------------------------------------------------- */
body.subpage {
  background-color: #f4f0de;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.5'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Cfilter id='c'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.014' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23c)' opacity='0.6'/%3E%3C/svg%3E"),
    radial-gradient(44% 36% at 90% 13%, rgba(146, 168, 102, 0.42), transparent 70%),
    radial-gradient(30% 24% at 70% 32%, rgba(168, 184, 126, 0.3), transparent 72%),
    radial-gradient(42% 36% at 7% 85%, rgba(146, 168, 102, 0.4), transparent 70%),
    radial-gradient(28% 22% at 27% 64%, rgba(168, 184, 126, 0.28), transparent 72%),
    radial-gradient(30% 30% at 3% 11%, rgba(156, 176, 112, 0.24), transparent 72%),
    radial-gradient(34% 32% at 97% 89%, rgba(156, 176, 112, 0.26), transparent 72%),
    radial-gradient(120% 100% at 50% 42%, #fcf9ef 0%, #f4f0dd 58%, #ece9cd 100%);
  background-blend-mode: soft-light, overlay, normal, normal, normal, normal, normal, normal, normal;
  background-size:
    200px 200px,
    cover,
    cover, cover, cover, cover, cover, cover, cover;
  background-attachment: fixed;
}
.subpage .site-header { background: rgba(252, 249, 239, .82); }

.subpage-leaf {
  position: fixed;
  pointer-events: none;
  user-select: none;
  opacity: 0.95;
  z-index: 0;
}
.subpage-leaf-tl { top: 0; left: 0; width: clamp(150px, 18vw, 290px); transform: translate(-4%, -6%); }
.subpage-leaf-br { right: 0; bottom: 0; width: clamp(150px, 18vw, 300px); transform: translate(4%, 6%); }

/* Legal pages keep their existing copy but now sit under the shared header. */
.subpage .legal-page { min-height: calc(100vh - 86px); }

/* ---- For dietitians (/rdn) ---- */
.rdn-hero { padding: clamp(54px, 8vw, 104px) 0 clamp(38px, 5vw, 60px); }
.rdn-hero h1 {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(46px, 7vw, 96px);
  line-height: .94;
  letter-spacing: -0.04em;
  font-weight: 340;
  max-width: 13ch;
}
.rdn-lede {
  max-width: 44rem;
  margin: 26px 0 0;
  font-family: var(--serif);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.38;
  color: #596756;
}
.rdn-hero-actions { display: flex; align-items: center; gap: 25px; margin-top: 32px; flex-wrap: wrap; }

.rdn-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.rdn-card {
  padding: 30px 28px;
  border-radius: 8px;
  background: rgba(251, 250, 245, .78);
  border: 1px solid var(--line);
  border-top: 4px solid var(--olive);
}
.rdn-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 340;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.018em;
}
.rdn-card p { margin: 13px 0 0; color: #596756; font-size: 16px; line-height: 1.55; }

.rdn-cta { padding: clamp(38px, 6vw, 76px) 0 clamp(64px, 8vw, 104px); }
.cta-card {
  max-width: 780px;
  padding: clamp(32px, 5vw, 52px);
  border: 1px solid var(--line-strong);
  border-top: 6px solid var(--olive);
  border-radius: 8px;
  background: rgba(251, 250, 245, .92);
  box-shadow: 0 38px 88px -58px rgba(46, 47, 49, .4);
}
.cta-card h2 { max-width: 18ch; margin: 14px 0 0; }
.cta-card p { color: #596756; font-size: 18px; margin: 16px 0 26px; max-width: 52ch; }
.cta-card a.email-link { color: var(--deep); font-weight: 700; border-bottom: 1px solid rgba(29, 86, 48, .32); }

@media (max-width: 920px) {
  .rdn-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .rdn-grid { grid-template-columns: 1fr; }
  .subpage-leaf { opacity: .8; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
}
