:root {
  --cream: #f7f1e8;
  --sand: #e8d8c4;
  --camel: #b4865b;
  --deep-teal: #17464a;
  --teal: #2f6f73;
  --ink: #162022;
  --muted: #66706d;
  --white: #fffdf9;
  --line: rgba(22, 32, 34, 0.14);
  --shadow: 0 24px 60px rgba(22, 32, 34, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 96px 0; }
.narrow .container { max-width: 860px; }
.skip-link { position: absolute; left: -999px; top: 12px; background: var(--ink); color: white; padding: 10px 14px; border-radius: 10px; z-index: 1000; }
.skip-link:focus { left: 12px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 241, 232, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -0.02em; }
.brand-mark { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--deep-teal); color: white; font-weight: 800; }
.brand-text { font-size: 1.05rem; }
.nav-menu { display: flex; align-items: center; gap: 26px; font-size: 0.95rem; font-weight: 600; }
.nav-menu a { color: rgba(22,32,34,.82); }
.nav-menu a:hover { color: var(--deep-teal); }
.nav-cta { background: var(--deep-teal); color: white !important; padding: 12px 18px; border-radius: 999px; box-shadow: 0 12px 30px rgba(23,70,74,.18); }
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; }
.nav-toggle span:not(.sr-only) { display: block; width: 26px; height: 2px; background: var(--ink); margin: 5px 0; }

.hero { position: relative; overflow: hidden; background: radial-gradient(circle at top left, #fffaf2 0, var(--cream) 38%, #ead7c0 100%); }
.hero::after { content: ""; position: absolute; inset: auto -120px -220px auto; width: 520px; height: 520px; border-radius: 50%; background: rgba(47,111,115,.16); }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.eyebrow, .section-kicker, .kicker { text-transform: uppercase; letter-spacing: .14em; color: var(--teal); font-size: .78rem; font-weight: 800; margin: 0 0 14px; }
h1, h2, h3 { line-height: 1.06; margin: 0; letter-spacing: -0.045em; }
h1 { font-family: Manrope, system-ui, sans-serif; font-size: clamp(3rem, 6.5vw, 5.9rem); max-width: 940px; font-weight: 800; letter-spacing: -0.075em; }
h2 { font-family: Manrope, system-ui, sans-serif; font-size: clamp(2rem, 3.6vw, 3.55rem); font-weight: 800; letter-spacing: -0.065em; }
h3 { font-size: 1.32rem; letter-spacing: -0.025em; }
p { margin: 0; }
.hero-lede { margin-top: 24px; max-width: 690px; font-size: 1.18rem; color: rgba(22,32,34,.78); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-actions.center { justify-content: center; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 24px; border-radius: 999px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--deep-teal); color: white; box-shadow: 0 18px 40px rgba(23,70,74,.22); }
.btn-secondary { background: rgba(255,255,255,.7); border: 1px solid var(--line); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; justify-content: center; }
.trust-row span { border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; background: rgba(255,255,255,.45); font-size: .9rem; font-weight: 700; color: rgba(22,32,34,.7); }
.hero-card { background: var(--white); border: 1px solid rgba(255,255,255,.7); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.photo-placeholder { min-height: 390px; display: grid; place-items: center; background: linear-gradient(135deg, var(--deep-teal), var(--teal)); color: rgba(255,255,255,.82); font-weight: 800; text-align: center; padding: 0; overflow: hidden; }
.photo-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder.square { min-height: 520px; border-radius: var(--radius-lg); }
.hero-card-body { padding: 30px; }
.hero-card-body h2 { font-size: 1.9rem; margin-bottom: 14px; white-space: nowrap; }
.hero-card-body p:last-child { color: var(--muted); }

.intro-band { background: var(--deep-teal); color: white; }
.intro-band .section-kicker { color: var(--sand); }
.intro-band p:not(.section-kicker) { color: rgba(255,255,255,.78); margin-top: 20px; font-size: 1.08rem; }

.section-heading { max-width: 760px; margin-bottom: 38px; }
.section-heading p:not(.section-kicker) { margin-top: 16px; color: var(--muted); font-size: 1.05rem; white-space: nowrap; }
.cards, .service-grid, .rate-grid { display: grid; gap: 22px; }
.three-col { grid-template-columns: repeat(3, 1fr); }
.card, .service-card, .rate-card, details, .pattern-list, .step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 28px; box-shadow: 0 16px 36px rgba(22,32,34,.06); }
.card p, .service-card p, .rate-card p, .step p { margin-top: 14px; color: var(--muted); }

.split-section { background: #fff7eb; }
.split-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 48px; align-items: start; }
.split-copy p:not(.section-kicker) { margin-top: 20px; color: rgba(22,32,34,.72); font-size: 1.05rem; }
.pattern-list h3 { margin-bottom: 18px; }
ul { margin: 0; padding-left: 20px; }
li { margin: 11px 0; color: rgba(22,32,34,.74); font-weight: 600; }

.mid-cta { background: var(--cream); padding-top: 40px; }
.mid-cta-card { background: var(--ink); color: white; border-radius: var(--radius-lg); padding: 52px; box-shadow: var(--shadow); }
.mid-cta-card .section-kicker { color: var(--sand); }
.mid-cta-card h2 { max-width: 860px; font-size: clamp(2rem, 3.6vw, 3.3rem); }
.mid-cta-card p:not(.section-kicker) { color: rgba(255,255,255,.76); margin-top: 18px; max-width: 700px; font-size: 1.06rem; }
.mid-cta-card .btn-primary { background: var(--camel); color: var(--ink); box-shadow: 0 18px 40px rgba(180,134,91,.24); }

.process { background: var(--white); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step span { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--sand); color: var(--deep-teal); font-weight: 900; margin-bottom: 20px; }
.service-grid { grid-template-columns: repeat(2, 1fr); }
.about { background: #efe2d0; }
.about-grid { display: grid; grid-template-columns: .82fr 1fr; gap: 54px; align-items: center; }
.about-copy p:not(.section-kicker) { margin-top: 20px; color: rgba(22,32,34,.74); font-size: 1.05rem; }
.rates { background: var(--deep-teal); color: white; }
.rates .section-kicker { color: var(--sand); }
.rates .section-heading p:not(.section-kicker) { color: rgba(255,255,255,.72); }
.rate-grid { grid-template-columns: repeat(3, 1fr); }
.rate-card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: white; box-shadow: none; }
.rate-card p { color: rgba(255,255,255,.74); }
.rate-card.featured { background: rgba(255,255,255,.14); }
.price { font-size: 2.4rem; font-weight: 900; letter-spacing: -.04em; margin-top: 18px !important; color: white !important; }
.insurance-note { margin-top: 24px; color: rgba(255,255,255,.75); font-weight: 700; }
.faq-grid { display: grid; gap: 14px; }
details { padding: 0; overflow: hidden; }
summary { cursor: pointer; list-style: none; padding: 22px 24px; font-weight: 800; }
summary::-webkit-details-marker { display: none; }
details p { color: var(--muted); padding: 0 24px 24px; }
.final-cta { background: linear-gradient(135deg, var(--cream), #fff8ef); }
.final-card { text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 64px 44px; box-shadow: var(--shadow); max-width: 900px; }
.final-card p:not(.section-kicker):not(.small-note) { color: var(--muted); margin: 18px auto 0; max-width: 650px; font-size: 1.08rem; }
.small-note { margin-top: 18px; font-size: .9rem; color: rgba(22,32,34,.52); }
.site-footer { padding: 26px 0; border-top: 1px solid var(--line); background: var(--cream); }
.footer-grid { display: flex; justify-content: space-between; gap: 18px; color: rgba(22,32,34,.6); font-size: .92rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-menu { position: absolute; left: 20px; right: 20px; top: 76px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); padding: 12px; }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 14px; }
  .hero-grid, .split-grid, .about-grid, .three-col, .steps, .rate-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .section-pad { padding: 72px 0; }
  .photo-placeholder { min-height: 320px; }
  .photo-placeholder.square { min-height: 360px; }
  .footer-grid { flex-direction: column; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }
  .section-pad { padding: 58px 0; }
  h1 { font-size: 1.95rem; line-height: 1.2; letter-spacing: -0.065em; }
  .hero-lede { font-size: 1.04rem; }
  .btn { width: 100%; }
  .final-card, .mid-cta-card { padding: 42px 22px; }
  .brand-text { font-size: .95rem; }
}
