
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Lora:ital,wght@0,500;0,600;1,500&display=swap');

:root {
  --teal: #2F6F6D;
  --teal-dark: #245957;
  --apricot: #F2B28C;
  --apricot-dark: #D98E65;
  --ivory: #FAF7F2;
  --charcoal: #263533;
  --muted: #64726F;
  --white: #FFFFFF;
  --border: #E8E1D8;
  --sage-wash: #EAF2EF;
  --apricot-wash: #FFF0E7;
  --shadow: 0 14px 40px rgba(38, 53, 51, 0.08);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
ul { padding-left: 1.25rem; }
button, input, textarea, select { font: inherit; }
:focus-visible {
  outline: 3px solid rgba(242, 178, 140, .65);
  outline-offset: 3px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--apricot);
}

h1, h2, h3 {
  font-family: "Lora", Georgia, serif;
  line-height: 1.16;
  margin: 0 0 1rem;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.6rem, 6vw, 5.25rem); font-weight: 600; letter-spacing: -.035em; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); font-weight: 600; letter-spacing: -.025em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
.lead { font-size: clamp(1.08rem, 1.8vw, 1.3rem); color: var(--muted); max-width: 760px; }
.small { font-size: .93rem; color: var(--muted); }
.muted { color: var(--muted); }
.accent { color: var(--teal); }
.apricot { color: var(--apricot-dark); }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.8rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .82rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: .2s ease;
  cursor: pointer;
}
.btn-primary { background: var(--teal); color: white; }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn-secondary { background: var(--white); border-color: var(--teal); color: var(--teal); }
.btn-secondary:hover { background: var(--sage-wash); transform: translateY(-1px); }
.btn-apricot { background: var(--apricot); color: var(--charcoal); }
.btn-apricot:hover { background: #F0A97F; transform: translateY(-1px); }
.btn-disabled {
  background: #E8E5E0;
  color: #807D78;
  cursor: not-allowed;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(250,247,242,.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232,225,216,.8);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  min-width: 240px;
}
.brand img { width: 44px; height: 44px; object-fit: contain; border-radius: 12px; }
.brand-text { line-height: 1.08; }
.brand-text strong { display: block; font-family: "Lora", serif; font-size: 1.03rem; color: var(--teal-dark); }
.brand-text span { display: block; font-size: .7rem; letter-spacing: .11em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  font-size: .9rem;
  font-weight: 600;
}
.nav-links a:not(.btn) { color: #475552; }
.nav-links a:not(.btn):hover, .nav-links a.active { color: var(--teal); }
.nav-links .btn { min-height: 42px; padding: .58rem .95rem; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 12px;
  font-size: 1.3rem;
}

.hero {
  padding: clamp(4.8rem, 8vw, 8.5rem) 0 clamp(4rem, 7vw, 7rem);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(320px,.9fr);
  gap: clamp(2.2rem, 6vw, 6rem);
  align-items: center;
}
.hero h1 .line2 { color: var(--teal); }
.hero-copy { max-width: 690px; }
.mission-line {
  font-family: "Lora", serif;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  color: var(--teal-dark);
  margin-bottom: 1.1rem;
}
.hero-art {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
}
.hero-art::before, .hero-art::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: -1;
}
.hero-art::before {
  width: 430px; height: 430px;
  background: var(--sage-wash);
  top: 10px; right: -80px;
}
.hero-art::after {
  width: 250px; height: 250px;
  background: var(--apricot-wash);
  bottom: 15px; left: 10px;
}
.hero-mark {
  width: min(390px, 88%);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.section { padding: clamp(4rem, 7vw, 7rem) 0; }
.section-white { background: var(--white); }
.section-soft { background: var(--sage-wash); }
.section-apricot { background: var(--apricot-wash); }
.section-heading { max-width: 760px; margin-bottom: 2.5rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.5rem);
  box-shadow: var(--shadow);
}
.panel.teal { background: var(--teal); color: white; border: none; }
.panel.teal h2, .panel.teal h3 { color: white; }
.panel.teal p, .panel.teal li { color: rgba(255,255,255,.87); }
.panel.apricot-panel { background: var(--apricot-wash); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.55rem;
}
.card-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--apricot-wash);
  color: var(--teal);
  border-radius: 14px;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.card p { color: var(--muted); margin-bottom: 0; }

.path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
}
.step {
  position: relative;
  padding: 1.6rem;
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--border);
}
.step-num {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-weight: 700;
  margin-bottom: .9rem;
}
.step p { color: var(--muted); margin-bottom: 0; }

.page-hero {
  padding: 5rem 0 3.6rem;
  background:
    radial-gradient(circle at 85% 15%, rgba(242,178,140,.25), transparent 27%),
    radial-gradient(circle at 15% 90%, rgba(47,111,109,.12), transparent 30%);
}
.page-hero .lead { max-width: 820px; }

.notice {
  border-left: 4px solid var(--apricot);
  background: var(--white);
  padding: 1.1rem 1.25rem;
  border-radius: 0 14px 14px 0;
  color: #4A5654;
}
.notice strong { color: var(--charcoal); }

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.3rem 0;
}
.check-list li {
  position: relative;
  padding-left: 1.8rem;
  margin: .65rem 0;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 800;
}

.faq-list { display: grid; gap: .8rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 1.15rem 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-weight: 700;
  color: var(--charcoal);
  cursor: pointer;
}
.faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  color: var(--muted);
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-plus { transition: transform .2s ease; font-size: 1.2rem; }

.form-shell {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.7rem);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .45rem; }
.field.full { grid-column: 1 / -1; }
label { font-size: .92rem; font-weight: 700; }
input, textarea, select {
  width: 100%;
  border: 1px solid #D8D5CF;
  border-radius: 12px;
  padding: .85rem .9rem;
  background: #FEFEFD;
  color: var(--charcoal);
}
textarea { min-height: 150px; resize: vertical; }
.form-note {
  background: var(--apricot-wash);
  padding: 1rem;
  border-radius: 12px;
  font-size: .9rem;
  color: #675346;
  margin-bottom: 1.2rem;
}

.cta {
  background: var(--teal);
  color: white;
  border-radius: 30px;
  padding: clamp(2.2rem, 5vw, 4rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.cta h2 { color: white; margin-bottom: .5rem; }
.cta p { color: rgba(255,255,255,.82); max-width: 650px; margin: 0; }

.site-footer {
  background: #203D3B;
  color: rgba(255,255,255,.82);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr .8fr .8fr;
  gap: 2.5rem;
}
.footer-brand {
  display: flex;
  gap: .9rem;
  align-items: center;
  margin-bottom: 1rem;
}
.footer-brand img { width: 58px; border-radius: 14px; }
.footer-brand strong { font-family: "Lora", serif; font-size: 1.25rem; color: white; }
.footer-links { display: grid; gap: .5rem; }
.footer-links a:hover { color: var(--apricot); }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.13);
  font-size: .82rem;
  color: rgba(255,255,255,.58);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 1020px) {
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav-links {
    display: none;
    position: absolute;
    top: 82px; left: 20px; right: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 18px;
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links .btn { width: 100%; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-art { min-height: 390px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .path-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .container { width: min(calc(100% - 26px), var(--max)); }
  .brand { min-width: 0; }
  .brand-text span { display: none; }
  .hero { padding-top: 3.5rem; }
  .hero-art { min-height: 300px; }
  .hero-art::before { width: 300px; height: 300px; right: -90px; }
  .hero-art::after { width: 180px; height: 180px; }
  .cards, .path-grid, .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .cta { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
}
