:root {
  --ink:     #0a0a0a;
  --marble:  #f5f2ee;
  --warm:    #ede8e0;
  --copper:  #b87333;
  --cop-lt:  #d4945a;
  --fog:     #8a8680;
  --white:   #ffffff;
  --teal:    #1d7a6e;
  --red:     #c0392b;
  --border:  #ddd7cc;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--marble);
  color: var(--ink);
  overflow-x: hidden;
}

/* ─── ANNOUNCEMENT ──────────────────────── */
.ann {
  background: var(--ink);
  text-align: center;
  padding: 11px 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}
.ann b { color: var(--cop-lt); }

/* ─── NAV ───────────────────────────────── */
nav {
  position: fixed;
  top: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  align-items: center;
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 50px;
  padding: 8px 8px 8px 26px;
  gap: 4px;
  white-space: nowrap;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-right: 28px;
}
.nav-logo em { color: var(--cop-lt); font-style: italic; }
nav a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 13px;
  padding: 6px 15px;
  border-radius: 30px;
  transition: color .2s, background .2s;
}
nav a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-btn {
  background: var(--copper) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
}
.nav-btn:hover { background: var(--cop-lt) !important; }

/* ─── HERO ──────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  overflow: hidden;
}

.hero-left {
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 64px 80px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  opacity: 0;
  animation: up .7s .1s ease forwards;
}
.eyebrow-line { width: 32px; height: 1px; background: var(--copper); }
.eyebrow span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cop-lt);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4.8vw, 4.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: up .7s .2s ease forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--cop-lt);
}

.hero-sub {
  font-size: .97rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
  max-width: 380px;
  margin-bottom: 40px;
  opacity: 0;
  animation: up .7s .3s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: up .7s .4s ease forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .2s;
  letter-spacing: .02em;
}
.btn-fill {
  background: var(--copper);
  color: #fff;
  box-shadow: 0 6px 24px rgba(184,115,51,.3);
}
.btn-fill:hover { background: var(--cop-lt); transform: translateY(-2px); }
.btn-line {
  background: transparent;
  color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.15);
}
.btn-line:hover { color: #fff; border-color: rgba(255,255,255,.35); }

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.08);
  opacity: 0;
  animation: up .7s .5s ease forwards;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--cop-lt);
  line-height: 1;
}
.stat-lbl {
  font-size: 11.5px;
  font-weight: 300;
  color: rgba(255,255,255,.4);
  margin-top: 4px;
  letter-spacing: .05em;
}

/* hero image side */
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  animation: zoomOut 1.4s ease both;
}
@keyframes zoomOut {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
.hero-fade {
  position: absolute; inset: 0;
  background: linear-gradient(270deg, transparent 55%, var(--ink) 100%);
}
.hero-badge {
  position: absolute;
  bottom: 32px; right: 32px;
  background: rgba(255,255,255,.94);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,.18);
  opacity: 0;
  animation: up .7s .7s ease forwards;
}
.badge-icon {
  width: 40px; height: 40px;
  background: var(--teal);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}
.badge-t1 { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.badge-t2 { font-size: 12px; color: var(--fog); margin-top: 2px; font-weight: 300; }

@keyframes up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── TRUST STRIP ───────────────────────── */
.trust-strip {
  background: var(--warm);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  overflow: hidden;
}
.ti {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 18px 28px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  border-right: 1px solid var(--border);
  white-space: nowrap;
  flex-shrink: 0;
}
.ti:last-child { border-right: none; }
.ti .stars { color: #d4920a; }

/* ─── SHARED SECTION STYLES ─────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--copper);
}
h2.heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 16px;
}
.sub-text {
  font-size: .95rem;
  font-weight: 300;
  color: var(--fog);
  line-height: 1.85;
}

/* ─── PROBLEM ───────────────────────────── */
.problem {
  background: var(--ink);
  padding: 100px 80px;
}
.problem-inner {
  max-width: 800px;
  margin: 0 auto;
}
.problem .section-label { color: var(--cop-lt); }
.problem .section-label::before { background: var(--cop-lt); }
.problem h2.heading { color: #fff; }
.problem .sub-text { color: rgba(255,255,255,.45); margin-bottom: 44px; }

.pain-list {
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.07);
  margin-bottom: 0;
}
.pain-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: .97rem;
  font-weight: 300;
  color: rgba(255,255,255,.65);
}
.pain-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(192,57,43,.15);
  border: 1px solid rgba(192,57,43,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.solve-pill {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(29,122,110,.15);
  border: 1px solid rgba(29,122,110,.35);
  color: #5ecfc3;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 13.5px;
  font-weight: 500;
}

/* ─── BENEFITS ──────────────────────────── */
.benefits {
  background: var(--marble);
  padding: 100px 80px;
}
.benefits-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 60px;
}
.benefits-top .sub-text { max-width: 340px; }

.ben-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.ben {
  background: var(--marble);
  padding: 36px 32px;
  transition: background .25s;
}
.ben:hover { background: var(--warm); }
.ben-icon { font-size: 24px; margin-bottom: 14px; display: block; }
.ben-title {
  font-size: .97rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.ben-desc {
  font-size: .875rem;
  font-weight: 300;
  color: var(--fog);
  line-height: 1.7;
}

/* ─── BEFORE / AFTER ────────────────────── */
.ba {
  background: #0d0d0d;
  padding: 100px 80px;
}
.ba-header { margin-bottom: 52px; }
.ba-header .section-label { color: var(--cop-lt); }
.ba-header .section-label::before { background: var(--cop-lt); }
.ba-header .heading { color: #fff; }
.ba-header .sub-text { color: rgba(255,255,255,.4); max-width: 500px; }

/* ── transformation strips ─────────────── */
.ba-strips {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 48px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.7);
}
.ba-strip {
  display: flex;
  height: 260px;
  overflow: hidden;
}
.ba-strip-side {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.ba-strip-side img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .65s ease;
}
.ba-strip:hover .ba-strip-side img { transform: scale(1.06); }

/* desaturate & darken before */
.ba-strip-before img {
  filter: saturate(0.12) brightness(0.65);
}
.ba-strip-before::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: rgba(160, 30, 20, 0.2);
  pointer-events: none;
}
/* subtle teal lift on after */
.ba-strip-after::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(29,122,110,.12) 0%, transparent 55%);
  pointer-events: none;
}

.ba-strip-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(0deg, rgba(0,0,0,.78) 0%, transparent 58%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  gap: 6px;
}
.ba-stag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  width: fit-content;
}
.ba-stag--before { background: rgba(192,57,43,.95); color: #fff; }
.ba-stag--after  { background: rgba(29,122,110,.95); color: #fff; }
.ba-scap {
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
}
.ba-stars { color: #f0b429; margin-right: 4px; }

/* glowing centre divider */
.ba-divider {
  width: 4px;
  flex-shrink: 0;
  background: linear-gradient(180deg, rgba(192,57,43,.7) 0%, rgba(29,122,110,.7) 100%);
  position: relative;
  z-index: 5;
}
.ba-divider-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: #0d0d0d;
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 0 0 5px rgba(0,0,0,.55), 0 0 28px rgba(29,122,110,.45);
  pointer-events: none;
}

.ba-checks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 40px;
}
.ba-check {
  padding: 20px 24px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.6);
  border-right: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ba-check:last-child { border-right: none; }
.ba-check::before { content: '✔'; color: #5ecfc3; font-weight: 700; font-size: 11px; flex-shrink: 0; }

/* clickable strip hint */
.ba-clickable { cursor: pointer; }
.ba-clickable:hover .ba-divider-icon {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 0 0 5px rgba(0,0,0,.55), 0 0 36px rgba(29,122,110,.7);
}

/* ─── LIGHTBOX ──────────────────────────── */
.lb {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lb.lb--open { display: flex; }
.lb-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}
.lb-shell {
  position: relative; z-index: 1;
  background: #111;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  overflow: hidden;
  width: min(88vw, 620px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 40px 100px rgba(0,0,0,.8);
}
.lb-close { display: none; }
.lb-stage {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #000;
}
.lb-stage img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .25s ease;
}
/* bottom gradient overlay */
.lb-stage::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.78) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}
.lb-tag {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 10px; font-weight: 800;
  letter-spacing: .15em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 3px;
  z-index: 2;
}
.lb-tag.is-before { background: rgba(192,57,43,.95); color: #fff; }
.lb-tag.is-after  { background: rgba(29,122,110,.95); color: #fff; }
.lb-cap {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  color: rgba(255,255,255,.9);
  font-size: 13.5px; font-weight: 400;
  line-height: 1.4;
  z-index: 2;
  pointer-events: none;
}
/* image-overlay arrow buttons */
.lb-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.52);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  z-index: 3;
  transition: background .2s, transform .2s, opacity .2s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0;
}
.lb-arrow svg { display: block; flex-shrink: 0; }
.lb-arrow--left  { left: 14px; }
.lb-arrow--right { right: 14px; }
.lb-arrow--left:hover  { background: rgba(192,57,43,.85);  transform: translateY(-50%) scale(1.1); }
.lb-arrow--right:hover { background: rgba(29,122,110,.85); transform: translateY(-50%) scale(1.1); }
.lb-arrow--hidden { opacity: 0; pointer-events: none; }
.lb-footer {
  display: flex;
  justify-content: center;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.lb-dots { display: flex; gap: 8px; align-items: center; }
.lb-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.18);
  transition: background .25s, transform .25s;
}
.lb-dot.lb-dot--active { background: var(--teal); transform: scale(1.4); }

/* ─── ABOUT ──────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.about-img {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about-fade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--marble) 100%);
}
.about-content {
  background: var(--marble);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-content h2.heading { color: var(--ink); }
.about-content .sub-text { margin-bottom: 32px; }

.chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.chip {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--warm);
  border: 1px solid var(--border);
  padding: 11px 15px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 400;
  color: var(--ink);
}
.chip::before { content: '✔'; color: var(--teal); font-size: 11px; font-weight: 700; flex-shrink: 0; }

/* ─── REVIEWS ───────────────────────────── */
.reviews {
  background: var(--warm);
  padding: 100px 80px;
  border-top: 1px solid var(--border);
}
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 16px;
}
.rev-score { font-size: 13px; color: var(--fog); font-weight: 300; }
.rev-score b { color: #d4920a; }

.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rev-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  transition: box-shadow .25s, transform .25s;
}
.rev-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,.08); transform: translateY(-4px); }
.rev-stars { color: #d4920a; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.rev-text {
  font-size: .93rem;
  font-weight: 300;
  color: #555;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}
.rev-author { display: flex; align-items: center; gap: 11px; }
.rev-avatar {
  width: 36px; height: 36px;
  background: var(--warm);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 15px;
  flex-shrink: 0;
  overflow: hidden;
}
.rev-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rev-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.rev-loc  { font-size: 11.5px; color: var(--fog); font-weight: 300; }

/* ─── OFFER STRIP ───────────────────────── */
.offer {
  background: var(--teal);
  padding: 64px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.offer h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 8px;
}
.offer p { font-size: .93rem; color: rgba(255,255,255,.65); font-weight: 300; max-width: 480px; line-height: 1.7; }
.offer-btn {
  flex-shrink: 0;
  background: #fff;
  color: var(--teal);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: background .2s;
  white-space: nowrap;
}
.offer-btn:hover { background: var(--marble); }

/* ─── FORM ──────────────────────────────── */
.form-section {
  background: var(--ink);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}
.form-left .section-label { color: var(--cop-lt); }
.form-left .section-label::before { background: var(--cop-lt); }
.form-left h2.heading { color: #fff; }
.form-left .sub-text { color: rgba(255,255,255,.45); margin-bottom: 40px; }

.f-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.f-feat-icon {
  width: 38px; height: 38px;
  background: rgba(184,115,51,.12);
  border: 1px solid rgba(184,115,51,.25);
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0;
}
.f-feat-t1 { font-size: 13.5px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.f-feat-t2 { font-size: 12.5px; font-weight: 300; color: rgba(255,255,255,.4); }

.form-card {
  background: var(--marble);
  border-radius: 10px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--teal));
}
.form-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
}
.form-card > p { font-size: 13px; color: var(--fog); margin-bottom: 28px; font-weight: 300; }

.fg { margin-bottom: 14px; }
.fg label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
}
.fg input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  font-family: 'Outfit', sans-serif;
  font-size: .93rem;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.fg input:focus { border-color: var(--copper); box-shadow: 0 0 0 3px rgba(184,115,51,.1); }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.submit-btn {
  width: 100%;
  background: var(--copper);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 6px;
  transition: background .2s, transform .15s;
  box-shadow: 0 6px 20px rgba(184,115,51,.3);
}
.submit-btn:hover { background: var(--cop-lt); transform: translateY(-1px); }
.form-note { font-size: 12px; color: var(--fog); text-align: center; margin-top: 12px; font-weight: 300; }

/* ─── PHONE ─────────────────────────────── */
.phone-section {
  background: var(--warm);
  border-top: 1px solid var(--border);
  padding: 60px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.phone-lbl { font-size: 11.5px; text-transform: uppercase; letter-spacing: .12em; font-weight: 600; color: var(--fog); margin-bottom: 6px; }
.phone-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: color .2s;
}
.phone-num:hover { color: var(--copper); }
.phone-hrs { font-size: 13px; color: var(--fog); font-weight: 300; margin-top: 4px; }

/* ─── FOOTER ────────────────────────────── */
footer {
  background: var(--ink);
  padding: 28px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.foot-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: rgba(255,255,255,.4);
}
.foot-brand em { color: var(--cop-lt); font-style: italic; }
.foot-legal { font-size: 12px; color: rgba(255,255,255,.2); font-weight: 300; }
.foot-legal a { color: rgba(255,255,255,.3); text-decoration: none; }

/* ─── STICKY ────────────────────────────── */
.sticky {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: rgba(10,10,10,.9);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 13px 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.sticky-txt { font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,.65); }
.sticky-txt b { color: #fff; font-weight: 600; }
.sticky-phone { font-size: 14px; font-weight: 600; color: var(--cop-lt); text-decoration: none; }

/* ─── SCROLL REVEAL ─────────────────────── */
.r {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.r.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* ─── RESPONSIVE ────────────────────────── */
@media (max-width: 960px) {
  nav { display: none; }
  .hero, .problem, .about, .form-section { grid-template-columns: 1fr; }
  .hero-left { padding: 100px 32px 56px; }
  .hero-right { min-height: 55vw; }
  .hero-fade { background: linear-gradient(0deg, var(--ink) 0%, transparent 50%); }
  .benefits, .ba, .reviews, .form-section, .phone-section, .problem { padding: 72px 32px; }
  .ben-grid { grid-template-columns: 1fr 1fr; }
  .ba { padding: 72px 32px; }
  .ba-strip { height: 220px; }
  .ba-checks { grid-template-columns: 1fr 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
  .offer { padding: 52px 32px; }
  .about-content { padding: 56px 32px; }
  .benefits-top { grid-template-columns: 1fr; gap: 12px; }
  footer { padding: 24px 32px; }
}
@media (max-width: 580px) {
  .ben-grid { grid-template-columns: 1fr; }
  .ba-strip { flex-direction: column; height: auto; }
  .ba-strip-side { height: 200px; }
  .ba-divider { width: 100%; height: 4px; background: linear-gradient(90deg, rgba(192,57,43,.7) 0%, rgba(29,122,110,.7) 100%); }
  .ba-divider-icon { top: 50%; left: 50%; }
  .ba-checks { grid-template-columns: 1fr; }
  .fg-row { grid-template-columns: 1fr; }
  .chips { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .hero-stats {
    display: flex;
    justify-content: space-between;
    gap: 0;
    margin-top: 40px;
    padding-top: 32px;
    width: 100%;
  }
  .hero-stats > div {
    flex: 1;
    text-align: center;
    padding: 0 8px;
    border-right: 1px solid rgba(255,255,255,.08);
  }
  .hero-stats > div:last-child { border-right: none; }
  .trust-strip {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .trust-strip::-webkit-scrollbar { display: none; }
}
