/* JBP Bathrooms LP — base + tokens */

:root {
  /* Brand palette — print supplied: navy / yellow / blue / red / white */
  --cream: #FFFFFF;
  --cream-soft: #F7F4EC;
  --cream-pattern: rgba(10, 27, 46, 0.045);
  --paper: #FFFFFF;
  --ink: #0A1B2E;
  --ink-soft: #2C3A52;
  --muted: #6B7588;
  --hair: rgba(10, 27, 46, 0.10);
  --hair-strong: rgba(10, 27, 46, 0.18);
  --gold: #FFC776;
  --gold-deep: #D9A04A;
  --gold-soft: #FFE3B8;
  --brand-blue: #084994;
  --brand-red: #CA1512;
  --tile: #F1ECDF;

  /* CTA — driven from JS so the shadow always matches the button color */
  --cta: #CA1512;
  --cta-hover: #A11210;
  --cta-soft: #F8D5D2;
  --cta-shadow: 202,21,18;     /* rgb triplet of --cta, for rgba shadows */

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-card: 0 1px 0 rgba(255,255,255,0.7) inset, 0 1px 2px rgba(10,27,46,0.05), 0 8px 24px rgba(10,27,46,0.08);
  --shadow-card-hover: 0 1px 0 rgba(255,255,255,0.8) inset, 0 18px 40px rgba(10,27,46,0.14);
  --shadow-soft: 0 1px 2px rgba(10,27,46,0.06), 0 12px 28px rgba(10,27,46,0.10);

  --font-display: "IvyPresto Display", "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-script: "Playfair Display", Georgia, serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Density modes */
[data-density="cozy"]     { --sec-y: 96px; --gap: 24px; }
[data-density="regular"]  { --sec-y: 80px; --gap: 20px; }
[data-density="compact"]  { --sec-y: 56px; --gap: 16px; }

@media (max-width: 760px) {
  [data-density="cozy"]    { --sec-y: 64px; }
  [data-density="regular"] { --sec-y: 52px; }
  [data-density="compact"] { --sec-y: 40px; }
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

::selection { background: var(--gold); color: var(--ink); }

/* Page wrap */
.page {
  min-height: 100vh;
  position: relative;
  overflow-x: clip;
  background:
    radial-gradient(1200px 600px at 50% -200px, rgba(255,199,118,0.18), transparent 60%),
    var(--cream);
}

/* Faint repeating bathroom-line motif. SVG: bathtub, faucet, tile fragment */
.page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180' fill='none'><g stroke='%230A1B2E' stroke-width='1' stroke-linecap='round' opacity='0.30'><rect x='18' y='42' width='52' height='26' rx='13'/><line x1='28' y1='68' x2='28' y2='74'/><line x1='60' y1='68' x2='60' y2='74'/><line x1='44' y1='38' x2='44' y2='30'/><circle cx='44' cy='28' r='3'/><path d='M110 40 L150 40 L150 80 L110 80 Z'/><path d='M110 50 L150 50 M110 60 L150 60 M110 70 L150 70'/><path d='M130 40 L130 80'/><path d='M40 116 Q60 100 80 116 Q60 132 40 116'/><circle cx='130' cy='130' r='14'/><circle cx='130' cy='130' r='6'/></g></svg>");
  background-size: 220px 220px;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
}

.page > * { position: relative; z-index: 1; }

/* ────────── Typography ────────── */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
  line-height: 1.05;
}

h1 { font-size: clamp(40px, 5.6vw, 72px); line-height: 1.0; font-weight: 600; }
h2 { font-size: clamp(32px, 4.2vw, 52px); line-height: 1.05; font-weight: 600; }
h3 { font-size: clamp(20px, 1.6vw, 24px); line-height: 1.2; font-family: var(--font-sans); font-weight: 700; letter-spacing: -0.005em; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  white-space: nowrap;
}

.lede {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 62ch;
}

.mono { font-family: ui-monospace, "JetBrains Mono", monospace; letter-spacing: -0.01em; }

/* ────────── Layout ────────── */

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 900px) { .wrap { padding: 0 40px; } }

section.section {
  padding: var(--sec-y) 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
  max-width: 720px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  align-items: center;
}

/* ────────── Buttons ────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.005em;
  border: 0;
  cursor: pointer;
  padding: 16px 24px;
  border-radius: 999px;
  transition: transform 0.15s var(--ease), box-shadow 0.2s var(--ease), background 0.15s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--cta);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.22) inset,
    0 8px 22px rgba(var(--cta-shadow), 0.40),
    0 1px 0 rgba(0,0,0,0.06);
  position: relative;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 2px solid var(--cta);
  opacity: 0;
  animation: ctaPulse 2.4s var(--ease) infinite;
  pointer-events: none;
}
@keyframes ctaPulse {
  0%   { transform: scale(1);    opacity: 0.55; }
  70%  { transform: scale(1.12); opacity: 0; }
  100% { transform: scale(1.12); opacity: 0; }
}
.btn-primary:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.25) inset,
    0 14px 32px rgba(var(--cta-shadow), 0.55);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary.no-pulse::before { display: none; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--hair-strong);
}
.btn-ghost:hover { background: rgba(21,32,58,0.05); }

.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover { background: #051324; transform: translateY(-1px); }

.btn-lg { padding: 20px 32px; font-size: 17px; }
.btn-sm { padding: 11px 18px; font-size: 14px; }

.btn .arrow { transition: transform 0.2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ────────── Header ────────── */

.hdr {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--hair);
}
.hdr-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hdr-logo { display: flex; align-items: center; gap: 10px; }
.hdr-right { display: flex; align-items: center; gap: 12px; }
.hdr-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
  white-space: nowrap;
}
.hdr-phone .num { font-variant-numeric: tabular-nums; }
@media (max-width: 980px) {
  .hdr-phone .lbl { display: none; }
}
@media (max-width: 640px) {
  .hdr-phone { display: none; }
  .hdr-inner { height: 64px; }
}

/* Brand logo — real PNG */
.logo {
  display: inline-flex;
  align-items: center;
}
.logo img {
  display: block;
  width: auto;
  height: 36px;
}
.hdr .logo img { height: 38px; }
.ftr .logo img { height: 32px; opacity: 0.95; }
@media (max-width: 640px) {
  .hdr .logo img { height: 30px; }
}

/* ────────── Hero ────────── */

.hero {
  padding: 56px 0 80px;
  position: relative;
}
@media (max-width: 760px) {
  .hero { padding: 32px 0 56px; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 40px; }
}
@media (min-width: 1100px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 56px; }
}

.hero-h1 .price-row {
  background: linear-gradient(180deg, transparent 58%, rgba(255,199,118,0.65) 58%, rgba(255,199,118,0.65) 92%, transparent 92%);
  padding: 0 6px 0 4px;
  white-space: nowrap;
  display: inline-block;
}
.hero-h1 .star {
  font-size: 0.42em;
  vertical-align: 0.65em;
  color: var(--gold-deep);
  font-style: normal;
  margin: 0 1px;
}
.hero-h1-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.1;
  color: var(--ink);
  margin-top: 8px;
  letter-spacing: -0.01em;
}
.hero-h1-sub em {
  font-style: italic;
  position: relative;
}
.hero-h1-sub em::after {
  content: "";
  position: absolute;
  left: 0; right: 14%;
  bottom: -6px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--ink);
}

.hero-sub {
  margin: 28px 0 0;
  color: var(--ink-soft);
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-fineprint {
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--muted);
  max-width: 44ch;
}

.hero-checks {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 14px;
}
.hero-checks .chk {
  display: inline-flex; gap: 7px; align-items: center;
  font-weight: 600;
}
.hero-checks .chk svg { color: var(--gold-deep); flex-shrink: 0; }

/* Hero visual */
.hero-visual {
  position: relative;
  overflow: visible;
}
.hero-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
}
@media (min-width: 860px) {
  .hero-frame { aspect-ratio: 5 / 6; }
}

.hero-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 14px 8px 10px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-card);
  z-index: 4;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 999px; background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.22);
}

.hero-pricepill {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 16px;
  padding: 14px 18px;
  font-weight: 700;
  font-size: 15px;
  z-index: 4;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 4px;
}
.hero-pricepill .big {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--gold);
  font-weight: 400;
}
.hero-pricepill .sm {
  font-size: 12px;
  color: rgba(244, 235, 214, 0.78);
  font-weight: 500;
}

/* Before/after slider */
.ba {
  position: relative;
  width: 100%;
  height: 100%;
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
}
.ba .pane {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.ba .pane-after { clip-path: inset(0 0 0 var(--split, 50%)); }
.ba .handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--split, 50%);
  width: 4px;
  background: rgba(255,255,255,0.95);
  transform: translateX(-2px);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1), 0 4px 14px rgba(0,0,0,0.25);
  z-index: 3;
}
.ba .knob {
  position: absolute;
  top: 50%;
  left: var(--split, 50%);
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--paper);
  border: 1.5px solid var(--hair);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  z-index: 4;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.ba .label {
  position: absolute;
  bottom: 14px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(21, 32, 58, 0.78);
  color: var(--cream);
  backdrop-filter: blur(6px);
}
.ba .label.before { left: 14px; }
.ba .label.after  { right: 14px; background: var(--gold); color: var(--ink); }

/* Hero visual — side-by-side variant */
.hero-sidebyside {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
  height: 100%;
}
.hero-sidebyside .col {
  position: relative;
  background-size: cover;
  background-position: center;
}

/* Placeholder image styling (used inside BA slider too) */
.ph-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ────────── Trust bar ────────── */

.trust {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  padding: 28px 0;
  margin-top: 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (min-width: 760px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}
.trust-item {
  display: flex;
  gap: 14px;
  align-items: center;
}
.trust-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(244,235,214,0.06);
  border: 1px solid rgba(244,235,214,0.10);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.trust-num {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.trust-lbl {
  font-size: 13px;
  color: rgba(244, 235, 214, 0.72);
  font-weight: 500;
  margin-top: 4px;
}

/* ────────── Gallery ────────── */

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 18px;
}
@media (min-width: 720px) { .gallery-strip { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .gallery-strip { grid-template-columns: repeat(3, 1fr); } }

.gcard {
  background: var(--paper);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.gcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }

.gcard .ba-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
}
.gcard .meta {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gcard .city {
  font-weight: 700;
  font-size: 15px;
}
.gcard .detail {
  font-size: 13px;
  color: var(--muted);
}

/* mobile carousel */
.gallery-rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 24px 18px;
  margin: 0 -24px;
  scrollbar-width: none;
}
.gallery-rail::-webkit-scrollbar { display: none; }
.gallery-rail > .gcard {
  flex: 0 0 80%;
  scroll-snap-align: start;
}
@media (min-width: 760px) {
  .gallery-rail { padding-left: 0; padding-right: 0; margin: 0; }
  .gallery-rail > .gcard { flex: 0 0 calc((100% - 32px) / 3); }
}

/* ────────── Why us ────────── */

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 720px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

.why-card {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 240px;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.why-card h3 { margin-top: 8px; }
.why-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}
.why-card .badge {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--gold);
  padding: 4px 8px;
  border-radius: 999px;
}

/* ────────── How it works ────────── */

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  position: relative;
}
@media (min-width: 880px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}

.step {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 0.9;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.step h3 { font-size: 22px; }
.step p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}

/* connecting line */
.steps::before {
  display: none;
}
@media (min-width: 880px) {
  .steps::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--hair-strong) 0 6px, transparent 6px 12px);
    z-index: 0;
  }
}

/* ────────── Materials ────────── */

.materials {
  background: linear-gradient(180deg, var(--cream-soft), var(--cream));
  padding-top: calc(var(--sec-y) + 8px);
  padding-bottom: calc(var(--sec-y) + 8px);
}

.materials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
@media (min-width: 880px) {
  .materials-grid { grid-template-columns: 0.9fr 1.1fr; gap: 56px; }
}

.materials-features { display: flex; flex-direction: column; gap: 22px; }
.mat-feat {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--hair-strong);
}
.mat-feat:last-child { border-bottom: 0; padding-bottom: 0; }
.mat-feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.mat-feat h3 { font-size: 18px; margin-bottom: 4px; }
.mat-feat p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }

.materials-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: linear-gradient(135deg, var(--cream-soft), #E8DFC9);
  box-shadow: var(--shadow-soft);
}
.materials-visual .tag {
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--paper);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-card);
}

/* ────────── Reviews ────────── */

.reviews-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.gscore {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-card);
}
.gscore-logo {
  width: 36px; height: 36px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  background: var(--paper);
  border: 1px solid var(--hair);
  font-family: var(--font-display);
  font-weight: 400;
}
.gscore-meta { display: flex; flex-direction: column; gap: 2px; }
.gscore-stars { display: flex; gap: 2px; color: var(--gold); }
.gscore-meta .lbl { font-size: 12.5px; color: var(--muted); font-weight: 500; }
.gscore-meta .num { font-weight: 700; font-size: 14px; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 760px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .reviews-grid { grid-template-columns: repeat(4, 1fr); } }

.review {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-stars { display: flex; gap: 2px; color: var(--gold); }
.review-body {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.55;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  margin: 0;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--hair);
}
.review-avatar {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.review-name { font-weight: 700; font-size: 14px; }
.review-loc { font-size: 12.5px; color: var(--muted); }

/* ────────── Team ────────── */

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 760px) { .team-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }

.team-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  align-items: center;
}
.team-photo {
  width: 96px; height: 96px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--ink);
}
.team-name { font-weight: 700; font-size: 18px; }
.team-role { font-size: 13px; color: var(--gold-deep); font-weight: 600; letter-spacing: 0.04em; margin-bottom: 8px; text-transform: uppercase; }
.team-bio { font-size: 14px; color: var(--ink-soft); margin: 0; line-height: 1.55; }

/* ────────── Form section ────────── */

.form-sec {
  background: var(--ink);
  color: var(--cream);
  position: relative;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 880px) { .form-grid { grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: flex-start; } }

.form-sec h2 { color: var(--cream); }
.form-sec .lede { color: rgba(244,235,214,0.78); }
.form-sec .eyebrow { color: var(--gold); }
.form-perks { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.form-perk { display: flex; gap: 12px; align-items: flex-start; }
.form-perk-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.form-perk-text { font-size: 15px; color: var(--cream); }
.form-perk-text strong { display: block; margin-bottom: 2px; }
.form-perk-text span { color: rgba(244,235,214,0.7); font-size: 13.5px; }

.form-shell {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  color: var(--ink);
}
.form-shell h3 { margin-bottom: 6px; }
.form-shell .sub {
  font-size: 14px; color: var(--muted); margin-bottom: 12px;
}
.form-iframe-wrap {
  position: relative;
  background: var(--cream-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 720px;
}
.form-iframe-wrap iframe {
  display: block;
  width: 100%;
  min-height: 720px;
  border: 0;
}

/* Quote card (modal trigger, replaces embedded iframe in section) */
.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote-steps {
  list-style: none;
  margin: 18px 0 4px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quote-steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.quote-steps .qn {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: var(--cta-soft);
  color: var(--cta-hover);
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 14px;
}
.quote-card-cta { margin-top: 26px; }
.quote-card-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
}
.btn-full { width: 100%; justify-content: center; }

/* ────────── Final CTA ────────── */

.final {
  position: relative;
  padding: var(--sec-y) 0;
  background:
    radial-gradient(700px 320px at 20% 20%, rgba(233,181,60,0.30), transparent 65%),
    radial-gradient(700px 320px at 80% 80%, rgba(233,181,60,0.20), transparent 65%),
    var(--cream);
  text-align: center;
}

.final h2 {
  font-size: clamp(34px, 5vw, 60px);
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.final .lede { margin: 18px auto 28px; }
.final-cta-row { display: flex; flex-direction: column; gap: 14px; align-items: center; }
@media (min-width: 540px) { .final-cta-row { flex-direction: row; justify-content: center; } }
.final .fineprint { margin-top: 22px; font-size: 12.5px; color: var(--muted); }

/* ────────── Footer (minimal horizontal bar) ────────── */

.ftr {
  background: var(--ink);
  color: rgba(244,235,214,0.72);
  padding: 22px 0;
}
.ftr-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 28px;
  font-size: 13px;
}
.ftr-left {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--cream);
  flex-wrap: wrap;
}
.ftr-left .copy {
  color: rgba(244,235,214,0.6);
  font-size: 12.5px;
}
.ftr-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ftr-badges .badge {
  border: 1px solid rgba(244,235,214,0.20);
  border-radius: 999px;
  padding: 5px 11px;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: rgba(244,235,214,0.85);
  white-space: nowrap;
}

/* ────────── Sticky mobile bar ────────── */

.mob-cta {
  position: fixed;
  left: 12px; right: 12px;
  bottom: 12px;
  z-index: 40;
  display: none;
  padding: 10px 12px 10px 16px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.mob-cta .l {
  display: flex; flex-direction: column; line-height: 1.15;
}
.mob-cta .l .a { font-weight: 700; font-size: 14px; }
.mob-cta .l .b { font-size: 12px; color: rgba(244,235,214,0.7); }
.mob-cta .btn { padding: 10px 16px; font-size: 14px; }
@media (max-width: 760px) {
  .mob-cta { display: flex; }
  body { padding-bottom: 80px; }
}

/* ────────── Modal ────────── */

.modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(10, 16, 32, 0.62);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px;
  overflow-y: auto;
  animation: modalIn 0.25s var(--ease);
}
@keyframes modalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal {
  width: 100%;
  max-width: 720px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  animation: modalPop 0.3s var(--ease);
}
@keyframes modalPop {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--hair);
}
.modal-head .t { font-family: var(--font-display); font-size: 22px; }
.modal-head .x {
  background: rgba(21,32,58,0.06);
  border: 0;
  width: 36px; height: 36px;
  border-radius: 999px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.modal-head .x:hover { background: rgba(21,32,58,0.12); }
.modal-iframe { min-height: 720px; background: var(--cream-soft); }
.modal-iframe iframe { display: block; width: 100%; min-height: 720px; border: 0; }

/* ────────── FAQ ────────── */

.faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--paper);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.faq-q {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.faq-q .chev {
  transition: transform 0.2s var(--ease);
  color: var(--gold-deep);
}
.faq-item[data-open="1"] .faq-q .chev { transform: rotate(45deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s var(--ease);
}
.faq-item[data-open="1"] .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p {
  margin: 0;
  padding: 0 22px 22px;
  font-size: 14.5px;
  color: var(--ink-soft);
}

/* ────────── Showcase strip (full-bleed photo) ────────── */
.showcase {
  position: relative;
  padding: 96px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--cream);
  overflow: hidden;
}
@media (max-width: 760px) { .showcase { padding: 64px 0; } }
.showcase-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg, rgba(10,27,46,0.92) 0%, rgba(10,27,46,0.72) 45%, rgba(10,27,46,0.40) 100%);
  z-index: 1;
}
.showcase-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 720px;
}
.showcase-cta { margin-top: 14px; }

/* ────────── Reveal animation (progressive enhancement — content visible by default) ────────── */

.reveal { /* visible by default; JS will opt-in to fade-up entrance via .reveal-anim */ }
.reveal-anim {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal-anim.in {
  opacity: 1;
  transform: none;
}

/* ────────── Helpers ────────── */

.row { display: flex; align-items: center; gap: 12px; }
.muted { color: var(--muted); }
.center { text-align: center; }

/* prevent layout shift from scrollbar when modal opens */
html.no-scroll { overflow: hidden; }

/* ────────── Conversion enhancers ────────── */

/* Urgency strip — sits between header and hero */
.urgency-strip {
  background: var(--ink);
  color: var(--cream);
  padding: 9px 0;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.urgency-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(var(--cta-shadow), 0.30), transparent);
  animation: stripShine 4.5s linear infinite;
  pointer-events: none;
}
@keyframes stripShine {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}
.urgency-strip .pulse-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--cta);
  box-shadow: 0 0 0 0 rgba(var(--cta-shadow), 0.7);
  animation: dotPulse 1.6s ease-out infinite;
}
@keyframes dotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(var(--cta-shadow), 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(var(--cta-shadow), 0); }
  100% { box-shadow: 0 0 0 0 rgba(var(--cta-shadow), 0); }
}
.urgency-strip .seg {
  display: inline-flex; align-items: center; gap: 8px;
  position: relative; z-index: 1;
  white-space: nowrap;
}
.urgency-strip .sep {
  width: 4px; height: 4px; border-radius: 999px;
  background: rgba(244,235,214,0.4);
}
@media (max-width: 980px) {
  .urgency-strip { font-size: 12px; gap: 10px; padding: 8px 12px; }
  .urgency-strip .sep, .urgency-strip .hide-sm { display: none; }
}

/* Save $1,500 sticker — rotated callout on hero */
.save-sticker {
  position: absolute;
  top: -20px;
  right: -18px;
  z-index: 5;
  background: var(--cta);
  color: #fff;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  transform: rotate(8deg);
  box-shadow: 0 12px 30px rgba(255,90,31,0.45), 0 0 0 6px rgba(255,255,255,0.95);
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: 0.04em;
  animation: stickerWobble 4s var(--ease) infinite;
}
.save-sticker .big {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 4px 0 0;
}
.save-sticker .lo {
  font-size: 9.5px;
  opacity: 0.92;
  margin-top: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@keyframes stickerWobble {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50%      { transform: rotate(8deg) translateY(-4px); }
}
@media (max-width: 760px) {
  .save-sticker { width: 92px; height: 92px; top: -14px; right: -10px; }
  .save-sticker .big { font-size: 22px; }
}

/* Press / media row */
.press {
  padding: 32px 0;
  border-top: 1px dashed var(--hair-strong);
  border-bottom: 1px dashed var(--hair-strong);
  background: var(--cream-soft);
}
.press-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px 48px;
  flex-wrap: wrap;
  color: var(--ink);
  opacity: 0.72;
}
.press-lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}
.press-logo {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  opacity: 0.78;
  white-space: nowrap;
}
.press-logo.sans {
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 13px;
}
.press-logo.italic { font-style: italic; }
@media (max-width: 720px) {
  .press-inner { gap: 18px 28px; }
  .press-logo { font-size: 18px; }
}

/* Live activity ticker (above form) */
.activity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(34, 197, 94, 0.10);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #15803d;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.activity .live-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.7);
  animation: dotPulseGreen 1.8s ease-out infinite;
}
@keyframes dotPulseGreen {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* Hero offer card — replaces simple pricepill with richer card */
.offer-card {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: var(--paper);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 18px 40px rgba(21,32,58,0.22), 0 0 0 1px rgba(21,32,58,0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 4;
}
.offer-card .a {
  display: flex; flex-direction: column; line-height: 1.1;
}
.offer-card .lbl {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.offer-card .price {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  color: var(--ink);
  margin-top: 4px;
}
.offer-card .price small { font-size: 14px; color: var(--ink-soft); }
.offer-card .b {
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
}
.offer-card .alt {
  background: var(--ink);
  color: var(--gold);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
}
.offer-card .terms {
  font-size: 10.5px;
  color: var(--muted);
  text-align: right;
}

/* Big floating "$1,500" / urgency ribbon for sections */

/* Stats strip — animated count look (between sections) */
.stats-strip {
  background: var(--ink);
  color: var(--cream);
  padding: 38px 0;
  border-radius: 22px;
}
.stats-strip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (min-width: 760px) { .stats-strip-grid { grid-template-columns: repeat(4, 1fr); } }
.stat {
  text-align: center;
  position: relative;
}
.stat + .stat::before {
  content: "";
  display: none;
}
@media (min-width: 760px) {
  .stat + .stat::before {
    display: block;
    position: absolute;
    left: 0; top: 12px; bottom: 12px;
    width: 1px;
    background: rgba(244,235,214,0.15);
  }
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  color: var(--gold);
  line-height: 1;
}
.stat .lbl {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(244,235,214,0.72);
}

/* Floating "Save $1,500" anchor sticker on left rail (desktop) */
.rail-cta {
  position: fixed;
  left: 18px;
  bottom: 24px;
  z-index: 40;
  display: none;
  background: var(--ink);
  color: var(--cream);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.32);
  gap: 12px;
  align-items: center;
  max-width: 280px;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.rail-cta.in {
  opacity: 1;
  transform: none;
}
.rail-cta .info { line-height: 1.2; flex: 1; }
.rail-cta .info .b { font-weight: 700; font-size: 14px; color: var(--cream); }
.rail-cta .info .s { font-size: 12px; color: rgba(244,235,214,0.7); }
@media (min-width: 980px) {
  .rail-cta { display: flex; }
}

/* Why-card icon update to use CTA color */
.why-card .why-icon {
  background: linear-gradient(135deg, rgba(var(--cta-shadow), 0.14), rgba(var(--cta-shadow), 0.28));
  color: var(--cta-hover);
}

/* ────────── Mobile-preview wrapper ────────── */

body.mobile-preview {
  background: #0A1B2E;
  min-height: 100vh;
  overflow-x: hidden;
}
body.mobile-preview > .mobile-shell {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 32px 16px;
  min-height: 100vh;
}
body.mobile-preview .page::before { background-size: 160px 160px; }
.mobile-shell-inner {
  width: 402px;
  max-width: calc(100vw - 32px);
  height: calc(100vh - 64px);
  min-height: 700px;
  max-height: 880px;
  border-radius: 48px;
  overflow: hidden;
  position: relative;
  background: var(--cream);
  box-shadow:
    0 0 0 8px #0a0a0a,
    0 0 0 10px #2a2a2a,
    0 40px 80px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(255,255,255,0.06);
}
.mobile-shell-inner > .page {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
/* In mobile preview, force mobile-style layout regardless of viewport */
body.mobile-preview .hero-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
body.mobile-preview .hero-frame { aspect-ratio: 4 / 5 !important; }
body.mobile-preview .gallery-strip { grid-template-columns: 1fr !important; }
body.mobile-preview .why-grid { grid-template-columns: 1fr !important; }
body.mobile-preview .trust-grid { grid-template-columns: 1fr 1fr !important; }
body.mobile-preview .steps { grid-template-columns: 1fr !important; }
body.mobile-preview .reviews-grid { grid-template-columns: 1fr !important; }
body.mobile-preview .form-grid { grid-template-columns: 1fr !important; }
body.mobile-preview .materials-grid { grid-template-columns: 1fr !important; }
body.mobile-preview .team-grid { grid-template-columns: 1fr !important; }
body.mobile-preview .hdr-phone { display: none !important; }
body.mobile-preview .save-sticker { width: 88px !important; height: 88px !important; top: -10px !important; right: -6px !important; }
body.mobile-preview .save-sticker .big { font-size: 22px !important; }
body.mobile-preview .urgency-strip { font-size: 12px !important; gap: 8px !important; }
body.mobile-preview .urgency-strip .sep, body.mobile-preview .urgency-strip .hide-sm { display: none !important; }
body.mobile-preview .mob-cta {
  display: flex !important;
  position: sticky;
  bottom: 12px;
  margin: 0 12px;
  left: auto;
  right: auto;
  width: auto;
}
body.mobile-preview .page {
  padding-bottom: 0;
}
body.mobile-preview .rail-cta { display: none !important; }
body.mobile-preview .twk-panel { transform: scale(1) !important; }
