:root {
  --ink: #16221d;
  --moss: #2f4a3d;
  --sage: #758c78;
  --mint: #dfeadd;
  --cream: #f7efe2;
  --paper: #fffaf1;
  --gold: #d99d38;
  --gold-text: #9b6412;
  --coral: #d97855;
  --blue: #3f6d7a;
  --teal: #2f4a3d;
  --navy: #24382e;
  --muted: #63736b;
  --line: rgba(22, 34, 29, .14);
  --shadow: 0 24px 70px rgba(22, 34, 29, .13);
  --radius-sm: 18px;
  --radius-md: 24px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --font-display: ui-serif, Georgia, Cambria, 'Times New Roman', serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(217,157,56,.24), transparent 28rem),
    radial-gradient(circle at 86% 14%, rgba(63,109,122,.18), transparent 30rem),
    linear-gradient(135deg, #f4eadb 0%, #fffaf1 45%, #eef4ea 100%);
  font-family: var(--font-body);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .2;
  background-image: linear-gradient(rgba(22,34,29,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(22,34,29,.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

a { color: inherit; }
section[id] { scroll-margin-top: 120px; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  z-index: 20;
}
.skip-link:focus { left: 16px; }

.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,250,241,.82);
  box-shadow: 0 16px 50px rgba(22,34,29,.08);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 14px;
  z-index: 5;
}

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 850; line-height: .96; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--moss); color: #fff; font-family: var(--font-display); }
.brand-logo { display: block; flex: 0 0 auto; height: auto; max-width: 100%; }
.brand-logo--round { width: 52px; aspect-ratio: 1 / 1; border-radius: 50%; box-shadow: 0 8px 18px rgba(22,34,29,.12); }
.brand-logo--horizontal { width: clamp(180px, 22vw, 250px); aspect-ratio: 1200 / 420; object-fit: contain; }
nav { display: flex; gap: 20px; color: var(--muted); font-weight: 750; }
nav a, .header-cta { text-decoration: none; }
.header-cta { padding: 13px 18px; background: var(--gold); color: #1d1608; border-radius: 999px; font-weight: 850; }

.button,
.header-cta,
nav a,
address a {
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}

.button:hover,
.header-cta:hover { transform: translateY(-1px); }
.button.primary:hover { background: #21392f; box-shadow: 0 16px 30px rgba(47,74,61,.28); }
.button.secondary:hover,
nav a:hover { background: rgba(255,255,255,.9); }
address a { text-underline-offset: 3px; }

main, .site-footer { width: min(1180px, calc(100% - 32px)); margin-inline: auto; position: relative; }
.hero { min-height: 720px; display: grid; grid-template-columns: 1.08fr .82fr; gap: 34px; align-items: center; padding: 68px 0 40px; }
.eyebrow { margin: 0 0 14px; color: var(--moss); text-transform: uppercase; letter-spacing: .15em; font-size: 12px; font-weight: 900; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--font-display); letter-spacing: -.055em; }
h1 { font-size: clamp(52px, 8vw, 108px); line-height: .88; margin-bottom: 22px; max-width: 760px; }
h2 { font-size: clamp(38px, 5vw, 72px); line-height: .94; margin-bottom: 16px; }
h3 { font-size: 24px; line-height: 1.05; margin-bottom: 10px; }
p { color: var(--muted); line-height: 1.65; }
.hero-lede { max-width: 720px; font-size: 22px; color: #44524b; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 30px 0 18px; }
.hero-proof { max-width: 640px; margin: 0 0 20px; color: var(--moss); font-weight: 900; }
.hero-proof::before { content: ''; display: inline-block; width: 8px; height: 8px; margin-right: 8px; border-radius: 50%; background: var(--gold); vertical-align: 1px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 20px; border-radius: 999px; text-decoration: none; font-weight: 900; border: 1px solid transparent; }
.button.primary { background: var(--moss); color: #fff; box-shadow: 0 12px 24px rgba(47,74,61,.22); }
.button.secondary { background: rgba(255,255,255,.72); border-color: var(--line); color: var(--moss); }
.trust-list { display: flex; gap: 10px; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.trust-list li { padding: 10px 12px; background: rgba(255,255,255,.72); border: 1px solid var(--line); border-radius: 999px; color: var(--moss); font-weight: 800; }

.hero-card { padding: 28px; border: 1px solid var(--line); border-radius: 38px; background: rgba(255,250,241,.86); box-shadow: var(--shadow); transform: rotate(1.5deg); position: relative; }
.hero-card::before { content: ''; position: absolute; inset: -14px; border: 2px dashed rgba(217,157,56,.55); border-radius: 46px; z-index: -1; transform: rotate(-3deg); }
.card-topline, .number-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.card-topline { margin-bottom: 18px; color: var(--muted); font-weight: 800; }
.card-topline strong { color: var(--moss); }
.number-row { padding: 18px 0; border-top: 1px solid var(--line); font-size: 18px; }
.number-row strong { font-size: 30px; color: var(--ink); }
.number-row.good strong { color: var(--blue); }
.number-row.profit { margin-top: 10px; padding: 20px; border: 0; border-radius: 22px; background: var(--mint); }
.plain-note { margin-top: 18px; padding: 18px; border-radius: 22px; background: #24382e; }
.plain-note span { color: #f7d99d; font-weight: 900; }
.plain-note p { color: rgba(255,250,241,.84); margin: 8px 0 0; }

.problem-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: clamp(56px, 8vw, 90px); }
.problem-strip div { padding: 22px; border-radius: 24px; background: rgba(255,255,255,.7); border: 1px solid var(--line); }
.problem-strip strong { display: block; font-size: 20px; margin-bottom: 4px; }
.problem-strip span { color: var(--muted); }

.section { margin: clamp(56px, 8vw, 86px) 0; }
.section-label { color: var(--gold-text); font-weight: 950; text-transform: uppercase; letter-spacing: .14em; font-size: 12px; }
.intro-grid { display: grid; grid-template-columns: .9fr 1fr; gap: 38px; align-items: start; }
.intro-grid p { font-size: 24px; color: #3f4d46; }
.section-heading { max-width: 800px; margin-bottom: 28px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-grid article, .timeline article, .proof-card, .price-card, .path-card, .service-detail-card, details { background: rgba(255,250,241,.8); border: 1px solid var(--line); border-radius: 28px; padding: 24px; box-shadow: 0 16px 42px rgba(22,34,29,.07); }
.text-link, .path-card a { color: var(--moss); font-weight: 900; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.text-link { display: inline-block; margin-top: 8px; }
.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.path-card { position: relative; overflow: hidden; }
.path-card::before { content: ''; position: absolute; inset: 0 0 auto; height: 6px; background: linear-gradient(90deg, var(--moss), var(--gold)); }
.path-label { display: inline-block; margin-bottom: 14px; padding: 8px 10px; border-radius: 999px; background: rgba(217,157,56,.16); color: var(--moss); font-size: 12px; font-weight: 950; text-transform: uppercase; letter-spacing: .08em; }
.path-card strong { color: var(--ink); }
.service-page-hero { padding: 64px 0 28px; max-width: 920px; }
.service-page-hero h1 { max-width: 920px; }
.service-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-detail-card h3 { font-size: 22px; }
.service-content { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: start; }
.service-content .contact-form { position: sticky; top: 130px; }
.service-list { display: grid; gap: 12px; padding: 0; list-style: none; }
.service-list li { padding: 16px 18px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.65); color: var(--muted); font-weight: 750; }
.service-icon { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: #1d1608; font-weight: 950; margin-bottom: 22px; }

.setup-package { display: grid; grid-template-columns: .82fr 1fr; gap: 24px; padding: 34px; border-radius: 38px; background: #24382e; color: #fffaf1; box-shadow: var(--shadow); }
.setup-package p { color: rgba(255,250,241,.78); }
.setup-package h2 { color: #fffaf1; }
.small-note { font-size: 14px; }
.package-list { display: grid; gap: 12px; align-content: center; }
.package-list div { padding: 16px 18px; border: 1px solid rgba(255,250,241,.16); border-radius: 18px; background: rgba(255,250,241,.08); color: #fffaf1; font-weight: 850; }

.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.timeline span { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--coral); color: #fff; font-weight: 950; margin-bottom: 22px; }

.pricing { display: grid; grid-template-columns: .75fr 1.25fr; gap: 28px; align-items: start; }
.pricing-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.price-card.featured { background: #fffaf1; border: 2px solid var(--gold); transform: translateY(-10px); }
.plan-label { color: var(--moss); font-weight: 950; text-transform: uppercase; letter-spacing: .1em; font-size: 12px; }
.price-card h3 { font-size: 34px; font-family: var(--font-display); letter-spacing: -.04em; }
.price-card ul { padding-left: 18px; color: var(--muted); line-height: 1.8; margin-bottom: 18px; }
.price-note { font-size: 14px; margin-bottom: 24px; }

.proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.proof-card span { color: var(--gold-text); font-weight: 950; text-transform: uppercase; letter-spacing: .1em; font-size: 12px; }
.proof-card strong { display: block; font-size: 24px; margin: 10px 0; }

.contact-grid { display: grid; grid-template-columns: .85fr 1fr; gap: 28px; align-items: start; }
.contact-copy p { font-size: 18px; }
.contact-alt { font-size: 15px; }
.contact-alt a, .contact-copy a { color: var(--moss); font-weight: 850; }
.contact-form { display: grid; gap: 14px; padding: 28px; border-radius: 28px; background: rgba(255,250,241,.96); border: 1.5px solid rgba(47,74,61,.24); box-shadow: 0 22px 58px rgba(22,34,29,.15), 0 0 0 8px rgba(255,250,241,.48); }
.contact-form label { display: grid; gap: 6px; font-weight: 800; color: var(--ink); font-size: 14px; }
.contact-form input, .contact-form select, .contact-form textarea {
  font: 16px/1.4 var(--font-body);
  color: var(--ink);
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  width: 100%;
}
.contact-form textarea { resize: vertical; }
.contact-form .button { margin-top: 4px; }
.form-note { font-size: 13px; color: var(--muted); margin: 0; }

.faq-list { display: grid; gap: 12px; }
summary { cursor: pointer; font-size: 20px; font-weight: 900; color: var(--ink); border-radius: 12px; }
details p { margin: 12px 0 0; }
.final-cta { margin: clamp(70px, 9vw, 100px) 0 70px; padding: 52px; text-align: center; border-radius: 42px; background: linear-gradient(135deg, #20362c, #101d17); color: #fffaf1; box-shadow: var(--shadow); }
.cta-logo { width: 96px; aspect-ratio: 1 / 1; height: auto; display: block; margin: 0 auto 18px; border-radius: 50%; box-shadow: 0 14px 34px rgba(0,0,0,.18); }
.final-cta h2 { color: #fffaf1; }
.final-cta .eyebrow { color: #f7d99d; }
.final-cta p:not(.eyebrow) { color: #fffaf1; max-width: 680px; margin-inline: auto; font-size: 18px; line-height: 1.6; }
.final-cta .button { background: var(--gold); color: #201704; }
.final-cta .button:hover { background: #efb34d; }
.reassurance { margin-top: 18px; font-size: 15px; font-weight: 900; color: #fffaf1 !important; }

.site-footer { display: flex; justify-content: space-between; gap: 24px; padding: 30px 0 48px; border-top: 1px solid var(--line); }
.site-footer p { max-width: 520px; }
.footer-logo { display: block; width: min(220px, 80vw); height: auto; margin-bottom: 12px; }
.footer-brand-name { display: block; margin-bottom: 6px; }
.footer-services { display: flex; flex-wrap: wrap; gap: 10px 14px; margin-top: 14px; }
.footer-services a { color: var(--moss); font-weight: 850; text-underline-offset: 3px; }
.service-expansion .rhythm-card { margin-top: 16px; padding: 28px; border-radius: 28px; background: rgba(255,250,241,.84); border: 1px solid var(--line); box-shadow: 0 16px 42px rgba(22,34,29,.07); }
.service-steps { color: var(--muted); line-height: 1.8; font-weight: 750; }
address { font-style: normal; color: var(--muted); line-height: 1.8; }
address a { color: var(--moss); font-weight: 850; }
.social-links { display: flex; gap: 14px; margin-top: 12px; }
.social-links a { color: var(--teal); font-weight: 850; }

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

@media (max-width: 900px) {
  .site-header { align-items: flex-start; border-radius: 26px; flex-wrap: wrap; }
  nav { order: 3; width: 100%; overflow-x: auto; padding: 4px; }
  nav a { white-space: nowrap; padding: 8px 10px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.55); }
  .hero, .intro-grid, .setup-package, .pricing, .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 44px; }
  .hero-card { transform: none; }
  .problem-strip, .service-grid, .path-grid, .timeline, .pricing-cards, .proof, .service-detail-grid, .service-content { grid-template-columns: 1fr; }
  .service-content .contact-form { position: static; }
  .price-card.featured { transform: none; }
  .site-footer { flex-direction: column; }
}

@media (max-width: 560px) {
  main, .site-footer, .site-header { width: min(100% - 22px, 1180px); }
  section[id] { scroll-margin-top: 150px; }
  .site-header { top: 8px; padding: 8px; gap: 8px; border-radius: 22px; }
  .brand { font-size: 13px; gap: 8px; }
  .brand-logo--horizontal { width: min(190px, 62vw); }
  .brand-logo--round { width: 44px; }
  nav { gap: 6px; padding: 2px; }
  nav a { padding: 7px 9px; font-size: 13px; }
  .header-cta { width: 100%; min-height: 44px; padding: 0 14px; text-align: center; }
  .hero { padding-top: 34px; gap: 28px; }
  .eyebrow { font-size: 11px; letter-spacing: .12em; }
  h1 { font-size: clamp(38px, 11.5vw, 48px); line-height: .94; letter-spacing: -.04em; margin-bottom: 18px; }
  h2 { font-size: clamp(34px, 10vw, 38px); }
  .hero-lede, .intro-grid p { font-size: 17px; line-height: 1.55; }
  .hero-actions, .trust-list { flex-direction: column; }
  .hero-proof { padding: 10px 12px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.64); font-size: 14px; line-height: 1.45; }
  .button { width: 100%; }
  .hero-card { padding: 22px; border-radius: 30px; }
  .hero-card::before { border-radius: 38px; }
  .number-row strong { font-size: 25px; }
  .section { margin: 50px 0; }
  .service-grid article, .timeline article, .proof-card, .price-card, details, .contact-form { padding: 20px; border-radius: 24px; }
  .setup-package, .final-cta { padding: 28px; border-radius: 28px; }
  .contact-form { gap: 12px; }
  .form-note { font-size: 12px; line-height: 1.55; }
  .social-links { flex-wrap: wrap; }
  address a { display: inline-block; padding: 4px 0; }
}
