
:root {
  --lake: #6E89A8;
  --forest: #5D7257;
  --sage: #AAB8A3;
  --earth: #8A6E56;
  --sand: #D9D0C3;
  --chocolate: #3A322C;
  --cream: #F8F5EF;
  --white: #FFFFFF;
  --ink-soft: rgba(58,50,44,.74);
  --shadow: 0 24px 70px rgba(58,50,44,.13);
  --shadow-soft: 0 14px 42px rgba(58,50,44,.10);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--chocolate);
  font-family: "Source Sans Pro", "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 4%, rgba(170,184,163,.44), transparent 27rem),
    radial-gradient(circle at 90% 10%, rgba(110,137,168,.20), transparent 31rem),
    linear-gradient(180deg, #fbf8f2 0%, #f4eee5 100%);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
button, .btn { font: inherit; }
.page { overflow: hidden; }
.container { width: min(var(--max), calc(100% - 72px)); margin: 0 auto; }
.muted { color: var(--ink-soft); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
}
.eyebrow:before { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .7; }
h1, h2, h3 {
  margin: 0;
  font-family: "Avenir Next", Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -.035em;
  line-height: .98;
}
h1 { font-size: clamp(54px, 7vw, 96px); color: var(--chocolate); }
h2 { font-size: clamp(38px, 5vw, 66px); color: var(--lake); }
h3 { font-size: 24px; color: var(--chocolate); line-height: 1.08; }
p { margin: 0; }
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248,245,239,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(58,50,44,.10);
}
.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 260px;
}
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--lake), var(--forest));
  box-shadow: var(--shadow-soft);
  position: relative;
}
.brand-mark:after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 11px;
}
.brand-title {
  display: grid;
  gap: 2px;
  font-family: "Avenir Next", Montserrat, system-ui, sans-serif;
}
.brand-title strong { font-size: 18px; letter-spacing: -.03em; }
.brand-title span { font-size: 12px; color: var(--ink-soft); }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 14px;
  color: rgba(58,50,44,.78);
}
.nav-links a { position: relative; }
.nav-links a.active:after,
.nav-links a:hover:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  border-radius: 999px;
  background: var(--forest);
}
.nav-cta { min-width: 154px; display: flex; justify-content: flex-end; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--forest); color: #fff; box-shadow: 0 16px 34px rgba(93,114,87,.24); }
.btn-secondary { background: #fff; color: var(--chocolate); border-color: rgba(58,50,44,.13); }
.btn-soft { background: rgba(255,255,255,.72); border-color: rgba(58,50,44,.12); color: var(--chocolate); }
.hero {
  position: relative;
  padding: 56px 0 108px;
}
.hero:before {
  content: "";
  position: absolute;
  left: -9vw;
  top: 30px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(110,137,168,.18);
  box-shadow: inset 0 0 0 42px rgba(217,208,195,.22);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 44px;
  align-items: center;
}
.hero-copy { padding: 24px 0; }
.hero-copy h1 { margin-top: 22px; max-width: 760px; }
.hero-copy .lead {
  margin-top: 28px;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.35;
  color: rgba(58,50,44,.78);
  max-width: 700px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.58);
  box-shadow: var(--shadow);
  padding: 16px;
  isolation: isolate;
}
.hero-card:before {
  content: "";
  position: absolute;
  inset: -18px -18px 26px 36px;
  background: var(--sand);
  border-radius: var(--radius-xl);
  z-index: -1;
}
.hero-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
}
.hero-note {
  position: absolute;
  left: -28px;
  bottom: -88px;
  width: min(330px, 66%);
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: 20px;
  border-left: 5px solid var(--forest);
}
.hero-note strong {
  display: block;
  font-family: Merriweather, Georgia, serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.35;
  color: var(--earth);
}
.hero-note span { display: block; margin-top: 8px; font-size: 13px; color: var(--ink-soft); }
.trust-strip {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.trust-item {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(58,50,44,.10);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 10px 26px rgba(58,50,44,.06);
}
.trust-item strong {
  display: block;
  font-size: 24px;
  font-family: "Avenir Next", Montserrat, system-ui, sans-serif;
  letter-spacing: -.03em;
}
.trust-item span { display: block; margin-top: 4px; color: var(--ink-soft); font-size: 14px; }
.section { padding: 62px 0; }
.section-head {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 34px;
}
.section-head p { font-size: 20px; color: var(--ink-soft); max-width: 650px; }
.story-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 28px;
  align-items: stretch;
}
.story-card {
  border-radius: 36px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(58,50,44,.10);
  box-shadow: var(--shadow-soft);
  padding: 46px;
}
.story-card h2 { margin-top: 16px; }
.story-card p {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 19px;
}
.side-note {
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(58,50,44,.96), rgba(93,114,87,.92));
  color: #fff;
  padding: 38px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 390px;
  overflow: hidden;
  position: relative;
}
.side-note:before {
  content: "";
  position: absolute;
  right: -120px;
  top: -130px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: inset 0 0 0 38px rgba(255,255,255,.06);
}
.side-note blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: Merriweather, Georgia, serif;
  font-style: italic;
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.2;
  color: #fff;
}
.side-note p {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  color: rgba(255,255,255,.78);
  font-size: 16px;
}
.process {
  position: relative;
}
.process:before {
  content: "";
  position: absolute;
  inset: 4% -9vw 18%;
  background:
    radial-gradient(circle at 16% 22%, rgba(110,137,168,.16), transparent 24rem),
    radial-gradient(circle at 82% 62%, rgba(170,184,163,.22), transparent 28rem);
  z-index: -1;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.process-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 30px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(58,50,44,.10);
  box-shadow: var(--shadow-soft);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.process-card:nth-child(2), .process-card:nth-child(4) { transform: translateY(26px); }
.process-card:after {
  content: "";
  position: absolute;
  right: -58px;
  top: -58px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid rgba(110,137,168,.18);
}
.process-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(170,184,163,.28);
  color: var(--forest);
  font-weight: 900;
  margin-bottom: 28px;
}
.process-card h3 { font-size: 26px; }
.process-card p { color: var(--ink-soft); margin-top: 12px; }
.questions-wrap {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 30px;
  align-items: start;
}
.questions-intro {
  position: sticky;
  top: 124px;
  border-radius: 34px;
  background: rgba(217,208,195,.55);
  padding: 40px;
  border: 1px solid rgba(58,50,44,.08);
}
.questions-intro h2 { margin-top: 16px; }
.questions-intro p { margin-top: 18px; color: var(--ink-soft); font-size: 19px; }
.question-list {
  display: grid;
  gap: 12px;
}
.question-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(58,50,44,.10);
  box-shadow: 0 10px 28px rgba(58,50,44,.06);
}
.question-item span {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(110,137,168,.16);
  color: var(--lake);
  font-weight: 900;
}
.question-item strong { display: block; font-size: 19px; line-height: 1.25; }
.question-item em { display: block; font-style: normal; color: var(--ink-soft); font-size: 14px; margin-top: 5px; }
.personal-panel {
  background: var(--chocolate);
  color: #fff;
  border-radius: 42px;
  padding: 48px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 36px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.personal-panel:before {
  content: "";
  position: absolute;
  inset: -38% -18% auto auto;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: rgba(110,137,168,.18);
}
.personal-photo {
  position: relative;
  border-radius: 34px;
  background: rgba(255,255,255,.10);
  padding: 14px;
  border: 1px solid rgba(255,255,255,.14);
}
.personal-photo img {
  width: 100%;
  display: block;
  border-radius: 26px;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.personal-copy { position: relative; z-index: 1; }
.personal-copy h2 { color: #fff; margin-top: 16px; }
.personal-copy p { color: rgba(255,255,255,.78); font-size: 19px; margin-top: 18px; }
.personal-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.personal-list li { display: flex; gap: 10px; color: rgba(255,255,255,.84); }
.personal-list li:before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--sand);
}
.cta-panel {
  background: linear-gradient(135deg, rgba(110,137,168,.96), rgba(93,114,87,.96));
  color: #fff;
  border-radius: 42px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow);
}
.cta-panel h2 { color: #fff; max-width: 760px; }
.cta-panel p { color: rgba(255,255,255,.82); max-width: 700px; margin-top: 16px; font-size: 20px; }
.cta-panel .btn { background: #fff; color: var(--chocolate); }
.footer {
  padding: 42px 0 52px;
  border-top: 1px solid rgba(58,50,44,.12);
  background: rgba(248,245,239,.76);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 44px;
  align-items: start;
}
.footer strong { display: block; font-family: "Avenir Next", Montserrat, sans-serif; font-size: 19px; }
.footer p { color: var(--ink-soft); font-size: 14px; margin-top: 6px; }
.footer-small { font-size: 13px; color: rgba(58,50,44,.63); line-height: 1.55; }
@media (max-width: 1200px) {
  .nav-links { display: none; }
  .hero-grid { gap: 30px; }
  h1 { font-size: clamp(58px, 8vw, 88px); }
}
@media (max-width: 1040px) {
  .nav-links { display: none; }
  .hero-grid, .section-head, .story-panel, .questions-wrap, .personal-panel, .cta-panel, .footer-grid { grid-template-columns: 1fr; }
  .hero-note { position: static; width: auto; margin: -10px 18px 8px; }
  .trust-strip { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-card:nth-child(2), .process-card:nth-child(4) { transform: none; }
  .questions-intro { position: static; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 34px, var(--max)); }
  .nav { min-height: 74px; }
  .brand-title span { display: none; }
  .nav-cta { display: none; }
  .hero { padding-top: 48px; }
  .process-grid { grid-template-columns: 1fr; }
  .personal-panel, .cta-panel, .story-card, .questions-intro { padding: 32px; border-radius: 30px; }
}
