:root {
  --ink: #17231f;
  --muted: #5d6963;
  --paper: #f7f4ee;
  --paper-deep: #eee8dc;
  --green: #164b3b;
  --green-light: #d8eadf;
  --coral: #ee6c4d;
  --yellow: #f4c95d;
  --white: #fffdf8;
  --line: rgba(23, 35, 31, .14);
  --shadow: 0 24px 70px rgba(28, 50, 41, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .7rem 1rem;
  color: white;
  background: var(--green);
}

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

.site-header {
  width: min(1180px, calc(100% - 2.5rem));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  line-height: 1;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
}

.brand-mark svg { width: 32px; fill: var(--yellow); }
.brand-mark path { fill: none; stroke: currentColor; stroke-width: 3; }
.brand strong, .brand small { display: block; letter-spacing: .01em; }
.brand strong { font-size: 1.08rem; }
.brand small { margin-top: .25rem; color: var(--muted); font-size: .86rem; }

nav { display: flex; align-items: center; gap: 1.7rem; }
nav a { font-size: .94rem; font-weight: 650; text-decoration: none; }
nav a:hover { color: var(--coral); }
.nav-contact { padding: .65rem 1rem; border: 1px solid var(--ink); border-radius: 999px; }

.hero {
  width: min(1180px, calc(100% - 2.5rem));
  min-height: 640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 5vw;
  padding: 5rem 0 6rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--coral);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1.6rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.45rem, 6.7vw, 6.6rem);
  line-height: .92;
  letter-spacing: -.052em;
}

h1 em { color: var(--green); font-weight: 400; }

.hero-text {
  max-width: 690px;
  margin-bottom: 2rem;
  color: #3e4b45;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.4rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .8rem 1.35rem;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary { color: var(--white); background: var(--green); box-shadow: 0 10px 26px rgba(22, 75, 59, .2); }
.button-primary:hover { background: #0d3b2d; transform: translateY(-1px); }
.text-link { font-weight: 750; text-underline-offset: .3rem; }
.privacy-note { max-width: 620px; margin: 1.1rem 0 0; color: var(--muted); font-size: .86rem; }

.hero-visual {
  position: relative;
  min-height: 510px;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 6% 4%;
  z-index: -2;
  border-radius: 50% 46% 52% 42%;
  background: var(--green-light);
  transform: rotate(-7deg);
}

.orbit { position: absolute; border: 1px dashed rgba(22, 75, 59, .45); border-radius: 50%; }
.orbit-one { inset: 11% 9%; transform: rotate(13deg); }
.orbit-two { inset: 23% 20%; transform: rotate(-18deg); }

.person, .center-card {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: var(--shadow);
  font-weight: 800;
}

.person { width: 122px; height: 122px; border: 9px solid var(--white); font-size: .75rem; }
.person-one { left: 3%; top: 10%; color: #15382c; background: var(--yellow); }
.person-two { right: 1%; top: 20%; color: white; background: var(--coral); }
.person-three { left: 11%; bottom: 2%; color: white; background: #3b6c92; }

.center-card {
  left: 50%; top: 52%;
  width: 210px; height: 210px;
  transform: translate(-50%, -50%);
  align-content: center;
  color: white;
  background: var(--green);
  border: 14px solid rgba(255, 253, 248, .72);
}

.center-card strong { font-family: Georgia, serif; font-size: 1.65rem; }
.center-card span { font-size: .9rem; font-weight: 550; }

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  color: white;
  padding: 0 max(1.25rem, calc((100vw - 1180px) / 2));
}

.proof-band p { margin: 0; padding: 1.45rem 1.25rem; border-right: 1px solid rgba(255,255,255,.14); }
.proof-band p:first-child { border-left: 1px solid rgba(255,255,255,.14); }
.proof-band strong, .proof-band span { display: block; }
.proof-band strong { color: var(--yellow); font-size: .95rem; }
.proof-band span { color: rgba(255,255,255,.72); font-size: .82rem; }

.section { width: min(1180px, calc(100% - 2.5rem)); margin: 0 auto; padding: 7.5rem 0; }
.section-heading { max-width: 800px; }
.section-heading.compact { max-width: 590px; }

h2 {
  margin-bottom: 1.2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4vw, 4.3rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.section-heading > p:last-child { color: var(--muted); font-size: 1.1rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3.5rem; }
.principle-card { min-height: 270px; padding: 2rem; border: 1px solid var(--line); background: rgba(255,255,255,.35); }
.principle-card.featured { color: white; background: var(--green); border-color: var(--green); transform: translateY(-1rem); }
.card-number { color: var(--coral); font-weight: 850; letter-spacing: .12em; }
.featured .card-number { color: var(--yellow); }
.principle-card h3 { margin: 3.5rem 0 .7rem; font-family: Georgia, serif; font-size: 1.5rem; }
.principle-card p { margin-bottom: 0; color: var(--muted); }
.featured p { color: rgba(255,255,255,.78); }

.process { display: grid; grid-template-columns: .8fr 1.2fr; gap: 7vw; border-top: 1px solid var(--line); }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 58px 1fr; gap: 1rem; padding: 0 0 2rem; margin-bottom: 2rem; border-bottom: 1px solid var(--line); }
.step-index { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--coral); font-weight: 850; }
.steps h3 { margin-bottom: .35rem; font-family: Georgia, serif; font-size: 1.35rem; }
.steps p { margin-bottom: 0; color: var(--muted); }

.invitation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: end;
  border-top: 1px solid var(--line);
}

.invitation > p { color: var(--muted); font-size: 1.08rem; }

.contact-section {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 5vw;
  padding: 5rem;
  color: white;
  background: var(--green);
}

.eyebrow.light { color: var(--yellow); }
.contact-copy p:not(.eyebrow) { color: rgba(255,255,255,.76); font-size: 1.05rem; }
.mail-link { display: inline-block; margin-top: 1rem; color: var(--yellow); font-size: clamp(1rem, 2.1vw, 1.45rem); font-weight: 800; text-underline-offset: .35rem; }
.contact-people { display: grid; align-content: center; gap: 1rem; }
.contact-people article { display: flex; align-items: center; gap: 1rem; padding: 1.2rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); }
.contact-people article > span { width: 48px; height: 48px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--green); background: var(--yellow); font-weight: 900; }
.contact-people strong, .contact-people a { display: block; }
.contact-people a { color: rgba(255,255,255,.78); }

.crisis-note { width: min(1180px, calc(100% - 2.5rem)); margin: 0 auto; padding: 1.1rem 1.3rem; color: #59430d; background: #fff0bd; border-left: 5px solid var(--yellow); font-size: .9rem; }

footer {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 3rem 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 3rem;
  color: var(--muted);
  font-size: .85rem;
}

.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { color: var(--ink); }
.footer-links { display: flex; gap: 1.2rem; }
footer p { margin: 0; }

.legal-header {
  width: min(920px, calc(100% - 2.5rem));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

.legal-header > a:last-child,
.legal-footer a {
  font-weight: 750;
  text-underline-offset: .25rem;
}

.legal-page {
  width: min(920px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 5rem 0 3rem;
}

.legal-page > h1 {
  margin-bottom: 3rem;
  font-size: clamp(3rem, 7vw, 5.4rem);
}

.legal-page section {
  max-width: 760px;
  padding: 1.8rem 0;
  border-top: 1px solid var(--line);
}

.legal-page section h2 {
  margin-bottom: .8rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  letter-spacing: -.02em;
}

.legal-page section p,
.legal-intro {
  color: var(--muted);
}

.legal-intro {
  max-width: 760px;
  margin-bottom: 2.5rem;
  font-size: 1.08rem;
}

.legal-footer {
  width: min(920px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 2rem 0 4rem;
  display: flex;
  gap: 1.4rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  nav a:not(.nav-contact) { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 4rem; }
  .hero-visual { min-height: 460px; }
  .proof-band { grid-template-columns: 1fr 1fr; }
  .card-grid, .process, .invitation, .contact-section { grid-template-columns: 1fr; }
  .principle-card.featured { transform: none; }
  .contact-section { padding: 3rem; }
}

@media (max-width: 560px) {
  .site-header, .hero, .section, .contact-section, .crisis-note, footer { width: min(100% - 1.5rem, 1180px); }
  .site-header { min-height: 76px; }
  .brand-mark { width: 42px; height: 42px; }
  .nav-contact { padding: .55rem .8rem; }
  h1 { font-size: clamp(3.05rem, 16vw, 4.6rem); }
  .hero { padding: 3.5rem 0 4rem; }
  .hero-visual { min-height: 390px; }
  .person { width: 94px; height: 94px; border-width: 7px; font-size: .65rem; }
  .center-card { width: 165px; height: 165px; border-width: 10px; }
  .proof-band { grid-template-columns: 1fr; padding: 0 1rem; }
  .proof-band p { border-left: 1px solid rgba(255,255,255,.14); }
  .section { padding: 5rem 0; }
  .card-grid { grid-template-columns: 1fr; }
  .contact-section { padding: 2.25rem 1.35rem; }
  footer { grid-template-columns: 1fr; gap: 1.3rem; }
  .legal-header, .legal-page, .legal-footer { width: min(100% - 1.5rem, 920px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
