:root {
  --green: #0b4b3e;
  --green-deep: #06382f;
  --green-ink: #073e34;
  --gold: #d9a441;
  --gold-deep: #bd8730;
  --ivory: #f7f3ea;
  --paper: #fffdf8;
  --sage: #dde9e1;
  --charcoal: #1f2925;
  --muted: #5d6964;
  --line: rgba(11, 75, 62, 0.16);
  --shadow: 0 24px 70px rgba(6, 56, 47, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: white;
  background: var(--green);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.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;
}

.status-bar {
  background: var(--green-deep);
  color: white;
  font-size: 0.88rem;
}

.status-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.status-label {
  padding: 3px 9px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 999px;
  color: #f4d99b;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.status-bar a { color: #f4d99b; font-weight: 700; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, .94);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand { flex: 0 0 auto; }
.brand img { width: 230px; height: 74px; object-fit: contain; object-position: left center; }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  text-decoration: none;
  font-size: .92rem;
  font-weight: 700;
  color: var(--green-ink);
}
.site-nav a:not(.nav-cta):hover { color: var(--gold-deep); }

.nav-cta {
  padding: 11px 18px;
  border-radius: 4px;
  background: var(--green);
  color: white !important;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 4px;
}
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--green); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 90px;
  background:
    radial-gradient(circle at 13% 16%, rgba(217,164,65,.13), transparent 26%),
    linear-gradient(135deg, var(--paper) 0%, var(--ivory) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -260px;
  bottom: -240px;
  border: 1px solid rgba(217,164,65,.35);
  border-radius: 50%;
  box-shadow: 0 0 0 58px rgba(217,164,65,.05), 0 0 0 116px rgba(11,75,62,.025);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: .77rem;
  font-weight: 850;
  letter-spacing: .17em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 38px;
  height: 3px;
  margin: 0 12px 3px 0;
  background: var(--gold);
}
.eyebrow.light { color: #f8ecd2; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--green-ink); }

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(3.35rem, 7vw, 6.55rem);
  font-weight: 500;
  line-height: .93;
  letter-spacing: -.055em;
}

h2 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.2vw, 4.2rem);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -.035em;
}

h3 { line-height: 1.22; }

.hero-lede {
  max-width: 660px;
  margin-bottom: 31px;
  color: #3f4d47;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.46;
}

.hero-actions, .launch-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: .94rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .site-nav a:focus-visible, .text-link:focus-visible, .contact-line:focus-visible { outline: 3px solid #eec76e; outline-offset: 4px; }
.button-primary { background: var(--green); color: white; }
.button-primary:hover { background: var(--green-deep); }
.button-quiet { border-color: rgba(11,75,62,.28); color: var(--green); background: transparent; }
.button-quiet:hover { border-color: var(--green); background: rgba(11,75,62,.04); }
.button-gold { background: var(--gold); color: #153229; }
.button-gold:hover { background: #e4b75d; }

.hero-visual {
  position: relative;
  margin: 0;
  padding: 12px;
  background: white;
  box-shadow: var(--shadow);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -13px 25px 25px -13px;
  z-index: -1;
  border: 1px solid var(--gold);
}
.hero-visual img { width: 100%; aspect-ratio: 1.33; object-fit: cover; object-position: center; }
.hero-visual figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 10px 7px;
}
.hero-visual figcaption span { color: var(--muted); font-size: .75rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero-visual figcaption strong { color: var(--green); font-family: var(--serif); font-size: 1.35rem; font-style: italic; font-weight: 500; }

.trust-strip { color: white; background: var(--green); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-grid > div { min-height: 125px; padding: 29px 27px; border-right: 1px solid rgba(255,255,255,.16); }
.trust-grid > div:first-child { border-left: 1px solid rgba(255,255,255,.16); }
.trust-grid strong { display: block; color: #f1cb77; font-family: var(--serif); font-size: 1.4rem; font-weight: 500; }
.trust-grid span { display: block; margin-top: 4px; color: rgba(255,255,255,.78); font-size: .88rem; line-height: 1.45; }

.section { padding: 104px 0; }
.split-intro { display: grid; grid-template-columns: 1fr .86fr; gap: clamp(45px, 8vw, 110px); align-items: start; }
.split-intro h2 { max-width: 720px; margin-bottom: 0; }
.intro-copy { padding-top: 38px; border-top: 1px solid var(--line); }
.intro-copy p { color: #4f5c57; font-size: 1.08rem; }
.intro-copy p:first-child { color: var(--charcoal); font-family: var(--serif); font-size: 1.42rem; line-height: 1.5; }

.care { background: var(--ivory); }
.section-heading { max-width: 770px; margin-bottom: 46px; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.05rem; }
.section-heading.compact { margin-bottom: 38px; }

.care-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.care-card {
  position: relative;
  min-height: 325px;
  padding: 34px;
  border: 1px solid rgba(11,75,62,.14);
  background: var(--paper);
}
.care-card.featured { color: white; background: var(--green); }
.care-card.featured h3, .care-card.featured p { color: white; }
.card-number { display: block; margin-bottom: 54px; color: var(--gold-deep); font-size: .78rem; font-weight: 850; letter-spacing: .12em; }
.featured .card-number { color: #f3cd7e; }
.care-card h3 { margin-bottom: 14px; font-family: var(--serif); font-size: 1.7rem; font-weight: 500; }
.care-card p { margin: 0; color: #58645f; }
.scope-note { margin: 25px 0 0; color: var(--muted); font-size: .88rem; }

.launch { overflow: hidden; color: white; background: var(--green-deep); }
.launch-grid { display: grid; grid-template-columns: .73fr 1fr; gap: clamp(55px, 8vw, 105px); align-items: center; }
.poster-wrap { position: relative; }
.poster-wrap::after {
  content: "";
  position: absolute;
  inset: 24px -24px -24px 24px;
  z-index: 0;
  border: 1px solid rgba(217,164,65,.7);
}
.poster-wrap img { position: relative; z-index: 1; width: min(100%, 470px); box-shadow: 0 30px 80px rgba(0,0,0,.28); }
.launch-content { position: relative; z-index: 1; }
.launch h2 { max-width: 650px; color: white; }
.launch-lede { max-width: 690px; margin-bottom: 34px; color: rgba(255,255,255,.78); font-family: var(--serif); font-size: 1.32rem; }
.event-date { display: flex; align-items: center; gap: 18px; margin-bottom: 32px; }
.date-day { display: inline-flex; width: 84px; height: 84px; align-items: center; justify-content: center; border: 1px solid rgba(217,164,65,.74); border-radius: 50%; color: #f2ca74; font-family: var(--serif); font-size: 2.45rem; line-height: 1; }
.event-date strong { color: white; font-size: 1.04rem; }
.check-list { margin-bottom: 34px; padding: 25px 27px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.055); }
.check-list h3 { margin-bottom: 15px; color: #f1cb77; font-size: .79rem; letter-spacing: .13em; text-transform: uppercase; }
.check-list ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 20px; color: rgba(255,255,255,.9); }
.check-list li::before { content: ""; position: absolute; left: 0; top: .7em; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; }
.text-link { font-weight: 800; text-decoration: none; }
.light-link { color: white; }
.light-link span { color: var(--gold); font-size: 1.25rem; }
.microcopy { margin: 16px 0 0; color: rgba(255,255,255,.6); font-size: .84rem; }

.journey { background: var(--paper); }
.journey-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin: 0; padding: 0; list-style: none; }
.journey-grid li { min-height: 230px; padding: 27px 28px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
.journey-grid li:first-child { border-left: 1px solid var(--line); }
.journey-grid li > span { display: inline-flex; width: 42px; height: 42px; margin-bottom: 38px; align-items: center; justify-content: center; border-radius: 50%; color: white; background: var(--green); font-family: var(--serif); }
.journey-grid strong { display: block; color: var(--green); font-family: var(--serif); font-size: 1.3rem; font-weight: 500; }
.journey-grid p { margin: 6px 0 0; color: var(--muted); font-size: .9rem; line-height: 1.5; }

.visit { background: var(--sage); }
.visit-grid { display: grid; grid-template-columns: 1fr .75fr; gap: clamp(48px, 8vw, 110px); align-items: center; }
.visit-copy h2 { max-width: 720px; }
address { margin: 0 0 30px; color: #46534e; font-style: normal; font-size: 1.05rem; line-height: 1.75; }
address strong { color: var(--green); }
.contact-panel { padding: 40px; color: white; background: var(--green); box-shadow: var(--shadow); }
.contact-label { margin-bottom: 12px; color: #f2cc7c; font-size: .78rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.contact-panel h3 { margin-bottom: 29px; color: white; font-family: var(--serif); font-size: 1.75rem; font-weight: 500; }
.contact-line { display: flex; justify-content: space-between; gap: 20px; padding: 17px 0; border-top: 1px solid rgba(255,255,255,.2); text-decoration: none; }
.contact-line:hover strong { color: #f2cc7c; }
.contact-line span { color: rgba(255,255,255,.68); }
.contact-line strong { color: white; }
.closing { padding: 70px 0; color: white; background: #082f28; }
.closing-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.closing h2 { margin: 0; color: white; }

.site-footer { padding: 55px 0 28px; background: var(--paper); }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.footer-brand img { width: 210px; height: 80px; object-fit: contain; object-position: left center; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px 28px; justify-content: flex-end; }
.footer-links a { color: var(--green); font-size: .88rem; font-weight: 700; text-decoration: none; }
.footer-links a:hover { color: var(--gold-deep); }
.footer-bottom { display: grid; grid-template-columns: auto 1fr; gap: 42px; padding-top: 26px; color: #65716c; font-size: .78rem; }
.footer-bottom p { margin: 0; }
.privacy-note { max-width: 650px; justify-self: end; text-align: right; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    inset: 86px 0 auto;
    display: none;
    padding: 20px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 24px 40px rgba(6,56,47,.12);
  }
  .site-nav.open { display: grid; }
  .site-nav a { padding: 9px 4px; }
  .nav-cta { text-align: center; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 780px; }
  .hero-visual { width: min(100%, 740px); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div:first-child { border-left: 0; }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16); }
  .split-intro, .visit-grid { grid-template-columns: 1fr; }
  .intro-copy { padding-top: 28px; }
  .care-grid { grid-template-columns: 1fr; }
  .care-card { min-height: auto; }
  .card-number { margin-bottom: 34px; }
  .launch-grid { grid-template-columns: .72fr 1fr; gap: 54px; }
  .journey-grid { grid-template-columns: 1fr 1fr; }
  .journey-grid li:nth-child(odd) { border-left: 1px solid var(--line); }
  .journey-grid li:nth-child(-n+2) { border-bottom: 0; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .status-inner { padding: 10px 0; flex-wrap: wrap; gap: 5px 9px; line-height: 1.4; }
  .status-label { display: none; }
  .nav-wrap { min-height: 74px; }
  .brand img { width: 180px; height: 62px; }
  .site-nav { inset: 74px 0 auto; }
  .hero { padding: 56px 0 70px; }
  h1 { font-size: clamp(3rem, 16vw, 4.7rem); }
  h2 { font-size: clamp(2.25rem, 11vw, 3.45rem); }
  .hero-actions .button { width: 100%; }
  .hero-visual figcaption { display: block; }
  .hero-visual figcaption strong { display: block; margin-top: 4px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16); }
  .section { padding: 76px 0; }
  .split-intro { gap: 38px; }
  .launch-grid { grid-template-columns: 1fr; }
  .poster-wrap { width: calc(100% - 20px); }
  .check-list ul { grid-template-columns: 1fr; }
  .launch-actions { align-items: flex-start; flex-direction: column; }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-grid li { min-height: 0; border: 1px solid var(--line); border-bottom: 0; }
  .journey-grid li:last-child { border-bottom: 1px solid var(--line); }
  .journey-grid li:nth-child(-n+2) { border-bottom: 0; }
  .journey-grid li > span { margin-bottom: 25px; }
  .contact-panel { padding: 30px 24px; }
  .contact-line { display: block; }
  .contact-line strong { display: block; margin-top: 3px; font-size: 1.15rem; }
  .closing-inner, .footer-top { align-items: flex-start; flex-direction: column; }
  .closing-inner .button { width: 100%; }
  .footer-links { justify-content: flex-start; }
  .footer-bottom { grid-template-columns: 1fr; gap: 12px; }
  .privacy-note { justify-self: start; text-align: left; }
}

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