:root {
  --ink: #15201d;
  --forest: #244238;
  --moss: #6f8461;
  --coral: #d96b55;
  --copper: #b98548;
  --cream: #f7f0e4;
  --paper: #fffaf2;
  --mist: #e8ede1;
  --line: rgba(36, 66, 56, .18);
  --muted: rgba(21, 32, 29, .66);
  --shadow: 0 26px 70px rgba(21, 32, 29, .16);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(36, 66, 56, .06) 1px, transparent 1px),
    linear-gradient(180deg, var(--paper) 0%, var(--cream) 42%, #edf1e8 100%);
  background-size: 72px 72px, auto;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; object-fit: cover; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, p { margin-top: 0; }

.section-pad { padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 5vw, 5rem); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem clamp(1rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(36, 66, 56, .12);
  background: rgba(255, 250, 242, .78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-weight: 900;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--forest);
  border-radius: 50%;
  outline: 1px solid var(--copper);
  outline-offset: 4px;
  font-size: .82rem;
  letter-spacing: .08em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 750;
}

.main-nav a:hover { color: var(--forest); }
.nav-cta {
  padding: .72rem 1rem;
  border-radius: 999px;
  color: var(--paper) !important;
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.eyebrow {
  margin-bottom: .9rem;
  color: var(--coral);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.12fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding-top: clamp(3rem, 7vw, 6rem);
}

h1 {
  max-width: 720px;
  margin-bottom: 1.35rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7.2vw, 6.6rem);
  line-height: .94;
  font-weight: 500;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  max-width: 860px;
  margin-bottom: 1.1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.4vw, 4.35rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: .7rem;
  font-size: 1.16rem;
  line-height: 1.22;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-text,
.diagnosis-notes,
.editorial-copy,
.service-card p,
.timeline p,
.plan p,
.quote p,
.contact-copy p,
.faq-item p {
  color: var(--muted);
  line-height: 1.68;
}

.hero-text,
.contact-copy p,
.diagnosis-notes p,
.editorial-copy > p {
  max-width: 620px;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .9rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--paper); background: var(--forest); box-shadow: 0 18px 38px rgba(36, 66, 56, .22); }
.btn-secondary { color: var(--forest); background: transparent; border-color: var(--forest); }

.hero-board {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: end;
}

.hero-board::before {
  content: "";
  position: absolute;
  inset: 10% -8% 5% 12%;
  border: 1px solid var(--copper);
  transform: rotate(-3deg);
}

.hero-photo {
  position: relative;
  height: min(72vh, 650px);
  border-radius: 44% 0 44% 0;
  box-shadow: var(--shadow);
}

.brief-card,
.route-card {
  position: absolute;
  background: rgba(255, 250, 242, .88);
  border: 1px solid rgba(36, 66, 56, .16);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.brief-card {
  left: -2rem;
  bottom: 4rem;
  width: min(310px, 82%);
  padding: 1.15rem;
  border-radius: var(--radius);
}

.brief-card span,
.route-card small,
.plan-tag,
.timeline small {
  display: block;
  color: var(--coral);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.brief-card strong {
  display: block;
  margin: .25rem 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0;
}

.brief-card p { margin: 0; color: var(--muted); line-height: 1.5; }

.route-card {
  right: 1.25rem;
  top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: .5rem;
  width: min(260px, calc(100% - 2.5rem));
  padding: .95rem;
  border-radius: var(--radius);
}

.route-card b {
  display: block;
  padding: .62rem .75rem;
  border-radius: 6px;
  background: var(--mist);
  font-size: .86rem;
  line-height: 1.2;
}

.signal-strip {
  width: min(1120px, calc(100% - 2rem));
  margin: -1.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.signal-strip article { padding: 1.35rem; border-right: 1px solid rgba(255,255,255,.14); }
.signal-strip article:last-child { border-right: 0; }
.signal-strip strong { display: block; color: #f5d2b7; font-size: clamp(1.7rem, 4vw, 3rem); font-family: Georgia, serif; font-weight: 500; }
.signal-strip span { color: rgba(255,255,255,.7); }

.diagnosis {
  display: grid;
  grid-template-columns: .18fr 1.12fr .7fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.vertical-label {
  color: var(--forest);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.diagnosis-notes {
  padding-top: .8rem;
  border-top: 4px solid var(--coral);
}

.diagnosis-notes ul {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .65rem;
}

.diagnosis-notes li {
  padding-left: 1rem;
  border-left: 2px solid var(--copper);
  color: var(--ink);
  font-weight: 750;
}

.editorial,
.process,
.contact {
  display: grid;
  grid-template-columns: minmax(300px, .92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.image-ribbon {
  display: grid;
  grid-template-columns: .78fr 1fr;
  gap: 1rem;
  align-items: end;
}

.image-ribbon img:first-child {
  height: 520px;
  border-radius: 999px 999px 8px 8px;
}

.image-ribbon img:last-child {
  height: 390px;
  border-radius: 8px 8px 999px 999px;
}

.micro-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}

.micro-grid span {
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, .62);
  color: var(--forest);
  font-weight: 850;
}

.section-heading {
  width: min(820px, 100%);
  margin: 0 auto 2.2rem;
  text-align: center;
}

.services .section-heading {
  width: min(760px, 100%);
}

.services .section-heading h2 {
  font-size: clamp(2rem, 3.8vw, 3.75rem);
  line-height: 1.04;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.1fr .95fr .95fr 1.1fr;
  grid-auto-rows: minmax(170px, auto);
  gap: 1rem;
  align-items: stretch;
}

.service-card,
.plan,
.quote,
.faq-item,
.lead-form {
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, .76);
  box-shadow: 0 18px 42px rgba(21, 32, 29, .08);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
  padding: 1.35rem;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent, rgba(217, 107, 85, .12));
  opacity: 0;
  transition: opacity .25s ease;
}

.service-card:hover::before { opacity: 1; }
.service-card > * { position: relative; }
.service-card span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 1.9rem;
  border-radius: 50%;
  color: var(--paper);
  background: var(--forest);
  font-weight: 950;
  font-size: .88rem;
}

.service-card h3 {
  max-width: 22ch;
  margin-top: auto;
}

.service-card.tall { grid-row: span 2; min-height: 390px; background: var(--forest); color: var(--paper); }
.service-card.tall p { color: rgba(255,255,255,.72); }
.service-card.tall span { background: var(--coral); }
.service-card.wide {
  grid-column: span 2;
  min-height: 190px;
  background: var(--mist);
}

.service-card:nth-child(5) {
  min-height: 190px;
}

.process-cover img {
  height: 650px;
  border-radius: 0 36% 0 36%;
  box-shadow: var(--shadow);
}

.timeline {
  display: grid;
  gap: .8rem;
  margin-top: 2rem;
}

.timeline article {
  display: grid;
  grid-template-columns: 54px minmax(110px, 140px) 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.timeline h3,
.timeline p { margin: 0; }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.plan {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 1.35rem;
}

.plan.featured {
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-18px);
}

.plan.featured p { color: rgba(255,255,255,.72); }
.price {
  margin: .6rem 0;
  color: var(--forest);
  font-family: Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.35rem);
  line-height: 1.05;
  font-weight: 500;
}

.plan.featured .price { color: #f5d2b7; }
.btn-plan { margin-top: auto; color: var(--ink); background: var(--mist); }

.proof {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.quotes-grid {
  display: grid;
  gap: 1rem;
}

.quote {
  padding: 1.4rem;
  transform: translateX(var(--shift, 0));
}

.quote p {
  margin-bottom: 1rem;
  font-size: 1.04rem;
}

.quote:nth-child(2) { --shift: -2rem; }
.quote:nth-child(3) { --shift: 1rem; }
.quote strong { color: var(--forest); }

.faq-list {
  width: min(920px, 100%);
  margin: 0 auto;
  display: grid;
  gap: .75rem;
}

.faq-item { overflow: hidden; }
.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 900;
  line-height: 1.25;
  cursor: pointer;
}

.faq-item b {
  flex: 0 0 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--forest);
}

.faq-item p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0 1.15rem;
  transition: max-height .25s ease, padding .25s ease;
}

.faq-item.active p {
  max-height: 170px;
  padding: 0 1.15rem 1.15rem;
}

.contact {
  background: var(--ink);
  color: var(--paper);
}

.contact .eyebrow { color: #f5d2b7; }
.contact-copy p { color: rgba(255,255,255,.72); }
.lead-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  color: var(--ink);
  background: var(--paper);
}

.lead-form label {
  display: grid;
  gap: .45rem;
  font-weight: 850;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .9rem 1rem;
  color: var(--ink);
  background: white;
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(217, 107, 85, .16);
}

.form-status {
  margin: 0;
  color: var(--forest);
  font-weight: 850;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 5vw, 4rem);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

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

.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }

@media (max-width: 1040px) {
  .hero,
  .diagnosis,
  .editorial,
  .process,
  .proof,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-board { min-height: auto; }
  .hero-photo { height: 560px; }
  h1 { max-width: 760px; }
  h2 { max-width: 760px; }
  .vertical-label { writing-mode: horizontal-tb; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card.tall { grid-row: span 1; min-height: 260px; }
  .quote { transform: none; }
}

@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 72px 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .main-nav.open { display: flex; }
  .hero { min-height: auto; }
  .hero-photo { height: 430px; border-radius: 38% 0 38% 0; }
  .brief-card,
  .route-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    margin-top: .85rem;
  }

  .route-card { border-radius: var(--radius); }
  .signal-strip,
  .plans-grid,
  .service-grid,
  .micro-grid {
    grid-template-columns: 1fr;
  }

  .signal-strip article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .service-card.wide { grid-column: auto; }
  .image-ribbon { grid-template-columns: 1fr; }
  .image-ribbon img:first-child,
  .image-ribbon img:last-child,
  .process-cover img {
    height: 360px;
    border-radius: var(--radius);
  }

  .timeline article { grid-template-columns: 44px 1fr; }
  .timeline p { grid-column: 2; }
  .plan.featured { transform: none; }
  .site-footer { flex-direction: column; }
}

@media (max-width: 520px) {
  .section-pad { padding-inline: 1rem; }
  .brand { font-size: .92rem; }
  h1 {
    font-size: clamp(2.7rem, 13vw, 3.9rem);
    line-height: .98;
  }
  h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
    line-height: 1.04;
  }
  h3 { font-size: 1.08rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
}
