:root {
  --ink: #500014;
  --green: #70001c;
  --green-dark: #500014;
  --sage: #fef8e2;
  --sage-soft: #fcf5d8;
  --cream: #fffaec;
  --sand: #fcf5d8;
  --therapy: #fceaa3;
  --coral: #800020;
  --white: #fff;
  --line: rgba(112, 0, 28, .16);
  --shadow: 0 24px 70px rgba(80, 0, 20, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Proxima Nova", "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.045em;
}
h1 { font-size: clamp(3.5rem, 7vw, 7.1rem); margin-bottom: 28px; }
h2 { font-size: clamp(2.5rem, 5vw, 4.7rem); }
h3 { font-size: 1.35rem; line-height: 1.25; }
em { color: var(--coral); font-family: inherit; font-weight: 700; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  height: 82px;
  padding: 0 clamp(24px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: rgba(255, 250, 236, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 1.12rem; white-space: nowrap; }
.brand strong { font-weight: 700; }
.brand-mark {
  position: relative;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background: var(--green);
  transform: none;
}
.brand-mark::before, .brand-mark::after {
  content: "";
  position: absolute;
  background: var(--cream);
  border-radius: 10px;
}
.brand-mark::before { width: 5px; height: 56%; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.brand-mark::after { width: 56%; height: 5px; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.brand-mark.small { width: 32px; height: 32px; transform: scale(.86); }
.site-header nav { display: flex; gap: 28px; font-size: .9rem; font-weight: 600; }
.site-header nav a { transition: color .2s; }
.site-header nav a:hover { color: var(--coral); }
.header-cta { display: flex; align-items: center; gap: 9px; font-weight: 700; }

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: clamp(36px, 6vw, 100px);
  align-items: center;
  max-width: 1510px;
  margin: auto;
  padding: 70px clamp(24px, 6vw, 100px) 90px;
  overflow: hidden;
}
.hero-copy { max-width: 710px; }
.eyebrow, .section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: var(--green);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before, .section-label::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: currentColor;
}
.eyebrow::before { display: none; }
.lead { max-width: 610px; font-size: 1.26rem; font-weight: 600; line-height: 1.5; }
.hero-copy > p:not(.lead) { max-width: 650px; color: #73505a; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin: 34px 0; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 3px;
  font-weight: 700;
  transition: transform .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(24, 51, 46, .16); }
.button.primary { color: white; background: var(--green); }
.text-link { display: flex; align-items: center; gap: 9px; font-size: .92rem; font-weight: 700; border-bottom: 1px solid var(--ink); }
.trust-row { display: flex; flex-wrap: wrap; gap: 17px; color: #76555e; font-size: .79rem; }
.trust-row span { display: flex; align-items: center; gap: 5px; }

.hero-visual { position: relative; min-height: 640px; display: flex; align-items: center; justify-content: center; }
.hero-visual::before {
  content: "";
  position: absolute;
  width: 88%;
  height: 91%;
  right: 1%;
  top: 4%;
  border-radius: 48% 48% 10px 10px;
  background: var(--sage);
}
.photo-frame {
  position: relative;
  z-index: 1;
  width: min(89%, 530px);
  height: 600px;
  margin-top: 35px;
  overflow: hidden;
  border-radius: 48% 48% 8px 8px;
  box-shadow: var(--shadow);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 52% 32%; }
.floating-card {
  position: absolute;
  z-index: 2;
  left: -3%;
  bottom: 10%;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 22px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
}
.floating-card strong, .floating-card small { display: block; }
.floating-card small { color: #76555e; font-size: .76rem; }
.icon-circle { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--coral); }
.dot-grid {
  position: absolute;
  right: -2%;
  bottom: 4%;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(var(--coral) 2px, transparent 2px);
  background-size: 14px 14px;
}

.intro-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  padding: 65px clamp(24px, 8vw, 130px);
  color: white;
  background: var(--green);
}
.intro-strip > div { display: flex; gap: 20px; }
.intro-strip svg { flex: 0 0 auto; color: var(--therapy); margin-top: 4px; }
.strip-icon { flex: 0 0 auto; color: var(--therapy); font-size: 1.35rem; line-height: 1; margin-top: 4px; }
.intro-strip p { margin: 0; }
.intro-strip .quote { padding-left: 8%; border-left: 1px solid rgba(255,255,255,.24); color: var(--cream); font-family: inherit; font-style: italic; }

.section { padding: 115px clamp(24px, 8vw, 130px); }
.section-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 10%; align-items: end; margin-bottom: 65px; }
.section-heading h2, .section-heading p { margin-bottom: 0; }
.section-heading p { color: #76555e; }
.about-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 22px; }
.feature-card { position: relative; padding: 42px; background: white; border: 1px solid var(--line); }
.feature-card svg { color: var(--coral); }
.card-icon { color: var(--coral); font-size: 1.7rem; line-height: 1; }
.feature-card h3 { margin: 35px 0 15px; }
.feature-card p { margin-bottom: 0; color: #76555e; }
.feature-card.warm { background: var(--sand); }
.feature-card.wide { grid-column: 1 / -1; display: grid; grid-template-columns: 50px .7fr 1fr; gap: 25px; align-items: start; background: var(--therapy); }
.feature-card.wide h3 { margin: 0; }
.feature-card.wide p { grid-column: 3; }
.feature-card.wide .wide-copy { grid-column: 3; }
.feature-card.wide p + p { margin-top: 14px; }
.feature-card.wide a { text-decoration: underline; }
.feature-card.wide strong { font-weight: 800; }
.card-number { position: absolute; right: 28px; top: 22px; color: #8b9b97; font-size: .7rem; letter-spacing: .1em; }

.audience { color: white; background: var(--green-dark); }
.section-label.light { color: var(--cream); }
.audience .section-label { margin-bottom: 48px; font-size: 1.25rem; }
.audience-heading { margin-bottom: 58px; }
.audience-heading h2 { max-width: 800px; }
.audience-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.audience-card { padding: clamp(32px, 4vw, 55px); color: var(--ink); background: var(--cream); border-left: 8px solid var(--coral); }
.audience-card.accent { width: 90%; margin-left: auto; background: var(--therapy); }
.audience-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--coral); }
.card-kicker { margin: 22px 0 8px; color: var(--coral); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.audience-card h3 { font-size: 1.7rem; }
.audience-card > p { color: #76555e; }
.list-title { font-weight: 700; }
.audience-card ul { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 22px; margin: 20px 0 26px; padding: 0; list-style: none; font-size: .88rem; }
.audience-card li { display: flex; align-items: flex-start; gap: 7px; }
.audience-card li { color: var(--ink); }
.audience-card li svg { flex: 0 0 auto; margin-top: 5px; color: var(--coral); }
.location-line { display: flex; align-items: flex-start; gap: 9px; padding-top: 22px; border-top: 1px solid var(--line); font-size: .87rem; font-weight: 600; }
.location-line svg { flex: 0 0 auto; margin-top: 4px; }

.practical { background: var(--cream); }
.practical-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 11%; }
.practical-intro { max-width: 490px; margin: 28px 0; color: #76555e; font-size: 1.1rem; }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 60px 1fr; gap: 20px; padding: 30px 0; border-top: 1px solid var(--line); }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps > li > span { color: var(--coral); font-size: .76rem; font-weight: 700; letter-spacing: .1em; }
.steps h3 { margin-bottom: 9px; }
.steps p { margin-bottom: 0; color: #76555e; }

.contact {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 10%;
  padding: 100px clamp(24px, 10vw, 160px);
  color: white;
  background: var(--green);
}
.contact-copy > p { color: var(--cream); font-size: 1.2rem; }
.light-button { margin-top: 18px; color: var(--green); background: white; }
.contact-card { padding: 42px; color: var(--ink); background: var(--cream); box-shadow: 0 28px 80px rgba(0,0,0,.18); }
.contact-name { display: flex; align-items: center; gap: 13px; margin-bottom: 30px; padding-bottom: 27px; border-bottom: 1px solid var(--line); }
.contact-name strong, .contact-name small { display: block; }
.contact-name small { color: #76555e; }
.contact-detail { display: grid; grid-template-columns: 22px 1fr; gap: 13px; }
.contact-detail svg { margin-top: 4px; color: var(--coral); }
.contact-detail > span { margin-top: 1px; color: var(--coral); font-size: 1.15rem; }
.contact-detail p { color: #76555e; }
.contact-detail a:hover { text-decoration: underline; }

footer {
  min-height: 100px;
  padding: 24px clamp(24px, 6vw, 100px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  font-size: .78rem;
  color: #76555e;
  background: var(--cream);
}
footer p { margin: 0; }
footer p:last-child { text-align: right; }

@media (max-width: 1000px) {
  .site-header nav { display: none; }
  .header-cta { margin-left: auto; }
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-copy { max-width: 800px; }
  .hero-visual { min-height: 570px; }
  .photo-frame { height: 540px; }
  .section-heading, .practical-layout { grid-template-columns: 1fr; gap: 35px; }
  .feature-card.wide { grid-template-columns: 40px 1fr; }
  .feature-card.wide p { grid-column: 2; }
  .feature-card.wide .wide-copy { grid-column: 2; }
}

@media (max-width: 720px) {
  body { font-size: 15px; }
  .site-header { height: 70px; }
  .header-cta span { display: none; }
  .brand { font-size: 1rem; }
  h1 { font-size: clamp(3.2rem, 15vw, 4.6rem); }
  h2 { font-size: clamp(2.4rem, 11vw, 3.3rem); }
  .hero { min-height: auto; padding-bottom: 60px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-visual { min-height: 460px; }
  .photo-frame { height: 430px; width: 94%; }
  .floating-card { left: 0; bottom: 2%; }
  .intro-strip, .audience-grid, .contact { grid-template-columns: 1fr; }
  .intro-strip { gap: 35px; }
  .intro-strip .quote { padding: 25px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.24); }
  .section { padding-top: 82px; padding-bottom: 82px; }
  .about-grid { grid-template-columns: 1fr; }
  .feature-card.wide { grid-column: auto; display: block; }
  .feature-card.wide h3 { margin: 35px 0 15px; }
  .feature-card.wide p { margin-top: 0; }
  .feature-card.wide p + p { margin-top: 18px; }
  .audience-card ul { grid-template-columns: 1fr; }
  .audience-card.accent { width: 100%; }
  .contact { padding-top: 82px; padding-bottom: 82px; }
  footer { grid-template-columns: 1fr; text-align: center; }
  footer .footer-brand { justify-content: center; }
  footer p:last-child { text-align: center; }
}
