:root {
  --ink: #15231f;
  --deep: #153f37;
  --deep-2: #0f302a;
  --paper: #fffdf8;
  --warm: #f7f1e8;
  --mist: #e7eff1;
  --sage: #dbe7df;
  --gold: #b7833d;
  --coral: #c76652;
  --plum: #5b3f56;
  --muted: #5f706a;
  --line: rgba(21, 63, 55, 0.16);
  --shadow: 0 22px 55px rgba(21, 35, 31, 0.13);
  --radius: 8px;
  --radius-sm: 6px;
  --max: 1180px;
}

* { 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: var(--paper);
  line-height: 1.6;
}

body.nav-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
p { margin: 0; }
h1, h2, h3 {
  line-height: 1.04;
  margin: 0;
  letter-spacing: 0;
  text-wrap: balance;
}
h1 { font-size: 4.5rem; }
h2 { font-size: 3.1rem; }
h3 { font-size: 1.24rem; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.section { padding: 104px 0; }
.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}
.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  margin-top: 16px;
}
.centered {
  max-width: 820px;
  text-align: center;
  margin-inline: auto;
}
.centered p:last-child {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.1rem;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 999;
  background: var(--deep);
  color: white;
  padding: 10px 14px;
  border-radius: var(--radius);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(21, 35, 31, 0.07);
}
.nav-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 82px;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}
.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--deep);
  color: #f2d7a3;
  box-shadow: 0 10px 26px rgba(21, 63, 55, 0.18);
}
.brand-mark svg { width: 30px; height: 30px; }
.brand-mark circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
}
.brand-mark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
}
.brand strong {
  display: block;
  font-size: 1.05rem;
}
.brand small {
  display: block;
  margin-top: -2px;
  color: var(--muted);
  font-size: 0.78rem;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-nav a {
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: #304942;
  font-size: 0.95rem;
  transition: background 180ms ease, color 180ms ease;
}
.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(21, 63, 55, 0.09);
  color: var(--deep);
  outline: none;
}
.site-nav .nav-cta {
  background: var(--deep);
  color: white;
  padding-inline: 15px;
}
.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--deep-2);
  color: white;
}
.nav-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 750;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}
.button-primary {
  background: var(--deep);
  color: white;
  box-shadow: 0 16px 30px rgba(21, 63, 55, 0.2);
}
.button-primary:hover,
.button-primary:focus-visible { background: var(--deep-2); }
.button-secondary {
  color: var(--deep);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}
.button-secondary:hover,
.button-secondary:focus-visible { background: white; }
.text-link {
  display: inline-flex;
  margin-top: auto;
  color: var(--deep);
  font-weight: 780;
  text-decoration-color: rgba(183, 131, 61, 0.55);
  text-underline-offset: 4px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 850;
  color: var(--coral);
  margin-bottom: 14px;
}
.microcopy {
  color: var(--muted);
  font-size: 0.96rem;
  max-width: 600px;
}

.hero {
  overflow: hidden;
  padding-top: 64px;
  padding-bottom: 76px;
  background: linear-gradient(180deg, var(--warm) 0%, var(--paper) 82%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: 58px;
}
.hero-lede {
  margin: 24px 0 28px;
  max-width: 720px;
  color: #3f5851;
  font-size: 1.35rem;
  line-height: 1.48;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}
.hero-mobile-image { display: none; }
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 34px 0 0;
  max-width: 680px;
}
.hero-metrics div {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.hero-metrics dt {
  color: var(--deep);
  font-size: 1.55rem;
  font-weight: 850;
  line-height: 1;
}
.hero-metrics dd {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.hero-media {
  position: relative;
  margin: 0;
}
.hero-media img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px;
  border: 1px solid rgba(21, 63, 55, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 18px 38px rgba(21, 35, 31, 0.14);
  backdrop-filter: blur(12px);
}
.card-topline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--deep);
  font-size: 0.84rem;
  font-weight: 800;
}
.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(183, 131, 61, 0.17);
}
.hero-card h2 {
  font-size: 1.72rem;
  margin-bottom: 18px;
}
.journey-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.journey-card div {
  display: grid;
  gap: 3px;
  padding: 11px 12px;
  border: 1px solid rgba(21, 63, 55, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
}
.journey-card span {
  color: var(--coral);
  font-weight: 850;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.journey-card strong {
  font-size: 0.92rem;
  line-height: 1.25;
}

.problem-band {
  background: var(--deep);
  color: white;
}
.problem-band .eyebrow { color: #f2d7a3; }
.problem-band p { color: rgba(255, 255, 255, 0.78); }
.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 60px;
  align-items: start;
}
.copy-stack {
  display: grid;
  gap: 18px;
  font-size: 1.15rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 46px;
}
.stat-grid article,
.service-card,
.package-card,
.copy-card,
.quote-card,
.contact-form,
.trust-box,
.checklist-card,
.plan-card,
.trust-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(21, 35, 31, 0.06);
}
.stat-grid article { padding: 26px; }
.stat-grid span {
  color: var(--gold);
  font-weight: 900;
  font-size: 0.92rem;
}
.stat-grid h3 { margin: 12px 0 10px; }
.stat-grid p,
.service-card p,
.package-card p,
.copy-card p,
.quote-card p,
.contact-copy p,
.checklist-card p,
.plan-card p,
.trust-grid p,
.data-lede { color: var(--muted); }

.lead-magnet {
  background: var(--warm);
}
.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  gap: 52px;
  align-items: center;
}
.lead-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.checklist-card {
  padding: 28px;
}
.checklist-card h3 {
  font-size: 1.65rem;
  margin-bottom: 18px;
}
.checklist-list {
  display: grid;
  gap: 12px;
}
.checklist-list li {
  position: relative;
  padding-left: 25px;
  color: #465950;
}
.checklist-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
}

.services { background: var(--mist); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  padding: 25px;
  min-height: 248px;
}
.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--sage);
  color: var(--deep);
  font-weight: 900;
  margin-bottom: 20px;
}
.service-card h3 { margin-bottom: 12px; }

.sample-plan {
  background: var(--paper);
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.plan-card {
  padding: 24px;
  border-top: 4px solid var(--gold);
}
.plan-card span {
  color: var(--coral);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.plan-card h3 {
  margin: 12px 0 10px;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}
.steps {
  display: grid;
  gap: 16px;
}
.steps article {
  padding: 25px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 253, 248, 0.78);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.steps span {
  color: var(--coral);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.steps h3 { margin: 10px 0; }
.steps p { color: var(--muted); }

.data-care {
  background: var(--mist);
}
.data-lede {
  margin-top: 18px;
  font-size: 1.08rem;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.trust-grid article {
  padding: 24px;
}
.trust-grid h3 {
  margin-bottom: 10px;
}

.audience {
  background: #193834;
  color: white;
}
.audience .eyebrow { color: #f2d7a3; }
.audience .copy-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  padding: 34px;
}
.audience .copy-card p { color: rgba(255, 255, 255, 0.76); }
.reverse { align-items: center; }
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.tag-cloud span {
  padding: 10px 13px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.88);
}

.packages { background: var(--paper); }
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.package-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
}
.package-card.featured {
  background: var(--deep);
  color: white;
  transform: translateY(-10px);
}
.package-card.featured p,
.package-card.featured li { color: rgba(255, 255, 255, 0.78); }
.package-card.featured .package-label { color: #f2d7a3; }
.package-card.featured .button-primary {
  background: #f2d7a3;
  color: var(--deep);
  box-shadow: none;
}
.package-label {
  color: var(--coral);
  font-weight: 900;
  font-size: 0.79rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 13px;
}
.package-card h3 { font-size: 1.55rem; margin-bottom: 12px; }
.package-card ul {
  display: grid;
  gap: 11px;
  margin: 22px 0 28px;
}
.package-card li {
  position: relative;
  padding-left: 25px;
  color: #465950;
}
.package-card li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.quote-section { padding-top: 20px; }
.quote-card {
  padding: 58px;
  background: linear-gradient(135deg, var(--paper), var(--sage));
  text-align: center;
}
.quote-card p:last-child {
  max-width: 780px;
  margin: 18px auto 0;
  font-size: 1.13rem;
}

.contact { background: var(--warm); }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}
.contact-copy p { font-size: 1.08rem; margin-top: 18px; }
.trust-box {
  margin-top: 28px;
  padding: 22px;
  background: rgba(255, 253, 248, 0.78);
}
.trust-box strong { display: block; margin-bottom: 8px; }
.trust-box p { margin: 0; font-size: 0.96rem; }
.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}
.hidden { display: none; }
label {
  display: grid;
  gap: 7px;
  color: var(--deep);
  font-weight: 780;
  font-size: 0.94rem;
}
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(21, 63, 55, 0.18);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(183, 131, 61, 0.16);
}
.form-status {
  min-height: 1.5em;
  color: var(--deep);
  font-weight: 750;
}

.site-footer {
  padding: 56px 0 28px;
  background: var(--deep);
  color: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 1fr;
  gap: 42px;
  padding-bottom: 32px;
}
.footer-brand .brand-mark {
  background: rgba(255, 255, 255, 0.1);
  color: #f2d7a3;
  box-shadow: none;
}
.site-footer p,
.site-footer small,
.site-footer .brand small { color: rgba(255, 255, 255, 0.68); }
.site-footer h2 {
  font-size: 1rem;
  margin-bottom: 12px;
}
.site-footer a:not(.brand) {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 8px;
}
.site-footer a:not(.brand):hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
}

.compact-page {
  min-height: 76vh;
  display: grid;
  align-items: center;
  background: linear-gradient(180deg, var(--warm), var(--paper));
}
.page-shell {
  max-width: 820px;
  padding-block: 28px;
}
.page-shell h1 { font-size: 4.15rem; }
.page-shell .copy-stack { margin-top: 28px; }
.page-action { margin-top: 28px; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *:before, *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  h1 { font-size: 3.9rem; }
  h2 { font-size: 2.65rem; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .hero-media img { height: 520px; }
}

@media (max-width: 980px) {
  .section { padding: 78px 0; }
  .two-col,
  .lead-grid,
  .process-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .service-grid,
  .package-grid,
  .stat-grid,
  .plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .package-card.featured { transform: none; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--max)); }
  h1 { font-size: 2.62rem; }
  h2 { font-size: 2.25rem; }
  .nav-shell { min-height: 72px; }
  .nav-toggle {
    display: inline-grid;
    place-items: center;
    gap: 4px;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.72);
    cursor: pointer;
  }
  .nav-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--deep);
    transition: transform 180ms ease, opacity 180ms ease;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-6px) rotate(-45deg); }
  .site-nav[data-nav] {
    position: fixed;
    inset: 72px 14px auto 14px;
    display: grid;
    gap: 6px;
    padding: 14px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .site-nav[data-nav].is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav[data-nav] a { width: 100%; }
  .site-nav:not([data-nav]) {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .hero {
    padding-top: 40px;
    padding-bottom: 46px;
  }
  .hero-lede { font-size: 1.16rem; }
  .hero-mobile-image {
    display: block;
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 16px 34px rgba(21, 35, 31, 0.12);
    margin-bottom: 22px;
  }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-metrics,
  .hero-media,
  .microcopy { display: none; }
  .hero-card {
    position: static;
    margin-top: 12px;
  }
  .journey-card { grid-template-columns: 1fr; }
  .service-grid,
  .package-grid,
  .stat-grid,
  .plan-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .lead-actions .button,
  .booking-actions .button { width: 100%; }
  .quote-card { padding: 34px 24px; }
  .footer-bottom { flex-direction: column; }
  .page-shell h1 { font-size: 3rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.38rem; }
  h2 { font-size: 2rem; }
  .brand small { display: none; }
  .hero-mobile-image { height: 132px; }
  .hero-card,
  .contact-form,
  .package-card,
  .service-card,
  .checklist-card,
  .plan-card,
  .trust-grid article,
  .audience .copy-card { padding: 22px; }
  .section { padding: 64px 0; }
}
