:root {
  --teal: #0F766E;
  --teal-deep: #0B5C48;
  --teal-dark: #0A4A42;
  --mint: #E7F4EF;
  --mint-2: #DCF1EA;
  --wash: #F4F9F7;
  --ink: #10231F;
  --muted: #5F6B68;
  --line: #E2ECE8;
  --white: #FFFFFF;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

h1, h2, .stat-num, .quote p {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(34px, 5vw, 52px); }
h2 { font-size: clamp(26px, 3.5vw, 36px); }
h3 { font-size: 18px; font-weight: 600; }

p { color: var(--muted); }

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-deep); }

img { max-width: 100%; display: block; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  border: none;
  border-radius: 999px;
  padding: 13px 26px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-deep); color: var(--white); }

.btn-ghost {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  padding: 11.5px 24.5px;
}
.btn-ghost:hover { background: var(--mint); color: var(--teal-deep); }

.btn-light { background: var(--white); color: var(--teal-deep); }
.btn-light:hover { background: var(--mint-2); color: var(--teal-dark); }

.btn-sm { padding: 9px 18px; font-size: 14px; }

.text-link { font-weight: 600; font-size: 15px; }

/* ---------- Header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand { display: flex; align-items: center; gap: 10px; }

.brand-mark {
  width: 40px;
  height: 40px;
  display: block;
}

.brand-mark-tile {
  background: var(--white);
  border-radius: 9px;
  padding: 3px;
}

.brand-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.nav-links { display: flex; align-items: center; gap: 26px; }

.nav-links > a:not(.btn) {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
}

.nav-links > a:not(.btn):hover { color: var(--ink); }
.nav-links > a.active { color: var(--teal-deep); font-weight: 600; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ---------- Hero ---------- */

.hero { padding: 76px 0 64px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  background: var(--mint-2);
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero h1 { margin-bottom: 18px; }

.lede { font-size: 18px; max-width: 52ch; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-card {
  background: var(--mint);
  border-radius: 20px;
  padding: 30px;
}

.hero-card h3 { color: var(--teal-deep); font-size: 15px; margin-bottom: 16px; }

.checklist { list-style: none; }

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink);
  padding: 7px 0;
}

.check {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ---------- Stats strip ---------- */

.stats {
  background: var(--wash);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-num { font-size: 40px; color: var(--teal-deep); }

.stat-label { font-size: 14px; color: var(--muted); margin-top: 2px; }

/* ---------- Sections ---------- */

.section { padding: 84px 0; }

.section-wash { background: var(--wash); }

.section-head { max-width: 640px; margin-bottom: 48px; }

.section-head h2 { margin: 10px 0 14px; }

.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Cards ---------- */

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-wash .card { border: none; }

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--mint);
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.card p { font-size: 15px; flex: 1; }

/* ---------- Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--mint-2);
  color: var(--teal-deep);
  font-family: var(--serif);
  font-size: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.steps h3 { font-size: 16px; margin-bottom: 6px; }

.steps p { font-size: 14.5px; }

/* ---------- Placeholders ---------- */

.ph {
  border: 2px dashed #B9D4C9;
  background: var(--wash);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  padding: 16px;
}

.ph-headshot {
  border-radius: 50%;
  width: 240px;
  aspect-ratio: 1;
  flex: none;
}

.ph-photo { aspect-ratio: 4 / 3; }

/* ---------- About teaser / grids ---------- */

.about-teaser-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: center;
}

.about-teaser-grid .ph-headshot { margin: 0 auto; }

.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}

.about-grid .story p { margin-bottom: 16px; font-size: 16.5px; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 22px;
}

/* ---------- Quote ---------- */

.quote { max-width: 720px; margin: 0 auto; text-align: center; }

.quote p { font-size: clamp(20px, 2.6vw, 26px); font-style: italic; color: var(--ink); }

.quote-attr { font-size: 14px; color: var(--muted); margin-top: 18px; font-style: normal; }

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--teal);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
}

.cta-band h2 { color: var(--white); margin-bottom: 10px; }

.cta-band p { color: var(--mint-2); margin-bottom: 26px; }

/* ---------- Small hero (interior pages) ---------- */

.hero-small { background: var(--wash); border-bottom: 1px solid var(--line); padding: 64px 0 56px; }

.hero-small h1 { margin-bottom: 14px; }

/* ---------- Services ---------- */

.svc-block {
  border-left: 3px solid var(--teal);
  padding-left: 32px;
  margin: 64px 0;
}

.svc-block .eyebrow { margin-bottom: 12px; }

.svc-block h2 { margin-bottom: 12px; }

.svc-block > p { max-width: 62ch; }

.svc-cols {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  margin-top: 26px;
  align-items: start;
}

.svc-cols h3 { font-size: 15px; color: var(--teal-deep); margin-bottom: 10px; }

.included { list-style: none; }

.included li {
  display: flex;
  gap: 10px;
  padding: 6px 0;
  font-size: 15px;
  color: var(--ink);
}

.outcome-box {
  background: var(--mint);
  border-radius: 16px;
  padding: 24px;
  font-size: 15px;
}

.outcome-box strong { color: var(--teal-deep); display: block; margin-bottom: 6px; }

.pricing-note {
  background: var(--mint);
  border-radius: 16px;
  padding: 28px 32px;
  font-size: 15.5px;
  max-width: 760px;
}

/* ---------- FAQ ---------- */

.faq { max-width: 760px; }

.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }

.faq summary {
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after { content: "+"; color: var(--teal); font-size: 20px; font-weight: 400; }

.faq details[open] summary::after { content: "–"; }

.faq details p { margin-top: 10px; font-size: 15px; max-width: 64ch; }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px;
}

.form-field { margin-bottom: 18px; }

.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #C9DAD3;
  border-radius: 10px;
  padding: 12px 14px;
}

.form-field textarea { min-height: 120px; resize: vertical; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--mint-2);
}

.form-note { font-size: 13px; margin-top: 14px; }

.next-steps { list-style: none; margin-top: 18px; }

.next-steps li { display: flex; gap: 14px; padding: 10px 0; font-size: 15px; color: var(--ink); }

/* ---------- Footer ---------- */

.site-footer { background: var(--ink); color: var(--mint); margin-top: 40px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 40px;
  padding: 56px 24px 40px;
}

.site-footer .brand-name { color: var(--white); }

.site-footer .tagline { color: #9DB8AF; font-size: 14.5px; margin-top: 12px; max-width: 32ch; }

.site-footer h4 { font-size: 13px; font-weight: 600; color: #9DB8AF; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }

.site-footer a { color: var(--mint); font-size: 14.5px; }

.site-footer a:hover { color: var(--white); }

.footer-links { display: flex; flex-direction: column; gap: 8px; }

.fineprint {
  border-top: 1px solid rgba(231, 244, 239, 0.15);
  padding-top: 22px;
  padding-bottom: 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.fineprint p { color: #7E9A90; font-size: 12.5px; }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .hero-grid, .about-teaser-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .cards-3, .photo-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .svc-cols { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 56px 0 48px; }
  .section { padding: 64px 0; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px 22px;
    gap: 16px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .cards-3, .photo-grid, .steps, .stats-grid, .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { gap: 28px; }
  .cta-band { padding: 44px 24px; }
  .svc-block { padding-left: 20px; margin: 48px 0; }
}
