:root {
  --cream: #f5eddf;
  --paper: #fffdf8;
  --charcoal: #374047;
  --ink: #252b2f;
  --vine: #526448;
  --vine-dark: #3d4b36;
  --grape: #6e5268;
  --gold: #aa8e55;
  --line: rgba(55, 64, 71, .16);
  --shadow: 0 24px 70px rgba(45, 52, 48, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

a { color: inherit; }
.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--charcoal);
  text-decoration: none;
}
.brand img { display: block; width: 64px; height: auto; }
.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.05;
  letter-spacing: -.025em;
}
.study-link {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .02em;
  padding: .65rem .1rem .45rem;
  border-bottom: 1px solid var(--gold);
}
.study-link span { color: var(--grape); }

.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  min-height: 610px;
  gap: clamp(40px, 7vw, 90px);
}
.hero-copy { padding: 48px 0 72px; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--vine-dark);
  font-size: .76rem;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 800;
}
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.035em;
  color: var(--charcoal);
}
h1 {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: .98;
}
h2 { margin: 0 0 18px; font-size: clamp(2.15rem, 4vw, 3.65rem); line-height: 1.05; }
.hero-copy p { max-width: 680px; margin: 0 0 18px; }
.hero-copy .lead { font-size: 1.2rem; line-height: 1.55; color: #485158; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  margin-top: 18px;
  padding: 0 28px;
  border: 0;
  border-radius: 3px;
  text-decoration: none;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.primary { color: white; background: var(--vine-dark); box-shadow: 0 12px 30px rgba(61,75,54,.2); }
.primary:hover, .primary:focus-visible { background: var(--grape); }

.hero-art {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--cream);
  border-radius: 52% 48% 48% 52% / 40% 56% 44% 60%;
}
.hero-art img { position: relative; z-index: 2; width: min(74%, 390px); filter: drop-shadow(0 20px 22px rgba(55,64,71,.16)); }
.hero-art p {
  position: absolute;
  z-index: 3;
  right: 9%;
  bottom: 10%;
  margin: 0;
  color: var(--charcoal);
  font: italic 1rem/1.55 Georgia, serif;
  text-align: right;
}
.vine-support {
  position: absolute;
  z-index: 1;
  top: 8%;
  bottom: 8%;
  left: 58%;
  width: 16px;
  transform: translateX(-50%) rotate(.75deg);
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(90deg, #806b47 0%, #b39967 42%, #8d764e 100%);
  box-shadow: 2px 5px 12px rgba(55, 64, 71, .2);
}
.vine-support::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  top: 5%;
  height: 5px;
  border-radius: 3px;
  background: #92794e;
}
.trellis-line { position: absolute; z-index: 1; left: 7%; width: 86%; height: 2px; background: rgba(170,142,85,.48); }
.line-one { top: 42%; transform: rotate(-5deg); }
.line-two { top: 59%; transform: rotate(4deg); }
.wash { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .35; }
.wash-one { width: 300px; height: 260px; top: -30px; right: -70px; background: #c8b3c3; }
.wash-two { width: 230px; height: 210px; bottom: -45px; left: -55px; background: #b9c5a7; }

.invitation {
  width: min(980px, calc(100% - 40px));
  margin: 130px auto;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 38px;
  align-items: start;
}
.invitation-mark { width: 2px; height: 100%; min-height: 170px; background: linear-gradient(var(--gold), var(--grape)); }
.invitation p { max-width: 780px; margin: 0; font-size: 1.22rem; color: #4c555b; }

.interest {
  padding: clamp(60px, 9vw, 118px) max(20px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(45px, 8vw, 110px);
  color: white;
  background: var(--charcoal);
}
.interest h2 { color: white; }
.interest-intro p:not(.eyebrow) { max-width: 430px; color: rgba(255,255,255,.75); }
.eyebrow.light { color: #d9c99d; }
.interest-form { padding: clamp(26px, 4vw, 48px); color: var(--ink); background: var(--paper); box-shadow: var(--shadow); }
.interest-form label { display: block; margin-bottom: 20px; color: var(--charcoal); font-size: .88rem; font-weight: 750; }
.name-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
input, select {
  width: 100%;
  min-height: 52px;
  margin-top: 7px;
  border: 1px solid #c8c7c0;
  border-radius: 2px;
  padding: 0 14px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
}
select { min-height: 56px; }
input:focus, select:focus { outline: 3px solid rgba(170,142,85,.26); border-color: var(--gold); }
.form-button { width: 100%; margin-top: 4px; color: white; background: var(--grape); }
.form-button:hover, .form-button:focus-visible { background: var(--vine-dark); }
.form-note { margin: 14px 0 0; color: #697075; font-size: .78rem; text-align: center; }
.form-note a { color: var(--vine-dark); font-weight: 700; text-underline-offset: 3px; }
.form-status { min-height: 24px; margin: 12px 0 0; color: var(--vine-dark); font-size: .88rem; font-weight: 700; text-align: center; }

footer { padding: 58px 20px; text-align: center; background: var(--cream); }
footer img { width: 64px; height: auto; }
footer p { margin: 7px 0 0; color: var(--charcoal); font-family: Georgia, serif; font-size: 1.15rem; }
footer .footer-tagline { margin-top: 1px; font-family: inherit; font-size: .78rem; letter-spacing: .03em; color: #656d70; }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; margin-top: 0; }
  .hero-copy { padding: 45px 0 20px; }
  .hero-art { min-height: 450px; }
  .interest { grid-template-columns: 1fr; }
  .interest-intro p:not(.eyebrow) { max-width: 620px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .site-header { width: min(100% - 28px, 1180px); min-height: 88px; }
  .brand { gap: 9px; }
  .brand img { width: 48px; }
  .brand span { max-width: 145px; }
  .study-link { font-size: 0; }
  .study-link::before { content: "Study ↗"; font-size: .86rem; }
  .hero, .invitation { width: calc(100% - 32px); }
  h1 { font-size: clamp(2.7rem, 14vw, 4rem); }
  .hero-art { min-height: 385px; border-radius: 44% 56% 48% 52% / 42% 46% 54% 58%; }
  .hero-art img { width: 70%; }
  .hero-art p { right: 8%; bottom: 8%; font-size: .85rem; }
  .invitation { grid-template-columns: 20px 1fr; gap: 18px; margin: 88px auto; }
  .name-fields { grid-template-columns: 1fr; gap: 0; }
  .interest-form { padding: 24px 18px; }
}

@media (prefers-reduced-motion: no-preference) {
  .button { transition: background-color .2s ease, transform .2s ease; }
  .button:hover { transform: translateY(-2px); }
}

/* Landing page V2 */
.wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.site-header nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 42px); }
.site-header nav a { color: var(--charcoal); text-decoration: none; font-weight: 700; font-size: .9rem; border-bottom: 1px solid var(--gold); padding: .65rem .1rem .45rem; white-space: nowrap; }
.site-header nav a:hover, footer a:hover { color: var(--grape); }
.hero { margin-top: 25px; grid-template-columns: 1.08fr .92fr; min-height: 660px; }
.hero-copy strong, .introduction strong { color: var(--vine-dark); font-weight: 700; }
.hero-art { min-height: 540px; border-radius: 50% 48% 49% 51% / 45% 53% 47% 55%; background: #f5f0e7; }
.hero-art img { width: 100%; height: 100%; max-width: none; object-fit: cover; filter: none; }
.introduction { max-width: 940px; padding: 118px 0 120px; }
.introduction h2 { max-width: 850px; }
.introduction > p:not(.eyebrow) { max-width: 740px; font-size: 1.17rem; color: #4c555b; }
.introduction .supporting { margin-top: 36px; font-weight: 700; font-size: 1rem !important; color: var(--vine-dark) !important; }
.plan { background: #f7f3eb; padding: 85px 0 95px; scroll-margin-top: 20px; }
.movement { padding: 28px 0 100px; }
.movement:last-child { padding-bottom: 0; }
.movement + .movement { border-top: 1px solid var(--line); padding-top: 82px; }
.movement-intro { max-width: 790px; margin-bottom: 38px; }
.movement-intro .eyebrow { margin-bottom: 64px; }
.movement-label { margin: 0 0 16px; color: var(--grape); font-size: .78rem; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
.movement-intro h2 { max-width: 770px; }
.movement-intro > p:last-child { max-width: 740px; margin: 0; color: #4c555b; font-size: 1.12rem; }
.modules { display: grid; gap: clamp(24px, 3vw, 42px); position: relative; }
.modules.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.modules.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.modules::before { content: ""; position: absolute; top: 44%; left: 8%; right: 8%; height: 1px; background: rgba(170,142,85,.38); }
.module { min-width: 0; position: relative; }
.module img { display: block; width: 100%; height: clamp(250px, 28vw, 365px); object-fit: cover; object-position: center; background: #faf7f1; }
.module-copy { position: relative; padding: 22px 3px 0; background: #f7f3eb; }
.module-number { display: block; color: var(--grape); font-size: .78rem; font-weight: 800; letter-spacing: .14em; margin-bottom: 7px; }
.module h3 { margin: 0 0 7px; font: 400 clamp(1.55rem, 2.3vw, 2rem)/1.15 Georgia, serif; letter-spacing: -.025em; color: var(--charcoal); }
.module p { margin: 0; color: #4c555b; font-size: 1rem; line-height: 1.55; }
.lifelong { max-width: 900px; padding: 105px 0 115px; }
.lifelong h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.lifelong p { max-width: 760px; margin: 0; color: #4c555b; font-size: 1.12rem; }
footer { padding: 48px 20px 54px; }
footer nav { display: flex; justify-content: center; gap: 28px; margin-top: 19px; }
footer nav a { font-size: .9rem; font-weight: 700; text-underline-offset: 4px; }
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; gap: 15px; min-height: 0; }
  .hero-copy { padding-bottom: 25px; }
  .hero-art { min-height: 0; aspect-ratio: 1.65; }
  .modules.three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .modules.three .module:last-child { grid-column: 1 / -1; max-width: calc(50% - 12px); }
}
@media (max-width: 600px) {
  .wrap { width: calc(100% - 32px); }
  .site-header { gap: 12px; }
  .site-header nav { gap: 12px; }
  .site-header nav a { font-size: .79rem; }
  .brand span { font-size: .98rem; max-width: 102px; }
  .brand img { width: 40px; }
  .hero-art { aspect-ratio: 1.1; }
  .introduction { padding: 86px 0; }
  .introduction > p:not(.eyebrow) { font-size: 1.05rem; }
  .plan { padding: 65px 0 75px; }
  .movement, .movement + .movement { padding-top: 28px; padding-bottom: 73px; }
  .movement:last-child { padding-bottom: 0; }
  .movement-intro .eyebrow { margin-bottom: 55px; }
  .modules.two, .modules.three { grid-template-columns: 1fr; gap: 48px; }
  .modules.three .module:last-child { grid-column: auto; max-width: none; }
  .modules::before { display: none; }
  .module img { height: auto; aspect-ratio: 1.18; }
  .lifelong { padding: 83px 0 90px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* Targeted plan overview and compact botanical illustrations */
.journey {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 3vw, 42px);
  padding: 10px 0 78px;
  color: var(--vine-dark);
  font: 400 clamp(1.8rem, 4.3vw, 3.6rem)/1.15 Georgia, "Times New Roman", serif;
  letter-spacing: -.035em;
  text-align: center;
  text-transform: uppercase;
  scroll-margin-top: 32px;
}
.journey-arrow { color: var(--gold); font-family: Georgia, serif; font-size: .7em; flex: none; }
.plan { padding-top: 73px; }
.movement { padding-bottom: 76px; }
.movement + .movement { padding-top: 65px; }
.movement-intro { margin-bottom: 18px; }
.modules::before { display: none; }
.modules { gap: clamp(22px, 3vw, 42px); }
.module img {
  width: min(100%, 185px);
  height: 190px;
  margin: 0 auto;
  object-fit: contain;
  background: transparent;
  mix-blend-mode: multiply;
}
.module-copy { padding-top: 9px; }
.field-hint { display: block; margin-top: 3px; font-size: .78rem; font-weight: 400; color: #697075; }
.interest-form .consent-label {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 26px 0 0;
  font-size: .9rem;
  line-height: 1.45;
}
.consent-label input { flex: none; width: 19px; height: 19px; min-height: 0; margin: 2px 0 0; accent-color: var(--vine-dark); }
.consent-note { margin: 8px 0 10px 30px; color: #697075; font-size: .78rem; line-height: 1.5; }
@media (max-width: 600px) {
  .journey { gap: 7px; padding: 0 0 64px; font-size: clamp(1.15rem, 5.4vw, 2rem); }
  .plan { padding-top: 60px; }
  .movement, .movement + .movement { padding-top: 25px; padding-bottom: 62px; }
  .module img { width: min(64%, 185px); height: 180px; }
  .modules.two, .modules.three { gap: 34px; }
}

.form-honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.form-button:disabled { opacity: .65; cursor: wait; }

/* Privacy page and transparent illustration refinements */
.hero-art img { object-position: center; }
.module img { mix-blend-mode: normal; }
.field-hint { margin: -14px 0 10px; line-height: 1.5; }
.field-hint a, .consent-note a { color: var(--vine-dark); font-weight: 700; text-underline-offset: 3px; }
.privacy-page { background: var(--paper); }
.policy { max-width: 800px; padding: 64px 0 110px; }
.policy h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); line-height: 1.1; margin-bottom: 18px; }
.policy .updated { color: var(--vine-dark); margin-bottom: 36px; }
.policy p, .policy li { color: var(--charcoal); font-size: 1rem; line-height: 1.72; }
.policy p { margin: 0 0 18px; }
.policy section { margin-top: 46px; }
.policy h2 { font-size: clamp(1.55rem, 3vw, 2rem); line-height: 1.2; margin-bottom: 16px; }
.policy ul { margin: 0 0 20px; padding-left: 1.5em; }
.policy li { padding-left: .25em; margin-bottom: 6px; }
.policy a { color: var(--vine-dark); overflow-wrap: anywhere; text-underline-offset: 3px; }
@media (max-width: 600px) { .policy { padding: 38px 0 75px; } .policy section { margin-top: 38px; } footer nav { flex-wrap: wrap; } }
