/* ============================================================
   Key Renovations LLC — keyrenovationsok.com
   Clean white base, black feature bands, metallic gold accents,
   3D pill buttons. Dependency-free.
   ============================================================ */

:root {
  --white: #ffffff;
  --paper: #fafafa;
  --ivory: #f6f5f1;
  --ivory-2: #efeeea;
  --bevel: #d9d8d3;
  --black: #0c0c0e;
  --black-soft: #17171b;
  --ink: #17171b;
  --muted: #5a5a64;
  --line: #e4e4e6;

  --gold: #cea957;
  --gold-bright: #d6bd5e;
  --gold-deep: #8c6e1a;
  --gold-grad: linear-gradient(120deg, #d6bd5e 0%, #cea957 45%, #8c6e1a 100%);
  --gold-grad-deep: linear-gradient(120deg, #cea957 0%, #8c6e1a 100%);

  --radius: 22px;
  --radius-sm: 14px;
  /* three shadow tiers: hairline (lists/grids), light (links, photos), deep (hero photo, price card, form) */
  --shadow-sm: 0 1px 2px rgba(12, 12, 14, 0.04), 0 6px 16px rgba(12, 12, 14, 0.06);
  --shadow: 0 8px 24px rgba(12, 12, 14, 0.08);
  --shadow-lg: 0 20px 48px rgba(12, 12, 14, 0.14);
  --focus: 3px solid rgba(206, 169, 87, 0.6);
  --container: 1140px;
  --section-pad: clamp(56px, 7vw, 84px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

[id] { scroll-margin-top: 88px; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1 0 auto; }

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

/* the hidden attribute must win over any display rule on the same element */
[hidden] { display: none !important; }

h1, h2, h3 {
  font-family: "Archivo", "Inter", sans-serif;
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.05; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.5em; }
h3 { font-size: 1.13rem; font-weight: 700; }

a { color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--gold); color: var(--black);
  padding: 10px 18px; font-weight: 600; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* gold hairline used to edge feature sections */
.gold-line { height: 3px; background: var(--gold-grad); }

/* ---------- micro-labels: one recipe for eyebrows, tags, form labels ---------- */

.eyebrow,
.offer-tag,
.contact-label,
.viz-label,
.footer-heading,
.fin-eyebrow,
.wiz-progress-text,
.est-eyebrow,
.wiz-choice-k,
.dz-change {
  font-family: "Archivo", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow { color: var(--gold-deep); margin-bottom: 0.9em; }
.eyebrow-light { color: var(--gold-bright); }

/* ---------- inline text links ---------- */

.hero-chips a,
.faq-item a,
.form-fineprint a,
.band-copy a,
.page-body a:not(.btn) {
  color: var(--gold-deep);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(140, 110, 26, 0.45);
  transition: text-decoration-color 0.15s ease;
}
.hero-chips a:hover,
.faq-item a:hover,
.form-fineprint a:hover,
.band-copy a:hover,
.page-body a:not(.btn):hover { text-decoration-color: currentColor; }

/* ---------- buttons: pills with a hard 3D edge, tight shadow, no glow ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 26px;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(180deg, #e3cd78 0%, #cea957 52%, #b48f2e 100%);
  color: var(--black);
  border-color: #9d7a1e;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -2px 0 rgba(122, 90, 10, 0.3),
    0 3px 0 #8c6e1a,
    0 8px 16px rgba(140, 110, 26, 0.22);
}
.btn-gold:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -2px 0 rgba(122, 90, 10, 0.3),
    0 4px 0 #8c6e1a,
    0 10px 18px rgba(140, 110, 26, 0.24);
}
.btn-gold:active {
  transform: translateY(2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(122, 90, 10, 0.3),
    0 1px 0 #8c6e1a,
    0 3px 8px rgba(140, 110, 26, 0.2);
}

.btn-black {
  background: linear-gradient(180deg, #2c2c33 0%, #131316 100%);
  color: var(--white);
  border-color: #000;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 3px 0 #000,
    0 8px 16px rgba(12, 12, 14, 0.25);
}
.btn-black:hover {
  color: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 4px 0 #000,
    0 10px 18px rgba(12, 12, 14, 0.28);
}
.btn-black:active {
  transform: translateY(2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 1px 0 #000,
    0 3px 8px rgba(12, 12, 14, 0.25);
}

/* light outline button for light backgrounds */
.btn-ghost {
  background: linear-gradient(180deg, #ffffff 0%, var(--ivory-2) 100%);
  color: var(--ink);
  border-color: var(--bevel);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 3px 0 var(--bevel),
    0 8px 16px rgba(12, 12, 14, 0.08);
}
.btn-ghost:hover {
  color: var(--gold-deep);
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 4px 0 var(--bevel),
    0 10px 18px rgba(12, 12, 14, 0.1);
}
.btn-ghost:active {
  transform: translateY(2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 1px 0 var(--bevel),
    0 3px 8px rgba(12, 12, 14, 0.08);
}

.btn-lg { padding: 16px 34px; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* scaled bevel for the header CTA: same 3D edge, lighter weight than page CTAs */
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn-gold.btn-sm {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -2px 0 rgba(122, 90, 10, 0.3),
    0 2px 0 #8c6e1a,
    0 6px 12px rgba(140, 110, 26, 0.18);
}
.btn-gold.btn-sm:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -2px 0 rgba(122, 90, 10, 0.3),
    0 3px 0 #8c6e1a,
    0 8px 14px rgba(140, 110, 26, 0.2);
}
.btn-gold.btn-sm:active {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 1px 0 #8c6e1a,
    0 3px 8px rgba(140, 110, 26, 0.18);
}
.btn-ghost.btn-sm {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 2px 0 var(--bevel),
    0 6px 12px rgba(12, 12, 14, 0.06);
}
.btn-ghost.btn-sm:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 3px 0 var(--bevel),
    0 8px 14px rgba(12, 12, 14, 0.08);
}
.btn-ghost.btn-sm:active {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 1px 0 var(--bevel),
    0 3px 8px rgba(12, 12, 14, 0.06);
}

/* ---------- topbar ---------- */

.topbar {
  background: var(--black);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.83rem;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 24px;
}
.topbar a { color: var(--gold-bright); font-weight: 600; text-decoration: none; }
.topbar a:hover { text-decoration: underline; }

/* ---------- header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(206, 169, 87, 0.45);
  box-shadow: 0 8px 24px rgba(12, 12, 14, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--black);
}
.brand-logo { width: 56px; height: 56px; flex-shrink: 0; }
.site-footer .brand-logo { width: 80px; height: 80px; }
.brand-text { display: grid; gap: 2px; line-height: 1.05; }
.brand-name {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand-name em { font-style: normal; color: var(--gold-deep); }
.brand-tag {
  font-family: "Archivo", sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.brand-light { color: var(--white); }
.brand-light .brand-name em { color: var(--gold-bright); }
.brand-light .brand-tag { color: rgba(255, 255, 255, 0.7); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-menu > a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink);
  white-space: nowrap;
}
.nav-menu > a:not(.btn) { position: relative; transition: color 0.15s ease; }
.nav-menu > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}
.nav-menu > a:hover:not(.btn) { color: var(--gold-deep); }
.nav-menu > a:not(.btn):hover::after { transform: scaleX(1); }
.nav-menu > a.btn { margin-left: 4px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle-bar { position: relative; }
.nav-toggle-bar::before { position: absolute; top: -7px; }
.nav-toggle-bar::after { position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero (light) ---------- */

.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 88% -12%, rgba(206, 169, 87, 0.1), transparent 60%),
    linear-gradient(165deg, #ffffff 0%, var(--ivory) 55%, var(--ivory-2) 100%);
  color: var(--ink);
  overflow: hidden;
}

/* copy + proof list stack in column 1, the photo spans both rows in column 2;
   on phones the photo drops between the buttons and the proof list */
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: auto auto;
  column-gap: clamp(32px, 5vw, 64px);
  row-gap: 0;
  align-items: center;
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(64px, 9vw, 108px);
}
.hero-copy { grid-column: 1; grid-row: 1; align-self: end; }
.hero-media { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
.hero-chips { grid-column: 1; grid-row: 2; align-self: start; }

.hero .accent {
  background: var(--gold-grad-deep);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  font-size: 1.12rem;
  color: var(--muted);
  margin: 22px 0 30px;
  max-width: 54ch;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- check lists (hero proof, glass points, package includes, finance card) ---------- */

.hero-chips,
.feature-points {
  display: grid;
  gap: 8px;
  list-style: none;
  color: var(--muted);
}
.hero-chips { margin-top: 28px; font-size: 0.92rem; }
.hero-chips strong { color: var(--ink); }
.feature-points { margin-top: 22px; font-size: 0.95rem; }
.feature-points strong { color: var(--ink); }

.hero-chips li,
.feature-points li,
.includes li,
.fin-list li {
  position: relative;
  padding-left: 24px;
}
/* one drawn check everywhere (a masked SVG, so the weight never depends on the fallback font) */
.hero-chips li::before,
.feature-points li::before,
.includes li::before,
.fin-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 14px;
  height: 14px;
  color: var(--gold-deep);
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m4 12.5 5 5L20 6.5' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m4 12.5 5 5L20 6.5' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.hero-media { position: relative; }
.hero-media .photo-main {
  border-radius: var(--radius);
  border: 3px solid transparent;
  background: var(--gold-grad) border-box;
  box-shadow: var(--shadow-lg);
}
.hero-media .photo-main img {
  border-radius: calc(var(--radius) - 3px);
  width: 100%;
  height: auto;
  object-fit: cover;
}
.hero-media .photo-inset {
  position: absolute;
  left: -24px;
  bottom: -22px;
  width: 40%;
  border: 3px solid var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-media .photo-inset img { width: 100%; height: auto; }

/* ---------- trust strip ---------- */

.trust-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(5, auto);
  justify-content: space-between;
  align-items: center;
  gap: 14px 20px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.84rem;
  white-space: nowrap;
}
.trust-item svg {
  width: 30px;
  height: 30px;
  padding: 6px;
  border-radius: 50%;
  background: #f8f3e6;
  background: color-mix(in srgb, var(--gold) 14%, #fff);
  color: var(--gold-deep);
  flex-shrink: 0;
}
/* the dealer status is a real credential: give it a badge */
.trust-item--badge { border: 1px solid var(--gold); border-radius: 999px; padding: 4px 14px 4px 5px; }

/* ---------- sections ---------- */

.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--paper); border-block: 1px solid var(--line); }
.section-intro { color: var(--muted); max-width: 62ch; }

.grid { display: grid; gap: 22px; margin-top: 34px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
/* hover motion is reserved for real targets */
a.card,
.flyer-link { transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
a.card:hover,
.flyer-link:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: rgba(206, 169, 87, 0.5); }

/* ---------- signature package ---------- */

.package-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 4vw, 52px);
  margin-top: 36px;
  align-items: center;
}

.price-card {
  background: linear-gradient(170deg, #1d1d22 0%, var(--black) 60%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 34px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--gold-grad);
}
.offer-tag {
  display: inline-block;
  color: var(--black);
  background: var(--gold-grad);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 2px 6px rgba(206, 169, 87, 0.4);
}
/* price hierarchy: small lead-in, one big number, quiet qualifier */
.price-row { display: grid; gap: 4px; }
.price-pre {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.price-now {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-now small { font-size: 0.45em; font-weight: 700; }
.price-sub { color: rgba(255, 255, 255, 0.65); font-size: 0.98rem; }

.includes {
  list-style: none;
  margin: 22px 0 8px;
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.97rem;
}
.includes li::before { color: var(--gold-bright); }
.price-note { color: rgba(255, 255, 255, 0.55); font-size: 0.83rem; margin-top: 14px; }
.price-card .btn { margin-top: 20px; }

.package-aside h3 { margin-bottom: 6px; }
.package-aside > p { color: var(--muted); }

/* the six finishes as a real sample board (same textures the visualizer uses) */
.finish-swatches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 14px;
  margin: 20px 0 24px;
  list-style: none;
}
.finish-swatches li {
  display: grid;
  gap: 8px;
  text-align: center;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1.25;
}
.finish-swatches img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: var(--paper);
}

.flyer-links { display: grid; gap: 12px; margin-top: 8px; }
.flyer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 13px 16px;
  font-weight: 600;
  font-size: 0.95rem;
}
.flyer-link svg { width: 20px; height: 20px; color: var(--gold-deep); flex-shrink: 0; }
.flyer-link span small { display: block; font-weight: 400; color: var(--muted); font-size: 0.82rem; }
.flyer-note { margin-top: 10px; font-size: 0.82rem; color: var(--muted); }

/* ---------- glass doors: install photo + finish grid ---------- */

.glass-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  margin-top: 32px;
}
.glass-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--paper);
}
.glass-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 50% 8%;
}
.door-finishes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  list-style: none;
}
.door-finishes figure {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.door-finishes img { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; }
.door-finishes figcaption {
  padding: 9px 12px;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  text-align: center;
  border-top: 1px solid var(--line);
}

/* ---------- options & upgrades catalog ---------- */

.catalog { grid-template-columns: repeat(3, 1fr); }
.catalog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.catalog-card figure {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  margin: 0;
}
.catalog-card figure img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.catalog-card .catalog-body { padding: 18px 20px 20px; }
.catalog-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
.catalog-card p { color: var(--muted); font-size: 0.9rem; }

/* ---------- builder teaser ---------- */

.builder-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  background: linear-gradient(160deg, #ffffff 0%, var(--ivory) 100%);
  border: 1px solid rgba(206, 169, 87, 0.45);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow);
}
.builder-teaser p { color: var(--muted); max-width: 60ch; }

/* ---------- recent work gallery ---------- */

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 22px;
  margin-top: 34px;
}
.work-grid figure {
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  margin: 0;
  background: var(--white);
}
.work-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.work-grid figcaption {
  padding: 10px 14px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

/* ---------- steps ---------- */

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
  list-style: none;
}
/* gold hairline behind the three numerals, visible only in the gaps */
.steps::before {
  content: "";
  position: absolute;
  top: 49px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--gold-grad);
  opacity: 0.5;
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  box-shadow: var(--shadow-sm);
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2c2c33, #131316);
  color: var(--gold-bright);
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 3px 8px rgba(12, 12, 14, 0.3);
}
.step h3 { margin: 14px 0 8px; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ---------- financing band (black feature band) ---------- */

.band {
  background: linear-gradient(170deg, #1d1d22 0%, var(--black) 60%);
  color: var(--white);
}
.band-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}
.band h2 { margin-bottom: 0.4em; color: var(--white); }
.band-copy { color: rgba(255, 255, 255, 0.72); max-width: 58ch; }
.band .btn { margin-top: 24px; }

/* the "$149/mo" finance card */
.fin-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: var(--shadow-lg);
  max-width: 440px;
  justify-self: end;
  width: 100%;
}
.fin-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--gold-grad);
}
.fin-eyebrow { color: var(--gold-deep); margin-bottom: 6px; }
.fin-price { display: block; }
.fin-price .price-now { background: var(--gold-grad-deep); -webkit-background-clip: text; background-clip: text; }
.fin-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.95rem;
}

/* ---------- reviews ---------- */

.quote-card { display: flex; flex-direction: column; gap: 12px; padding: 26px 26px 24px; }
.quote-card::before {
  content: "\201C";
  display: block;
  height: 0.55em;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 3.4rem;
  line-height: 0.9;
  color: var(--gold);
}
.quote-card blockquote { font-size: 1.12rem; line-height: 1.5; color: var(--ink); flex: 1; }
.quote-card figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.9rem;
}
.quote-avatar {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2c2c33, #131316);
  color: var(--gold-bright);
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 2px 6px rgba(12, 12, 14, 0.25);
  flex-shrink: 0;
}
.reviews-more { margin-top: 28px; }

/* ---------- callout ---------- */

.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.callout p:not(.eyebrow) { color: var(--muted); max-width: 60ch; }

/* ---------- faq: one quiet list ---------- */

.faq-list { display: grid; margin-top: 30px; max-width: 860px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  padding: 18px 4px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
/* a plus in a gold ring that rotates into a cross when open */
.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M6 1.5v9M1.5 6h9' stroke='%238c6e1a' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") center / 12px no-repeat;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover,
.faq-item[open] summary { color: var(--gold-deep); }
.faq-item p { padding: 0 4px 20px; color: var(--muted); max-width: 70ch; }

/* ---------- contact / form ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.contact-info > p:not(.eyebrow) { color: var(--muted); max-width: 52ch; }

.contact-list {
  list-style: none;
  margin: 26px 0;
  display: grid;
  gap: 18px;
}
.contact-list li { display: grid; gap: 2px; }
.contact-label { color: var(--gold-deep); margin-bottom: 2px; }
.contact-list a,
.contact-list li > span:not(.contact-label) {
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--black);
  text-decoration: none;
}
.contact-list a:hover { color: var(--gold-deep); }

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--black);
  text-decoration: none;
  border: 1px solid var(--bevel);
  border-radius: 999px;
  padding: 10px 20px;
  background: linear-gradient(180deg, #ffffff, var(--ivory));
  box-shadow: 0 2px 6px rgba(12, 12, 14, 0.06);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.social-link:hover { border-color: var(--gold); color: var(--gold-deep); }
.social-link svg { width: 18px; height: 18px; }

.quote-form { padding: 30px; box-shadow: var(--shadow-lg); }
.quote-form h3 { margin-bottom: 18px; font-size: 1.25rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.form-row { display: grid; gap: 6px; margin-bottom: 16px; }
.form-row label { font-weight: 600; font-size: 0.88rem; }
.req { color: var(--gold-deep); }

.form-row input,
.form-row textarea {
  font: inherit;
  padding: 12px 16px;
  border: 1px solid var(--bevel);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(206, 169, 87, 0.18);
}

.hp-field { display: none; }

.form-status { margin: 0; font-weight: 600; font-size: 0.93rem; }
.form-status:not(:empty) { margin-top: 12px; }
.form-status.ok { color: #2e7d43; }
.form-status.err { color: #a4451f; }

.form-fineprint { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 0.85rem; color: var(--muted); }

/* call/text opt-in */
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 18px;
  font-size: 0.82rem;
  color: var(--muted);
  cursor: pointer;
}
.consent input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--gold); }

/* ---------- footer ---------- */

.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.75);
  padding: 0 0 28px;
  margin-top: 0;
}
.site-footer .gold-line { margin-bottom: 44px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 0.9fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-tag { margin-top: 14px; font-size: 0.92rem; max-width: 40ch; }

.footer-heading { color: var(--gold-bright); margin-bottom: 4px; }

.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 20px; align-content: start; }
.footer-nav .footer-heading { grid-column: 1 / -1; }
.footer-nav a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.15s ease;
}
.footer-nav a:hover,
.footer-contact a:hover { color: var(--gold-bright); }

.footer-contact { display: grid; gap: 9px; align-content: start; font-size: 0.92rem; }
/* the phone number is the footer's anchor */
.footer-contact .footer-phone {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gold-bright);
}
.footer-contact .footer-phone:hover { color: var(--white); }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 24px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-legal a { color: rgba(255, 255, 255, 0.7); text-decoration: none; }
.footer-legal a:hover { color: var(--gold-bright); }

/* legal-only footers (pay / privacy / terms / build) */
.footer-slim { padding: 0 0 28px; }
.footer-slim .gold-line { margin-bottom: 28px; }
.footer-slim .footer-legal { border-top: none; padding-top: 0; }

/* ---------- inner pages (pay / legal / builder) ---------- */

.page-hero {
  background:
    radial-gradient(800px 380px at 85% -20%, rgba(206, 169, 87, 0.1), transparent 60%),
    linear-gradient(165deg, #ffffff 0%, var(--ivory) 70%, var(--ivory-2) 100%);
  color: var(--ink);
  padding: clamp(44px, 6vw, 72px) 0;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2rem, 4.2vw, 2.9rem); }
.page-hero p:not(.eyebrow) { color: var(--muted); max-width: 60ch; margin-top: 10px; font-size: 1.05rem; }

.page-body { padding: clamp(48px, 6vw, 72px) 0; }
.page-body .container { max-width: 720px; }
.page-body h2 { font-size: 1.35rem; margin-top: 2em; margin-bottom: 0.4em; }
.page-body p, .page-body li { color: var(--ink); font-size: 0.97rem; max-width: 65ch; }
.page-body li + li { margin-top: 6px; }
.page-body ul { padding-left: 22px; margin: 0.6em 0 1em; }

.pay-page .page-body .container { max-width: 960px; }
.pay-options { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 0; }
.pay-card { display: flex; flex-direction: column; text-align: left; }
.pay-card h2 { margin-top: 0; font-size: 1.35rem; }
.pay-card p { margin-bottom: 18px; }
.pay-card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- builder: tap-through wizard (/build) ---------- */
/* One decision per screen, big tappable cards, a sticky estimate + Back/Next
   bar. Mobile-first — most customers do this on a phone. Golds always come
   from the --gold* vars; translucent golds use color-mix with a solid
   fallback declared first. */

.wiz-hero { padding: clamp(22px, 3.5vw, 36px) 0; }
.wiz-hero .container { max-width: 720px; }
.wiz-hero .eyebrow { margin-bottom: 0.7em; }
.wiz-hero p:not(.eyebrow) { margin-top: 8px; }

.wiz-page { padding: clamp(20px, 3vw, 36px) 0 0; }
.wiz { max-width: 720px; padding-bottom: clamp(36px, 5vw, 64px); }
.wiz-page.is-final .wiz { padding-bottom: clamp(48px, 6vw, 80px); }
.wiz .btn:disabled, .wiz-bar .btn:disabled { opacity: 0.5; cursor: not-allowed; filter: none; transform: none; }

/* progress */
.wiz-progress { display: grid; gap: 8px; margin-bottom: 18px; }
.wiz-progress-text { color: var(--gold-deep); }
.wiz-progress-track { display: block; height: 6px; border-radius: 999px; background: var(--line); overflow: hidden; }
.wiz-progress-fill { display: block; height: 100%; width: 0; border-radius: 999px; background: var(--gold-grad); transition: width 0.25s ease; }

/* steps */
.wiz-step { display: grid; gap: 14px; }
.wiz-step.is-active { animation: wiz-in 0.22s ease both; }
@keyframes wiz-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.wiz-step h2 { font-size: clamp(1.45rem, 4.4vw, 2rem); margin: 0; }
.wiz-step h2:focus:not(:focus-visible) { outline: none; }
.wiz-step h2:focus-visible { outline: var(--focus); outline-offset: 6px; border-radius: 4px; }
.wiz-lead { color: var(--muted); font-size: 0.95rem; margin-top: -6px; }
.wiz-hint { font-size: 0.85rem; line-height: 1.5; color: var(--muted); }

.catalog-error {
  background: #fff4ee;
  border: 1px solid #f0c9b4;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 14px;
  font-size: 0.93rem;
  font-weight: 600;
  color: #a4451f;
}

/* generic tappable card (line, finish, extra, side) */
.wiz-card {
  position: relative;
  display: grid;
  gap: 4px;
  width: 100%;
  min-height: 56px;
  text-align: left;
  color: var(--ink);
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, #ffffff, var(--ivory-2));
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 54px 16px 18px;
  cursor: pointer;
  box-shadow: 0 2px 0 var(--bevel), 0 5px 10px rgba(12, 12, 14, 0.06);
  transition: transform 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  -webkit-tap-highlight-color: transparent;
}
.wiz-card strong { font-family: "Archivo", sans-serif; font-size: 1.05rem; font-weight: 700; line-height: 1.2; }
.wiz-card small { font-size: 0.82rem; line-height: 1.4; color: var(--muted); }
.wiz-card:hover { border-color: var(--gold); transform: translateY(-1px); }
.wiz-card:active { transform: translateY(1px); box-shadow: 0 1px 0 var(--bevel); }
.wiz-card[aria-pressed="true"] {
  border-color: var(--gold-deep);
  background: var(--ivory);
  background: linear-gradient(180deg, color-mix(in srgb, var(--gold) 6%, var(--white)), color-mix(in srgb, var(--gold) 18%, var(--white)));
  box-shadow: 0 0 0 3px var(--gold), 0 2px 0 var(--gold-deep);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 35%, transparent), 0 2px 0 var(--gold-deep), 0 8px 18px color-mix(in srgb, var(--gold) 25%, transparent);
}

/* check badge on cards */
.wiz-check {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 26px;
  height: 26px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 2px solid var(--line);
  background: var(--white);
  display: grid;
  place-items: center;
  transition: background 0.12s ease, border-color 0.12s ease;
}
.wiz-check::after {
  content: "";
  width: 6px;
  height: 11px;
  margin-top: -3px;
  border-right: 2.5px solid var(--black);
  border-bottom: 2.5px solid var(--black);
  transform: rotate(45deg);
  opacity: 0;
}
.wiz-card[aria-pressed="true"] .wiz-check { background: var(--gold-grad); border-color: var(--gold-deep); }
.wiz-card[aria-pressed="true"] .wiz-check::after { opacity: 1; }

/* 1 · product line cards */
.wiz-line-cards { display: grid; gap: 12px; }
.wiz-line { min-height: 84px; padding: 16px 58px 16px 16px; gap: 16px; align-items: center; }
.wiz-line.has-img { grid-template-columns: 72px 1fr; }
.wiz-line-thumb {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--white);
}
.wiz-line-body { display: grid; gap: 4px; min-width: 0; }
.wiz-line strong { font-size: 1.15rem; }
.wiz-line-tag { font-size: 0.88rem; line-height: 1.45; color: var(--muted); }

/* 2 · wall swatches (Signature textures / Prime Bath product thumbs) */
.wiz-swatch-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
@media (min-width: 600px) { .wiz-swatch-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
.wiz-swatch {
  display: grid;
  gap: 8px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: center;
  font-family: "Inter", sans-serif;
  -webkit-tap-highlight-color: transparent;
}
.wiz-swatch-img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2.5px solid var(--line);
  background: var(--ivory-2);
  box-shadow: 0 3px 8px rgba(12, 12, 14, 0.14);
  transition: transform 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease;
}
.wiz-swatch-img img { width: 100%; height: 100%; object-fit: cover; }
.wiz-swatch-img.is-blank { background: linear-gradient(160deg, var(--ivory), var(--bevel)); }
.wiz-swatch:hover .wiz-swatch-img { transform: translateY(-2px); border-color: var(--gold); }
.wiz-swatch:active .wiz-swatch-img { transform: translateY(1px); }
.wiz-swatch[aria-pressed="true"] .wiz-swatch-img {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px var(--gold), 0 3px 8px rgba(12, 12, 14, 0.2);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 40%, transparent), 0 3px 8px rgba(12, 12, 14, 0.2);
}
.wiz-swatch[aria-pressed="true"] .wiz-swatch-img::before {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold-grad);
  border: 1px solid var(--gold-deep);
  box-shadow: 0 1px 3px rgba(12, 12, 14, 0.35);
}
.wiz-swatch[aria-pressed="true"] .wiz-swatch-img::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 15px;
  width: 5px;
  height: 10px;
  border-right: 2.5px solid var(--black);
  border-bottom: 2.5px solid var(--black);
  transform: rotate(45deg);
}
.wiz-swatch-name { display: grid; gap: 1px; font-size: 0.78rem; line-height: 1.25; }
.wiz-swatch-name strong { font-weight: 600; color: var(--ink); }
.wiz-swatch-name small { font-size: 0.7rem; color: var(--muted); }
.wiz-swatch[aria-pressed="true"] .wiz-swatch-name strong { color: var(--gold-deep); }

.wiz-size { display: grid; gap: 8px; margin-top: 6px; padding-top: 16px; border-top: 1px solid var(--line); }
.wiz-size-label { font-size: 0.85rem; font-weight: 600; }
.wiz-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.wiz-pill {
  min-height: 44px;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff, var(--ivory-2));
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  box-shadow: 0 2px 0 var(--bevel), 0 5px 10px rgba(12, 12, 14, 0.06);
  transition: transform 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease;
  -webkit-tap-highlight-color: transparent;
}
.wiz-pill:hover { border-color: var(--gold); transform: translateY(-1px); }
.wiz-pill:active { transform: translateY(1px); box-shadow: 0 1px 0 var(--bevel); }
.wiz-pill[aria-pressed="true"] {
  background: var(--gold-grad);
  border-color: var(--gold-deep);
  color: var(--black);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 2px 0 var(--gold-deep);
}

/* 3 · fixture finish (one metal drives everything metal) */
.wiz-metal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wiz-metal { grid-template-columns: auto 1fr; align-items: center; gap: 14px; min-height: 76px; padding: 14px 48px 14px 14px; }
.wiz-metal strong { font-size: 0.98rem; }
.wiz-metal-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.75);
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.35), 0 3px 8px rgba(12, 12, 14, 0.22);
}
/* metal swatches */
.sw-black  { background: linear-gradient(160deg, #2a2a2e, #101013); }
.sw-nickel { background: linear-gradient(160deg, #d9dcdf, #9fa4a9); }
.sw-bronze { background: linear-gradient(160deg, #5d4633, #3b2b1f); }
.sw-steel  { background: linear-gradient(140deg, #f0f2f4, #b9bec4 60%, #dfe2e5); }
.sw-gold   { background: linear-gradient(160deg, var(--gold-bright), var(--gold-deep)); }

/* 4 · extras: toggle cards */
.wiz-toggles { display: grid; gap: 10px; }
.wiz-toggle { min-height: 64px; padding: 14px 18px 14px 58px; align-items: center; }
.wiz-toggle.has-img { grid-template-columns: 1fr 56px; gap: 14px; padding-right: 14px; }
.wiz-toggle .wiz-check { right: auto; left: 16px; }
.wiz-toggle-body { display: grid; gap: 2px; min-width: 0; }
.wiz-toggle-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--line);
}
.wiz-toggles .wiz-hint { padding-left: 58px; margin-top: -4px; }
.wiz-inline-seg { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; padding: 0 0 4px 58px; margin-top: -2px; }

/* segmented controls (door style, placements, hinge) */
.seg-label { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.seg {
  display: inline-flex;
  gap: 2px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}
.seg-btn {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--muted);
  background: none;
  border: none;
  border-radius: 999px;
  padding: 9px 16px;
  min-height: 44px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.12s ease, background 0.12s ease;
}
.seg-btn:hover { color: var(--ink); }
.seg-btn[aria-pressed="true"] {
  background: var(--gold-grad);
  color: var(--black);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 1px 0 var(--gold-deep);
}

/* 5 · showerhead side */
.wiz-side-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wiz-side { justify-items: center; text-align: center; gap: 6px; padding: 18px 14px 16px; }
.wiz-side .wiz-check { top: 12px; right: 12px; transform: none; }
.wiz-side-icon { display: block; width: 100%; max-width: 150px; color: var(--muted); transition: color 0.12s ease; }
.wiz-side-icon svg { width: 100%; height: auto; }
.wiz-side[aria-pressed="true"] .wiz-side-icon { color: var(--gold-deep); }
.wiz-side strong { font-size: 1.15rem; }
.wiz-note { margin: 8px 0 0; }
.wiz-note .optional { font-weight: 400; color: var(--muted); }

/* 6 · photo, render, estimate, quote, review */
.wiz-final { gap: 18px; }
.wiz-back-link {
  justify-self: start;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold-deep);
  cursor: pointer;
}
.wiz-back-link:hover { text-decoration: underline; }
.generate-box { display: grid; gap: 8px; }
.product-hint { font-size: 0.8rem; color: var(--muted); }

/* photo intake */
.dropzone {
  position: relative;
  display: grid;
  place-items: center;
  gap: 8px;
  text-align: center;
  padding: 26px 18px;
  min-height: 160px;
  border: 2px dashed var(--bevel);
  border-radius: var(--radius-sm);
  background: var(--paper);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.dropzone:hover, .dropzone.drag-over { border-color: var(--gold); background: var(--ivory); }
.dz-copy { display: grid; justify-items: center; gap: 6px; color: var(--ink); }
.dz-copy svg { width: 40px; height: 40px; color: var(--gold-deep); }
.dz-copy strong { font-family: "Archivo", sans-serif; font-size: 1rem; }
.dz-copy small { color: var(--muted); font-size: 0.82rem; max-width: 30ch; }
.dropzone .photo-preview { display: none; width: 100%; max-height: 320px; object-fit: cover; border-radius: 10px; }
.dz-change {
  display: none;
  position: absolute;
  right: 12px;
  bottom: 12px;
  color: var(--white);
  background: rgba(12, 12, 14, 0.72);
  border-radius: 999px;
  padding: 6px 12px;
}
.dropzone.has-photo { padding: 10px; border-style: solid; border-color: var(--gold); background: var(--white); }
.dropzone.has-photo .dz-copy { display: none; }
.dropzone.has-photo .photo-preview { display: block; }
.dropzone.has-photo .dz-change { display: inline-block; }

/* result stage */
.result-card {
  border-radius: var(--radius);
  border: 3px solid transparent;
  background: var(--gold-grad) border-box;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.result-frame {
  position: relative;
  background: linear-gradient(160deg, #1d1d22 0%, var(--black) 100%);
  border-radius: calc(var(--radius) - 3px);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.result-card[data-state="empty"] .result-frame,
.result-card[data-state="loading"] .result-frame { min-height: 300px; }
.result-empty, .result-loading {
  display: none;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  padding: 32px;
  gap: 10px;
  justify-items: center;
  position: relative;
  z-index: 2;
}
.result-empty svg { width: 46px; height: 46px; color: var(--gold-bright); }
.result-empty strong { font-family: "Archivo", sans-serif; font-size: 1.1rem; color: var(--white); }
.result-empty span, .result-loading small { font-size: 0.88rem; color: rgba(255, 255, 255, 0.6); }
.result-loading p { font-family: "Archivo", sans-serif; font-weight: 700; color: var(--white); font-size: 1.05rem; }
.result-card[data-state="empty"] .result-empty { display: grid; }
.result-card[data-state="loading"] .result-loading { display: grid; }

.ba-img { display: none; width: 100%; height: auto; grid-area: 1 / 1; }
.result-card[data-state="loading"] .ba-before { display: block; opacity: 0.28; filter: blur(2px); }
.result-card[data-state="loading"] .result-loading { grid-area: 1 / 1; }
.result-card[data-state="result"] .ba-after { display: block; }
.result-card[data-state="result"].show-before .ba-after { display: none; }
.result-card[data-state="result"].show-before .ba-before { display: block; }

.ba-toggle {
  display: none;
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  background: rgba(12, 12, 14, 0.7);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}
.result-card[data-state="result"] .ba-toggle { display: inline-flex; }
.ba-toggle button {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  background: none;
  border: none;
  border-radius: 999px;
  padding: 6px 14px;
  cursor: pointer;
}
.ba-toggle button[aria-pressed="true"] { background: var(--gold-grad); color: var(--black); }

.spinner {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--gold-bright);
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* live estimate (full box on the last step) */
.estimate-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
}
.est-eyebrow { color: var(--gold-deep); margin-bottom: 6px; }
.est-monthly { font-family: "Archivo", sans-serif; font-weight: 800; font-size: 1.2rem; line-height: 1.25; color: var(--ink); }
.est-monthly.is-loading { color: var(--muted); font-weight: 600; }
.est-list { margin-top: 4px; font-size: 0.92rem; color: var(--muted); }
.est-fine { margin-top: 8px; font-size: 0.78rem; line-height: 1.5; color: var(--muted); }

.builder-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.lead-form { padding: 24px; }
.lead-form h3 { margin-bottom: 6px; }
.lead-hint { color: var(--muted); font-size: 0.93rem; margin-bottom: 16px; }

/* "Your choices" review + placement adjustments */
.wiz-review { display: grid; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.wiz-review h3 { font-size: 1rem; }
.wiz-choices { display: grid; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); overflow: hidden; }
.wiz-choice { display: grid; grid-template-columns: 112px 1fr auto; gap: 10px; align-items: center; padding: 11px 14px; font-size: 0.9rem; }
.wiz-choice + .wiz-choice { border-top: 1px solid var(--line); }
.wiz-choice-k { color: var(--gold-deep); }
.wiz-choice-v { color: var(--ink); min-width: 0; overflow-wrap: anywhere; }
.wiz-edit {
  font: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gold-deep);
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  min-height: 44px;
  cursor: pointer;
  transition: border-color 0.12s ease;
}
.wiz-edit:hover { border-color: var(--gold); }
.wiz-adjust { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--paper); padding: 0 14px; }
.wiz-adjust summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  min-height: 44px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  list-style: none;
}
.wiz-adjust summary::-webkit-details-marker { display: none; }
.wiz-adjust summary::after { content: "+"; font-family: "Archivo", sans-serif; font-size: 1.2rem; color: var(--gold-deep); }
.wiz-adjust[open] summary::after { content: "–"; }
.wiz-adjust > .wiz-hint { margin-bottom: 10px; }
.wiz-adjust-body { display: grid; gap: 10px; padding-bottom: 14px; }
.wiz-adjust-row { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 12px; }

/* sticky estimate + Back/Next bar (steps 1–5) */
.wiz-bar {
  position: sticky;
  bottom: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(12, 12, 14, 0.08);
  padding: 10px 0 calc(10px + env(safe-area-inset-bottom, 0px));
}
.wiz-bar-inner { max-width: 720px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.wiz-bar-est { display: grid; gap: 1px; min-width: 0; }
.wiz-bar-est strong { font-family: "Archivo", sans-serif; font-size: 0.98rem; font-weight: 800; line-height: 1.2; color: var(--ink); }
.wiz-bar-mo, .wiz-bar-list { white-space: nowrap; }
.wiz-bar-est small { font-size: 0.74rem; color: var(--muted); }
.wiz-bar-nav { display: flex; gap: 8px; margin-left: auto; flex-shrink: 0; }
.wiz-bar-nav .btn { min-height: 46px; padding: 11px 22px; }

@media (max-width: 560px) {
  .wiz-hero p:not(.eyebrow) { display: none; }
  .wiz-page { padding-top: 18px; }
  /* review rows stack label over value; Edit spans both */
  .wiz-choice { grid-template-columns: 1fr auto; gap: 2px 10px; }
  .wiz-choice-k { grid-column: 1; }
  .wiz-choice-v { grid-column: 1; }
  .wiz-choice .wiz-edit { grid-column: 2; grid-row: 1 / span 2; }
  /* sticky bar: price on up to two unbroken lines, no sub-line, compact Back/Next */
  .wiz-bar { padding-top: 8px; }
  .wiz-bar-inner { gap: 10px; }
  .wiz-bar-est small { display: none; }
  .wiz-bar-est strong {
    font-size: 0.92rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .wiz-bar-nav .btn { padding: 11px 16px; min-height: 44px; }
  .builder-actions .btn { width: 100%; white-space: normal; }
}
@media (max-width: 400px) {
  .wiz-metal-grid { grid-template-columns: 1fr; }
  .wiz-metal { min-height: 64px; }
}
@media (prefers-reduced-motion: reduce) {
  .wiz-step.is-active { animation: none; }
  .wiz-progress-fill { transition: none; }
}

/* ---------- reveal animation ---------- */
/* hidden state is gated on the .js class (set by an inline script) so
   no-JS visitors always see full content */

.js .reveal-group > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-group.in > * { opacity: 1; transform: none; }
.reveal-group.in > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-group.in > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-group.in > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-group.in > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-group.in > *:nth-child(6) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal-group > * { opacity: 1; transform: none; transition: none; }
  .btn, .card, .catalog-card { transition: none; }
  .spinner { animation-duration: 2.4s; }
}

@media print {
  .js .reveal-group > * { opacity: 1 !important; transform: none !important; }
}

/* ---------- responsive ---------- */

/* the desktop nav (Home, Services + caret, Packages, Design Your Own Bathroom,
   Financing, Reviews, the quote button) needs ~1060px of row; the hamburger
   takes over below 1140px — keep the drawer rule at the end of the file in step */
@media (max-width: 1139px) {
  .nav-toggle { display: block; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 10px 24px 18px;
  }
  .nav-menu.open { display: flex; }
  .nav-menu {
    max-height: calc(100vh - 120px);
    max-height: calc(100dvh - 120px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-menu > a { padding: 12px 0; border-bottom: 1px solid var(--line); white-space: normal; }
  .nav-menu > a:not(.btn)::after { display: none; }
  .nav-menu > a.btn { margin: 14px 0 0; border-bottom: none; }
}

@media (max-width: 1139px) {
  .trust-strip .container { grid-template-columns: repeat(5, minmax(0, auto)); gap: 12px 16px; }
  .trust-item { white-space: normal; font-size: 0.8rem; line-height: 1.25; }
}

@media (max-width: 980px) {
  .catalog { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  /* hero stacks: copy, photo, proof list */
  .hero-inner { grid-template-columns: 1fr; grid-template-rows: auto; }
  .hero-copy { grid-column: 1; grid-row: 1; align-self: auto; }
  .hero-media { grid-column: 1; grid-row: 2; max-width: 520px; margin: 32px 0 26px; }
  .hero-chips { grid-column: 1; grid-row: 3; margin-top: 8px; }
  .hero-media .photo-inset { left: auto; right: -14px; bottom: -26px; }
  .trust-strip .container { grid-template-columns: repeat(2, auto); justify-content: start; gap: 12px 40px; }
  .package-grid { grid-template-columns: 1fr; align-items: start; }
  .glass-grid { grid-template-columns: 1fr; gap: 24px; }
  .glass-photo { max-width: 560px; }
  .band-inner { grid-template-columns: 1fr; }
  .fin-card { justify-self: start; }
  .builder-teaser { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 820px) {
  .grid-3, .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .callout { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  /* shorter sticky header on phones */
  .brand-logo { width: 48px; height: 48px; }
  .nav { padding-top: 8px; padding-bottom: 8px; }
  .brand-name { font-size: 1.05rem; }
  [id] { scroll-margin-top: 72px; }
  .topbar { justify-content: center; }
  .topbar p { display: none; }
  .eyebrow-tail { display: none; }
  .hero-cta .btn { width: 100%; }
  .hero h1 { font-size: 2rem; }             /* "A brand-new shower." stays on one line at 390 */
  .hero-media { margin: 28px 0 0; }
  .hero-media .photo-inset { display: none; }
  .trust-strip .container { grid-template-columns: 1fr; gap: 10px; }
  .trust-item { white-space: normal; }
  .finish-swatches { gap: 12px 10px; }
  .finish-swatches li { font-size: 0.78rem; }
  .catalog { grid-template-columns: 1fr 1fr; gap: 12px; }
  .catalog-card { border-radius: var(--radius-sm); }
  .catalog-card .catalog-body { padding: 12px 14px 14px; }
  .catalog-card h3 { font-size: 0.95rem; }
  .catalog-card p { font-size: 0.85rem; }
  .work-grid { grid-template-columns: 1fr; gap: 14px; }
  .work-grid figcaption { padding: 8px 10px; font-size: 0.76rem; }
  .door-finishes { gap: 10px; }
  .quote-card { padding: 22px; }
  .fin-card { padding: 24px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .pay-options { grid-template-columns: 1fr; }
}

/* ---------- key visualizer highlight (#builder) ---------- */
/* Two columns on desktop: pitch + 3 steps on the left, a before/after
   example card on the right. Tinted band with a gold top rule so it reads
   as THE feature of the page. CSS-only — no slider. */

.viz-section {
  position: relative;
  background:
    radial-gradient(900px 420px at 92% 0%, rgba(206, 169, 87, 0.08), transparent 60%),
    linear-gradient(160deg, #ffffff 0%, var(--ivory) 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.viz-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--gold-grad);
}

.viz-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

/* eyebrow as a gold pill (same recipe as .offer-tag) */
.viz-section .eyebrow {
  display: inline-block;
  color: var(--black);
  background: var(--gold-grad);
  border-radius: 999px;
  padding: 5px 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 2px 6px rgba(206, 169, 87, 0.4);
}
.viz-copy h2 { margin-bottom: 0.45em; }
.viz-lede { color: var(--muted); max-width: 54ch; }

.viz-steps {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 26px 0 30px;
  max-width: 52ch;
}
.viz-steps li { display: flex; align-items: flex-start; gap: 14px; }
/* gold-outlined numerals so the visualizer steps read differently from How It Works */
.viz-step-num {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  color: var(--gold-deep);
  border: 2px solid var(--gold);
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
}
.viz-step-text { display: grid; gap: 2px; padding-top: 4px; }
.viz-step-text strong { font-family: "Archivo", sans-serif; font-weight: 700; font-size: 1.02rem; line-height: 1.25; }
.viz-step-text span { font-size: 0.9rem; color: var(--muted); }

.viz-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; }
.viz-cta-note { font-size: 0.88rem; font-weight: 500; color: var(--muted); }

/* the example card */
.viz-example {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-lg);
}
.viz-pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}
.viz-tile {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
}
.viz-tile img { width: 100%; height: 100%; object-fit: cover; }
/* the AI preview is "the result": it carries the gold frame */
.viz-tile-after { border-color: var(--gold); box-shadow: 0 0 0 2px var(--gold), 0 8px 18px rgba(140, 110, 26, 0.22); }
.viz-label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  color: var(--white);
  background: rgba(12, 12, 14, 0.72);
  border-radius: 999px;
  padding: 5px 11px;
  white-space: nowrap;
}
.viz-label-gold {
  color: var(--black);
  background: var(--gold-grad);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 2px 6px rgba(12, 12, 14, 0.25);
}
/* decorative arrow: no bevel, so it never looks clickable */
.viz-arrow {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: var(--black);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 4px 10px rgba(12, 12, 14, 0.16);
}
.viz-arrow svg { width: 18px; height: 18px; }
.viz-caption { margin-top: 14px; }
.viz-caption p { font-weight: 600; font-size: 0.92rem; line-height: 1.45; }
.viz-caption small { display: block; margin-top: 3px; font-size: 0.78rem; color: var(--muted); }

@media (max-width: 980px) {
  .viz-grid { grid-template-columns: 1fr; }
  .viz-example { max-width: 560px; }
}
@media (max-width: 560px) {
  .viz-example { padding: 10px; }
  .viz-pair { grid-template-columns: 1fr 1fr; gap: 8px; }
  .viz-arrow { display: none; }
  .viz-tile { border-radius: 10px; }
  .viz-label { left: 6px; bottom: 6px; font-size: 0.6rem; letter-spacing: 0.08em; padding: 4px 8px; }
  .viz-caption { margin-top: 12px; }
  .viz-cta .btn { width: 100%; }
}

/* wizard round 2 */
.wiz-surface { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; }
.wiz-surface-hint { margin-top: -8px; }
.wiz-stale-hint { margin-top: -6px; font-weight: 600; color: #a4451f; }
.result-card[data-stale="true"] .ba-img { opacity: 0.6; filter: saturate(0.7); }
.result-card[data-stale="true"] { background: var(--bevel) border-box; }
.wiz-inline-seg .seg, .wiz-surface .seg { flex-wrap: wrap; max-width: 100%; border-radius: 24px; }
@media (max-width: 560px) { .wiz-inline-seg { padding-left: 0; } }

/* ---------- polish pass: keyboard focus ---------- */
/* one gold ring for every interactive element; the swatch ring sits on the image */

:where(.btn, .wiz-card, .wiz-pill, .seg-btn, .wiz-edit, .wiz-back-link, .flyer-link, .social-link,
       .nav-menu > a, .nav-toggle, .topbar a, .faq-item summary, .wiz-adjust summary, .ba-toggle button,
       .footer-nav a, .footer-contact a, .footer-legal a, .contact-list a, .hero-chips a, .faq-item a,
       .form-fineprint a, .page-body a, .brand, .dropzone):focus-visible {
  outline: var(--focus);
  outline-offset: 3px;
}
.wiz-swatch:focus-visible { outline: none; }
.wiz-swatch:focus-visible .wiz-swatch-img { outline: var(--focus); outline-offset: 2px; }

/* ---------- post-review tweaks (2026-09-12) ---------- */

.hero-chips a { color: #7a5f14; }                                     /* deeper gold on the hero tint: passes AA */
.offer-tag, .viz-section .eyebrow { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5); } /* no coloured halo */
@media (max-width: 1100px) { .eyebrow-tail { display: none; } }        /* no stranded word in the two-column hero */
@media (max-width: 640px) { .topbar p { display: none; } }             /* the top bar never wraps to two lines */
@media (min-width: 981px) and (max-width: 1139px) { .trust-item--badge { white-space: nowrap; font-size: 0.82rem; } }

/* ============================================================
   multi-page site (2026-09-15)
   Shared chrome for the multi-page build (Services dropdown, current-page
   marks, four-column footer) plus the page components the page builders
   compose with: .breadcrumb, .page-intro, .package-compare, .compare-table,
   .service-cards, .tub-grid, .spec-chips, .area-chips, .stack-list and the
   black .cta-band that closes every page. Golds come from the --gold* vars;
   translucent golds use color-mix with a solid fallback declared first.
   Hover motion stays reserved for real links.
   ============================================================ */

/* ---------- nav: current page ---------- */
/* a static aria-current="page" marks the current page; a Services sub-page
   also lights the "Services" label (script.js adds .is-current; :has() does
   the same without JS in browsers that support it) */

.nav-menu > a[aria-current="page"]:not(.btn) { color: var(--gold-deep); font-weight: 600; }
.nav-menu > a[aria-current="page"]:not(.btn)::after { transform: scaleX(1); }
.nav-dropdown.is-current > .nav-dropdown-link { color: var(--gold-deep); font-weight: 600; }
.nav-dropdown.is-current > .nav-dropdown-link::after { transform: scaleX(1); }
.nav-dropdown:has([aria-current="page"]) > .nav-dropdown-link { color: var(--gold-deep); font-weight: 600; }
.nav-dropdown:has([aria-current="page"]) > .nav-dropdown-link::after { transform: scaleX(1); }

/* ---------- nav: Services dropdown ---------- */
/* label = a real link to /services, caret = the toggle button (aria-expanded),
   panel = role="menu". Opens on hover, click and focus; script.js owns the
   .open class. In the phone drawer the caret hides and the four service links
   sit indented under the label. */

.nav-menu { gap: 22px; }
.nav-menu > a:not(.btn), .nav-dropdown-link { font-size: 0.9rem; }

.nav-dropdown { position: relative; display: flex; align-items: center; gap: 1px; }
.nav-dropdown-link {
  position: relative;
  text-decoration: none;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  transition: color 0.15s ease;
}
.nav-dropdown-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}
.nav-dropdown-link:hover,
.nav-dropdown.open > .nav-dropdown-link { color: var(--gold-deep); }
.nav-dropdown-link:hover::after,
.nav-dropdown.open > .nav-dropdown-link::after { transform: scaleX(1); }

.nav-dropdown-btn {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: none;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-dropdown-btn svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.nav-dropdown-btn:hover,
.nav-dropdown.open .nav-dropdown-btn {
  color: var(--gold-deep);
  background: #f8f3e6;
  background: color-mix(in srgb, var(--gold) 14%, #fff);
}
.nav-dropdown.open .nav-dropdown-btn svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -14px;
  z-index: 60;
  display: none;
  flex-direction: column;
  min-width: 260px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}
/* invisible bridge so the pointer can travel from the label down to the panel */
.nav-dropdown-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -18px; height: 18px; }
.nav-dropdown.open .nav-dropdown-menu { display: flex; }
/* no-JS fallback: hover / focus still opens the panel */
html:not(.js) .nav-dropdown:hover > .nav-dropdown-menu,
html:not(.js) .nav-dropdown:focus-within > .nav-dropdown-menu { display: flex; }

.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.12s ease, color 0.12s ease;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible { background: var(--ivory); color: var(--gold-deep); }
.nav-dropdown-menu a[aria-current="page"] {
  color: var(--gold-deep);
  font-weight: 600;
  background: #f8f3e6;
  background: color-mix(in srgb, var(--gold) 12%, #fff);
}

/* ---------- footer: four columns + service-area line ---------- */

.footer-grid { grid-template-columns: 1.5fr 1.1fr 1fr 1fr; gap: 32px 28px; }
.footer-nav { grid-template-columns: 1fr; gap: 9px; }
.footer-nav .footer-heading { grid-column: auto; }
.footer-dealer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 5px 12px 5px 8px;
  border: 1px solid rgba(206, 169, 87, 0.55);
  border-radius: 999px;
  font-family: "Archivo", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.footer-dealer svg { width: 18px; height: 18px; flex-shrink: 0; }
.footer-contact span { color: rgba(255, 255, 255, 0.75); }
.footer-area { padding-top: 22px; font-size: 0.86rem; color: rgba(255, 255, 255, 0.6); }
.footer-area p { max-width: none; }
.footer-area strong { color: rgba(255, 255, 255, 0.85); font-weight: 600; }
.footer-legal { padding-top: 16px; }

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- breadcrumb ---------- */
/* <nav class="breadcrumb" aria-label="Breadcrumb"><ol><li><a href="/">Home</a></li>…<li><span>Current</span></li></ol></nav>
   Sits at the top of .page-hero. No aria-current here: the header nav owns it. */

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
  color: var(--muted);
}
.breadcrumb li { display: flex; align-items: center; gap: 10px; }
.breadcrumb li + li::before {
  content: "\203A";
  color: var(--gold-deep);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}
.breadcrumb a {
  color: var(--muted);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s ease;
}
.breadcrumb a:hover { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb li:last-child span { color: var(--ink); font-weight: 600; }

/* ---------- page intro ---------- */

.page-intro { max-width: 65ch; font-size: 1.08rem; line-height: 1.65; color: var(--muted); }
.page-intro strong { color: var(--ink); }
.page-hero .page-intro { margin-top: 12px; }

/* ---------- package compare (Key Signature | Bath Concepts) ---------- */
/* two equal white cards from 900px, stacked below. Card order: .eyebrow,
   h2, blurb <p>, .package-price, ul.includes, ul.finish-swatches, .package-actions */

.package-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
  align-items: stretch;
}
.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.package-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--gold-grad);
}
.package-card .eyebrow { margin-bottom: 0.6em; }
.package-card h2 { font-size: clamp(1.5rem, 2.6vw, 1.9rem); margin-bottom: 8px; }
.package-card > p { color: var(--muted); font-size: 0.95rem; }
.package-price {
  display: grid;
  gap: 2px;
  margin: 18px 0 4px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.package-price .price-pre { color: var(--muted); }
.package-price .price-now {
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  background: var(--gold-grad-deep);
  -webkit-background-clip: text;
  background-clip: text;
}
.package-price .price-sub { color: var(--muted); font-size: 0.88rem; }
.package-card .includes { margin: 14px 0 18px; color: var(--ink); font-size: 0.95rem; }
.package-card .includes li::before { color: var(--gold-deep); }
.package-card .finish-swatches { grid-template-columns: repeat(6, 1fr); gap: 8px; margin: 2px 0 22px; }
.package-card .finish-swatches li { font-size: 0.7rem; gap: 5px; }
.package-card .finish-swatches img { border-radius: 8px; }
.package-card .finish-swatches.is-compact { grid-template-columns: repeat(auto-fill, minmax(52px, 1fr)); }
.package-card .finish-swatches.is-compact li { font-size: 0.64rem; }
.package-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; }
.package-note { margin-top: 12px; font-size: 0.8rem; color: var(--muted); }

@media (max-width: 899px) {
  .package-compare { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .package-card { padding: 24px 20px 22px; }
  .package-card .finish-swatches { grid-template-columns: repeat(3, 1fr); }
  .package-actions .btn { width: 100%; }
}

/* ---------- compare table (feature | Signature | Bath Concepts) ---------- */
/* <div class="compare-table-wrap"><table class="compare-table">
     <thead><tr><th scope="col">Feature</th><th scope="col">Key Signature</th><th scope="col">Bath Concepts</th></tr></thead>
     <tbody><tr><th scope="row">Walls</th><td data-label="Key Signature">…</td><td data-label="Bath Concepts">…</td></tr>…
   Zebra rows; below 700px each row stacks and the data-label prints above each cell. */

.compare-table-wrap {
  margin-top: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.compare-table th,
.compare-table td {
  padding: 14px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.compare-table thead th {
  font-family: "Archivo", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--ivory);
  border-bottom: 2px solid var(--gold);
}
.compare-table tbody th { width: 26%; font-weight: 600; color: var(--ink); }
.compare-table tbody td { color: var(--muted); }
.compare-table tbody td strong { color: var(--ink); font-weight: 600; }
.compare-table tbody tr:nth-child(even) { background: var(--paper); }
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: none; }

@media (max-width: 700px) {
  .compare-table thead { position: absolute; width: 1px; height: 1px; clip-path: inset(50%); overflow: hidden; white-space: nowrap; }
  .compare-table,
  .compare-table tbody,
  .compare-table tr,
  .compare-table th,
  .compare-table td { display: block; width: auto; }
  .compare-table tbody tr { padding: 6px 0 10px; }
  .compare-table tbody tr + tr { border-top: 1px solid var(--line); }
  .compare-table th,
  .compare-table td { border-bottom: none; padding: 6px 16px; }
  .compare-table tbody th { width: auto; padding-top: 14px; font-family: "Archivo", sans-serif; font-size: 1rem; }
  .compare-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 2px;
    font-family: "Archivo", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-deep);
  }
}

/* ---------- service cards (hub + cross-links) ---------- */
/* <div class="service-cards"><a class="service-card" href="/walk-in-tubs"><figure><img …></figure>
     <div class="service-card-body"><h3>Walk-in Tubs</h3><p>one line</p><span class="service-card-link">Explore</span></div></a>…
   2–4 cards; auto-fits, one column on phones. Whole card is the link. */

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-top: 34px;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  color: inherit;
  text-decoration: none;
}
a.service-card { transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
a.service-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: rgba(206, 169, 87, 0.5); }
.service-card figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.service-card figure img { width: 100%; height: 100%; object-fit: cover; }
.service-card-body { display: flex; flex-direction: column; flex: 1; gap: 6px; padding: 18px 20px 20px; }
.service-card h3 { font-size: 1.08rem; }
.service-card p { color: var(--muted); font-size: 0.92rem; }
.service-card-link {
  margin-top: auto;
  padding-top: 6px;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--gold-deep);
}
.service-card-link::after { content: " \2192"; }
a.service-card:hover .service-card-link { text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 560px) {
  .service-cards { gap: 14px; }
  .service-card figure { aspect-ratio: 16 / 9; }
}

/* ---------- walk-in tub product grid ---------- */
/* <div class="tub-grid"><article class="tub-card"><figure><img src="/assets/img/web/tubs/grove-white.jpg" …></figure>
     <div class="tub-card-body"><h3>Grove</h3><p class="tub-size">28" x 48"</p><ul class="spec-chips">…</ul><p>one line</p></div></article>…
   White product tile (renders on white), model name, size line, spec chips. */

.tub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}
.tub-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.tub-card figure {
  display: grid;
  place-items: center;
  margin: 0;
  padding: 14px;
  aspect-ratio: 1;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.tub-card figure img { width: 100%; height: 100%; object-fit: contain; }
.tub-card-body { display: grid; gap: 8px; padding: 18px 20px 20px; }
.tub-card h3 { font-size: 1.15rem; letter-spacing: 0.04em; text-transform: uppercase; }
.tub-size { font-family: "Archivo", sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--gold-deep); }
.tub-card-body > p:not(.tub-size) { color: var(--muted); font-size: 0.9rem; }

@media (max-width: 980px) { .tub-grid { grid-template-columns: repeat(2, 1fr); } }
/* phones: a compact 2-up (six full-width cards would be ~3,300px of scrolling);
   the spec chips hide — each card's one-line description carries the door swing */
@media (max-width: 560px) {
  .tub-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .tub-card { border-radius: var(--radius-sm); }
  .tub-card figure { padding: 10px; }
  .tub-card-body { gap: 4px; padding: 12px 14px 14px; }
  .tub-card h3 { font-size: 0.95rem; }
  .tub-size { font-size: 0.85rem; }
  .tub-card-body > p:not(.tub-size) { font-size: 0.82rem; }
  .tub-card .spec-chips { display: none; }
}

/* ---------- chips ---------- */
/* .spec-chips: short specs on a product card (door swing, jets, colour).
   .area-chips: the twelve service-area cities. Both are <ul role="list">. */

.spec-chips,
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.spec-chips li {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--bevel);
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
}
.area-chips { gap: 8px; margin-top: 18px; }
.area-chips li {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  box-shadow: var(--shadow-sm);
}
.area-chips li.is-home { border-color: var(--gold); color: var(--gold-deep); font-weight: 600; }

/* ---------- numbered process steps ---------- */
/* <ol class="stack-list"><li><h3>…</h3><p>…</p></li>… — the numeral is drawn by CSS */

.stack-list {
  counter-reset: stack;
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.stack-list li {
  counter-increment: stack;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 6px 16px;
  align-items: start;
  align-content: start;   /* equal-height cards in .is-grid must not spread the rows apart */
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.stack-list li::before {
  content: counter(stack);
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2c2c33, #131316);
  color: var(--gold-bright);
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 3px 8px rgba(12, 12, 14, 0.3);
}
.stack-list h3,
.stack-list h4 { font-size: 1.05rem; margin-bottom: 4px; }
.stack-list h4 { font-family: "Archivo", "Inter", sans-serif; font-weight: 700; line-height: 1.1; letter-spacing: -0.015em; }
.stack-list p { color: var(--muted); font-size: 0.95rem; }
/* li has three grid children (numeral ::before, heading, p): the numeral spans both rows and
   the copy stays in the wide column — otherwise the <p> auto-places into the 40px column */
.stack-list li::before { grid-row: 1 / span 2; }
.stack-list li > h3,
.stack-list li > h4,
.stack-list li > p { grid-column: 2; }
/* a list that stands alone in a section (nothing beside it) fills the container:
   .is-grid = two columns, .is-grid-3 = three; one column below 900px */
.stack-list.is-grid,
.stack-list.is-grid-3 { max-width: none; gap: 18px; }
.stack-list.is-grid { grid-template-columns: 1fr 1fr; }
.stack-list.is-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 899px) {
  .stack-list.is-grid,
  .stack-list.is-grid-3 { grid-template-columns: 1fr; gap: 14px; }
}

/* ---------- cta band (every page, right before </main>) ---------- */
/* black band, gold headline "Get the shower of your dreams.", one sub-line,
   two buttons. Markup in the kit — copy it verbatim. */

.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, #1d1d22 0%, var(--black) 60%);
  color: var(--white);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--gold-grad);
}
.cta-band .container {
  display: grid;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(48px, 6vw, 72px);
}
.cta-band .eyebrow { margin-bottom: 0.7em; }
.cta-band h2 {
  margin-bottom: 0.3em;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-band p:not(.eyebrow) { max-width: 46ch; font-size: 1.05rem; color: rgba(255, 255, 255, 0.72); }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }

@media (max-width: 820px) {
  .cta-band .container { grid-template-columns: 1fr; }
  .cta-band-actions { justify-content: flex-start; }
}
@media (max-width: 560px) {
  .cta-band-actions .btn { width: 100%; }
}

/* ---------- keyboard focus for the new controls ---------- */

:where(.nav-dropdown-link, .nav-dropdown-btn, .nav-dropdown-menu a, .breadcrumb a, a.service-card, .footer-dealer):focus-visible {
  outline: var(--focus);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  a.service-card, .nav-dropdown-btn svg { transition: none; }
}

/* ---------- phone drawer: Services nested under the label ---------- */
/* same breakpoint as the hamburger rule above */

@media (max-width: 1139px) {
  .nav-dropdown { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-dropdown-link { padding: 12px 0; border-bottom: 1px solid var(--line); white-space: normal; }
  .nav-dropdown-link::after { display: none; }
  .nav-dropdown-btn { display: none; }
  .nav-dropdown-menu {
    display: flex;
    position: static;
    min-width: 0;
    margin: 0 0 0 4px;
    padding: 0 0 0 16px;
    border: none;
    border-left: 2px solid var(--gold);
    border-radius: 0;
    box-shadow: none;
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown-menu a {
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 0.9rem;
    white-space: normal;
  }
  .nav-dropdown-menu a:hover,
  .nav-dropdown-menu a[aria-current="page"] { background: none; }
  .nav-menu > a[aria-current="page"]:not(.btn) { font-weight: 600; }
}

/* inline links inside a page hero / intro / pay-next line (same recipe as .page-body a) */
.page-hero p:not(.eyebrow) a,
.page-intro a,
.pay-next a {
  color: var(--gold-deep);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(140, 110, 26, 0.45);
  transition: text-decoration-color 0.15s ease;
}
.page-hero p:not(.eyebrow) a:hover,
.page-intro a:hover,
.pay-next a:hover { text-decoration-color: currentColor; }
.wiz-hero .wiz-hero-links { font-size: 0.92rem; margin-top: 12px; }
.pay-next { margin-top: 26px; font-size: 0.95rem; color: var(--muted); max-width: none; }

/* ---------- wizard: tubs + ceiling ---------- */
/* walk-in tub model grid (step 2): image card with the check badge over the picture */
.wiz-model-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
@media (min-width: 600px) { .wiz-model-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.wiz-model { gap: 10px; padding: 12px 12px 14px; align-content: start; }
.wiz-model .wiz-check { top: 20px; right: 20px; transform: none; }
.wiz-model-img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--white);
}
.wiz-model-img.is-blank { background: linear-gradient(160deg, var(--ivory), var(--bevel)); }
.wiz-model-body { display: grid; gap: 3px; min-width: 0; }
.wiz-model strong { font-size: 1rem; }
.wiz-model small { font-size: 0.8rem; }
/* "Tub surround (smooth)" group label inside the wall grid (bathtub space) */
.wiz-swatch-group {
  grid-column: 1 / -1;
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
/* walk-in tub therapy cards + tub color seg (step 3) */
.wiz-tub-options { display: grid; gap: 14px; }
.wiz-therapy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wiz-therapy { gap: 3px; min-height: 76px; padding: 14px 48px 14px 16px; align-content: center; }
.wiz-therapy strong { font-size: 1rem; }
/* a seg with its label on one wrapping row, no card indent */
.wiz-seg-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; }
.wiz-seg-row .seg { flex-wrap: wrap; max-width: 100%; border-radius: 24px; }
@media (max-width: 400px) {
  .wiz-therapy-grid { grid-template-columns: 1fr; }
  .wiz-model-grid { gap: 10px; }
}
