:root {
  --ink: #172033;
  --muted: #667085;
  --soft: #eef5f7;
  --paper: #f8fbfc;
  --sage: #53a8a2;
  --sage-dark: #0e6672;
  --rose: #8f7bd8;
  --gold: #d4a64f;
  --line: rgba(23, 32, 51, 0.13);
  --shadow: 0 22px 70px rgba(23, 32, 51, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 251, 252, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: grid;
  gap: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 1.05;
}

.brand strong {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 500;
}

.brand span {
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #27354f;
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-menu a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-menu a[aria-current="page"],
.nav-menu a:hover {
  border-color: var(--sage);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 750;
  line-height: 1.1;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: #0e6672;
  box-shadow: 0 12px 28px rgba(14, 102, 114, 0.24);
}

.button.secondary {
  color: var(--sage-dark);
  background: #fff;
  border-color: rgba(14, 102, 114, 0.28);
}

.button.rose {
  color: #fff;
  background: var(--rose);
}

.section {
  padding: clamp(58px, 8vw, 108px) 0;
}

.section.soft {
  background: var(--soft);
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 690px;
  font-size: clamp(2.35rem, 4.8vw, 4.9rem);
}

h2 {
  max-width: 760px;
  font-size: clamp(1.9rem, 3.2vw, 3.35rem);
}

h3 {
  font-size: clamp(1.18rem, 1.55vw, 1.45rem);
}

p {
  margin: 0;
}

.lead {
  max-width: 720px;
  color: #3d4b63;
  font-size: clamp(1rem, 1.2vw, 1.14rem);
}

.hero {
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../images/hero-treatment.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(9, 26, 43, 0.84), rgba(9, 26, 43, 0.48) 50%, rgba(9, 26, 43, 0.12));
}

.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0 7vh;
}

.hero .eyebrow,
.hero .lead {
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  margin-top: 52px;
}

.trust-item {
  padding: 22px 22px 0 0;
}

.trust-item strong {
  display: block;
  font-size: 1.5rem;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.image-panel {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #ddd;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

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

.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.card h3 {
  margin-bottom: 12px;
}

.card p,
.legal-copy p,
.legal-copy li {
  color: var(--muted);
}

.icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--sage-dark);
}

.icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head .lead {
  max-width: 470px;
}

.service-card {
  min-height: 255px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 44px rgba(23, 32, 51, 0.08);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.product-body p,
.product-body li {
  color: var(--muted);
}

.product-body ul {
  margin: 0;
  padding-left: 18px;
}

.product-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.product-meta strong {
  color: var(--sage-dark);
  font-size: 1.45rem;
  line-height: 1;
}

.product-meta span {
  color: var(--muted);
  font-weight: 700;
}

.service-card ul,
.package ul,
.legal-copy ul {
  padding-left: 20px;
  margin: 16px 0 0;
  color: var(--muted);
}

.service-card li,
.package li,
.legal-copy li {
  margin: 8px 0;
}

.finance-band {
  color: #fff;
  background: #122b46;
}

.finance-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 34px;
  align-items: center;
}

.finance-wrap .lead {
  color: rgba(255, 255, 255, 0.82);
}

.finance-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.finance-box {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.finance-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.finance-box p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
}

.page-hero {
  padding: 86px 0 54px;
  background: linear-gradient(135deg, #f8fbfc 0%, #e5f1f4 58%, #eeeaf9 100%);
}

.page-hero .lead {
  margin-top: 18px;
}

.package {
  display: grid;
  gap: 18px;
  align-content: start;
}

.price {
  color: var(--sage-dark);
  font-size: 2rem;
  font-weight: 850;
}

.price span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 36px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.contact-list a,
.contact-list span {
  display: block;
  color: var(--muted);
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: #27354f;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-copy {
  max-width: 840px;
}

.legal-copy h2 {
  margin-top: 34px;
  font-size: clamp(1.65rem, 2.5vw, 2.4rem);
}

.legal-copy p {
  margin-top: 12px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: #101c32;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr 1fr;
  gap: 34px;
  padding: 58px 0;
}

.footer-grid h3 {
  margin-bottom: 16px;
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 850;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.cart-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 16px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: var(--sage-dark);
  box-shadow: var(--shadow);
  cursor: pointer;
  font-weight: 800;
}

.cart-fab strong {
  min-width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--sage-dark);
  background: #fff;
  font-size: 0.82rem;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0;
  background: rgba(8, 18, 31, 0.42);
  transition: opacity 180ms ease;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 41;
  width: min(430px, 100%);
  height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: 24px;
  background: #fff;
  box-shadow: -24px 0 70px rgba(23, 32, 51, 0.18);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.cart-open .cart-overlay {
  pointer-events: auto;
  opacity: 1;
}

.cart-open .cart-drawer {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.cart-head h2,
.checkout-form h2,
.order-summary h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.cart-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 14px;
  overflow: auto;
}

.cart-line,
.checkout-line {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.cart-line img,
.checkout-line img {
  width: 76px;
  height: 76px;
  border-radius: var(--radius);
  object-fit: cover;
}

.cart-line strong,
.checkout-line strong {
  display: block;
}

.cart-line span,
.checkout-line span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-qty {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.cart-qty button {
  min-width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.cart-foot {
  display: grid;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.cart-total,
.summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 850;
}

.cart-empty {
  color: var(--muted);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  align-items: start;
}

.checkout-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(14, 102, 114, 0.28);
  border-radius: var(--radius);
  background: #eef8f8;
}

.payment-option input {
  width: auto;
}

.payment-option label {
  display: block;
}

.order-summary {
  display: grid;
  gap: 16px;
}

.checkout-line {
  grid-template-columns: 64px 1fr auto;
}

.checkout-line img {
  width: 64px;
  height: 64px;
}

.feature-band {
  background: linear-gradient(135deg, #eef8f8 0%, #f5f2ff 100%);
}

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

.mini-card,
.step-card,
.faq-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
}

.mini-card strong,
.step-card strong {
  display: block;
  color: var(--sage-dark);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-card h3,
.step-card h3,
.faq-item h3 {
  margin-top: 8px;
}

.mini-card p,
.step-card p,
.faq-item p {
  color: var(--muted);
  margin-top: 10px;
}

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

.step-card {
  position: relative;
}

.step-card::before {
  counter-increment: steps;
  content: "0" counter(steps);
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--sage-dark);
  font-weight: 850;
}

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

.quote-band {
  color: #fff;
  background: #122b46;
}

.quote-band blockquote {
  max-width: 880px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 3rem);
  line-height: 1.16;
}

.quote-band cite {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-weight: 750;
}

.cta-slab {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 44px rgba(23, 32, 51, 0.08);
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #f8fbfc;
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: grid;
  }

  .nav-actions .button {
    display: none;
  }

  .trust-strip,
  .grid.three,
  .grid.two,
  .mini-grid,
  .process-grid,
  .faq-list,
  .product-grid,
  .split,
  .finance-wrap,
  .contact-grid,
  .checkout-layout,
  .cta-slab,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
  }

  .finance-boxes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 760px;
  }

  .hero::before {
    background-position: 66% center;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(9, 26, 43, 0.55), rgba(9, 26, 43, 0.86));
  }

  .hero-inner {
    padding-bottom: 38px;
  }

  .trust-strip {
    gap: 8px;
  }

  .button {
    width: 100%;
  }

  .image-panel img {
    min-height: 310px;
  }

  .form-row,
  .checkout-line {
    grid-template-columns: 1fr;
  }

  .cart-drawer {
    padding: 18px;
  }
}
