/* ── SELF-HOSTED FONTS ──────────────────────────────── */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-normal-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-italic-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/cormorant-normal-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/cormorant-italic-600.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dmsans-normal-400.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dmsans-italic-400.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/dmsans-normal-500.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/dmsans-normal-700.woff2') format('woff2');
}

/* ── TOKENS: Cream / Teal — light-only ─────────────── */
:root {
  --ff-d: 'Cormorant Garamond', Georgia, serif;
  --ff-b: 'DM Sans', system-ui, sans-serif;

  --bg:        #F5F0E6;
  --surf:      #FDFAF3;
  --surf-alt:  #EBE5D6;
  --pri:       #18453b; /* #1C5250; */
  --pri-dk:    #143C3A;
  --pri-fg:    #EAF4F2;
  --acc:       #2D7068;
  --acc-h:     #357E76;
  --acc-fg:    #FFFFFF;
  --acc-sub:   #DFF0EC;
  --txt:       #1C2826;
  --txt-2:     #3C5250;
  --txt-m:     #688480;
  --bdr:       #D4CCBA;
  --div:       #E2DAC8;
}

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-b);
  background: var(--bg);
  color: var(--txt);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAV ─────────────────────────────────────────────── */
.nav {
  background: var(--pri);
  height: 68px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  font-family: var(--ff-d);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--pri-fg);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 3px;
}
.logo-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--acc);
  display: inline-block;
  margin-bottom: 2px;
  flex-shrink: 0;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--pri-fg) 70%, transparent);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--pri-fg); }
.nav-cta {
  background: var(--acc);
  color: var(--acc-fg);
  padding: 9px 22px;
  border-radius: 3px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--acc-h); }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  background: var(--pri);
  position: relative;
  overflow: hidden;
  padding: 96px 6% 88px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
.hero-ring {
  position: absolute;
  right: -80px;
  top: -100px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 50%;
  pointer-events: none;
}
.hero-ring-2 {
  position: absolute;
  right: -10px;
  top: -30px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 700px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--pri-fg) 55%, var(--acc));
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
  display: block;
  flex-shrink: 0;
}
.hero h1 {
  font-family: var(--ff-d);
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.1;
  color: var(--pri-fg);
  text-wrap: balance;
  margin-bottom: 26px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--pri-fg) 65%, transparent);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 42px;
  font-weight: 300;
}
.hero-acts { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-pri {
  background: var(--acc);
  color: var(--acc-fg);
  padding: 13px 28px;
  border-radius: 3px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-pri:hover { background: var(--acc-h); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--pri-fg);
  padding: 12px 28px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 3px;
  font-size: 0.92rem;
  font-weight: 400;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.46); background: rgba(255,255,255,0.06); }

/* ── TRUST BAR ───────────────────────────────────────── */
.trust {
  background: var(--surf-alt);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
  padding: 20px 6%;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-lbl {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--txt-m);
  flex-shrink: 0;
}
.trust-stats { display: flex; gap: 44px; flex-wrap: wrap; }
.t-stat .n {
  font-family: var(--ff-d);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--txt);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.t-stat .l { font-size: 0.73rem; color: var(--txt-m); margin-top: 3px; }

/* ── SECTION SHELL ──────────────────────────────────── */
.sec { padding: 88px 6%; background: var(--bg); }
.sec-alt { background: var(--surf-alt); }
.sec-surf { background: var(--surf); }
.sec-inner { max-width: 1100px; margin: 0 auto; }
.sec-hd { margin-bottom: 54px; }
.sec-eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 12px;
}
.sec-title {
  font-family: var(--ff-d);
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.18;
  text-wrap: balance;
  color: var(--txt);
}
.sec-desc {
  margin-top: 14px;
  font-size: 0.98rem;
  color: var(--txt-2);
  max-width: 520px;
  line-height: 1.72;
}

/* ── SERVICES GRID ──────────────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--bdr);
  border: 1px solid var(--bdr);
  border-radius: 6px;
  overflow: hidden;
}
.svc-card { background: var(--surf); padding: 34px 28px; }
.svc-icon {
  width: 42px;
  height: 42px;
  background: var(--acc-sub);
  border-radius: 7px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--acc);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svc-name {
  font-family: var(--ff-d);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: 10px;
  line-height: 1.2;
}
.svc-desc { font-size: 0.875rem; color: var(--txt-2); line-height: 1.68; }

/* ── HOW IT WORKS ───────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
.step-n {
  font-family: var(--ff-d);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--bdr);
  line-height: 1;
  margin-bottom: 18px;
}
.step-title {
  font-family: var(--ff-d);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: 10px;
}
.step-desc { font-size: 0.875rem; color: var(--txt-2); line-height: 1.68; }

/* ── PRICING ─────────────────────────────────────────── */
.pricing-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.pricing-table th {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--txt-m);
  font-weight: 500;
  text-align: left;
  padding: 0 16px 14px 0;
  border-bottom: 1px solid var(--bdr);
}
.pricing-table th.num { text-align: right; }
.pricing-table td {
  padding: 18px 16px 18px 0;
  border-bottom: 1px solid var(--div);
  vertical-align: top;
  color: var(--txt-2);
}
.pricing-table td.svc-col {
  color: var(--txt);
  font-weight: 500;
}
.pricing-table td.num {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  font-family: var(--ff-d);
  font-size: 1.05rem;
  color: var(--txt);
}
.pricing-table td.note {
  font-size: 0.8rem;
  color: var(--txt-m);
  line-height: 1.5;
  max-width: 300px;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table .total-row td {
  border-top: 2px solid var(--bdr);
  border-bottom: none;
  padding-top: 20px;
  font-weight: 600;
  color: var(--txt);
  font-size: 1rem;
}
.pricing-table .total-row td.num {
  font-size: 1.2rem;
  color: var(--acc);
}
.pricing-note {
  font-size: 0.8rem;
  color: var(--txt-m);
  margin-top: 14px;
  line-height: 1.6;
}

.bundle-card {
  background: var(--pri);
  border-radius: 6px;
  padding: 36px 32px;
  min-width: 240px;
  text-align: center;
  flex-shrink: 0;
}
.bundle-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--pri-fg) 55%, transparent);
  margin-bottom: 20px;
  display: block;
}
.bundle-price {
  font-family: var(--ff-d);
  font-size: 3rem;
  font-weight: 600;
  color: var(--pri-fg);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.bundle-unit {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--pri-fg) 55%, transparent);
  margin-bottom: 6px;
}
.bundle-setup {
  font-size: 0.82rem;
  color: color-mix(in srgb, var(--pri-fg) 50%, transparent);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.bundle-includes {
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--pri-fg) 60%, transparent);
  line-height: 1.7;
  margin-bottom: 28px;
}
.bundle-cta {
  display: block;
  background: var(--acc);
  color: var(--acc-fg);
  padding: 12px;
  border-radius: 3px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s;
}
.bundle-cta:hover { background: var(--acc-h); }

/* ── FINAL CTA ────────────────────────────────────────── */
.cta-sec {
  background: var(--pri);
  padding: 96px 6%;
  text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-title {
  font-family: var(--ff-d);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  font-style: italic;
  color: var(--pri-fg);
  text-wrap: balance;
  margin-bottom: 18px;
}
.cta-sub {
  font-size: 1rem;
  color: color-mix(in srgb, var(--pri-fg) 62%, transparent);
  margin-bottom: 38px;
  line-height: 1.7;
  font-weight: 300;
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--pri-dk);
  padding: 36px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.foot-logo {
  font-family: var(--ff-d);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--pri-fg);
  opacity: 0.7;
}
.foot-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.foot-links a {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--pri-fg) 45%, transparent);
  transition: color 0.2s;
}
.foot-links a:hover { color: color-mix(in srgb, var(--pri-fg) 75%, transparent); }
.foot-copy {
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--pri-fg) 35%, transparent);
  width: 100%;
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 960px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .pricing-wrap { grid-template-columns: 1fr; }
  .bundle-card { min-width: unset; }
}
@media (max-width: 640px) {
  .svc-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .trust-stats { gap: 24px; }
  .pricing-table td.note { display: none; }
}
