:root {
  --ink: #111816;
  --muted: #5d6863;
  --paper: #f5f1e8;
  --surface: #fbfaf6;
  --white: #ffffff;
  --deep: #09231d;
  --forest: #113b32;
  --teal: #246a55;
  --sage: #e8f0e7;
  --clay: #eee4d1;
  --gold: #d7b65d;
  --gold-dark: #9a7326;
  --line: rgba(17, 24, 22, 0.14);
  --line-strong: rgba(17, 24, 22, 0.22);
  --shadow: 0 24px 90px rgba(9, 35, 29, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.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;
}

section[id],
.service-band {
  scroll-margin-top: 88px;
}

body.menu-open {
  overflow: hidden;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 58px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(9, 35, 29, 0.88), rgba(9, 35, 29, 0.18));
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 38px rgba(9, 35, 29, 0.12);
  backdrop-filter: blur(16px);
}

.site-header.is-menu-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 46px rgba(9, 35, 29, 0.16);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: 0;
}

.brand img {
  flex: 0 0 auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: inherit;
  font-size: 0.94rem;
  font-weight: 760;
}

.nav a,
.footer-links a {
  text-decoration: none;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--gold);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 850;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta {
  min-height: 40px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.site-header.is-scrolled .menu-toggle,
.site-header.is-menu-open .menu-toggle {
  border-color: var(--line-strong);
  background: var(--white);
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle-lines::before {
  transform: translateY(-6px);
}

.menu-toggle-lines::after {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
  transform: rotate(90deg);
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: clamp(18px, 4vw, 58px);
  width: min(360px, calc(100vw - 32px));
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(9, 35, 29, 0.22);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu nav {
  display: grid;
  gap: 2px;
}

.mobile-menu nav a {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-weight: 850;
}

.mobile-menu nav a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.42;
}

.mobile-menu-actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.mobile-menu .btn {
  width: 100%;
}

.mobile-menu .btn-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.btn {
  padding: 0 20px;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(9, 35, 29, 0.18);
}

.btn-primary {
  color: var(--ink);
  background: var(--gold);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.10);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.2vw, 6.05rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.05rem, 4vw, 4.15rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.22;
}

.eyebrow,
.section-kicker,
.card-topline {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: min(760px, 86svh);
  display: flex;
  align-items: center;
  padding: 118px clamp(20px, 5vw, 76px) 52px;
  color: var(--white);
  background-image: url("assets/lighthouse-pro-hero.png");
  background-position: center right;
  background-size: cover;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 29, 24, 0.97) 0%, rgba(7, 29, 24, 0.88) 40%, rgba(7, 29, 24, 0.44) 74%, rgba(7, 29, 24, 0.08) 100%),
    linear-gradient(180deg, rgba(7, 29, 24, 0.10), rgba(7, 29, 24, 0.36));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.hero .eyebrow {
  color: var(--gold);
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
}

.hero-actions,
.contact-actions,
.checkout-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 720px;
  margin: 34px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-proof div {
  min-width: 0;
}

.hero-proof dt {
  margin-bottom: 3px;
  color: var(--white);
  font-weight: 900;
  font-size: 1.04rem;
}

.hero-proof dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.service-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 16px;
  padding: 18px clamp(18px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-size: 0.92rem;
}

.service-band strong {
  color: var(--ink);
}

.service-band span {
  color: var(--forest);
  font-weight: 780;
}

.section {
  padding: clamp(64px, 8vw, 116px) clamp(20px, 5vw, 76px);
}

.intro {
  background: var(--paper);
}

.intro-grid,
.pricing-grid,
.steps,
.proof,
.proof-strip,
.addons,
.care-summary,
.section-heading {
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.intro-grid,
.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
}

.intro p,
.section-heading p,
.proof-list span,
.cta-section p,
.thanks-panel p,
.checkout-copy,
.checkout-note,
.intake-hero p {
  color: var(--muted);
  font-size: 1.04rem;
}

.quiet-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.quiet-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 740;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 54px);
  padding-top: clamp(52px, 7vw, 88px);
  padding-bottom: clamp(52px, 7vw, 88px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  min-width: 0;
}

.proof-strip span,
.steps span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--forest);
  font-size: 0.78rem;
  font-weight: 900;
}

.proof-strip p,
.steps p,
.price-card li,
.addons span {
  color: var(--muted);
}

.packages {
  background: var(--white);
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading h2,
.section-heading > p:not(.section-kicker) {
  max-width: 800px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 600px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf1;
}

.price-card.featured {
  color: var(--white);
  background: linear-gradient(145deg, #0b3028, #081f1a);
  box-shadow: var(--shadow);
}

.price-card.featured .monthly,
.price-card.featured li {
  color: rgba(255, 255, 255, 0.74);
}

.price {
  margin-bottom: 2px;
  font-weight: 900;
}

.price span {
  font-size: clamp(2.35rem, 4vw, 3.55rem);
  line-height: 1;
}

.monthly {
  min-height: 28px;
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 820;
}

.payment-options,
.subscription-options {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
}

.payment-option {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
}

.payment-option.is-selected {
  border-color: rgba(154, 115, 38, 0.52);
  background: rgba(215, 182, 93, 0.13);
}

.payment-option input {
  width: 16px;
  height: 16px;
  margin: 3px 0 0;
  accent-color: var(--forest);
}

.payment-option span {
  display: grid;
  gap: 2px;
}

.payment-option strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.payment-option em {
  color: var(--muted);
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 680;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 21px;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}

.price-card .btn {
  width: 100%;
}

.price-card > .btn {
  margin-top: auto;
}

.price-card .btn-secondary,
.cta-section .btn-secondary,
.checkout-panel .btn-secondary,
.thanks-panel .btn-secondary,
.form-actions .btn-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.addons {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  margin-top: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.addons h3 {
  margin-bottom: 0;
}

.addons ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.addons li {
  display: grid;
  grid-template-columns: minmax(130px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.addons li:first-child {
  border-top: 0;
  padding-top: 0;
}

.care-summary {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  margin-top: 26px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.care-summary h3 {
  margin-bottom: 0;
}

.care-summary ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.care-summary li {
  color: var(--muted);
}

.payment-note {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(215, 182, 93, 0.46);
  border-radius: var(--radius);
  color: #4f3d14;
  background: #fff8e5;
}

code {
  padding: 2px 6px;
  border-radius: 5px;
  background: rgba(16, 32, 43, 0.08);
}

.process {
  background: var(--paper);
}

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

.steps article {
  min-width: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line-strong);
}

.proof {
  background: var(--sage);
}

.proof-list {
  display: grid;
  gap: 0;
}

.proof-list div {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-top: 1px solid rgba(17, 24, 22, 0.18);
}

.proof-list div:first-child {
  border-top: 0;
  padding-top: 0;
}

.proof-list strong {
  font-size: 1.06rem;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: clamp(58px, 8vw, 94px) clamp(20px, 5vw, 76px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(9, 35, 29, 0.96), rgba(17, 59, 50, 0.92)),
    url("assets/lighthouse-pro-hero.png") center / cover;
}

.cta-section > div {
  max-width: 1180px;
}

.cta-section p {
  max-width: 710px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(20px, 5vw, 76px);
  color: rgba(255, 255, 255, 0.76);
  background: #061c17;
}

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

.site-footer p {
  margin: 10px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
}

.simple-page {
  min-height: 100vh;
  background:
    linear-gradient(120deg, rgba(9, 35, 29, 0.94), rgba(17, 59, 50, 0.78)),
    url("assets/lighthouse-pro-hero.png") center / cover;
}

.checkout-page {
  background:
    linear-gradient(120deg, rgba(9, 35, 29, 0.94), rgba(9, 35, 29, 0.72)),
    url("assets/lighthouse-pro-hero.png") center / cover;
}

.checkout-shell {
  min-height: 100vh;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 22px;
  padding: clamp(24px, 6vw, 72px);
}

.checkout-brand {
  color: var(--white);
}

.checkout-panel {
  width: min(760px, 100%);
  padding: clamp(28px, 5vw, 48px);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.checkout-panel h1 {
  font-size: clamp(2.1rem, 4vw, 4.35rem);
}

.checkout-summary {
  display: grid;
  gap: 4px;
  margin: 22px 0;
  padding: 18px;
  border: 1px solid rgba(215, 182, 93, 0.45);
  border-radius: var(--radius);
  background: #fff8e5;
}

.checkout-summary span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-summary strong {
  font-size: 1.25rem;
}

.checkout-summary em {
  color: var(--muted);
  font-style: normal;
  font-weight: 750;
}

.checkout-summary small {
  color: var(--forest);
  font-weight: 780;
}

.payment-structure-selector,
.subscription-selector,
.addon-selector {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.payment-structure-selector[hidden],
.subscription-selector[hidden],
.addon-selector[hidden] {
  display: none;
}

.subscription-heading {
  display: grid;
  gap: 4px;
}

summary.subscription-heading {
  position: relative;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 4px 16px;
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  border: 1px solid rgba(215, 182, 93, 0.46);
  border-radius: var(--radius);
  background: #fff8e5;
}

summary.subscription-heading::marker {
  content: "";
}

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

.addon-summary strong {
  grid-column: 1;
}

.addon-summary-action {
  display: inline-flex;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-items: center;
  gap: 8px;
  justify-content: center;
  min-width: 118px;
  padding: 8px 10px;
  border: 1px solid rgba(17, 59, 50, 0.18);
  border-radius: 999px;
  color: var(--forest);
  background: var(--white);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.addon-summary-action::after {
  content: "+";
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--forest);
  font-size: 0.86rem;
  line-height: 1;
}

.addon-summary-action span {
  color: inherit;
  font: inherit;
  text-transform: inherit;
}

.addon-selector .addon-action-hide {
  display: none;
}

.addon-selector[open] .addon-action-show {
  display: none;
}

.addon-selector[open] .addon-action-hide {
  display: inline;
}

.addon-selector[open] .addon-summary-action::after {
  content: "-";
}

.addon-selector[open] .addon-options {
  margin-top: 14px;
}

.addon-selector:not([open]) .addon-options {
  display: none;
}

.discount-selector {
  display: grid;
  gap: 8px;
  margin: 22px 0;
  padding: 16px 18px;
  border: 1px solid rgba(17, 59, 50, 0.14);
  border-radius: var(--radius);
  background: #fffdf8;
}

.discount-selector[hidden] {
  display: none;
}

.discount-selector label {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.discount-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.discount-entry input {
  min-width: 0;
  height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(17, 24, 22, 0.22);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.discount-entry .btn {
  min-height: 44px;
  padding: 10px 16px;
}

.discount-selector p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 720;
  line-height: 1.45;
}

.subscription-heading span {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.subscription-heading strong {
  color: var(--forest);
  font-size: 1.06rem;
}

.checkout-panel .subscription-options {
  margin-bottom: 0;
}

.checkout-panel .payment-option {
  background: #fffdf8;
}

.contract-summary {
  display: grid;
  gap: 4px;
  margin: 22px 0;
  padding: 16px 18px;
  border: 1px solid rgba(215, 182, 93, 0.46);
  border-radius: var(--radius);
  background: #fff8e5;
}

.contract-summary[hidden] {
  display: none;
}

.contract-summary span {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contract-summary strong {
  color: var(--forest);
}

.contract-summary em {
  color: var(--muted);
  font-style: normal;
  font-weight: 720;
}

.addon-number-option {
  grid-template-columns: 74px minmax(0, 1fr);
}

.addon-number-option input {
  width: 54px;
  height: 42px;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(17, 24, 22, 0.22);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 850;
  text-align: center;
}

.checkout-total {
  display: grid;
  gap: 5px;
  margin: 22px 0;
  padding: 16px 18px;
  border: 1px solid rgba(17, 59, 50, 0.24);
  border-radius: var(--radius);
  background: rgba(232, 240, 231, 0.74);
}

.checkout-total strong {
  color: var(--forest);
  font-size: 1.2rem;
}

.checkout-total span,
.checkout-error {
  color: var(--muted);
  font-weight: 720;
}

.checkout-error {
  margin: 14px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(154, 115, 38, 0.36);
  border-radius: var(--radius);
  background: #fff8e5;
}

.checkout-error[hidden] {
  display: none;
}

.checkout-link[aria-busy="true"] {
  pointer-events: none;
  opacity: 0.74;
}

.intake-form button[aria-busy="true"] {
  cursor: wait;
  opacity: 0.74;
}

.checkout-panel .checkout-actions {
  margin-top: 24px;
}

.checkout-panel .checkout-note {
  margin: 20px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(17, 59, 50, 0.12);
  font-size: 0.9rem;
  line-height: 1.45;
}

.terms-acceptance {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 22px 0 0;
  padding: 0 0 4px;
  color: var(--muted);
  font-weight: 720;
}

.terms-acceptance[hidden] {
  display: none;
}

.terms-acceptance input {
  width: 17px;
  height: 17px;
  margin-top: 4px;
  accent-color: var(--forest);
}

.terms-acceptance a {
  color: var(--teal);
  font-weight: 850;
}

.intake-page {
  background: var(--paper);
}

.intake-header {
  position: sticky;
}

.intake-main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px clamp(18px, 5vw, 48px) 72px;
}

.intake-hero {
  max-width: 760px;
  margin-bottom: 30px;
}

.intake-hero h1 {
  color: var(--forest);
  font-size: clamp(2.2rem, 4.5vw, 4.8rem);
}

.intake-form,
.intake-result {
  display: grid;
  gap: 18px;
}

.payment-gate {
  display: grid;
  gap: 4px;
  margin-bottom: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(154, 115, 38, 0.32);
  border-radius: var(--radius);
  background: #fff8e5;
}

.payment-gate strong {
  color: var(--forest);
}

.payment-gate span {
  color: var(--muted);
  font-weight: 720;
}

.payment-gate.is-verified {
  border-color: rgba(36, 106, 85, 0.34);
  background: rgba(232, 240, 231, 0.84);
}

.payment-gate.is-warning {
  border-color: rgba(154, 115, 38, 0.42);
  background: #fff8e5;
}

.intake-form.is-disabled {
  opacity: 0.62;
}

.intake-form.is-disabled fieldset {
  pointer-events: none;
}

.intake-form fieldset {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.intake-form legend {
  padding: 0 8px;
  color: var(--forest);
  font-size: 1.15rem;
  font-weight: 900;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.intake-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--ink);
  font-weight: 850;
}

.field-label {
  position: relative;
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 7px;
}

.field-help {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 59, 50, 0.28);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(232, 240, 231, 0.72);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  cursor: help;
}

.field-tip {
  position: absolute;
  z-index: 4;
  left: 0;
  bottom: calc(100% + 8px);
  width: min(320px, calc(100vw - 48px));
  padding: 10px 12px;
  border: 1px solid rgba(17, 59, 50, 0.18);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(9, 35, 29, 0.16);
  font-size: 0.84rem;
  font-weight: 720;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 140ms ease, transform 140ms ease;
}

.field-help:hover + .field-tip,
.field-help:focus + .field-tip,
.field-help:focus-visible + .field-tip {
  opacity: 1;
  transform: translateY(0);
}

.intake-form input,
.intake-form textarea,
.intake-form select,
.intake-result textarea,
.summary-panel textarea {
  width: 100%;
  border: 1px solid rgba(17, 24, 22, 0.22);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: #fffdf8;
  font: inherit;
}

.intake-form textarea {
  resize: vertical;
}

.checkbox-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 750;
}

.checkbox-row input {
  width: auto;
  margin-top: 5px;
}

.intake-result {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.intake-result[hidden] {
  display: none;
}

.thanks {
  min-height: 100vh;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 22px;
  padding: clamp(24px, 6vw, 72px);
  color: var(--white);
}

.thanks-panel {
  max-width: 720px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.thanks-panel h1 {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
}

.thanks-panel a:not(.btn) {
  color: var(--teal);
  font-weight: 800;
}

.summary-panel {
  display: grid;
  gap: 14px;
  margin: 24px 0;
  padding: 18px;
  border: 1px solid rgba(17, 59, 50, 0.16);
  border-radius: var(--radius);
  background: #fffdf8;
}

.summary-panel[hidden] {
  display: none;
}

.summary-heading {
  display: grid;
  gap: 3px;
}

.summary-heading span {
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.summary-heading strong {
  color: var(--forest);
  font-size: 1rem;
}

.summary-panel textarea {
  min-height: 260px;
  resize: vertical;
}

.summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.terms-page {
  background: var(--paper);
}

.terms-main {
  max-width: 1020px;
  margin: 0 auto;
  padding: 48px clamp(18px, 5vw, 48px) 72px;
}

.terms-hero {
  max-width: 780px;
  margin-bottom: 28px;
}

.terms-hero h1 {
  color: var(--forest);
  font-size: clamp(2.2rem, 4.5vw, 4.8rem);
}

.terms-hero p {
  color: var(--muted);
  font-weight: 750;
}

.terms-content {
  display: grid;
  gap: 14px;
}

.terms-content section {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.terms-content h2 {
  margin-bottom: 10px;
  color: var(--forest);
  font-size: 1.25rem;
  line-height: 1.2;
}

.terms-content p {
  margin-bottom: 10px;
  color: var(--muted);
}

.terms-content p:last-child {
  margin-bottom: 0;
}

.terms-content a {
  color: var(--teal);
  font-weight: 850;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 29, 24, 0.97), rgba(7, 29, 24, 0.75)),
      linear-gradient(180deg, rgba(7, 29, 24, 0.12), rgba(7, 29, 24, 0.50));
  }

  .intro-grid,
  .proof,
  .cta-section,
  .addons,
  .care-summary {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .pricing-grid,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 64px;
    padding: 12px 16px;
    gap: 12px;
  }

  .brand span {
    font-size: 0.98rem;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu {
    right: 16px;
    left: 16px;
    width: auto;
  }

  .hero {
    min-height: auto;
    padding: 88px 18px 28px;
  }

  h1 {
    font-size: clamp(2.08rem, 10.8vw, 2.95rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.55rem);
    line-height: 1.04;
  }

  .hero-copy {
    margin-bottom: 18px;
    font-size: 0.96rem;
  }

  .hero-actions .btn {
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
    padding-top: 14px;
  }

  .hero-proof dt {
    font-size: 0.86rem;
  }

  .hero-proof dd {
    font-size: 0.72rem;
  }

  .contact-actions .btn,
  .checkout-actions .btn,
  .form-actions .btn,
  .summary-actions .btn {
    width: 100%;
  }

  .addon-number-option {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .discount-entry {
    grid-template-columns: 1fr;
  }

  .service-band {
    justify-content: flex-start;
    gap: 8px 12px;
    padding: 16px 18px;
  }

  .section {
    padding: 58px 18px;
  }

  .proof-strip {
    gap: 28px;
  }

  .steps,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .addons li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
