/* ============================================================
   PRO BATHROOM REMODELING SAN DIEGO — MAIN STYLESHEET
   Design tokens, shared components, page-specific layouts
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;1,600&family=Manrope:wght@500;600;700;800&display=swap");

/* -----------------------------------------------------------
   0. CSS CUSTOM PROPERTIES (Design Tokens)
   ----------------------------------------------------------- */
:root {
  /* Color tokens */
  --clr-teal:        #123B4A;   /* Header, footer, dark sections */
  --clr-eucalyptus:  #1F5A57;   /* Secondary actions, icons */
  --clr-terracotta:  #B45332;   /* Primary CTAs, accents */
  --clr-limestone:   #DED3C2;   /* Section backgrounds, cards */
  --clr-sand:        #F7F2EA;   /* Main page background */
  --clr-espresso:    #2B2522;   /* Body copy, headings */
  --clr-seaglass:    #B8CEC7;   /* Badges, decorative accents */
  --clr-white:       #FFFFFF;
  --clr-error:       #A33A32;

  /* Typography */
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --fs-h1:   48px;
  --fs-h2:   36px;
  --fs-h3:   28px;
  --fs-h4:   22px;
  --fs-body: 17px;
  --fs-intro:20px;
  --fs-btn:  16px;
  --fs-sm:   14px;

  /* Spacing */
  --section-pad:    88px;
  --section-pad-sm: 64px;
  --container-max:  1180px;
  --gutter:         20px;

  /* Radius & shadow */
  --radius-card: 20px;
  --radius-sm:   10px;
  --shadow-card: 0 4px 24px rgba(18,59,74,.09);
  --shadow-lift: 0 8px 36px rgba(18,59,74,.16);

  /* Motion */
  --ease-out:   cubic-bezier(.22,1,.36,1);
  --dur-fast:   180ms;
  --dur-base:   280ms;
  --dur-slow:   500ms;
}

/* -----------------------------------------------------------
   1. RESET & BASE
   ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--clr-espresso);
  background: var(--clr-sand);
  overflow-x: clip;
}

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

a { color: var(--clr-eucalyptus); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--clr-terracotta); }
a:focus-visible { outline: 3px solid var(--clr-terracotta); outline-offset: 3px; border-radius: 3px; }

ul, ol { list-style: none; }

button { cursor: pointer; font-family: inherit; }
button:focus-visible { outline: 3px solid var(--clr-terracotta); outline-offset: 3px; border-radius: 3px; }

h1,h2,h3,h4,h5,h6 {
  line-height: 1.15;
  color: var(--clr-teal);
  font-weight: 700;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p + p { margin-top: .85em; }
p { max-width: 72ch; }

blockquote p { max-width: none; }

/* -----------------------------------------------------------
   2. SKIP LINK
   ----------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -999px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-terracotta);
  color: var(--clr-white);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
  transition: top var(--dur-fast) var(--ease-out);
}
.skip-link:focus { top: 12px; }

/* -----------------------------------------------------------
   3. CONTAINER
   ----------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* -----------------------------------------------------------
   4. HEADER
   ----------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: transparent;
  box-shadow: none;
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled,
.site-header.nav-is-open {
  background: var(--clr-teal);
  box-shadow: 0 2px 16px rgba(18,59,74,.35);
  backdrop-filter: none;
}

.header-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  min-height: 88px;
  height: auto;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--clr-white);
  flex-shrink: 0;
  line-height: 0;
}
.brand-logo:hover { color: var(--clr-seaglass); }
.brand-logo:focus-visible { outline-color: var(--clr-seaglass); }

.brand-logo-img {
  display: block;
  height: 72px;
  width: auto;
  max-width: min(340px, 58vw);
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  line-height: 1.1;
}
.logo-name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.01em;
  white-space: nowrap;
  color: var(--clr-white);
}
.logo-location {
  display: block;
  color: var(--clr-seaglass);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
}

.main-nav {
  margin-left: auto;
  flex: 0 0 auto;
}

.nav-list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
}

.nav-item { position: relative; flex: 0 0 auto; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 8px 9px;
  color: var(--clr-white);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-sm);
  background: none;
  border: none;
  white-space: nowrap !important;
  flex-shrink: 0;
  transition: background var(--dur-fast), color var(--dur-fast);
}
.nav-link:hover { background: rgba(255,255,255,.1); color: var(--clr-seaglass); }
.nav-link[aria-current="page"] { background: rgba(255,255,255,.12); }
.has-dropdown:hover > .nav-dropdown-toggle,
.nav-dropdown-toggle[aria-expanded="true"] {
  background: rgba(255,255,255,.14);
  color: var(--clr-white);
}
.site-header,
.header-inner,
.main-nav,
.nav-list,
.nav-item.has-dropdown {
  overflow: visible;
}
.nav-dropdown-toggle .dropdown-arrow {
  transition: transform var(--dur-fast);
}
.nav-dropdown-toggle[aria-expanded="true"] .dropdown-arrow { transform: rotate(180deg); }

/* Services mega-menu (desktop) */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  background: var(--clr-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lift);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), visibility var(--dur-base);
  z-index: 950;
}
.services-mega {
  left: 50%;
  width: min(820px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(360px, 1.25fr);
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(18,59,74,.08);
  transform: translate(-40%, -8px);
  align-items: stretch;
}
.nav-item.open .dropdown-menu,
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.has-dropdown:hover .services-mega,
.has-dropdown:focus-within .services-mega,
.nav-item.open .services-mega {
  transform: translate(-40%, 0);
}

.mega-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 300px;
  padding: 24px 22px;
  color: var(--clr-white);
  border-radius: 14px;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--clr-teal);
  background-image:
    linear-gradient(180deg, rgba(18,59,74,.35) 0%, rgba(13,44,54,.72) 45%, rgba(9,30,38,.92) 100%),
    url("../images/shared/mega-intro.avif");
  background-size: cover;
  background-position: center;
}
.mega-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--clr-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.mega-eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 100px;
  background: var(--clr-terracotta);
  flex-shrink: 0;
}
.mega-title {
  margin: 0 0 10px;
  color: var(--clr-white);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  max-width: 16ch;
}
.mega-desc {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.5;
  max-width: 28ch;
}
.mega-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 10px;
  row-gap: 8px;
  align-content: center;
  align-self: stretch;
  margin: 0;
  padding: 8px 4px;
  list-style: none;
}
.mega-links > li {
  min-width: 0;
}
.mega-links .dropdown-item {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 11px 14px;
  color: var(--clr-teal);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 10px;
  background: var(--clr-sand);
  border: 1px solid var(--clr-limestone);
  transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}
.mega-links .dropdown-item:hover,
.mega-links .dropdown-item:focus-visible {
  background: var(--clr-limestone);
  border-color: rgba(180,83,50,.35);
  color: var(--clr-terracotta);
}

.dropdown-item {
  display: block;
  padding: 8px 14px;
  color: var(--clr-espresso);
  font-size: 14.5px;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast), color var(--dur-fast);
}
.dropdown-item:hover { background: var(--clr-sand); color: var(--clr-teal); }

.header-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  color: var(--clr-seaglass);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(184,206,199,.35);
  white-space: nowrap;
  transition: background var(--dur-fast), color var(--dur-fast);
}
.btn-phone:hover { background: rgba(184,206,199,.15); color: var(--clr-white); }
/* Keep header compact so nav labels stay on one line */
.header-actions .btn-phone span { display: none; }
.header-actions .btn-estimate {
  white-space: nowrap;
  padding: 10px 14px;
  font-size: 13.5px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 36px;
  height: 26px;
  background: none;
  border: none;
  padding: 3px;
  margin-left: auto;
}
.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base);
}
.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; }
.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* -----------------------------------------------------------
   5. BUTTONS
   ----------------------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--clr-terracotta);
  color: var(--clr-white);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--clr-terracotta);
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--dur-fast), box-shadow var(--dur-fast), transform var(--dur-fast);
  white-space: nowrap;
}
.btn-primary:hover { background: #943f24; border-color: #943f24; box-shadow: 0 4px 16px rgba(180,83,50,.3); transform: translateY(-1px); color: var(--clr-white); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:focus-visible { outline: 3px solid var(--clr-terracotta); outline-offset: 4px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  color: var(--clr-teal);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--clr-teal);
  border-radius: 8px;
  transition: background var(--dur-fast), color var(--dur-fast);
  white-space: nowrap;
}
.btn-secondary:hover { background: var(--clr-teal); color: var(--clr-white); }

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  color: var(--clr-white);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 8px;
  transition: background var(--dur-fast), border-color var(--dur-fast);
  white-space: nowrap;
}
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: var(--clr-white); color: var(--clr-white); }

.btn-estimate {
  background: var(--clr-terracotta);
  border-color: var(--clr-terracotta);
  padding: 10px 18px;
  font-size: 14px;
}

.btn-text-link {
  color: var(--clr-eucalyptus);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.btn-text-link:hover { border-color: var(--clr-eucalyptus); color: var(--clr-teal); }

.btn-lg { padding: 11px 22px; font-size: 14.5px; }

/* -----------------------------------------------------------
   6. SECTIONS
   ----------------------------------------------------------- */
.section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}
.section-sm {
  padding-top: var(--section-pad-sm);
  padding-bottom: var(--section-pad-sm);
}

.bg-sand    { background: var(--clr-sand); }
.bg-white   { background: var(--clr-white); }
.bg-limestone { background: var(--clr-limestone); }
.bg-teal-dark { background: var(--clr-teal); }
.bg-eucalyptus { background: var(--clr-eucalyptus); }

.section-intro { margin-bottom: 52px; }
.section-intro h2 { margin-bottom: 16px; }

.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }
.text-light { color: var(--clr-white); }
.text-light-muted { color: rgba(255,255,255,.88); }
.intro-text.text-light-muted,
.bg-teal-dark .intro-text {
  color: rgba(255,255,255,.9);
}

.intro-text {
  font-size: var(--fs-intro);
  color: #4a5c62;
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
}

/* -----------------------------------------------------------
   7. HERO — OC-style full-bleed with trust, badge, stats
   ----------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--clr-white);
  background: var(--clr-teal);
  min-height: clamp(560px, 88vh, 760px);
  display: grid;
  grid-template-columns: 1fr;
  padding-top: 0;
}

.hero-media,
.hero-image-wrap {
  grid-area: 1 / 1;
  position: relative;
  z-index: 0;
  min-height: inherit;
  background: #0d2c36;
}
.hero-media img,
.hero-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  display: block;
}
.hero-media::after,
.hero-overlay {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(105deg, rgba(12,36,48,.94) 0%, rgba(18,59,74,.82) 34%, rgba(18,59,74,.45) 58%, rgba(18,59,74,.12) 78%, rgba(18,59,74,.04) 100%),
    linear-gradient(0deg, rgba(12,36,48,.45) 0%, transparent 38%);
  pointer-events: none;
}

.hero-inner,
.hero-content-wrap {
  grid-area: 1 / 1;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(7rem, 12vw, 8.5rem) var(--gutter) clamp(2.8rem, 5vw, 3.8rem);
}

.hero-content {
  max-width: 640px;
}

.hero-top-trust {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin: 0 0 18px;
  padding: 0;
  color: var(--clr-white);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .01em;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.hero-top-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.hero-top-trust svg {
  width: 15px;
  height: 15px;
  stroke: rgba(255,255,255,.92);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.hero-top-trust .star-icon {
  fill: #E8B84A;
  stroke: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 8px 16px;
  border: 1px solid var(--clr-terracotta);
  border-radius: 999px;
  color: var(--clr-terracotta);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: #F3D5C4;
  box-shadow: none;
}

.hero-title {
  margin: 0 0 18px;
  max-width: none;
  line-height: 1.05;
  text-wrap: balance;
}
.hero-title-serif {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.1rem);
  font-weight: 600;
  font-style: italic;
  color: var(--clr-white);
  letter-spacing: -.01em;
}
.hero-title-accent {
  display: block;
  margin-top: .08em;
  font-family: var(--font-body);
  font-size: clamp(2.4rem, 5.2vw, 3.9rem);
  font-weight: 800;
  color: var(--clr-terracotta);
  letter-spacing: -.03em;
  line-height: 1;
}

.hero-intro {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(255,255,255,.9);
  margin: 0 0 26px;
  max-width: 34rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}
.hero-actions .btn-primary,
.hero-actions .btn-outline-light,
.hero-actions .btn-secondary {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 10px 18px;
  font-size: 14px;
}
.hero-actions .btn-outline-light,
.hero-actions .btn-secondary {
  color: var(--clr-white);
  border-color: rgba(255,255,255,.75);
  background: transparent;
}
.hero-actions .btn-outline-light:hover,
.hero-actions .btn-secondary:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--clr-white);
  color: var(--clr-white);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.22);
}
.hero-stat {
  padding: 0 26px;
  border-right: 1px solid rgba(255,255,255,.28);
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: 0; padding-right: 0; }
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  font-weight: 600;
  color: var(--clr-white);
  line-height: 1.05;
  letter-spacing: -.02em;
}
.hero-stat span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
}

.hero-proof,
.hero-trust,
.hero-eyebrow { display: none; }

/* Interior heroes */
.hero-page {
  min-height: clamp(480px, 72vh, 640px);
}
.hero-page .hero-inner,
.hero-page .hero-content-wrap {
  padding-top: clamp(6.5rem, 11vw, 8rem);
  padding-bottom: clamp(2.4rem, 4vw, 3.2rem);
}
.hero-page .hero-content { max-width: 680px; }
.hero-page .hero-title-serif {
  font-size: clamp(2.2rem, 4.4vw, 3.3rem);
}
.hero-page .hero-title-accent {
  font-size: clamp(2rem, 4vw, 3rem);
}

/* Keep value strip available if present */
.value-strip {
  color: var(--clr-white);
  background: var(--clr-teal);
  border-top: 1px solid rgba(255,255,255,.08);
}
.value-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.value-strip-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 22px 16px;
  border-right: 1px solid rgba(255,255,255,.14);
}
.value-strip-item:last-child { border-right: 0; }
.value-strip-item svg {
  width: 28px;
  height: 28px;
  stroke: var(--clr-terracotta);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.value-strip-item strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--clr-white);
}
.value-strip-item span {
  display: block;
  margin-top: 3px;
  color: rgba(255,255,255,.68);
  font-size: 12.5px;
  line-height: 1.35;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  font-size: 13px;
}
.breadcrumb li {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,.7);
}
.breadcrumb li::after {
  content: "/";
  margin: 0 8px;
  opacity: .5;
}
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: rgba(255,255,255,.85); text-decoration: underline; text-underline-offset: 2px; }
.breadcrumb a:hover { color: var(--clr-seaglass); }

.breadcrumb,
nav[aria-label="Breadcrumb"] {
  display: none !important;
}

/* -----------------------------------------------------------
   9. LEAD FORM — right-side estimate card (OC-style)
   ----------------------------------------------------------- */
.section-form {
  background: var(--clr-sand);
  border-bottom: 1px solid var(--clr-limestone);
}

.form-section-inner { padding-top: 56px; padding-bottom: 56px; }

.form-layout-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 1.18fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.form-intro-column { order: 1; }
.form-column { order: 2; }

.form-intro-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.form-intro-eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  color: var(--clr-terracotta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.form-intro-card h2,
.form-intro-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--clr-teal);
  max-width: 18ch;
}
.form-intro-rule {
  width: 48px;
  height: 3px;
  margin: 0 0 18px;
  background: var(--clr-terracotta);
  border-radius: 100px;
}
.form-intro-card p {
  color: #4a5c62;
  margin: 0 0 12px;
  max-width: 52ch;
}
.form-intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  margin-top: 22px;
}
.form-intro-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--clr-teal);
}
.form-intro-features li::before {
  content: "";
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: var(--clr-terracotta) url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9l3.5 3.5L14 6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.form-intro-cta { margin-top: 22px; }

.estimate-card {
  background: var(--clr-white);
  border-radius: 14px;
  padding: clamp(16px, 2vw, 22px) clamp(18px, 2.2vw, 26px);
  box-shadow: 0 12px 40px rgba(18,59,74,.12);
  border: 1px solid rgba(18,59,74,.06);
}

.estimate-card .form-heading {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 600;
  color: var(--clr-teal);
  margin: 0 0 4px;
  line-height: 1.2;
}
.estimate-card .form-subhead {
  color: #7a8a90;
  margin: 0 0 14px;
  font-size: 13.5px;
  line-height: 1.4;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
}
.field-full { grid-column: 1 / -1; }

.field-group { display: flex; flex-direction: column; gap: 4px; }
.field-label {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-teal);
}
.required { color: #2F6FED; margin-left: 2px; }

.field-input {
  width: 100%;
  padding: 9px 12px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--clr-espresso);
  background: var(--clr-white);
  border: 1.5px solid #d5dde0;
  border-radius: 8px;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  appearance: none;
}
.field-input::placeholder { color: #9aa7ab; }
.field-input:focus {
  outline: none;
  border-color: var(--clr-eucalyptus);
  box-shadow: 0 0 0 3px rgba(31,90,87,.12);
}
.field-input.has-error { border-color: var(--clr-error); }
.field-textarea { resize: vertical; min-height: 64px; }
select.field-input {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23123B4A' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.field-error {
  font-size: 12px;
  color: var(--clr-error);
  display: none;
  min-height: 0;
}
.field-error.visible { display: block; }

.form-error-summary {
  background: #fdf0ef;
  border: 1.5px solid var(--clr-error);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--clr-error);
}
.form-error-summary p { font-weight: 600; margin-bottom: 6px; max-width: none; }
.form-error-summary ul { list-style: disc; padding-left: 18px; }

.form-consent {
  font-size: 11.5px;
  color: #6a7d82;
  margin: 8px 0 0;
  max-width: none;
  line-height: 1.4;
}

.form-actions { margin-top: 10px; }
.estimate-card .btn-submit {
  width: 100%;
  min-width: 0;
  padding: 11px 18px;
  font-size: 14.5px;
  font-weight: 700;
  border-radius: 8px;
}

.form-footer-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 0;
}
.form-footer-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: #6a7d82;
  font-weight: 600;
}
.form-footer-benefits span::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #2e9e6b url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 6.2l2.2 2.2 4.8-4.8' stroke='white' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center / 10px no-repeat;
  flex-shrink: 0;
}

.form-success {
  background: #eef7f2;
  border: 1.5px solid #2e9e6b;
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 16px;
  font-size: 15px;
  color: #1a5c3e;
}
.form-failure {
  background: #fdf0ef;
  border: 1.5px solid var(--clr-error);
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 16px;
  font-size: 15px;
  color: var(--clr-error);
}

/* -----------------------------------------------------------
   10. CHECK LIST
   ----------------------------------------------------------- */
.check-list { display: flex; flex-direction: column; gap: 8px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
}
.check-list li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: var(--clr-eucalyptus);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9l3.5 3.5L14 6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  margin-top: 2px;
}

/* -----------------------------------------------------------
   11. SERVICES MOSAIC
   ----------------------------------------------------------- */
.services-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}

.service-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-limestone);
  border-radius: var(--radius-card);
  padding: 0;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  box-shadow: 0 6px 20px rgba(18,59,74,.06);
  transition: box-shadow var(--dur-base), transform var(--dur-base), border-color var(--dur-base);
}
.service-card:hover {
  box-shadow: 0 14px 36px rgba(18,59,74,.14);
  transform: translateY(-4px);
  border-color: rgba(180,83,50,.35);
  color: inherit;
}

.service-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--clr-sand);
}
.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 450ms ease;
}
.service-card:hover .service-card-media img {
  transform: scale(1.05);
}
.service-card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(18,59,74,.18), transparent);
  pointer-events: none;
}

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 18px 18px 20px;
  background: var(--clr-sand);
}
.service-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--clr-teal);
  margin: 0;
  line-height: 1.25;
}
.service-card-desc {
  font-size: 14px;
  color: #5a6d72;
  margin: 0;
  max-width: none;
  line-height: 1.5;
  flex: 1;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-terracotta);
  letter-spacing: .02em;
}
.service-card-link::after {
  content: "→";
  transition: transform var(--dur-fast);
}
.service-card:hover .service-card-link::after {
  transform: translateX(3px);
}
.service-card-icon { display: none; }

.supporting-scope {
  margin-top: 8px;
  padding: clamp(28px, 4vw, 40px);
  background: linear-gradient(165deg, #f3ebe2 0%, var(--clr-sand) 55%, #f8f4ee 100%);
  border: 1px solid var(--clr-limestone);
  border-radius: calc(var(--radius-card) + 4px);
}
.supporting-scope-intro {
  max-width: 640px;
  margin: 0 auto 28px;
  text-align: center;
}
.supporting-scope-eyebrow {
  margin: 0 0 8px;
  color: var(--clr-terracotta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.supporting-scope-title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  font-weight: 600;
  color: var(--clr-teal);
  line-height: 1.2;
}
.supporting-scope-text {
  margin: 0;
  color: #5a6d72;
  font-size: 15px;
  line-height: 1.55;
  max-width: none;
}

.scope-index {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--clr-white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,59,74,.08);
  box-shadow: 0 10px 28px rgba(18,59,74,.06);
}
.scope-index-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 4px 14px;
  align-items: start;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(18,59,74,.08);
  border-right: 1px solid rgba(18,59,74,.08);
}
.scope-index-item:nth-child(2n) { border-right: 0; }
.scope-index-item:nth-last-child(-n + 2) { border-bottom: 0; }
.scope-index-num {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1;
  color: var(--clr-terracotta);
  letter-spacing: .02em;
}
.scope-index-copy h4 {
  margin: 2px 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-teal);
  line-height: 1.25;
}
.scope-index-copy p {
  margin: 0;
  font-size: 14px;
  color: #5a6d72;
  line-height: 1.5;
  max-width: none;
}

/* legacy chip styles kept for other pages */
.supporting-services-band {
  background: var(--clr-sand);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.band-label { font-size: 14px; font-weight: 600; color: var(--clr-teal); white-space: nowrap; }
.entity-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: var(--clr-white);
  border: 1px solid var(--clr-seaglass);
  color: var(--clr-teal);
  font-size: 13.5px;
  padding: 5px 14px;
  border-radius: 999px;
  font-weight: 500;
}

/* -----------------------------------------------------------
   12. CONVERSION CARDS
   ----------------------------------------------------------- */
.conversion-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.conversion-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(184,206,199,.22);
  border-radius: calc(var(--radius-card) + 2px);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
  transition: transform var(--dur-base), box-shadow var(--dur-base), border-color var(--dur-base);
}
.conversion-card:hover {
  transform: translateY(-4px);
  border-color: rgba(243,213,196,.45);
  box-shadow: 0 18px 40px rgba(0,0,0,.26);
}
.conversion-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(0,0,0,.25);
}
.conversion-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 450ms ease;
}
.conversion-card:hover .conversion-card-media img {
  transform: scale(1.05);
}
.conversion-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,59,74,.55), transparent 55%);
  pointer-events: none;
}
.conversion-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 20px 22px;
}
.conversion-card-tag {
  margin: 0 0 8px;
  color: #F3D5C4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.conversion-card h3 {
  color: var(--clr-white);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  font-weight: 600;
  margin: 0 0 10px;
  line-height: 1.2;
}
.conversion-card p {
  color: rgba(255,255,255,.78);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 0 18px;
  max-width: none;
  flex: 1;
}
.conversion-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 16px;
  border: 1.5px solid rgba(255,255,255,.55);
  border-radius: 8px;
  color: var(--clr-white);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast);
}
.conversion-card-link::after { content: "→"; }
.conversion-card-link:hover {
  background: var(--clr-white);
  border-color: var(--clr-white);
  color: var(--clr-teal);
}

/* -----------------------------------------------------------
   13. STYLE EXPLORER (left tabs + right view — theme colors)
   ----------------------------------------------------------- */
.style-explorer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.style-explorer-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  height: auto;
}

.style-selector-btn {
  appearance: none;
  width: 100%;
  flex: none;
  text-align: center;
  padding: 13px 10px;
  border: none;
  border-radius: 8px;
  background: var(--clr-terracotta);
  color: var(--clr-white);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
  transition: background var(--dur-fast), box-shadow var(--dur-fast);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.style-selector-btn:hover {
  background: #943f24;
}
.style-selector-btn[aria-selected="true"] {
  background: var(--clr-teal);
  box-shadow: 0 6px 16px rgba(18,59,74,.24);
}
.style-selector-btn:focus-visible {
  outline: 3px solid var(--clr-terracotta);
  outline-offset: 2px;
}

.style-explorer-view {
  min-width: 0;
}

.style-panel[hidden] { display: none !important; }

.style-view-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--clr-white);
  border-radius: 24px;
  overflow: hidden;
  border: none;
  box-shadow: 0 12px 36px rgba(18,59,74,.1);
  min-height: 460px;
}

.style-view-media {
  position: relative;
  min-height: 100%;
  background: var(--clr-limestone);
}
.style-view-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 460px;
}
.style-view-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--clr-teal);
  color: var(--clr-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}

.style-view-content {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.5vw, 42px);
  background: var(--clr-white);
}
.style-view-content h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.8vw, 2.4rem);
  font-weight: 600;
  color: var(--clr-teal);
  line-height: 1.15;
}
.style-view-content > p {
  margin: 0 0 22px;
  color: #5a6d72;
  font-size: 15.5px;
  line-height: 1.6;
  max-width: none;
}
.style-view-label {
  margin: 0 0 10px !important;
  color: var(--clr-terracotta) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.style-color-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}
.style-color-pills span {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid #d5dde0;
  background: var(--clr-white);
  color: var(--clr-teal);
  font-size: 13.5px;
  font-weight: 600;
}
.style-best-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin: 0 0 28px;
}
.style-best-row .style-view-label {
  margin: 0 !important;
}
.style-best-for {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--clr-teal);
  color: var(--clr-white);
  font-size: 13.5px;
  font-weight: 700;
}
.style-view-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  width: 100%;
  padding: 15px 20px;
  border-radius: 10px;
  background: var(--clr-teal);
  color: #F3D5C4;
  font-size: 15.5px;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--dur-fast), color var(--dur-fast);
}
.style-view-cta:hover {
  background: #0e2f3b;
  color: var(--clr-white);
}
.style-view-cta span {
  color: inherit;
}

/* Detailed panels (bathroom-styles page) */
.style-panel-detailed {
  background: var(--clr-white);
  border-radius: 24px;
  border: 1px solid rgba(43,37,34,.08);
  box-shadow: 0 10px 36px rgba(43,37,34,.1);
  overflow: hidden;
  padding: clamp(18px, 2.5vw, 28px);
}
.style-panel-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}
.style-panel-detail img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
.style-panel-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  color: var(--clr-teal);
  margin: 0 0 10px;
}
.mood-palette {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.mood-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(18,59,74,.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}

/* legacy gallery helpers kept if used elsewhere */
.styles-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 32px; }
.style-card { display: block; text-decoration: none; color: inherit; }
.style-swatch { display: none; }

/* -----------------------------------------------------------
   14. SPACE COMPARE + DECISION SPLIT
   ----------------------------------------------------------- */
.space-compare {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr);
  gap: 0 8px;
  align-items: stretch;
}

.space-compare-panel {
  background: var(--clr-white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(18,59,74,.1);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.space-compare-media {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--clr-limestone);
}
.space-compare-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}
.space-compare-panel:hover .space-compare-media img {
  transform: scale(1.04);
}
.space-compare-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 28px 22px 20px;
  background: linear-gradient(to top, rgba(18,59,74,.88) 0%, rgba(18,59,74,.35) 55%, transparent 100%);
  color: var(--clr-white);
}
.space-compare-badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 5px 11px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.space-compare-panel--small .space-compare-badge {
  background: var(--clr-eucalyptus);
  color: var(--clr-white);
}
.space-compare-panel--large .space-compare-badge {
  background: var(--clr-terracotta);
  color: var(--clr-white);
}
.space-compare-overlay h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--clr-white);
}

.space-compare-body {
  padding: 22px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.space-compare-body p {
  margin: 0;
  color: #5a6d72;
  font-size: 15px;
  line-height: 1.55;
  max-width: none;
}
.space-compare-body .check-list {
  gap: 10px;
}
.space-compare-body .check-list li {
  font-size: 14.5px;
  color: var(--clr-espresso);
}

.space-compare-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 40px;
}
.space-compare-rail-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clr-terracotta);
}
.space-compare-rail-line {
  width: 2px;
  flex: 1;
  min-height: 48px;
  background: linear-gradient(to bottom, var(--clr-limestone), var(--clr-terracotta), var(--clr-limestone));
  border-radius: 100px;
}
.space-compare-rail-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--clr-teal);
  color: #F3D5C4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(18,59,74,.2);
}

.decision-split {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 48px;
  align-items: start;
}
.decision-divider { background: var(--clr-limestone); }
.decision-label {
  display: inline-block;
  background: var(--clr-eucalyptus);
  color: var(--clr-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.decision-column h3 { margin-bottom: 14px; color: var(--clr-teal); }
.decision-column p { margin-bottom: 18px; }

/* -----------------------------------------------------------
   15. PROCESS JOURNEY — Plan / Build / Finish
   ----------------------------------------------------------- */
.process-journey { max-width: 1100px; margin: 0 auto; }

.process-phase {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 28px 0 14px;
}
.process-phase:first-child { margin-top: 0; }
.process-phase span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clr-terracotta);
}
.process-phase strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--clr-teal);
  line-height: 1;
}
.process-phase::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--clr-terracotta), transparent);
  margin-left: 8px;
}

.process-journey-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.process-journey-row--finale {
  grid-template-columns: 1fr;
}

.process-journey .process-step {
  position: relative;
  background: var(--clr-white);
  border-radius: 18px;
  padding: 22px 22px 24px;
  border: 1px solid rgba(18,59,74,.1);
  box-shadow: 0 10px 26px rgba(18,59,74,.07);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}
.process-journey .step-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  line-height: .9;
  min-width: 0;
  color: var(--clr-terracotta);
  margin-bottom: 10px;
}
.process-journey .step-content h3 {
  font-size: 1.15rem;
  margin: 0 0 8px;
  color: var(--clr-teal);
  font-weight: 700;
  line-height: 1.25;
}
.process-journey .step-content p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: #3d4e54;
  max-width: none;
}

.process-step--finale {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px 28px;
  align-items: center;
  background: var(--clr-teal) !important;
  border-color: transparent !important;
  padding: 28px 32px !important;
}
.process-step--finale .step-number {
  color: #F3D5C4;
  font-size: 4rem;
  margin: 0;
}
.process-step--finale .step-content h3 { color: var(--clr-white); font-size: 1.45rem; }
.process-step--finale .step-content p { color: rgba(255,255,255,.88); font-size: 16px; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
}
.step-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--clr-teal);
  line-height: 1;
  min-width: 58px;
}
.step-content h3 { font-size: 20px; margin-bottom: 8px; color: var(--clr-teal); }
.step-content p { font-size: 15px; color: #3d4e54; max-width: none; }

/* -----------------------------------------------------------
   16. REVIEWS MARQUEE
   ----------------------------------------------------------- */
.reviews-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}
.reviews-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: reviews-marquee 48s linear infinite;
}
.reviews-marquee:hover .reviews-marquee-track {
  animation-play-state: paused;
}
.reviews-marquee .review-card {
  flex: 0 0 340px;
  width: 340px;
}
@keyframes reviews-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-marquee-track { animation: none; }
}

.reviews-carousel-wrap { overflow: hidden; }
.reviews-carousel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
  transition: transform var(--dur-slow) var(--ease-out);
}

.review-card {
  background: var(--clr-sand);
  border: 1px solid var(--clr-limestone);
  border-radius: var(--radius-card);
  padding: 28px 24px;
}
.review-stars { color: #c8a03a; font-size: 18px; margin-bottom: 12px; }
.review-card blockquote { border: none; padding: 0; }
.review-card blockquote p { font-size: 15px; color: var(--clr-espresso); font-style: italic; max-width: none; }
.review-author { font-size: 13px; color: #6a7d82; margin-top: 14px; display: block; }

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-white);
  border: 1.5px solid var(--clr-limestone);
  color: var(--clr-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast), border-color var(--dur-fast);
}
.carousel-btn:hover { background: var(--clr-sand); border-color: var(--clr-seaglass); }

.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clr-limestone);
  border: 1.5px solid var(--clr-seaglass);
  cursor: pointer;
  transition: background var(--dur-fast);
}
.carousel-dot[aria-selected="true"] { background: var(--clr-teal); }

/* -----------------------------------------------------------
   17. PROJECT GRID
   ----------------------------------------------------------- */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--clr-white);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--dur-base), transform var(--dur-base);
}
.project-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); }

.project-image-wrap { position: relative; }
.project-image-wrap img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }

.project-info { padding: 18px 20px; }
.project-info h3 { font-size: 17px; margin-bottom: 4px; color: var(--clr-teal); }
.project-info p { font-size: 13.5px; color: #6a7d82; max-width: none; margin: 0; }

.project-collage {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 118px;
  gap: 12px;
}
.collage-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--clr-teal);
  min-height: 0;
}
.collage-item img,
.collage-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}
.collage-item:hover img,
.collage-item:hover video { transform: scale(1.04); }
.collage-item--video {
  grid-column: 1 / span 4;
  grid-row: span 4;
  min-height: 280px;
}
.collage-item--video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.collage-item--tall {
  grid-column: 5 / span 2;
  grid-row: span 4;
}
.collage-item:nth-child(3) {
  grid-column: 1 / span 2;
  grid-row: span 2;
}
.collage-item--wide {
  grid-column: span 2;
  grid-row: span 2;
}
.collage-item:nth-child(5) {
  grid-column: 5 / span 2;
  grid-row: span 2;
}
.collage-item:nth-child(6) {
  grid-column: 1 / -1;
  grid-row: span 2;
}
.collage-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 28px 16px 14px;
  background: linear-gradient(to top, rgba(18,59,74,.88), transparent);
  color: var(--clr-white);
}
.collage-caption h3 {
  margin: 0 0 2px;
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-white);
  font-family: var(--font-display);
}
.collage-caption p {
  margin: 0;
  font-size: 12.5px;
  color: rgba(255,255,255,.82);
  max-width: none;
}
.concept-label { display: none; }

/* -----------------------------------------------------------
   18. PRINCIPLE PATH + APPROACH GRID
   ----------------------------------------------------------- */
.principle-path-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(180,83,50,.09), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(18,59,74,.08), transparent 32%),
    var(--clr-sand);
}
.principle-path-intro { margin-bottom: 36px; }
.principle-kicker {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clr-terracotta);
}
.principle-path {
  list-style: none;
  margin: 0;
  padding: 8px 0 0;
  display: grid;
  grid-template-columns: 1.15fr .9fr 1.05fr;
  grid-template-areas:
    "scope scope materials"
    "protect water water"
    "change close close";
  gap: 18px;
  position: relative;
}
.principle-path::before {
  content: "";
  position: absolute;
  inset: 24px 8% auto 8%;
  height: calc(100% - 48px);
  border: 2px dashed rgba(180,83,50,.28);
  border-radius: 48% 28% 42% 22% / 22% 40% 18% 36%;
  pointer-events: none;
  z-index: 0;
}
.principle-tile {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 210px;
  padding: 28px 26px 26px;
  background: var(--clr-white);
  border-radius: 28px 8px 28px 8px;
  box-shadow: 0 16px 36px rgba(18,59,74,.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.principle-tile--scope { grid-area: scope; transform: rotate(-1.1deg); }
.principle-tile--materials { grid-area: materials; transform: rotate(1.4deg); margin-top: 28px; }
.principle-tile--protect { grid-area: protect; transform: rotate(.8deg); margin-top: -8px; }
.principle-tile--water { grid-area: water; transform: rotate(-.7deg); }
.principle-tile--change { grid-area: change; transform: rotate(1deg); }
.principle-tile--close {
  grid-area: close;
  transform: rotate(-.5deg);
  background: var(--clr-teal);
  color: var(--clr-white);
}
.principle-stamp {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clr-terracotta);
  border: 1.5px solid currentColor;
  border-radius: 999px;
  padding: 4px 10px;
  transform: rotate(-8deg);
  background: var(--clr-sand);
}
.principle-tile--close .principle-stamp {
  color: var(--clr-teal);
  background: #F3D5C4;
}
.principle-watermark {
  position: absolute;
  right: -6px;
  top: -18px;
  font-family: var(--font-display);
  font-size: 7.2rem;
  font-weight: 600;
  line-height: 1;
  color: rgba(18,59,74,.08);
  pointer-events: none;
}
.principle-tile--close .principle-watermark { color: rgba(243,213,196,.18); }
.principle-tile h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  max-width: 18ch;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--clr-teal);
}
.principle-tile--close h3 { color: var(--clr-white); }
.principle-tile p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 42ch;
  font-size: 14.5px;
  line-height: 1.55;
  color: #4a5c62;
}
.principle-tile--close p { color: rgba(255,255,255,.82); }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.approach-item { display: flex; flex-direction: column; gap: 12px; }
.approach-icon {
  width: 52px;
  height: 52px;
  background: var(--clr-sand);
  border: 1.5px solid var(--clr-limestone);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.approach-item h3 { font-size: 18px; color: var(--clr-teal); margin: 0; }
.approach-item p { font-size: 15px; color: #4a5c62; max-width: none; margin: 0; }

/* -----------------------------------------------------------
   19. COVERAGE MAP + CITY GRID
   ----------------------------------------------------------- */
.coverage-section { background: var(--clr-sand); }
.coverage-split {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 1.05fr);
  gap: 28px 36px;
  align-items: stretch;
}
.coverage-map {
  position: relative;
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  background: #DED3C2;
  box-shadow: 0 22px 44px rgba(18,59,74,.18);
}
.coverage-leaflet,
.coverage-leaflet .leaflet-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.coverage-leaflet .leaflet-control-attribution {
  display: none !important;
}
.coverage-pin-wrap {
  background: none;
  border: 0;
}
.coverage-marker {
  display: block;
  width: 24px;
  height: 36px;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,.35));
  transform-origin: bottom center;
}
.coverage-marker svg { display: block; }
.coverage-marker.is-hub {
  width: 28px;
  height: 42px;
}
.coverage-marker.is-hub svg {
  width: 28px;
  height: 42px;
}
.coverage-marker.is-active {
  filter: drop-shadow(0 0 0 3px rgba(229,57,53,.35)) drop-shadow(0 2px 3px rgba(0,0,0,.35));
  transform: scale(1.12);
}
.coverage-copy h2 { margin: 0 0 14px; }
.coverage-copy .intro-text { margin: 0 0 18px; max-width: none; }
.coverage-cities {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 18px;
}
.coverage-city {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--clr-teal);
  font: inherit;
  font-size: 14.5px;
  font-weight: 600;
  padding: 5px 0 5px 14px;
  position: relative;
  cursor: pointer;
}
.coverage-city::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-top: -3.5px;
  border-radius: 50%;
  background: var(--clr-terracotta);
}
.coverage-city.is-active,
.coverage-city:hover,
.coverage-city:focus-visible {
  color: var(--clr-terracotta);
  outline: none;
}

.city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}
.city-item {
  background: var(--clr-white);
  border: 1px solid var(--clr-limestone);
  color: var(--clr-teal);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 999px;
}

/* -----------------------------------------------------------
   20. CTA CLOSE + CTA BAND
   ----------------------------------------------------------- */
.cta-close-section {
  background: var(--clr-sand);
  padding-top: 24px;
}
.cta-close-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  background: var(--clr-teal);
  border-radius: 28px;
  overflow: hidden;
  min-height: 460px;
  box-shadow: 0 24px 50px rgba(18,59,74,.16);
}
.cta-close-media {
  margin: 0;
  min-height: 460px;
}
.cta-close-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cta-close-body {
  padding: 48px 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-close-body h2 {
  color: var(--clr-white);
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.15;
  max-width: 16ch;
}
.cta-close-body > p {
  color: rgba(255,255,255,.78);
  margin: 0 0 28px;
  max-width: 42ch;
}
.cta-close-actions {
  display: grid;
  gap: 12px;
}
.cta-close-action {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 16px;
  text-decoration: none;
  color: var(--clr-white);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.cta-close-action:hover {
  background: rgba(255,255,255,.12);
  color: var(--clr-white);
  transform: translateY(-1px);
}
.cta-close-action--primary {
  background: var(--clr-terracotta);
  border-color: transparent;
}
.cta-close-action--primary:hover {
  background: #9a3f26;
  color: var(--clr-white);
}
.cta-close-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1;
  color: #F3D5C4;
}
.cta-close-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cta-close-copy strong {
  font-size: 16px;
  font-weight: 800;
}
.cta-close-copy small {
  font-size: 13px;
  color: rgba(255,255,255,.78);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-band-text h2 { color: var(--clr-white); margin-bottom: 8px; font-size: 30px; }
.cta-band-text p { max-width: none; }
.cta-band-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* -----------------------------------------------------------
   21. FAQ ACCORDION
   ----------------------------------------------------------- */
.faq-list { max-width: 800px; margin-left: auto; margin-right: auto; }
.faq-item { border-bottom: 1px solid var(--clr-limestone); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--clr-teal);
  cursor: pointer;
  transition: color var(--dur-fast);
}
.faq-question:hover { color: var(--clr-eucalyptus); }
.faq-arrow { flex-shrink: 0; transition: transform var(--dur-base) var(--ease-out); }
.faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-question[aria-expanded="true"] { color: var(--clr-eucalyptus); }

.faq-answer {
  padding-bottom: 20px;
  font-size: 15.5px;
  color: #4a5c62;
  line-height: 1.7;
}
.faq-answer[hidden] { display: none; }
.faq-answer p { max-width: 72ch; }
.faq-answer p + p { margin-top: .75em; }

/* -----------------------------------------------------------
   22. DEV NOTICE
   ----------------------------------------------------------- */
.dev-notice {
  background: #fff8e6;
  border: 1.5px solid #c8a03a;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13.5px;
  color: #6b4a10;
  margin-bottom: 20px;
  text-align: left;
}

/* -----------------------------------------------------------
   23. PANEL GRID
   ----------------------------------------------------------- */
.panel-grid { display: grid; gap: 64px; align-items: center; }
.panel-grid-2 { grid-template-columns: 1fr 1fr; }
.panel-text h3 { margin-bottom: 14px; }
.panel-text p { margin-bottom: 14px; font-size: 16px; color: #4a5c62; }

.media-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
}
.media-card img { width: 100%; object-fit: cover; }

/* -----------------------------------------------------------
   24. FOOTER
   ----------------------------------------------------------- */
.site-footer {
  background: var(--clr-teal);
  padding-top: 64px;
  padding-bottom: 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(184,206,199,.2);
}

.footer-logo { font-size: 18px; font-weight: 700; color: var(--clr-white); display: block; margin-bottom: 10px; }
.footer-tagline { color: var(--clr-seaglass); font-size: 14px; margin-bottom: 12px; max-width: none; }
.footer-contact { font-size: 14px; color: rgba(255,255,255,.75); margin-bottom: 4px; max-width: none; }
.footer-contact a { color: var(--clr-seaglass); text-decoration: underline; }
.footer-contact a:hover { color: var(--clr-white); }
.footer-license { color: rgba(255,255,255,.45); font-size: 12px; margin-top: 12px; max-width: none; }

.footer-nav-heading { font-size: 14px; font-weight: 700; color: var(--clr-seaglass); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.footer-nav-list { display: flex; flex-direction: column; gap: 8px; }
.footer-nav-list a { color: rgba(255,255,255,.7); text-decoration: none; font-size: 14.5px; transition: color var(--dur-fast); }
.footer-nav-list a:hover { color: var(--clr-white); }

.footer-bottom {
  padding: 18px 0;
  background: rgba(0,0,0,.15);
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.45); max-width: none; }

/* -----------------------------------------------------------
   25. SPACING UTILITIES
   ----------------------------------------------------------- */
.mt-md { margin-top: 36px; }
.mt-sm { margin-top: 20px; }
.mb-md { margin-bottom: 36px; }

/* -----------------------------------------------------------
   26. PAGE-SPECIFIC: SERVICES PAGE
   ----------------------------------------------------------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 8px 18px;
  border: 1.5px solid var(--clr-limestone);
  border-radius: 999px;
  background: var(--clr-white);
  color: var(--clr-teal);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast);
}
.filter-btn:hover, .filter-btn[aria-pressed="true"] {
  background: var(--clr-teal);
  border-color: var(--clr-teal);
  color: var(--clr-white);
}

.service-detail-card {
  background: var(--clr-white);
  border: 1.5px solid var(--clr-limestone);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--dur-base), transform var(--dur-base);
}
.service-detail-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); color: inherit; }
.service-detail-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.service-detail-card .card-body { padding: 24px; flex: 1; }
.service-detail-card h3 { font-size: 19px; color: var(--clr-teal); margin-bottom: 8px; }
.service-detail-card p { font-size: 14.5px; color: #5a6d72; max-width: none; }
.service-detail-card .card-link { display: inline-flex; align-items: center; gap: 4px; margin-top: 12px; color: var(--clr-eucalyptus); font-weight: 600; font-size: 14px; }

/* -----------------------------------------------------------
   27. PAGE-SPECIFIC: BATHROOM STYLES
   ----------------------------------------------------------- */
.style-detail-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.style-detail-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.style-card-body {
  padding: 24px;
  background: var(--clr-white);
}
.style-card-body h3 { font-size: 20px; color: var(--clr-teal); margin-bottom: 8px; }

.palette-swatches {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.palette-swatch {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.1);
}

.feature-matrix {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
.feature-matrix th, .feature-matrix td {
  text-align: left;
  padding: 11px 14px;
  border-bottom: 1px solid var(--clr-limestone);
}
.feature-matrix th { background: var(--clr-sand); font-weight: 700; color: var(--clr-teal); font-size: 13px; text-transform: uppercase; letter-spacing: .04em; }
.feature-matrix tr:last-child td { border-bottom: none; }
.feature-matrix td:first-child { font-weight: 600; color: var(--clr-teal); }

/* -----------------------------------------------------------
   28. PAGE-SPECIFIC: ACCESSIBLE BATHROOM
   ----------------------------------------------------------- */
.zone-map {
  background: var(--clr-sand);
  border-radius: var(--radius-card);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.zone-item { display: flex; gap: 14px; align-items: flex-start; }
.zone-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--clr-seaglass);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zone-item h4 { font-size: 16px; margin-bottom: 4px; color: var(--clr-teal); }
.zone-item p { font-size: 14px; color: #5a6d72; max-width: none; margin: 0; }

/* -----------------------------------------------------------
   29. PAGE-SPECIFIC: CONTACT
   ----------------------------------------------------------- */
.contact-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 52px;
}
.contact-choice {
  background: var(--clr-white);
  border: 1.5px solid var(--clr-limestone);
  border-radius: var(--radius-card);
  padding: 32px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(18,59,74,.06);
}
.contact-choice h3 { font-size: 21px; color: var(--clr-teal); margin-bottom: 12px; }
.contact-choice p { font-size: 15px; color: #5a6d72; margin-bottom: 20px; }

.step-preview {
  position: sticky;
  top: 88px;
  background: var(--clr-sand);
  border: 1px solid var(--clr-limestone);
  border-radius: var(--radius-card);
  padding: 24px;
}
.step-preview h4 { font-size: 16px; color: var(--clr-teal); margin-bottom: 12px; }
.step-preview-list { display: flex; flex-direction: column; gap: 8px; }
.step-item { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: #5a6d72; }
.step-dot {
  width: 10px; height: 10px; min-width: 10px;
  border-radius: 50%;
  background: var(--clr-limestone);
  margin-top: 4px;
  transition: background var(--dur-fast);
}
.step-dot.complete { background: var(--clr-eucalyptus); }

/* -----------------------------------------------------------
   30. PAGE-SPECIFIC: SERVICE AREAS
   ----------------------------------------------------------- */
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.area-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-limestone);
  border-radius: 12px;
  padding: 14px 18px;
}
.area-card-city { font-weight: 700; color: var(--clr-teal); font-size: 15px; }
.area-card-type { font-size: 12px; color: #6a7d82; margin-top: 2px; max-width: none; }

/* -----------------------------------------------------------
   31. COMPARE TABLE
   ----------------------------------------------------------- */
.compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  font-size: 14.5px;
}
.compare-table th, .compare-table td {
  text-align: left;
  padding: 12px 16px;
  border: 1px solid var(--clr-limestone);
}
.compare-table thead th { background: var(--clr-teal); color: var(--clr-white); font-size: 13px; text-transform: uppercase; letter-spacing: .05em; }
.compare-table tbody tr:nth-child(even) { background: var(--clr-sand); }
.compare-table td:first-child { font-weight: 600; color: var(--clr-teal); }

/* -----------------------------------------------------------
   32. REDUCED MOTION
   ----------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* -----------------------------------------------------------
   33. RESPONSIVE — TABLET (768-1024px)
   ----------------------------------------------------------- */
@media (max-width: 1024px) {
  :root {
    --fs-h1:    42px;
    --fs-h2:    32px;
    --fs-h3:    26px;
    --fs-h4:    21px;
    --fs-body:  16px;
    --fs-intro: 18px;
    --section-pad: 68px;
    --section-pad-sm: 52px;
  }

  .main-nav, .header-actions .btn-phone { display: none; }
  .header-actions .btn-estimate { display: none; }
  .mobile-menu-btn { display: flex; }

  /* Mobile nav open */
  .main-nav.nav-open {
    display: block;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--clr-teal);
    overflow-y: auto;
    padding: 24px var(--gutter);
    z-index: 800;
  }
  .main-nav.nav-open .nav-list { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav.nav-open .nav-link { font-size: 17px; padding: 14px 16px; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.08); }
  .main-nav.nav-open .dropdown-menu,
  .main-nav.nav-open .services-mega {
    position: static;
    left: auto;
    width: auto;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: rgba(0,0,0,.2);
    border: none;
    border-radius: var(--radius-sm);
    padding: 0;
    margin-top: 4px;
    margin-bottom: 4px;
    grid-template-columns: 1fr;
  }
  .main-nav.nav-open .nav-item.open .dropdown-menu,
  .main-nav.nav-open .nav-item.open .services-mega { display: block; }
  .main-nav.nav-open .mega-intro { display: none; }
  .main-nav.nav-open .mega-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 4px 0;
  }
  .main-nav.nav-open .dropdown-item,
  .main-nav.nav-open .mega-links .dropdown-item {
    color: rgba(255,255,255,.85);
    padding: 10px 24px;
    font-weight: 500;
    background: transparent;
    border: none;
    border-radius: 0;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }
  .main-nav.nav-open .mega-links .dropdown-item:hover {
    background: rgba(255,255,255,.08);
    color: var(--clr-white);
    border-color: transparent;
  }

  .value-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .value-strip-item:nth-child(2) { border-right: 0; }
  .value-strip-item:nth-child(-n + 2) { border-bottom: 1px solid rgba(255,255,255,.14); }

  .services-mosaic { grid-template-columns: repeat(2, 1fr); }
  .supporting-scope-grid { grid-template-columns: repeat(2, 1fr); }
  .scope-index { grid-template-columns: 1fr 1fr; }
  .conversion-cards { grid-template-columns: 1fr; gap: 16px; }
  .styles-gallery { grid-template-columns: repeat(2, 1fr); }
  .style-explorer {
    gap: 12px;
  }
  .style-explorer-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .style-view-card {
    grid-template-columns: 1fr;
  }
  .style-view-media img { min-height: 260px; }
  .style-panel-detail { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 28px; }
  .process-journey-row { grid-template-columns: 1fr; }
  .principle-path {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "scope materials"
      "protect water"
      "change close";
    gap: 14px;
  }
  .principle-path::before { display: none; }
  .principle-tile,
  .principle-tile--scope,
  .principle-tile--materials,
  .principle-tile--protect,
  .principle-tile--water,
  .principle-tile--change,
  .principle-tile--close {
    transform: none;
    margin-top: 0;
    min-height: 180px;
    border-radius: 22px 8px 22px 8px;
  }
  .principle-watermark { font-size: 5.4rem; }
  .coverage-split { grid-template-columns: 1fr; gap: 28px; }
  .coverage-map { min-height: 420px; }
  .county-atlas { grid-template-columns: 1fr; gap: 28px; }
  .county-atlas-intro .intro-text { max-width: none; }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .project-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 160px;
  }
  .collage-item--video,
  .collage-item--tall,
  .collage-item--wide,
  .collage-item:nth-child(3),
  .collage-item:nth-child(5) {
    grid-column: auto;
    grid-row: span 2;
  }
  .collage-item--video { grid-column: 1 / -1; grid-row: span 3; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .decision-split { grid-template-columns: 1fr; gap: 32px; }
  .space-compare {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .space-compare-rail {
    flex-direction: row;
    padding: 0;
    gap: 12px;
  }
  .space-compare-rail-line {
    width: auto;
    flex: 1;
    min-height: 0;
    height: 2px;
    background: linear-gradient(to right, var(--clr-limestone), var(--clr-terracotta), var(--clr-limestone));
  }
  .decision-divider { display: none; }
  .cta-close-panel { grid-template-columns: 1fr; }
  .cta-close-media { min-height: 240px; max-height: 280px; }
  .cta-close-body { padding: 32px 24px 28px; }
  .cta-close-body h2 { max-width: none; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .panel-grid-2 { grid-template-columns: 1fr; }
  .form-layout-split { grid-template-columns: 1fr; gap: 36px; }
  .form-intro-card h2,
  .form-intro-card h3 { max-width: none; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
}

/* -----------------------------------------------------------
   34. RESPONSIVE — MOBILE (767px and below)
   ----------------------------------------------------------- */
@media (max-width: 767px) {
  :root {
    --fs-h1:    36px;
    --fs-h2:    28px;
    --fs-h3:    24px;
    --fs-h4:    20px;
    --fs-intro: 18px;
    --section-pad: 52px;
    --section-pad-sm: 40px;
  }

  .hero { min-height: 560px; }
  .hero-title-serif { font-size: 2.35rem; }
  .hero-title-accent { font-size: 2.15rem; }
  .hero-actions {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .hero-actions .btn-secondary,
  .hero-actions .btn-outline-light,
  .hero-actions .btn-primary {
    width: auto;
    justify-content: center;
  }
  .hero-media img,
  .hero-image-wrap img { object-position: center; }
  .hero-stats {
    flex-direction: column;
    gap: 14px;
  }
  .hero-stat {
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
    padding-bottom: 12px;
  }
  .hero-stat:last-child { border-bottom: 0; padding-bottom: 0; }
  .value-strip-grid { grid-template-columns: 1fr; }
  .value-strip-item,
  .value-strip-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }
  .value-strip-item:last-child { border-bottom: 0; }

  .services-mosaic { grid-template-columns: 1fr; }
  .supporting-scope-grid { grid-template-columns: 1fr; }
  .supporting-scope { padding: 22px 16px; }
  .scope-index { grid-template-columns: 1fr; }
  .scope-index-item {
    border-right: 0;
    grid-template-columns: 56px minmax(0, 1fr);
    padding: 18px 18px;
  }
  .scope-index-item:nth-last-child(-n + 2) { border-bottom: 1px solid rgba(18,59,74,.08); }
  .scope-index-item:last-child { border-bottom: 0; }
  .styles-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    overflow: visible;
  }
  .style-card { min-width: 0; }
  .style-explorer {
    gap: 12px;
  }
  .style-explorer-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    height: auto;
  }
  .style-selector-btn {
    flex: none;
    text-align: center;
    padding: 12px 8px;
    font-size: 12.5px;
    white-space: normal;
  }
  .style-view-card { border-radius: 18px; }
  .style-view-media img { min-height: 220px; }

  .project-grid { grid-template-columns: 1fr; }
  .project-collage {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .collage-item--video,
  .collage-item--tall,
  .collage-item--wide,
  .collage-item:nth-child(3),
  .collage-item:nth-child(5) {
    grid-column: 1;
    grid-row: span 1;
  }
  .collage-item--video { grid-row: span 2; }
  .principle-path {
    grid-template-columns: 1fr;
    grid-template-areas:
      "scope"
      "materials"
      "protect"
      "water"
      "change"
      "close";
  }
  .principle-watermark { font-size: 4.6rem; }
  .coverage-cities { grid-template-columns: 1fr; }
  .county-atlas-grid { grid-template-columns: 1fr; min-height: 0; }
  .approach-grid { grid-template-columns: 1fr; gap: 24px; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .cta-band-inner { padding-top: 52px; padding-bottom: 52px; }
  .cta-band-actions { flex-direction: column; width: 100%; }
  .cta-band-actions a { text-align: center; }

  .space-compare-panel { border-radius: 18px; }
  .space-compare-media { aspect-ratio: 16 / 11; }
  .form-intro-features { grid-template-columns: 1fr; }
  .form-footer-benefits { justify-content: flex-start; }
  .reviews-carousel { grid-template-columns: minmax(0,1fr); }

  .contact-choices { grid-template-columns: 1fr; }
  .conversion-cards { grid-template-columns: 1fr; }
  .zone-map { grid-template-columns: 1fr; }

  .header-inner { gap: 12px; }
  .brand-logo-img {
    height: 56px;
    max-width: min(260px, 52vw);
  }
  .btn-phone span { display: none; }

  /* Ensure tables scroll on mobile */
  .compare-table-wrap { border-radius: var(--radius-sm); overflow: hidden; }
}

/* -----------------------------------------------------------
   35. RESPONSIVE — SMALL MOBILE (480px and below)
   ----------------------------------------------------------- */
@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .step-number { font-size: 32px; min-width: 44px; }
  .process-step--finale {
    grid-template-columns: 1fr !important;
    padding: 22px 20px !important;
  }
  .process-step--finale .step-number { font-size: 2.6rem; }
  .area-grid { grid-template-columns: 1fr; }
}

/* -----------------------------------------------------------
   35b. BACK TO TOP
   ----------------------------------------------------------- */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 850;
  width: 46px;
  height: 46px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: var(--clr-terracotta);
  color: var(--clr-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(18, 59, 74, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity var(--dur-base) var(--ease-out),
    visibility var(--dur-base) var(--ease-out),
    transform var(--dur-base) var(--ease-out),
    background var(--dur-fast) var(--ease-out);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #9a4228;
  color: var(--clr-white);
}
.back-to-top:focus-visible {
  outline: 3px solid var(--clr-white);
  outline-offset: 3px;
}
@media (max-width: 767px) {
  .back-to-top {
    right: 16px;
    bottom: 20px;
    width: 44px;
    height: 44px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: opacity var(--dur-fast), visibility var(--dur-fast);
    transform: none;
  }
  .back-to-top.is-visible { transform: none; }
}

/* -----------------------------------------------------------
   36. PRINT
   ----------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .hero-image-wrap, .carousel-controls, .back-to-top { display: none; }
  .hero { min-height: auto; padding: 20px 0; }
  .section { padding: 24px 0; }
  a::after { content: ' (' attr(href) ')'; }
}

/* -----------------------------------------------------------
   37. BATHROOM STYLES LOOKBOOK (page-styles only)
   ----------------------------------------------------------- */
.page-styles .styles-hero {
  background:
    radial-gradient(ellipse at 18% 12%, rgba(184,206,199,.16), transparent 42%),
    radial-gradient(ellipse at 88% 88%, rgba(180,83,50,.18), transparent 36%),
    var(--clr-teal);
  padding-top: 108px;
  padding-bottom: 48px;
  color: var(--clr-white);
}
.styles-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 40px 48px;
  align-items: center;
}
.styles-hero-copy h1 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.6vw, 3.55rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--clr-white);
  max-width: 14ch;
}
.styles-hero-kicker {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clr-seaglass);
}
.styles-hero-lede {
  margin: 0 0 28px;
  max-width: 46ch;
  color: rgba(255,255,255,.82);
  font-size: 16.5px;
  line-height: 1.65;
}
.styles-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.styles-hero-index {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
  max-width: 420px;
  counter-reset: none;
}
.styles-hero-index a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
}
.styles-hero-index a span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--clr-terracotta);
}
.styles-hero-index a:hover { color: var(--clr-seaglass); }

.styles-hero-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 200px 170px 150px;
  gap: 10px;
  min-height: 540px;
}
.mosaic-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  text-decoration: none;
  background: #0c2a35;
  height: 100%;
  min-height: 0;
}
.mosaic-tile:focus-visible {
  outline: 3px solid var(--clr-terracotta);
  outline-offset: 3px;
}
.mosaic-tile--hero {
  grid-row: 1 / 3;
  grid-column: 1;
  border-radius: 22px 8px 22px 8px;
}
.mosaic-tile:nth-child(2) { grid-column: 2 / 4; grid-row: 1; }
.mosaic-tile:nth-child(3) { grid-column: 2; grid-row: 2; }
.mosaic-tile:nth-child(4) { grid-column: 1; grid-row: 3; }
.mosaic-tile:nth-child(5) { grid-column: 2; grid-row: 3; }
.mosaic-tile:nth-child(6) { grid-column: 3; grid-row: 2 / 4; }
.mosaic-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 120px;
  transition: transform 600ms var(--ease-out);
}
.mosaic-tile:hover img { transform: scale(1.05); }
.mosaic-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(18,59,74,.78);
  color: var(--clr-white);
  font-size: 12.5px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.mosaic-label em {
  font-family: var(--font-display);
  font-style: normal;
  color: var(--clr-seaglass);
}

.lookbook-nav {
  position: sticky;
  top: 76px;
  z-index: 80;
  background: rgba(247,242,234,.94);
  border-bottom: 1px solid rgba(18,59,74,.1);
  backdrop-filter: blur(14px);
}
.lookbook-nav-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 54px;
}
.lookbook-nav-label {
  margin: 0;
  flex: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clr-terracotta);
}
.lookbook-nav-links {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 8px 0;
  scrollbar-width: none;
}
.lookbook-nav-links::-webkit-scrollbar { display: none; }
.lookbook-nav-links a {
  flex: none;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--clr-teal);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.lookbook-nav-links a:hover,
.lookbook-nav-links a.is-active,
.lookbook-nav-links a[aria-current="true"] {
  background: var(--clr-teal);
  color: var(--clr-white);
}

.lookbook-chapter {
  padding: 72px 0;
  background: var(--clr-white);
  scroll-margin-top: 140px;
}
.lookbook-chapter--limestone { background: var(--clr-limestone); }
.lookbook-chapter--sand { background: var(--clr-sand); }
.lookbook-chapter--teal {
  background: var(--clr-teal);
}
.lookbook-chapter--teal h2,
.lookbook-chapter--teal .lookbook-copy p,
.lookbook-chapter--teal .lookbook-materials li,
.lookbook-chapter--teal .lookbook-palette li {
  color: var(--clr-white);
}
.lookbook-chapter--teal .lookbook-kicker,
.lookbook-chapter--teal .lookbook-palette-label { color: var(--clr-seaglass); }
.lookbook-chapter--teal .lookbook-aside {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
}
.lookbook-chapter--teal .btn-text-link { color: var(--clr-seaglass); }
.lookbook-chapter--teal .btn-text-link:hover { color: var(--clr-white); border-color: var(--clr-seaglass); }
.lookbook-chapter--spa {
  background:
    radial-gradient(circle at 80% 20%, rgba(184,206,199,.35), transparent 32%),
    var(--clr-sand);
}

.lookbook-spread {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 40px 48px;
  align-items: center;
}
.lookbook-chapter--flip .lookbook-spread {
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
}
.lookbook-chapter--flip .lookbook-media { order: 2; }
.lookbook-chapter--flip .lookbook-copy { order: 1; }
.lookbook-spread--feature {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  align-items: stretch;
}

.lookbook-media {
  position: relative;
  border-radius: 28px 8px 28px 8px;
  overflow: hidden;
  min-height: 420px;
  background: var(--clr-limestone);
  box-shadow: 0 18px 40px rgba(18,59,74,.14);
}
.lookbook-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 420px;
}
.lookbook-index {
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 4.6rem);
  font-weight: 600;
  line-height: .8;
  color: rgba(255,255,255,.92);
  text-shadow: 0 8px 24px rgba(18,59,74,.35);
  pointer-events: none;
}

.lookbook-copy h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  font-weight: 600;
}
.lookbook-kicker {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clr-terracotta);
}
.lookbook-copy > p {
  margin: 0 0 22px;
  color: #4f5f64;
  font-size: 16.5px;
}
.lookbook-copy--card {
  background: var(--clr-white);
  border-radius: 24px;
  padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 16px 40px rgba(18,59,74,.1);
}
.lookbook-palette-label {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clr-terracotta);
}
.lookbook-palette {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin: 0 0 22px;
}
.lookbook-palette li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--clr-teal);
}
.lookbook-swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(18,59,74,.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.4);
  flex: none;
}
.lookbook-materials {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 20px;
}
.lookbook-materials li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  color: #3d4c51;
}
.lookbook-materials li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clr-terracotta);
}
.lookbook-aside {
  margin: 0 0 22px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(18,59,74,.05);
  color: #3d4c51;
  font-size: 15px;
  max-width: none;
}
.lookbook-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.lookbook-chapter--teal .lookbook-swatch {
  border-color: rgba(255,255,255,.35);
}
.page-styles #lead-form { scroll-margin-top: 96px; }

@media (prefers-reduced-motion: reduce) {
  .mosaic-tile img { transition: none; }
  .mosaic-tile:hover img { transform: none; }
}

.style-match-section { background: var(--clr-sand); }
.style-match-section .section-intro { max-width: 640px; margin-bottom: 36px; }
.style-match-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.style-match-card {
  background: var(--clr-white);
  border-radius: 22px;
  padding: 26px 24px 24px;
  box-shadow: 0 10px 28px rgba(18,59,74,.07);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.style-match-place {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-terracotta);
}
.style-match-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
}
.style-match-card p { margin: 0 0 18px; color: #54656a; font-size: 15px; }
.style-match-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.style-match-tags a {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--clr-teal);
  color: var(--clr-white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.style-match-tags a:hover { background: #0e2f3b; color: var(--clr-white); }
.style-match-card--cta {
  background: var(--clr-teal);
  color: var(--clr-white);
}
.style-match-card--cta h3,
.style-match-card--cta p { color: var(--clr-white); }
.style-match-card--cta .style-match-place { color: var(--clr-seaglass); }
.style-match-card--cta .btn-primary { margin-top: auto; align-self: flex-start; }

.recipe-section { background: var(--clr-white); }
.recipe-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.recipe-card {
  position: relative;
  padding: 28px 24px 24px;
  border-radius: 24px 8px 24px 8px;
  background: var(--clr-sand);
  overflow: hidden;
}
.recipe-num {
  position: absolute;
  top: 8px;
  right: 14px;
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 600;
  color: rgba(18,59,74,.08);
  line-height: 1;
}
.recipe-card h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
}
.recipe-layers {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 16px;
}
.recipe-layers li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: #3d4c51;
}
.recipe-chip {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(18,59,74,.12);
  flex: none;
}
.recipe-card p { margin: 0; color: #54656a; font-size: 14.5px; }

.finish-section { background: var(--clr-limestone); }
.finish-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.finish-card {
  background: var(--clr-white);
  border-radius: 18px;
  padding: 22px 20px 18px;
  box-shadow: 0 8px 24px rgba(18,59,74,.07);
}
.finish-card h3 {
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(18,59,74,.1);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
}
.finish-card dl { margin: 0; }
.finish-card dl > div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(18,59,74,.06);
}
.finish-card dl > div:last-child { border-bottom: 0; }
.finish-card dt {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-terracotta);
}
.finish-card dd {
  margin: 0;
  font-size: 14px;
  color: #3d4c51;
}

.styles-invite {
  padding: 24px 0 8px;
  background: var(--clr-sand);
}
.styles-invite-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 36px 48px;
  align-items: center;
  padding: clamp(32px, 4.5vw, 52px);
  background:
    radial-gradient(circle at 88% 18%, rgba(184,206,199,.22), transparent 28%),
    var(--clr-teal);
  border-radius: 32px 10px 32px 10px;
  box-shadow: 0 22px 48px rgba(18,59,74,.18);
  overflow: hidden;
}
.styles-invite-kicker {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clr-seaglass);
}
.styles-invite-copy h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--clr-white);
  max-width: 16ch;
}
.styles-invite-copy p {
  margin: 0 0 22px;
  color: rgba(255,255,255,.8);
  font-size: 16px;
  max-width: 46ch;
}
.styles-invite-swatches {
  display: flex;
  gap: 8px;
}
.styles-invite-swatches li {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.28);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}
.styles-invite-actions {
  display: grid;
  gap: 12px;
}
.styles-invite-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 16px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.06);
  color: var(--clr-white);
  transition: background var(--dur-fast), border-color var(--dur-fast), transform var(--dur-fast);
}
.styles-invite-btn:hover {
  background: rgba(255,255,255,.12);
  color: var(--clr-white);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-1px);
}
.styles-invite-btn--primary {
  background: var(--clr-terracotta);
  border-color: var(--clr-terracotta);
}
.styles-invite-btn--primary:hover {
  background: #9a3f26;
  border-color: #9a3f26;
  color: var(--clr-white);
}
.styles-invite-btn-label {
  font-size: 16.5px;
  font-weight: 800;
}
.styles-invite-btn-note {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.78);
}
.styles-invite-btn--primary .styles-invite-btn-note {
  color: rgba(255,255,255,.88);
}

@media (max-width: 1024px) {
  .styles-invite-panel { grid-template-columns: 1fr; }
  .styles-hero-grid,
  .lookbook-spread,
  .lookbook-chapter--flip .lookbook-spread,
  .lookbook-spread--feature {
    grid-template-columns: 1fr;
  }
  .lookbook-chapter--flip .lookbook-media,
  .lookbook-chapter--flip .lookbook-copy { order: unset; }
  .styles-hero-mosaic {
    min-height: 0;
    grid-template-rows: 170px 150px 130px;
  }
  .style-match-grid,
  .recipe-board,
  .finish-board { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .page-styles .styles-hero { padding-top: 96px; padding-bottom: 32px; }
  .styles-hero-copy h1 { max-width: none; }
  .styles-hero-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 210px 140px 140px 140px;
    min-height: 0;
  }
  .mosaic-tile--hero { grid-row: 1; grid-column: 1 / 3; border-radius: 16px; }
  .mosaic-tile:nth-child(2) { grid-column: 1; grid-row: 2; }
  .mosaic-tile:nth-child(3) { grid-column: 2; grid-row: 2; }
  .mosaic-tile:nth-child(4) { grid-column: 1; grid-row: 3; }
  .mosaic-tile:nth-child(5) { grid-column: 2; grid-row: 3; }
  .mosaic-tile:nth-child(6) { grid-column: 1 / 3; grid-row: 4; }
  .lookbook-nav { top: 64px; }
  .lookbook-chapter { padding: 48px 0; scroll-margin-top: 128px; }
  .lookbook-media,
  .lookbook-media img { min-height: 260px; }
  .style-match-grid,
  .recipe-board,
  .finish-board { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .styles-hero-index { grid-template-columns: 1fr; }
  .lookbook-palette { grid-template-columns: 1fr; }
}

/* -----------------------------------------------------------
   38. ABOUT PAGE — PRACTICE DOSSIER (page-about only)
   ----------------------------------------------------------- */
.page-about #practice,
.page-about #model,
.page-about #notes,
.page-about #license,
.page-about #voices,
.page-about #lead-form {
  scroll-margin-top: 92px;
}

.about-kicker {
  margin: 0 0 10px;
  color: var(--clr-terracotta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.about-kicker--light { color: var(--clr-seaglass); }

.about-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--clr-seaglass);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.about-copy .about-text-link,
.about-briefing .about-text-link {
  color: var(--clr-eucalyptus);
}
.about-text-link:hover { color: var(--clr-terracotta); }

.about-index {
  background: var(--clr-white);
  border-bottom: 1px solid rgba(18,59,74,.08);
}
.about-index-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 4px;
  padding: 14px 0;
}
.about-index-list a {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 14px;
  color: var(--clr-teal);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
}
.about-index-list a span {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-terracotta);
}
.about-index-list a:hover {
  background: var(--clr-sand);
  color: var(--clr-espresso);
}

.about-snapshot {
  padding: 72px 0 80px;
  background: var(--clr-sand);
}
.about-snapshot-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.about-stat-pillar {
  position: relative;
  padding: 36px 32px 40px;
  color: var(--clr-white);
  background:
    linear-gradient(165deg, rgba(184,206,199,.12) 0%, transparent 42%),
    var(--clr-teal);
  border-radius: 4px 40px 4px 40px;
  overflow: hidden;
}
.about-stat-pillar::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 160px;
  height: 160px;
  border: 18px solid rgba(184,206,199,.12);
  border-radius: 50%;
  pointer-events: none;
}
.about-stat-kicker {
  margin: 0 0 8px;
  color: var(--clr-seaglass);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: clamp(5.4rem, 8vw, 7.2rem);
  font-weight: 600;
  line-height: .82;
  letter-spacing: -.04em;
  color: var(--clr-white);
  margin: 0 0 12px;
}
.about-stat-num span { color: var(--clr-terracotta); }
.about-stat-caption {
  margin: 0 0 28px;
  max-width: 22ch;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.45;
}
.about-metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(184,206,199,.28);
}
.about-metrics li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about-metrics strong {
  color: var(--clr-white);
  font-size: 15px;
}
.about-metrics span {
  color: rgba(255,255,255,.7);
  font-size: 13.5px;
  line-height: 1.4;
}

.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 18px;
}
.about-copy > p {
  color: #4a5c62;
  max-width: 58ch;
}

.about-frames {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 168px 168px;
  gap: 12px;
  margin-top: 32px;
}
.about-frame {
  margin: 0;
  overflow: hidden;
  background: var(--clr-limestone);
}
.about-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-frame--a {
  grid-column: 1;
  grid-row: 1 / 3;
  border-radius: 4px 28px 4px 4px;
}
.about-frame--b {
  grid-column: 2;
  grid-row: 1;
  border-radius: 22px 4px 4px 4px;
}
.about-frame--c {
  grid-column: 2;
  grid-row: 2;
  border-radius: 4px 4px 22px 4px;
}

.about-model {
  background: var(--clr-teal);
  padding: 56px 0;
  color: var(--clr-white);
}
.about-model-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 0;
}
.about-model-media {
  position: relative;
  min-height: 520px;
  height: 100%;
  overflow: hidden;
  border-radius: 4px 48px 4px 4px;
}
.about-model-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 520px;
}
.about-model-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  margin: 0;
  max-width: none;
  padding: 12px 16px;
  background: rgba(18,59,74,.82);
  color: var(--clr-seaglass);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .02em;
}
.about-model-copy {
  padding: 36px 0 40px;
}
.about-model-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.65rem);
  font-weight: 600;
  color: var(--clr-white);
  max-width: 18ch;
  margin: 0 0 18px;
  line-height: 1.12;
}
.about-model-subhead {
  font-size: clamp(1.45rem, 2.3vw, 1.85rem) !important;
  max-width: 22ch !important;
  margin: 28px 0 14px !important;
}
.about-model-copy .btn-primary { margin-top: 24px; }
.about-model-copy p {
  color: rgba(255,255,255,.82);
  max-width: 52ch;
}
.about-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.about-cities li {
  padding: 7px 12px;
  border: 1px solid rgba(184,206,199,.35);
  color: var(--clr-seaglass);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.about-notes {
  padding: 80px 0;
  background: var(--clr-white);
}
.about-notes-head {
  max-width: 640px;
  margin: 0 0 36px;
}
.about-notes-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 600;
  margin: 0 0 12px;
}
.about-notes-head p { color: #4a5c62; }

.about-files {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.about-file {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  min-height: 168px;
  background: var(--clr-sand);
  border: 1px solid rgba(18,59,74,.06);
  border-radius: 2px 18px 2px 2px;
  overflow: hidden;
}
.about-file:nth-child(3n) { background: #f3ece1; }
.about-file-spine {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-teal);
  color: var(--clr-seaglass);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .06em;
}
.about-file-body {
  padding: 22px 24px 24px;
}
.about-file-body h3 {
  font-size: 19px;
  margin: 0 0 8px;
}
.about-file-body p {
  margin: 0;
  color: #4a5c62;
  font-size: 15.5px;
  max-width: none;
}

.about-license {
  padding: 72px 0 80px;
  background:
    repeating-linear-gradient(
      -12deg,
      var(--clr-limestone) 0 18px,
      #d6cbb8 18px 19px
    );
}
.about-sheet {
  position: relative;
  background: #fffdf8;
  padding: clamp(36px, 5vw, 56px);
  box-shadow: 0 18px 50px rgba(18,59,74,.12);
}
.about-sheet-corner {
  position: absolute;
  width: 42px;
  height: 42px;
  border-color: var(--clr-terracotta);
  border-style: solid;
  pointer-events: none;
}
.about-sheet-corner--tl { top: 14px; left: 14px; border-width: 2px 0 0 2px; }
.about-sheet-corner--tr { top: 14px; right: 14px; border-width: 2px 2px 0 0; }
.about-sheet-corner--bl { bottom: 14px; left: 14px; border-width: 0 0 2px 2px; }
.about-sheet-corner--br { bottom: 14px; right: 14px; border-width: 0 2px 2px 0; }
.about-sheet-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
.about-sheet h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  font-weight: 600;
  margin: 0 0 16px;
}
.about-sheet p { color: #4a5c62; }
.about-sheet-aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 22px;
  background: var(--clr-sand);
  border-left: 4px solid var(--clr-terracotta);
}
.about-license-no {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clr-eucalyptus);
}
.about-license-value {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--clr-teal);
  line-height: 1.15;
  max-width: none;
}
.about-stamps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 8px 0 6px;
}
.about-stamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 10px;
  border: 2px dashed var(--clr-eucalyptus);
  border-radius: 50%;
  color: var(--clr-teal);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  transform: rotate(-6deg);
}
.about-stamp:last-child { transform: rotate(5deg); }
.about-stamp span {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6a7d82;
}

.about-voices {
  padding: 80px 0;
  background: var(--clr-sand);
}
.about-voices-head {
  max-width: 640px;
  margin: 0 0 36px;
}
.about-voices-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 600;
  margin: 0 0 14px;
}
.about-voices-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  gap: 16px;
  align-items: stretch;
}
.about-voice {
  margin: 0;
  background: var(--clr-white);
  border: 0;
  padding: 28px 28px 24px;
}
.about-voice p {
  margin: 0;
  max-width: none;
  color: var(--clr-espresso);
}
.about-voice footer {
  margin-top: 16px;
  color: #6a7d82;
  font-size: 13.5px;
  font-weight: 600;
}
.about-voice cite {
  font-style: italic;
  font-weight: 500;
  color: var(--clr-terracotta);
}
.about-voice--feature {
  position: relative;
  padding: 40px 40px 36px;
  background: var(--clr-teal);
  color: var(--clr-white);
  min-height: 100%;
}
.about-voice--feature p {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 600;
  line-height: 1.28;
  color: var(--clr-white);
}
.about-voice--feature footer { color: var(--clr-seaglass); }
.about-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 88px;
  line-height: .4;
  color: var(--clr-terracotta);
  margin-bottom: 18px;
}
.about-voice-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-briefing {
  padding: 80px 0;
  background: var(--clr-white);
}
.about-briefing-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.about-briefing-intro {
  position: sticky;
  top: 96px;
}
.about-briefing-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 600;
  margin: 0 0 14px;
}
.about-briefing-intro p { color: #4a5c62; }
.page-about .about-faq .faq-item {
  border: 0;
  border-bottom: 1px solid var(--clr-limestone);
}
.page-about .about-faq .faq-question {
  padding-left: 0;
  font-size: 17.5px;
}

.about-close {
  padding: 8px 0 64px;
  background: var(--clr-sand);
}
.about-close-panel {
  position: relative;
  overflow: hidden;
  background: var(--clr-teal);
  box-shadow: 0 18px 48px rgba(18,59,74,.16);
}
.about-close-panel::before,
.about-close-panel::after {
  content: "";
  position: absolute;
  width: 56px;
  height: 56px;
  border-color: rgba(184,206,199,.45);
  border-style: solid;
  pointer-events: none;
  z-index: 1;
}
.about-close-panel::before {
  top: 16px;
  left: 16px;
  border-width: 2px 0 0 2px;
}
.about-close-panel::after {
  top: 16px;
  right: 16px;
  border-width: 2px 2px 0 0;
}
.about-close-copy {
  padding: 56px 48px 32px;
  text-align: center;
}
.about-close-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--clr-white);
  margin: 0 auto 12px;
  max-width: 16ch;
  line-height: 1.12;
}
.about-close-copy p {
  margin: 0 auto;
  max-width: 42ch;
  color: rgba(255,255,255,.78);
  font-size: 17px;
}
.about-close-doors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(184,206,199,.22);
}
.about-close-door {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 18px 24px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .02em;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.about-close-door--estimate {
  background: var(--clr-terracotta);
  color: var(--clr-white);
}
.about-close-door--estimate:hover {
  background: #9a4428;
  color: var(--clr-white);
}
.about-close-door--call {
  background: transparent;
  color: var(--clr-seaglass);
  border-left: 1px solid rgba(184,206,199,.22);
}
.about-close-door--call:hover {
  background: rgba(255,255,255,.06);
  color: var(--clr-white);
}

.page-about .about-form {
  background:
    linear-gradient(180deg, var(--clr-sand) 0 48px, transparent 48px),
    var(--clr-limestone);
  border-bottom: 0;
}
.page-about .about-form .form-section-inner {
  padding-top: 40px;
  padding-bottom: 72px;
}

@media (max-width: 1024px) {
  .about-snapshot-grid,
  .about-sheet-grid,
  .about-voices-grid,
  .about-briefing-grid {
    grid-template-columns: 1fr;
  }
  .about-model-grid { grid-template-columns: 1fr; }
  .about-model-media,
  .about-model-media img { min-height: 340px; }
  .about-model-copy { padding: 8px 0 12px; }
  .about-briefing-intro { position: static; }
  .about-files { grid-template-columns: 1fr; }
  .about-close-copy { padding: 48px 32px 28px; }
}

@media (max-width: 767px) {
  .about-index-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .about-index-list::-webkit-scrollbar { display: none; }
  .about-index-list a { white-space: nowrap; }
  .about-snapshot { padding: 48px 0 56px; }
  .about-stat-pillar { border-radius: 4px 28px 4px 28px; }
  .about-frames {
    grid-template-rows: 140px 140px;
  }
  .about-notes,
  .about-voices,
  .about-briefing,
  .about-license { padding: 52px 0; }
  .about-file {
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 0;
  }
  .about-model-media { border-radius: 4px 28px 4px 4px; }
  .about-voice--feature { padding: 28px 24px; }
  .about-mark { font-size: 64px; }
  .about-stamps { grid-template-columns: 1fr 1fr; }
  .about-close-copy { padding: 40px 22px 24px; }
  .about-close-copy h2 { max-width: none; }
  .about-close-doors { grid-template-columns: 1fr; }
  .about-close-door--call { border-left: 0; border-top: 1px solid rgba(184,206,199,.22); }
  .about-close-door { min-height: 76px; }
}

/* -----------------------------------------------------------
   39. SERVICE AREAS — COUNTY GAZETTEER (page-areas only)
   ----------------------------------------------------------- */
.page-areas #locations,
.page-areas #permits,
.page-areas #services,
.page-areas #faqs,
.page-areas #availability,
.page-areas #lead-form {
  scroll-margin-top: 92px;
}

.areas-index {
  background: var(--clr-teal);
  background-image:
    linear-gradient(rgba(184,206,199,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,206,199,.09) 1px, transparent 1px);
  background-size: 22px 22px;
  border-bottom: 3px solid var(--clr-terracotta);
}
.areas-index-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 10px 0;
}
.areas-index-list a {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 16px;
  color: var(--clr-white);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  border-right: 1px solid rgba(184,206,199,.18);
}
.areas-index-list li:last-child a { border-right: 0; }
.areas-index-list a span {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-terracotta);
}
.areas-index-list a:hover {
  background: rgba(255,255,255,.08);
  color: var(--clr-seaglass);
}

.areas-atlas {
  padding: 72px 0 80px;
  background: var(--clr-sand);
}
.areas-atlas-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
  margin-bottom: 48px;
}
.areas-atlas-copy {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.areas-atlas-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 3.4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 16px;
}
.areas-atlas-copy > p {
  color: #4a5c62;
  max-width: 54ch;
}
.areas-atlas-copy .dev-notice { margin: 0 0 16px; }
.areas-legend {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 20px 22px;
  background: #fffdf8;
  border: 1px solid rgba(18,59,74,.08);
}
.areas-legend li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--clr-teal);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.areas-swatch {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(18,59,74,.18);
}
.areas-swatch--coast { background: #b8cec7; }
.areas-swatch--north { background: #c5d6d1; }
.areas-swatch--central { background: #ded3c2; }
.areas-swatch--east { background: #e8ddd0; }
.areas-swatch--south { background: #f7f2ea; }
.areas-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0 28px;
}
.areas-facts div {
  padding: 18px 16px 16px;
  background: var(--clr-teal);
  color: var(--clr-white);
}
.areas-facts dt {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: .9;
  color: var(--clr-white);
}
.areas-facts dd {
  margin: 8px 0 0;
  color: var(--clr-seaglass);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  max-width: 16ch;
}
.areas-atlas-copy .btn-primary {
  margin-top: auto;
  align-self: flex-start;
}

.areas-plat {
  margin: 0;
  background: #0c2832;
  padding: 16px 16px 10px;
  color: var(--clr-seaglass);
  box-shadow: 0 18px 40px rgba(18,59,74,.18);
  height: 100%;
}
.areas-plat figcaption {
  margin: 0 0 10px;
  color: var(--clr-white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-align: center;
}
.areas-plat-map {
  display: block;
  width: 100%;
  height: auto;
  background: #0c2832;
}

.areas-ledger h3,
.areas-unincorporated h3 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  font-weight: 600;
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(18,59,74,.14);
}
.areas-gazetteer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 2px solid var(--clr-teal);
  margin-bottom: 48px;
  background: var(--clr-white);
}
.areas-gazetteer li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: baseline;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(18,59,74,.08);
  border-right: 1px solid rgba(18,59,74,.08);
}
.areas-gazetteer li:nth-child(odd) { background: #fffdf8; }
.areas-gaz-num {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-terracotta);
  letter-spacing: .04em;
}
.areas-gaz-name {
  color: var(--clr-teal);
  font-weight: 800;
  font-size: 15px;
}
.areas-gaz-type {
  color: #6a7d82;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  text-align: right;
}

.areas-unincorporated {
  padding: 28px 28px 24px;
  background:
    linear-gradient(180deg, rgba(18,59,74,.04), transparent 48px),
    #fffdf8;
  border: 1px dashed rgba(18,59,74,.22);
}
.areas-hamlets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 0 0 20px;
}
.areas-hamlets li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 6px 4px;
  color: var(--clr-teal);
  font-weight: 700;
  font-size: 15px;
  border-bottom: 1px dotted rgba(18,59,74,.16);
}
.areas-pin {
  width: 10px;
  height: 10px;
  border-radius: 50% 50% 50% 0;
  background: var(--clr-terracotta);
  transform: rotate(-45deg);
  flex-shrink: 0;
}

.areas-jurisdiction {
  padding: 80px 0;
  background: var(--clr-white);
}
.areas-jurisdiction-head {
  max-width: 760px;
  margin: 0 0 36px;
}
.areas-jurisdiction-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 600;
  line-height: 1.14;
  margin: 0 0 16px;
}
.areas-jurisdiction-head p { color: #4a5c62; }
.areas-boundary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.areas-boundary::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 50%;
  width: 2px;
  margin-left: -1px;
  background:
    repeating-linear-gradient(
      to bottom,
      var(--clr-terracotta) 0 10px,
      transparent 10px 18px
    );
  pointer-events: none;
  z-index: 1;
}
.areas-side {
  padding: 32px 36px;
  min-height: 220px;
}
.areas-side h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  margin: 0 0 12px;
}
.areas-side p {
  margin: 0;
  max-width: none;
  color: inherit;
}
.areas-side--city {
  background: var(--clr-teal);
  color: var(--clr-white);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
  padding-right: 48px;
}
.areas-side--city h3 { color: var(--clr-white); }
.areas-side--city p { color: rgba(255,255,255,.82); }
.areas-side--county {
  background: var(--clr-sand);
  color: var(--clr-espresso);
  clip-path: polygon(18px 0, 100% 0, 100% 100%, 18px 100%, 0 50%);
  padding-left: 48px;
}
.areas-side--county h3 { color: var(--clr-teal); }
.areas-side--county p { color: #4a5c62; }
.areas-access {
  margin-top: 14px;
  padding: 24px 28px;
  background: var(--clr-sand);
  border-left: 4px solid var(--clr-eucalyptus);
}
.areas-access h3 {
  font-size: 1.25rem;
  margin: 0 0 8px;
}
.areas-access p {
  margin: 0;
  max-width: 72ch;
  color: #4a5c62;
}

.areas-offer {
  padding: 80px 0;
  background: var(--clr-teal);
  color: var(--clr-white);
}
.areas-offer-head {
  max-width: 640px;
  margin: 0 0 36px;
}
.areas-offer-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 600;
  color: var(--clr-white);
  margin: 0 0 12px;
  line-height: 1.14;
}
.areas-offer-head p {
  color: rgba(255,255,255,.78);
  max-width: none;
}
.areas-route {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  background: rgba(184,206,199,.18);
  position: relative;
}
.areas-route a {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 188px;
  padding: 28px 26px 24px;
  background: #163f4d;
  color: inherit;
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease-out);
}
.areas-route a:hover {
  background: #1c4d5d;
  color: inherit;
}
.areas-route-stop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border: 1px solid var(--clr-terracotta);
  border-radius: 50%;
  color: var(--clr-terracotta);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
}
.areas-route h3 {
  font-size: 1.2rem;
  color: var(--clr-white);
  margin: 0 0 8px;
}
.areas-route p {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 14.5px;
  max-width: none;
}

.areas-brief {
  padding: 80px 0;
  background: var(--clr-sand);
}
.areas-brief-grid {
  display: grid;
  grid-template-columns: minmax(200px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.areas-brief-intro {
  position: sticky;
  top: 96px;
}
.areas-brief-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  font-weight: 600;
  margin: 0;
  line-height: 1.14;
}
.page-areas .areas-faq {
  max-width: none;
  margin: 0;
}
.page-areas .areas-faq .faq-item {
  border: 0;
  background: var(--clr-white);
  margin-bottom: 10px;
  padding: 0 8px 0 18px;
  border-left: 3px solid var(--clr-terracotta);
}
.page-areas .areas-faq .faq-question {
  padding-left: 0;
  font-size: 17.5px;
}

.areas-bearing {
  padding: 8px 0 64px;
  background: var(--clr-sand);
}
.areas-bearing-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px 36px;
  align-items: center;
  padding: 36px 40px;
  background: var(--clr-teal);
  color: var(--clr-white);
  box-shadow: 0 18px 48px rgba(18,59,74,.16);
}
.areas-bearing-mark { color: var(--clr-seaglass); }
.areas-bearing-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  font-weight: 600;
  color: var(--clr-white);
  margin: 0 0 8px;
  line-height: 1.14;
  max-width: 16ch;
}
.areas-bearing-copy p {
  margin: 0;
  color: rgba(255,255,255,.76);
  max-width: 42ch;
}
.areas-bearing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.page-areas .areas-form {
  background:
    linear-gradient(180deg, var(--clr-sand) 0 48px, transparent 48px),
    var(--clr-limestone);
  border-bottom: 0;
}
.page-areas .areas-form .form-section-inner {
  padding-top: 40px;
  padding-bottom: 72px;
}

@media (max-width: 1200px) {
  .areas-index-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .areas-index-list::-webkit-scrollbar { display: none; }
  .areas-index-list a { white-space: nowrap; }
}

@media (max-width: 1024px) {
  .areas-atlas-head,
  .areas-brief-grid,
  .areas-boundary {
    grid-template-columns: 1fr;
  }
  .areas-brief-intro { position: static; }
  .areas-boundary::before { display: none; }
  .areas-side--city,
  .areas-side--county {
    clip-path: none;
    padding: 28px 24px;
  }
  .areas-gazetteer { grid-template-columns: 1fr; }
  .areas-route { grid-template-columns: 1fr 1fr; }
  .areas-bearing-panel {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 28px;
  }
  .areas-bearing-mark { margin: 0 auto; }
  .areas-bearing-copy h2 { max-width: none; margin-left: auto; margin-right: auto; }
  .areas-bearing-copy p { margin-left: auto; margin-right: auto; }
  .areas-bearing-actions { justify-content: center; }
}

@media (max-width: 767px) {
  .areas-index-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .areas-index-list::-webkit-scrollbar { display: none; }
  .areas-index-list a { white-space: nowrap; }
  .areas-atlas,
  .areas-jurisdiction,
  .areas-offer,
  .areas-brief { padding: 52px 0; }
  .areas-atlas-copy .btn-primary { width: 100%; text-align: center; }
  .areas-gazetteer li {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 6px 10px;
  }
  .areas-gaz-type {
    grid-column: 2;
    text-align: left;
  }
  .areas-hamlets { grid-template-columns: 1fr 1fr; }
  .areas-unincorporated { padding: 20px 16px 16px; }
  .areas-route { grid-template-columns: 1fr; }
  .areas-route a { min-height: 0; }
  .areas-bearing-actions { flex-direction: column; }
  .areas-bearing-actions a { width: 100%; text-align: center; }
}

/* -----------------------------------------------------------
   40. CONTACT PAGE — DIRECT LINE DESK (page-contact only)
   ----------------------------------------------------------- */
.page-contact #contact-section,
.page-contact #contact-lead-form,
.page-contact #after,
.page-contact #fit,
.page-contact #faqs {
  scroll-margin-top: 92px;
}

.contact-lines {
  background:
    linear-gradient(180deg, #0f333f 0 28px, transparent 28px),
    var(--clr-sand);
  padding: 0 0 12px;
}
.contact-windows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.contact-window {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 430px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
}
.contact-window:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(18,59,74,.18);
}
.contact-window-plate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.contact-window-num {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}
.contact-window-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-window-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 32px 32px 36px;
}
.contact-window h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 2.6vw, 2.35rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 14px;
  max-width: 14ch;
}
.contact-window p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 28px;
}
.contact-window .btn-primary,
.contact-window .btn-secondary {
  margin-top: auto;
  align-self: flex-start;
  white-space: normal;
}

.contact-window--call {
  background: var(--clr-teal);
  border-radius: 0 0 4px 28px;
  margin-top: 0;
}
.contact-window--call .contact-window-plate {
  background: rgba(184,206,199,.1);
  border-bottom: 1px solid rgba(184,206,199,.16);
  color: var(--clr-seaglass);
}
.contact-window--call .contact-window-icon {
  background: var(--clr-terracotta);
  color: var(--clr-white);
}
.contact-window--call h2 { color: var(--clr-white); }
.contact-window--call p { color: rgba(255,255,255,.82); }

.contact-window--write {
  background: var(--clr-white);
  border: 1px solid var(--clr-limestone);
  border-radius: 0 0 28px 4px;
  box-shadow: var(--shadow-card);
}
.contact-window--write .contact-window-plate {
  background: var(--clr-limestone);
  color: var(--clr-teal);
}
.contact-window--write .contact-window-icon {
  background: var(--clr-teal);
  color: var(--clr-seaglass);
}
.contact-window--write h2 { color: var(--clr-teal); }
.contact-window--write p { color: #4a5c62; }

.page-contact .contact-desk {
  padding-top: 0;
  padding-bottom: 0;
  background: var(--clr-sand);
  border-bottom: 0;
}
.page-contact .contact-desk .form-section-inner {
  padding-top: 56px;
  padding-bottom: 80px;
}
.page-contact .form-layout-split {
  grid-template-columns: minmax(380px, 1.12fr) minmax(0, .88fr);
  align-items: start;
}
.page-contact .form-column { order: 1; }
.page-contact .form-intro-column { order: 2; }

.contact-blotter {
  background: var(--clr-white);
  border: 1px solid rgba(18,59,74,.08);
  border-radius: 4px;
  padding: 32px 28px 28px;
  box-shadow: 10px 10px 0 var(--clr-seaglass);
  position: relative;
}
.contact-blotter::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-style: solid;
  border-width: 0 18px 18px 0;
  border-color: var(--clr-sand) var(--clr-sand) transparent transparent;
}
.page-contact .contact-blotter h2 {
  max-width: 16ch;
}
@media (min-width: 1025px) {
  .page-contact .form-intro-column {
    position: sticky;
    top: 96px;
  }
}

.contact-ticket {
  position: relative;
  overflow: hidden;
  border-radius: 4px 18px 18px 4px;
  padding-left: clamp(36px, 4vw, 48px) !important;
}
.contact-ticket-stub {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 22px;
  background:
    radial-gradient(circle at 22px 14px, var(--clr-sand) 5px, transparent 5.5px) 0 8px / 22px 26px,
    var(--clr-teal);
  pointer-events: none;
}

.contact-sequence {
  background: var(--clr-white);
  padding: 88px 0 80px;
  border-top: 1px solid var(--clr-limestone);
}
.contact-sequence-head {
  text-align: center;
  margin-bottom: 52px;
}
.contact-sequence-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin: 0 auto;
}
.contact-log {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 24px;
  position: relative;
}
.contact-log::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--clr-seaglass) 0 12px,
    transparent 12px 20px
  );
  pointer-events: none;
}
.contact-log li {
  position: relative;
  z-index: 1;
}
.contact-log-station {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-teal);
  color: var(--clr-seaglass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 18px;
  box-shadow: 0 0 0 6px var(--clr-white);
}
.contact-log h3 {
  font-size: 18px;
  margin: 0 0 10px;
  color: var(--clr-teal);
  max-width: 16ch;
}
.contact-log p {
  font-size: 15px;
  color: #4a5c62;
  margin: 0;
  max-width: 32ch;
}
.contact-memo {
  margin: 44px auto 0;
  max-width: 68ch;
  background:
    repeating-linear-gradient(
      transparent 0 26px,
      rgba(184,206,199,.4) 26px 27px
    ),
    #fffdf8;
  border-left: 4px solid var(--clr-terracotta);
  padding: 18px 22px;
  font-size: 15px;
  color: #4a5c62;
  box-shadow: 0 10px 28px rgba(18,59,74,.06);
}

.contact-coverage {
  background-color: var(--clr-sand);
  background-image: radial-gradient(rgba(18,59,74,.1) 1px, transparent 1.2px);
  background-size: 18px 18px;
  padding: 72px 0;
}
.contact-coverage-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: stretch;
  background: var(--clr-white);
  border: 1px solid var(--clr-limestone);
  border-radius: 4px 32px 4px 32px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.contact-pin {
  background:
    radial-gradient(circle at 50% 28%, rgba(184,206,199,.18), transparent 58%),
    var(--clr-teal);
  color: var(--clr-seaglass);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 16px;
}
.contact-pin-mark { display: block; }
.contact-coverage-copy {
  padding: 44px 44px 44px 36px;
}
.contact-coverage-copy h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 2.8vw, 2.4rem);
  margin: 0 0 16px;
  max-width: 16ch;
}
.contact-coverage-copy p {
  color: #4a5c62;
  margin: 0 0 14px;
}
.contact-coverage-copy .btn-text-link { margin-top: 10px; }

.contact-inquiries {
  background: var(--clr-limestone);
  padding: 0 0 80px;
}
.contact-inquiries-band {
  background: var(--clr-teal);
  padding: 32px 0;
  margin-bottom: 36px;
}
.contact-inquiries-band h2 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--clr-white);
  margin: 0;
  font-size: clamp(1.85rem, 2.8vw, 2.4rem);
}
.contact-faq {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-contact .contact-faq .faq-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: start;
  background: var(--clr-white);
  border: 0;
  border-radius: 4px;
  padding: 4px 18px 8px 10px;
  box-shadow: 0 8px 22px rgba(18,59,74,.06);
}
.contact-postage {
  grid-column: 1;
  grid-row: 1;
  width: 38px;
  height: 38px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed var(--clr-terracotta);
  color: var(--clr-terracotta);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  border-radius: 2px;
}
.page-contact .contact-faq .faq-question {
  grid-column: 2;
  grid-row: 1;
  padding: 18px 0;
  font-size: 16.5px;
}
.page-contact .contact-faq .faq-answer {
  grid-column: 2;
  grid-row: 2;
  padding-bottom: 16px;
}
.page-contact .contact-faq .faq-answer p { max-width: none; }

@media (max-width: 1024px) {
  .contact-windows { grid-template-columns: 1fr; gap: 20px; }
  .contact-window { min-height: 0; }
  .contact-window--write { margin-top: 0; }
  .contact-log { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
  .contact-log::before { display: none; }
  .contact-coverage-grid { grid-template-columns: 180px minmax(0, 1fr); }
  .contact-coverage-copy { padding: 36px 28px; }
  .page-contact .form-layout-split { grid-template-columns: 1fr; }
  .page-contact .form-intro-column { position: static; }
}

@media (max-width: 767px) {
  .contact-window-body { padding: 28px 22px 28px; }
  .contact-window h2 { max-width: none; }
  .contact-window .btn-primary,
  .contact-window .btn-secondary { width: 100%; text-align: center; }
  .page-contact .contact-desk .form-section-inner {
    padding-top: 36px;
    padding-bottom: 56px;
  }
  .contact-blotter { box-shadow: 6px 6px 0 var(--clr-seaglass); padding: 24px 20px; }
  .contact-ticket { border-radius: 4px 14px 14px 4px; }
  .contact-sequence { padding: 56px 0 52px; }
  .contact-sequence-head { margin-bottom: 32px; text-align: left; }
  .contact-log { grid-template-columns: 1fr; gap: 0; }
  .contact-log li {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 0 16px;
    padding-bottom: 28px;
    position: relative;
  }
  .contact-log li:last-child { padding-bottom: 0; }
  .contact-log li::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 46px;
    bottom: 0;
    width: 2px;
    background: var(--clr-seaglass);
  }
  .contact-log li:last-child::before { display: none; }
  .contact-log-station {
    grid-row: 1 / span 2;
    margin-bottom: 0;
    box-shadow: 0 0 0 4px var(--clr-white);
  }
  .contact-log h3 { max-width: none; }
  .contact-log p { max-width: none; }
  .contact-memo { margin-top: 28px; }
  .contact-coverage { padding: 48px 0; }
  .contact-coverage-grid {
    grid-template-columns: 1fr;
    border-radius: 4px 24px 4px 4px;
  }
  .contact-pin { padding: 28px 16px; }
  .contact-pin-mark { width: 120px; height: 150px; }
  .contact-coverage-copy { padding: 28px 22px 32px; }
  .contact-coverage-copy h2 { max-width: none; }
  .contact-inquiries { padding-bottom: 56px; }
  .contact-inquiries-band { padding: 24px 0; margin-bottom: 24px; }
  .page-contact .contact-faq .faq-item {
    grid-template-columns: 40px minmax(0, 1fr);
    padding-right: 12px;
  }
  .contact-postage { width: 32px; height: 32px; font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .contact-window { transition: none; }
  .contact-window:hover { transform: none; }
}

/* -----------------------------------------------------------
   41. BATHTUB INSTALLATION — SOAK STUDIO (page-tub only)
   ----------------------------------------------------------- */
.page-tub #lead-form,
.page-tub #scope,
.page-tub #types,
.page-tub #fit,
.page-tub #materials,
.page-tub #process,
.page-tub #options {
  scroll-margin-top: 92px;
}

.page-tub .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tub-kicker {
  display: inline-block;
  margin: 0 0 10px;
  color: var(--clr-terracotta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.tub-kicker--light { color: var(--clr-seaglass); }

.tub-section-head {
  max-width: 46rem;
  margin: 0 0 40px;
}
.tub-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
}
.tub-section-head p {
  margin: 16px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 16.5px;
  max-width: 62ch;
}
.tub-section-head--light h2 { color: var(--clr-white); }

.page-tub .tub-consult {
  background: var(--clr-sand);
  border-bottom: 0;
}
.page-tub .tub-consult .form-section-inner {
  padding-top: 48px;
  padding-bottom: 40px;
}
.tub-consult-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  background: var(--clr-white);
  border: 1px solid rgba(18,59,74,.1);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: none;
}
.tub-consult-grid::before {
  content: "";
  grid-column: 1 / -1;
  height: 3px;
  background: var(--clr-terracotta);
}
.page-tub .tub-consult .form-intro-column {
  padding: 36px 40px 40px;
  background: #f3eee6;
  border-right: 1px solid rgba(18,59,74,.08);
}
.page-tub .tub-consult .form-intro-card {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
}
.page-tub .tub-consult .form-intro-eyebrow {
  color: var(--clr-terracotta);
}
.page-tub .tub-consult .form-intro-card h2 {
  color: var(--clr-teal);
  max-width: 13ch;
  margin-bottom: 18px;
}
.page-tub .tub-consult .form-intro-card p {
  color: #4a5c62;
}
.page-tub .tub-consult .form-intro-features {
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(18,59,74,.12);
}
.page-tub .tub-consult .form-intro-features li {
  color: var(--clr-teal);
  font-size: 14px;
}
.page-tub .tub-consult .form-intro-features li::before {
  width: 14px;
  height: 2px;
  min-width: 14px;
  border-radius: 0;
  background: var(--clr-terracotta);
}
.page-tub .tub-consult .form-column {
  padding: 28px 32px 28px;
  background: var(--clr-white);
}
.page-tub .tub-consult .estimate-card {
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.tub-alcoves {
  padding: 88px 0;
  background: var(--clr-sand);
}
.tub-alcove-bays {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "photo photo"
    "same  open";
  background: var(--clr-white);
  border: 1px solid rgba(18,59,74,.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.tub-alcove-wall {
  grid-area: photo;
  margin: 0;
  height: 280px;
  background:
    #123B4A
    url("https://images.pexels.com/photos/7045769/pexels-photo-7045769.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=560&w=1400")
    center / cover no-repeat;
}
.tub-alcove-wall img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tub-bay {
  grid-area: same;
  padding: 36px 40px 42px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid rgba(18,59,74,.08);
}
.tub-bay--open {
  grid-area: open;
  background: #fbf8f3;
  border-left: 1px solid rgba(18,59,74,.08);
}
.tub-bay-mark {
  width: 72px;
  height: 40px;
  color: var(--clr-eucalyptus);
}
.tub-bay-mark svg { width: 100%; height: 100%; }
.tub-bay p {
  margin: 0;
  color: #4a5c62;
  font-size: 16px;
  max-width: none;
}

.tub-showroom {
  padding: 96px 0 108px;
  background:
    radial-gradient(ellipse 80% 55% at 100% 0%, rgba(184,206,199,.14), transparent 52%),
    var(--clr-teal);
}
.tub-showroom .tub-section-head { margin-bottom: 48px; }
.tub-showroom .tub-section-head h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin-top: 18px;
  background: var(--clr-terracotta);
}
.tub-type-ledger {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 28px;
  border: 0;
}
.tub-type {
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 0;
  min-height: 0;
}
.tub-type-media {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  height: auto;
  overflow: hidden;
  border-radius: 2px;
  background: #0d2c36;
}
.tub-type-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(18,59,74,.55));
  pointer-events: none;
}
.tub-type-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
.tub-type:hover .tub-type-media img { transform: scale(1.05); }
.tub-type-num {
  position: absolute;
  left: 16px;
  bottom: 12px;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1;
  color: var(--clr-white);
  letter-spacing: .04em;
  padding: 0;
}
.tub-type-copy {
  padding: 18px 2px 0;
  min-width: 0;
}
.tub-type h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--clr-white);
  margin: 0 0 8px;
}
.tub-type p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 14.5px;
  line-height: 1.65;
  max-width: none;
}

.tub-blueprint {
  padding: 88px 0;
  background-color: var(--clr-limestone);
  background-image:
    linear-gradient(rgba(18,59,74,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,59,74,.05) 1px, transparent 1px);
  background-size: 28px 28px;
}
.tub-blueprint-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.tub-blueprint-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 600;
  margin: 0 0 16px;
}
.tub-blueprint-copy > p {
  color: #4a5c62;
  margin: 0 0 24px;
}
.tub-plate {
  position: relative;
  margin: 0;
  padding: 22px 18px 12px;
  background: var(--clr-white);
  border: 1px solid rgba(18,59,74,.12);
  box-shadow: var(--shadow-card);
}
.tub-plate-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--clr-terracotta);
}
.tub-plate-corner:nth-child(1) { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.tub-plate-corner:nth-child(2) { top: 8px; right: 8px; border-left: 0; border-bottom: 0; }
.tub-plate-corner:nth-child(3) { bottom: 8px; left: 8px; border-right: 0; border-top: 0; }
.tub-plate-corner:nth-child(4) { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }

.tub-factors {
  background: var(--clr-white);
  border-radius: 4px 28px 4px 28px;
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-card);
}
.tub-factors h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  margin: 0 0 16px;
}
.tub-factor-list { margin: 0; }
.page-tub .tub-factor-list li {
  padding: 10px 0 10px 8px;
  border-bottom: 1px dashed rgba(18,59,74,.14);
  font-size: 15px;
}
.page-tub .tub-factor-list li:last-child { border-bottom: 0; }
.tub-factor-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  background: var(--clr-sand);
  border-left: 3px solid var(--clr-terracotta);
  color: #4a5c62;
  font-size: 14.5px;
  max-width: none;
}

.tub-samples {
  padding: 88px 0;
  background: var(--clr-sand);
}
.tub-sample-board {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(18,59,74,.08);
}
.page-tub .tub-sample-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--clr-white);
}
.page-tub .tub-sample-table thead th {
  background: var(--clr-teal);
  color: var(--clr-white);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 16px 18px;
  text-align: left;
}
.page-tub .tub-sample-table tbody td {
  padding: 18px;
  font-size: 15px;
  color: #4a5c62;
  border-bottom: 1px solid rgba(18,59,74,.08);
  vertical-align: middle;
}
.page-tub .tub-sample-table tbody tr:last-child td { border-bottom: 0; }
.page-tub .tub-sample-table tbody td:first-child {
  font-weight: 700;
  color: var(--clr-teal);
  white-space: nowrap;
}
.page-tub .tub-sample-table tbody td:first-child::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 50% 50% 6px 50%;
  box-shadow: inset 0 0 0 2px rgba(18,59,74,.12);
}
.page-tub .tub-sample-table tbody tr:nth-child(1) td:first-child::before { background: #e4d2bf; }
.page-tub .tub-sample-table tbody tr:nth-child(2) td:first-child::before { background: #c9d4d0; }
.page-tub .tub-sample-table tbody tr:nth-child(3) td:first-child::before { background: #7f8f96; }
.page-tub .tub-sample-table tbody tr:nth-child(4) td:first-child::before { background: #d8cfc0; }
.page-tub .tub-sample-table tbody tr:nth-child(5) td:first-child::before { background: #eeeae3; }
.page-tub .tub-sample-table tbody tr:hover td { background: #fbf8f3; }

.tub-fill {
  padding: 88px 0 96px;
  background: var(--clr-eucalyptus);
}
.tub-fill-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  counter-reset: none;
}
.tub-station {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(184,206,199,.22);
  border-radius: 18px;
  padding: 22px 22px 22px 18px;
}
.tub-station-level {
  position: relative;
  width: 42px;
  height: 72px;
  border: 1.6px solid var(--clr-seaglass);
  border-radius: 20px 20px 10px 10px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
  color: var(--clr-white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
}
.tub-station-level::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(184,206,199,.2), rgba(180,83,50,.85));
  pointer-events: none;
}
.tub-station:nth-child(1) .tub-station-level::after { height: 16%; }
.tub-station:nth-child(2) .tub-station-level::after { height: 30%; }
.tub-station:nth-child(3) .tub-station-level::after { height: 46%; }
.tub-station:nth-child(4) .tub-station-level::after { height: 62%; }
.tub-station:nth-child(5) .tub-station-level::after { height: 78%; }
.tub-station:nth-child(6) .tub-station-level::after { height: 92%; }
.tub-station-level span { position: relative; z-index: 1; }
.tub-station .step-content h3 {
  color: var(--clr-white);
  font-size: 1.15rem;
  margin: 0 0 8px;
}
.tub-station .step-content p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 14.5px;
  max-width: none;
}

.tub-overflow {
  padding: 88px 0;
  background: var(--clr-sand);
}
.tub-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.tub-path {
  display: flex;
  flex-direction: column;
  background: var(--clr-white);
  border: 1px solid rgba(18,59,74,.08);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 100%;
}
.tub-path-media {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--clr-teal);
}
.tub-path-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
.tub-path:hover .tub-path-media img { transform: scale(1.05); }
.tub-path-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(transparent, rgba(18,59,74,.5));
  pointer-events: none;
}
.tub-path-num {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 1;
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 50%;
  background: var(--clr-teal);
  color: var(--clr-seaglass);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}
.tub-path-body { padding: 20px 22px 24px; }
.tub-path h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 10px;
}
.tub-path p {
  margin: 0;
  color: #4a5c62;
  font-size: 15px;
  line-height: 1.65;
  max-width: none;
}
.tub-path a { font-weight: 700; }

.tub-ready {
  padding: 28px 0 8px;
  background: var(--clr-sand);
}
.tub-ready-pool {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 56px;
  color: var(--clr-white);
  background:
    radial-gradient(ellipse 90% 120% at 50% 120%, rgba(184,206,199,.22), transparent 55%),
    var(--clr-teal);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(18,59,74,.18);
}
.tub-ready-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 600;
  color: var(--clr-white);
  margin: 0 0 8px;
}
.tub-ready-text p {
  margin: 0;
  color: rgba(255,255,255,.8);
  max-width: none;
}
.tub-ready-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.tub-notes {
  padding: 72px 0 96px;
  background: var(--clr-sand);
}
.page-tub .tub-faq {
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.page-tub .tub-faq .faq-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: start;
  background: var(--clr-white);
  border: 0;
  border-radius: 28px 8px 8px 8px;
  padding: 4px 22px 6px 12px;
  box-shadow: var(--shadow-card);
}
.tub-faq-mark {
  grid-column: 1;
  grid-row: 1;
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--clr-terracotta);
}
.page-tub .tub-faq .faq-question {
  grid-column: 2;
  grid-row: 1;
  padding: 18px 0;
  font-size: 16.5px;
}
.page-tub .tub-faq .faq-answer {
  grid-column: 2;
  grid-row: 2;
  padding-bottom: 18px;
}
.page-tub .tub-faq .faq-answer p { max-width: none; }

@media (max-width: 1024px) {
  .tub-consult-grid { grid-template-columns: 1fr; }
  .page-tub .tub-consult .form-intro-column {
    border-right: 0;
    border-bottom: 1px solid rgba(18,59,74,.08);
    padding: 32px 28px 28px;
  }
  .page-tub .tub-consult .form-column { padding: 24px 22px 28px; }
  .page-tub .tub-consult .form-intro-card h2 { max-width: none; }
  .tub-alcove-bays {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "same"
      "open";
  }
  .tub-alcove-wall { height: 220px; }
  .tub-bay--open { border-left: 0; }
  .tub-type-ledger { grid-template-columns: 1fr 1fr; gap: 32px 22px; }
  .tub-blueprint-grid { grid-template-columns: 1fr; }
  .tub-fill-list { grid-template-columns: 1fr; }
  .tub-path-grid { grid-template-columns: 1fr; }
  .tub-ready-pool {
    border-radius: 36px;
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 32px;
  }
}

@media (max-width: 767px) {
  .page-tub .tub-consult .form-section-inner {
    padding-top: 28px;
    padding-bottom: 0;
  }
  .tub-alcoves,
  .tub-showroom,
  .tub-blueprint,
  .tub-samples,
  .tub-fill,
  .tub-overflow { padding: 56px 0; }
  .tub-notes { padding: 48px 0 72px; }
  .tub-type-ledger { grid-template-columns: 1fr; gap: 28px; }
  .tub-type-media { aspect-ratio: 16 / 10; }
  .tub-bay { padding: 28px 22px; }
  .tub-factors { border-radius: 4px 20px 4px 20px; padding: 24px 20px; }
  .page-tub .tub-sample-table thead { display: none; }
  .page-tub .tub-sample-table tbody tr {
    display: grid;
    gap: 6px;
    padding: 16px 16px 14px;
    border-bottom: 1px solid rgba(18,59,74,.08);
  }
  .page-tub .tub-sample-table tbody td {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 8px;
    padding: 0;
    border: 0;
    font-size: 14.5px;
  }
  .page-tub .tub-sample-table tbody td:first-child {
    display: block;
    font-size: 16px;
    padding-bottom: 6px;
  }
  .page-tub .tub-sample-table tbody td:nth-child(2)::before { content: "Weight"; }
  .page-tub .tub-sample-table tbody td:nth-child(3)::before { content: "Heat Retention"; }
  .page-tub .tub-sample-table tbody td:nth-child(4)::before { content: "Surface Durability"; }
  .page-tub .tub-sample-table tbody td:nth-child(5)::before { content: "Maintenance"; }
  .page-tub .tub-sample-table tbody td:not(:first-child)::before {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--clr-eucalyptus);
  }
  .tub-ready-actions { width: 100%; flex-direction: column; }
  .tub-ready-actions a { width: 100%; text-align: center; }
  .page-tub .tub-faq .faq-item {
    grid-template-columns: 36px minmax(0, 1fr);
    padding-right: 14px;
    border-radius: 22px 8px 8px 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tub-path,
  .tub-station { transition: none; }
  .tub-type:hover .tub-type-media img,
  .tub-path:hover .tub-path-media img { transform: none; }
}

/* -----------------------------------------------------------
   42. SHOWER REMODELING — GLASS BAY / WET ROOM (page-shower only)
   ----------------------------------------------------------- */
.page-shower #lead-form,
.page-shower #scope,
.page-shower #configs,
.page-shower #waterproof,
.page-shower #materials,
.page-shower #decisions,
.page-shower #process,
.page-shower #gallery,
.page-shower #related {
  scroll-margin-top: 92px;
}

.page-shower .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shower-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--clr-eucalyptus);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.shower-kicker::before {
  content: "";
  width: 11px;
  height: 11px;
  border: 1.5px solid currentColor;
  background:
    linear-gradient(currentColor, currentColor) center / 100% 1px no-repeat,
    linear-gradient(currentColor, currentColor) center / 1px 100% no-repeat;
  background-color: var(--clr-seaglass);
}
.shower-kicker--light { color: var(--clr-seaglass); }
.shower-kicker--light::before { background-color: rgba(184,206,199,.28); }

.shower-section-head {
  max-width: 44rem;
  margin: 0 0 40px;
}
.shower-section-head h2,
.shower-section-head h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  color: var(--clr-teal);
}
.shower-section-head--light h2,
.shower-section-head--light h3 { color: var(--clr-white); }
.shower-section-head p,
.shower-section-lead {
  margin: 16px 0 0;
  color: #4a5c62;
  font-size: 16.5px;
  max-width: 62ch;
}
.shower-section-head--light p { color: rgba(255,255,255,.82); }

/* Form: tiled wall + glass door */
.page-shower .shower-consult {
  background:
    linear-gradient(rgba(18,59,74,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,59,74,.045) 1px, transparent 1px),
    var(--clr-sand);
  background-size: 36px 36px, 36px 36px, auto;
  border-bottom: 0;
}
.page-shower .shower-consult .form-section-inner {
  padding-top: 40px;
  padding-bottom: 48px;
}
.shower-consult-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: stretch;
  background: var(--clr-white);
  border: 1px solid rgba(31,90,87,.18);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(18,59,74,.08);
}
.page-shower .shower-consult .form-intro-column {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: #123B4A;
  border-right: 1px solid rgba(184,206,199,.28);
  position: relative;
}
.page-shower .shower-consult .form-intro-column::after {
  content: "";
  position: absolute;
  top: 18%;
  right: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c5d0d3;
  box-shadow: 0 120px 0 #c5d0d3, 0 240px 0 #c5d0d3;
  z-index: 2;
}
.shower-consult-pane {
  margin: 0;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.shower-consult-pane::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(18,59,74,.55));
  pointer-events: none;
}
.shower-consult-pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-shower .shower-consult .form-intro-card {
  padding: 28px 32px 36px;
  border: 0;
  background: none;
  color: inherit;
  flex: 1;
}
.page-shower .shower-consult .form-intro-eyebrow { color: var(--clr-seaglass); }
.page-shower .shower-consult .form-intro-card h2 {
  color: var(--clr-white);
  max-width: 14ch;
}
.page-shower .shower-consult .form-intro-rule {
  background: var(--clr-seaglass);
  width: 36px;
  height: 2px;
  border-radius: 0;
}
.page-shower .shower-consult .form-intro-card p { color: rgba(255,255,255,.78); }
.page-shower .shower-consult .form-intro-features {
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(184,206,199,.22);
}
.page-shower .shower-consult .form-intro-features li {
  color: var(--clr-white);
  font-size: 13.5px;
}
.page-shower .shower-consult .form-intro-features li::before {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 0;
  background: var(--clr-seaglass);
  background-image: none;
}
.page-shower .shower-consult .form-intro-cta .btn-secondary {
  background: transparent;
  color: var(--clr-white);
  border: 1px solid rgba(184,206,199,.55);
}
.page-shower .shower-consult .form-intro-cta .btn-secondary:hover {
  background: rgba(184,206,199,.14);
  color: var(--clr-white);
}
.page-shower .shower-consult .form-column {
  padding: 28px 32px 32px;
  background:
    linear-gradient(180deg, rgba(184,206,199,.12), transparent 28%),
    var(--clr-white);
}
.page-shower .shower-consult .estimate-card {
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

/* Scope: two facing glass stalls */
.shower-panes {
  padding: 88px 0 96px;
  background: var(--clr-sand);
}
.shower-pane-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 28px;
}
.shower-pane {
  display: grid;
  grid-template-rows: 280px 1fr;
  background: var(--clr-white);
  border: 1px solid rgba(31,90,87,.16);
  border-radius: 2px;
  overflow: hidden;
  min-height: 100%;
}
.shower-pane--rebuild { border-color: rgba(18,59,74,.28); }
.shower-pane-media {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #0d2c36;
  height: 100%;
}
.shower-pane-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
.shower-pane:hover .shower-pane-media img { transform: scale(1.04); }
.shower-pane-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 6px 12px;
  background: rgba(18,59,74,.88);
  color: var(--clr-white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.shower-pane-copy {
  padding: 24px 26px 28px;
  display: flex;
  align-items: flex-start;
}
.shower-pane-copy p {
  margin: 0;
  color: #4a5c62;
  font-size: 16px;
  max-width: none;
}
.shower-grout-table {
  background: var(--clr-white);
  border: 1px solid rgba(31,90,87,.14);
  border-radius: 2px;
  overflow: hidden;
  padding: 0;
}
.page-shower .shower-grout-table .compare-table {
  margin: 0;
  width: 100%;
}
.page-shower .shower-grout-table thead th {
  background: var(--clr-teal);
  color: var(--clr-white);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 14px 18px;
  border: 0;
}
.page-shower .shower-grout-table tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(18,59,74,.08);
  border-right: 1px solid rgba(18,59,74,.06);
  font-size: 15px;
}
.page-shower .shower-grout-table tbody td:first-child {
  font-weight: 700;
  color: var(--clr-teal);
}
.page-shower .shower-grout-table tbody tr:nth-child(even) td { background: #f7f2ea; }
.page-shower .shower-grout-table tbody tr:last-child td { border-bottom: 0; }

/* Configurations: corridor of vertical stalls */
.shower-stalls {
  padding: 96px 0 108px;
  background:
    linear-gradient(180deg, rgba(18,59,74,.08), transparent 18%),
    var(--clr-teal);
  overflow: hidden;
}
.shower-stalls .shower-section-head { margin-bottom: 28px; }
.shower-stall-rail {
  height: 4px;
  margin: 0 0 18px;
  background: linear-gradient(90deg, transparent, var(--clr-seaglass) 12%, var(--clr-seaglass) 88%, transparent);
  position: relative;
}
.shower-stall-rail::before,
.shower-stall-rail::after {
  content: "";
  position: absolute;
  top: -5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #c5d0d3;
  box-shadow: inset 0 0 0 3px #123B4A;
}
.shower-stall-rail::before { left: 10%; }
.shower-stall-rail::after { right: 10%; }
.shower-stall-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.shower-stall {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(184,206,199,.22);
  border-radius: 2px;
  overflow: hidden;
}
.shower-stall-media {
  margin: 0;
  aspect-ratio: 3 / 4.2;
  overflow: hidden;
  background: #0d2c36;
}
.shower-stall-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
.shower-stall:hover .shower-stall-media img { transform: scale(1.06); }
.shower-stall-copy {
  padding: 20px 18px 22px;
  flex: 1;
  min-height: 168px;
  border-top: 1px solid rgba(184,206,199,.16);
}
.shower-stall-copy h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--clr-white);
  margin: 0 0 8px;
  line-height: 1.2;
}
.shower-stall-copy p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14.5px;
  line-height: 1.55;
}

/* Waterproofing: wall section */
.shower-layers {
  padding: 96px 0;
  background: var(--clr-limestone);
}
.shower-layers-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  grid-template-areas:
    "copy photo"
    "cutaway cutaway";
  gap: 24px 36px;
  align-items: start;
}
.shower-layers-copy { grid-area: copy; }
.shower-layers-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 18px;
  color: var(--clr-teal);
}
.shower-layers-copy p {
  color: #4a5c62;
  margin: 0 0 12px;
}
.shower-membrane-list {
  margin-top: 18px;
  display: grid;
  gap: 0;
}
.page-shower .shower-membrane-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(18,59,74,.12);
  color: var(--clr-teal);
  font-size: 15.5px;
}
.page-shower .shower-membrane-list li:last-child { border-bottom: 0; }
.page-shower .shower-membrane-list li::before {
  content: "";
  display: block;
  width: 14px;
  height: 28px;
  min-width: 14px;
  margin-top: 2px;
  border-radius: 0;
  background: var(--clr-eucalyptus);
  background-image: none;
}
.page-shower .shower-membrane-list li:nth-child(1)::before { background: #8B6D52; }
.page-shower .shower-membrane-list li:nth-child(2)::before { background: #B8CEC7; }
.page-shower .shower-membrane-list li:nth-child(3)::before { background: #a8926c; }
.page-shower .shower-membrane-list li:nth-child(4)::before { background: #1F5A57; }
.page-shower .shower-membrane-list li:nth-child(5)::before { background: #c8a03a; }
.page-shower .shower-membrane-list li:nth-child(6)::before { background: #e8e0d5; border: 1px solid #ccc; }

.shower-layers-photo {
  grid-area: photo;
  margin: 0;
  height: 100%;
  min-height: 320px;
  max-height: 420px;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(18,59,74,.12);
}
.shower-layers-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shower-cutaway {
  grid-area: cutaway;
  background: var(--clr-white);
  border: 1px solid rgba(18,59,74,.12);
  border-radius: 2px;
  padding: 22px 24px 16px;
}
.shower-cutaway h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--clr-teal);
  margin: 0 0 12px;
}
.shower-cutaway figure,
.shower-cutaway-figure { margin: 0; }
.shower-cutaway svg { display: block; max-width: 100%; height: auto; }

/* Materials: tile sample board */
.shower-tileboard {
  padding: 96px 0;
  background: var(--clr-sand);
}
.shower-sample-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}
.shower-sample:nth-child(-n+3) { grid-column: span 2; }
.shower-sample:nth-child(n+4) { grid-column: span 3; }
.shower-sample {
  background: var(--clr-white);
  border: 1px solid rgba(18,59,74,.1);
  border-radius: 2px;
  overflow: hidden;
  min-width: 0;
}
.shower-sample-swatch {
  margin: 0;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #ded3c2;
}
.shower-sample-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
.shower-sample:hover .shower-sample-swatch img { transform: scale(1.06); }
.shower-sample h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--clr-teal);
  margin: 0;
  padding: 16px 18px 8px;
}
.shower-sample dl {
  padding: 0 18px 18px;
  display: grid;
  gap: 8px;
}
.shower-sample dd {
  margin: 0;
  font-size: 14.5px;
  color: #4a5c62;
  line-height: 1.45;
}
.shower-sample dl div {
  padding-top: 8px;
  border-top: 1px solid rgba(18,59,74,.08);
}
.shower-sample dt {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-eucalyptus);
  margin: 0 0 2px;
}

/* Hardware plates */
.shower-hardware {
  padding: 96px 0 108px;
  background: var(--clr-eucalyptus);
}
.shower-hardware .shower-section-head { margin-bottom: 36px; }
.shower-plate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.shower-plate {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  background: rgba(18,59,74,.28);
  border: 1px solid rgba(184,206,199,.22);
  border-radius: 2px;
  overflow: hidden;
  min-height: 220px;
}
.shower-plate-media {
  margin: 0;
  height: 100%;
  overflow: hidden;
  background: #0d2c36;
}
.shower-plate-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
.shower-plate:hover .shower-plate-media img { transform: scale(1.05); }
.shower-plate-body {
  padding: 22px 24px 24px;
}
.shower-plate-body h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--clr-white);
  margin: 0 0 10px;
}
.shower-plate-body p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  max-width: none;
}

/* Process cascade */
.shower-cascade {
  padding: 96px 0;
  background: var(--clr-white);
}
.shower-drop-list {
  position: relative;
  max-width: 820px;
  margin: 0;
  padding: 0 0 0 8px;
}
.shower-drop-list::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(var(--clr-seaglass), var(--clr-eucalyptus));
}
.shower-drop {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  position: relative;
  padding: 0 0 28px;
}
.shower-drop:last-child { padding-bottom: 0; }
.shower-drop-mark {
  width: 56px;
  height: 56px;
  border-radius: 50% 50% 50% 8px;
  background: var(--clr-sand);
  border: 2px solid var(--clr-eucalyptus);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  transform: rotate(-18deg);
}
.shower-drop-mark span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--clr-teal);
  transform: rotate(18deg);
}
.shower-drop .step-content {
  background: var(--clr-sand);
  border: 1px solid rgba(18,59,74,.08);
  border-radius: 2px 18px 2px 2px;
  padding: 20px 24px 22px;
}
.shower-drop .step-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--clr-teal);
  margin: 0 0 8px;
}
.shower-drop .step-content p {
  margin: 0;
  color: #4a5c62;
  max-width: none;
}

/* Gallery mosaic */
.shower-mosaic {
  padding: 96px 0;
  background: var(--clr-limestone);
}
.shower-mosaic-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.shower-mosaic-card {
  background: var(--clr-white);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(18,59,74,.08);
}
.shower-mosaic-card--tall {
  grid-row: 1 / span 2;
}
.shower-mosaic-card .project-image-wrap {
  margin: 0;
  overflow: hidden;
  height: 240px;
}
.shower-mosaic-card--tall .project-image-wrap { height: 100%; min-height: 420px; }
.shower-mosaic-card .project-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
.shower-mosaic-card:hover .project-image-wrap img { transform: scale(1.04); }
.shower-mosaic-card .project-info {
  padding: 16px 18px 18px;
}
.shower-mosaic-card .project-info h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 4px;
  color: var(--clr-teal);
}
.shower-mosaic-card .project-info p {
  margin: 0;
  font-size: 14px;
  color: #6a7d82;
}

/* Related paths: sliding glass doors */
.shower-paths {
  padding: 88px 0;
  background: var(--clr-sand);
}
.shower-path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(31,90,87,.18);
  border-radius: 2px;
  overflow: hidden;
  background: var(--clr-white);
}
.shower-path {
  display: grid;
  grid-template-rows: 240px 1fr;
  min-height: 100%;
  border-right: 1px solid rgba(31,90,87,.16);
}
.shower-path:last-child { border-right: 0; }
.shower-path-media {
  margin: 0;
  overflow: hidden;
  background: #0d2c36;
}
.shower-path-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
.shower-path:hover .shower-path-media img { transform: scale(1.05); }
.shower-path-body {
  padding: 22px 26px 26px;
}
.shower-path-body p {
  margin: 0;
  color: #4a5c62;
  max-width: none;
}

/* CTA: frosted glass over shower photo */
.shower-ready {
  position: relative;
  padding: 0;
  min-height: 380px;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.shower-ready-photo {
  position: absolute;
  inset: 0;
}
.shower-ready-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shower-ready-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18,59,74,.72), rgba(31,90,87,.48));
}
.shower-ready .container {
  position: relative;
  z-index: 1;
  padding-top: 72px;
  padding-bottom: 72px;
}
.shower-ready-glass {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 36px 40px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(10px);
  border-radius: 2px;
}
.shower-ready-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--clr-white);
  margin: 0 0 8px;
}
.shower-ready-text p {
  margin: 0;
  color: rgba(255,255,255,.82);
  max-width: 46ch;
}
.shower-ready-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

/* FAQ niches */
.shower-niches {
  padding: 96px 0 108px;
  background:
    linear-gradient(rgba(18,59,74,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,59,74,.04) 1px, transparent 1px),
    var(--clr-sand);
  background-size: 48px 48px, 48px 48px, auto;
}
.page-shower .shower-faq {
  max-width: 860px;
  margin: 0;
  display: grid;
  gap: 12px;
}
.page-shower .shower-faq .faq-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 0;
  background: var(--clr-white);
  border: 1px solid rgba(18,59,74,.1);
  border-radius: 2px;
  overflow: hidden;
}
.shower-faq-tile {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  background: var(--clr-teal);
  color: var(--clr-seaglass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  border-right: 1px solid rgba(184,206,199,.2);
}
.page-shower .shower-faq .faq-question {
  grid-column: 2;
  text-align: left;
  padding: 18px 20px;
  background: none;
  border: 0;
  width: 100%;
}
.page-shower .shower-faq .faq-answer {
  grid-column: 2;
  padding: 0 20px 18px;
  background: none;
}
.page-shower .shower-faq .faq-answer p { max-width: none; }

@media (max-width: 1100px) {
  .shower-sample-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shower-sample:nth-child(-n+3),
  .shower-sample:nth-child(n+4) { grid-column: auto; }
  .shower-plate { grid-template-columns: 160px minmax(0, 1fr); }
}

@media (max-width: 860px) {
  .shower-consult-grid { grid-template-columns: 1fr; }
  .page-shower .shower-consult .form-intro-column::after { display: none; }
  .page-shower .shower-consult .form-intro-column { border-right: 0; }
  .shower-consult-pane { height: 180px; }
  .page-shower .shower-consult .form-intro-card h2 { max-width: none; }
  .shower-pane-pair,
  .shower-layers-grid,
  .shower-plate-grid,
  .shower-path-grid,
  .shower-mosaic-grid { grid-template-columns: 1fr; }
  .shower-layers-grid {
    grid-template-areas:
      "copy"
      "photo"
      "cutaway";
  }
  .shower-layers-photo { min-height: 240px; max-height: 280px; }
  .shower-mosaic-card--tall { grid-row: auto; }
  .shower-mosaic-card--tall .project-image-wrap { min-height: 280px; height: 280px; }
  .shower-stall-row { grid-template-columns: 1fr 1fr; }
  .shower-sample-row { grid-template-columns: 1fr 1fr; }
  .shower-plate {
    grid-template-columns: 1fr;
    grid-template-rows: 180px auto;
  }
  .shower-plate-media { height: 180px; }
  .shower-ready-glass {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 22px;
  }
  .shower-ready-actions { width: 100%; flex-direction: column; }
  .shower-ready-actions a { width: 100%; text-align: center; }
  .page-shower .shower-grout-table thead { display: none; }
  .page-shower .shower-grout-table tbody tr { display: grid; }
  .page-shower .shower-grout-table tbody td {
    border-right: 0;
    padding: 8px 16px;
  }
  .page-shower .shower-grout-table tbody td:first-child {
    padding-top: 14px;
    background: #f3eee6;
  }
  .page-shower .shower-grout-table tbody td:nth-child(2)::before { content: "Cosmetic Update — "; }
  .page-shower .shower-grout-table tbody td:nth-child(3)::before { content: "Full Rebuild — "; }
  .page-shower .shower-grout-table tbody td:not(:first-child)::before {
    font-weight: 800;
    color: var(--clr-eucalyptus);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
  }
}

@media (max-width: 560px) {
  .shower-stall-row,
  .shower-sample-row { grid-template-columns: 1fr; }
  .page-shower .shower-consult .form-intro-features { grid-template-columns: 1fr; }
  .page-shower .shower-faq .faq-item { grid-template-columns: 40px minmax(0, 1fr); }
  .shower-drop { grid-template-columns: 44px minmax(0, 1fr); gap: 14px; }
  .shower-drop-mark { width: 44px; height: 44px; }
  .shower-drop-list::before { left: 21px; }
  .shower-pane { grid-template-rows: 220px auto; }
}

@media (prefers-reduced-motion: reduce) {
  .shower-pane:hover .shower-pane-media img,
  .shower-stall:hover .shower-stall-media img,
  .shower-sample:hover .shower-sample-swatch img,
  .shower-plate:hover .shower-plate-media img,
  .shower-mosaic-card:hover .project-image-wrap img,
  .shower-path:hover .shower-path-media img { transform: none; }
}

/* ============================================================
   TUB-TO-SHOWER CONVERSION — field ticket / conversion ledger
   Unique to .page-conv
   ============================================================ */

.page-conv .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.conv-kicker {
  display: inline-block;
  margin: 0 0 10px;
  padding: 5px 10px 4px;
  background: var(--clr-terracotta);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.conv-head {
  max-width: 44rem;
  margin: 0 auto 40px;
  text-align: center;
}
.conv-head--left {
  margin: 0 0 36px;
  text-align: left;
  max-width: 46rem;
}
.conv-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--clr-teal);
  margin: 0 0 14px;
}
.conv-head p,
.conv-head .intro-text {
  margin: 0 auto;
  color: #4a5c62;
  max-width: 62ch;
}
.conv-head--left p { margin: 0; }

.page-conv .conv-desk {
  background: #efe6d8;
  border-bottom: 0;
}
.conv-desk-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: clamp(24px, 3.5vw, 44px);
  align-items: start;
  padding-top: 56px;
  padding-bottom: 64px;
}
.page-conv .conv-desk .form-intro-column {
  position: relative;
}
.page-conv .conv-desk .form-intro-card {
  background: var(--clr-white);
  padding: 28px 28px 26px;
  position: relative;
  box-shadow: var(--shadow-lift);
  border-left: 8px solid var(--clr-eucalyptus);
}
.page-conv .conv-desk .form-intro-card h2 { max-width: 16ch; }
.page-conv .conv-desk .form-intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
  margin: 18px 0 20px;
}
.page-conv .conv-desk .form-intro-features li {
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-teal);
}
.page-conv .conv-desk .form-column { position: relative; }
.page-conv .conv-desk .estimate-card {
  position: relative;
  background: #fffdf8;
  border-radius: 0;
  border: 1px solid rgba(18,59,74,.12);
  box-shadow: var(--shadow-card);
  padding-left: 36px;
  background-image: radial-gradient(circle at 14px 28px, #efe6d8 6px, transparent 7px),
    radial-gradient(circle at 14px 56px, #efe6d8 6px, transparent 7px),
    radial-gradient(circle at 14px 84px, #efe6d8 6px, transparent 7px),
    radial-gradient(circle at 14px 112px, #efe6d8 6px, transparent 7px),
    radial-gradient(circle at 14px 140px, #efe6d8 6px, transparent 7px);
  background-repeat: no-repeat;
}
.page-conv .conv-desk .estimate-card::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 22px;
  width: 0;
  border-left: 2px dashed rgba(180,83,50,.35);
}

.conv-cinema {
  padding: var(--section-pad) 0;
  background: var(--clr-white);
}
.conv-diptych {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(18,59,74,.16);
}
.conv-diptych-pane {
  margin: 0;
  position: relative;
  min-height: 360px;
}
.conv-diptych-pane img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}
.conv-diptych-pane figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 7px 14px;
  background: rgba(18,59,74,.82);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 999px;
}
.conv-diptych-pane:last-of-type figcaption {
  background: rgba(180,83,50,.9);
  left: auto;
  right: 16px;
}
.conv-diptych-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--clr-terracotta);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(18,59,74,.22);
}

.conv-ledger {
  padding: var(--section-pad) 0;
  background: var(--clr-sand);
}
.conv-ledger-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.conv-ticket {
  background: #fff;
  display: grid;
  grid-template-rows: 200px 1fr;
  box-shadow: var(--shadow-card);
  position: relative;
}
.conv-ticket::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 200px;
  border-top: 2px dashed rgba(18,59,74,.16);
}
.conv-ticket-media {
  margin: 0;
  overflow: hidden;
}
.conv-ticket-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.conv-ticket-body { padding: 28px 26px 24px; }
.conv-ticket-tag {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.conv-ticket--pass .conv-ticket-tag { color: var(--clr-eucalyptus); }
.conv-ticket--review .conv-ticket-tag { color: var(--clr-terracotta); }
.conv-ticket h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 16px;
  line-height: 1.2;
  color: var(--clr-teal);
}
.conv-ticket--review .check-list li::before { background-color: var(--clr-terracotta); }
.page-conv .conv-ledger .dev-notice { margin: 0; }

.conv-spread {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  min-height: 560px;
  background: var(--clr-teal);
}
.conv-spread-photo { margin: 0; overflow: hidden; min-height: 420px; }
.conv-spread-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 560px;
}
.conv-spread-copy {
  padding: clamp(36px, 6vw, 72px) clamp(28px, 5vw, 64px);
  color: #fff;
  position: relative;
}
.conv-spread-inset {
  margin: 0 0 28px;
  width: min(240px, 46%);
  overflow: hidden;
  outline: 6px solid rgba(255,255,255,.18);
}
.conv-spread-inset img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.conv-spread-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 16px;
}
.conv-spread-copy p {
  color: rgba(255,255,255,.82);
  max-width: 54ch;
}
.conv-spread-copy p + p { margin-top: 12px; }

.conv-samples {
  padding: var(--section-pad) 0;
  background: var(--clr-white);
}
.conv-sample-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.conv-sample {
  margin: 0;
  position: relative;
  overflow: hidden;
  height: 280px;
}
.conv-sample img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
.conv-sample:hover img { transform: scale(1.05); }
.conv-sample figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px;
  background: linear-gradient(transparent, rgba(18,59,74,.88));
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.page-conv .conv-spec .compare-table {
  border: 1px solid rgba(18,59,74,.12);
}
.page-conv .conv-spec thead th {
  background: #efe6d8;
  color: var(--clr-teal);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.page-conv .conv-spec tbody td { background: #fff; }
.page-conv .conv-spec tbody td:first-child {
  font-weight: 800;
  color: var(--clr-teal);
}
.page-conv .conv-spec tbody tr:nth-child(even) td { background: var(--clr-sand); }

.conv-phases {
  padding: var(--section-pad) 0;
  background: var(--clr-sand);
}
.conv-phase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0;
}
.conv-phase {
  background: #fff;
  display: grid;
  grid-template-rows: 160px 1fr;
  box-shadow: var(--shadow-card);
}
.conv-phase figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}
.conv-phase figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.conv-phase figure span {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--clr-terracotta);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
.conv-phase .step-content { padding: 18px 20px 22px; }
.conv-phase h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--clr-teal);
  margin: 0 0 8px;
}
.conv-phase p {
  margin: 0;
  color: #4a5c62;
  max-width: none;
  font-size: 15px;
}

.conv-call {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 380px;
  display: grid;
  align-items: center;
}
.conv-call-photo {
  position: absolute;
  inset: 0;
  margin: 0;
}
.conv-call-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}
.conv-call-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,59,74,.72) 0%, rgba(18,59,74,.82) 100%);
}
.conv-call-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  padding: 72px 20px;
}
.conv-call-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.15;
  max-width: none;
}
.conv-call-text p {
  color: rgba(255,255,255,.88);
  margin: 0 auto;
  max-width: 42ch;
}
.conv-call-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.conv-call-actions a { min-width: 0; }

.conv-notes {
  padding: var(--section-pad) 0;
  background: var(--clr-white);
}
.conv-notes-banner {
  margin: 0 0 28px;
  overflow: hidden;
  max-height: 240px;
}
.conv-notes-banner img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.page-conv .conv-faq {
  max-width: none;
  margin: 0;
  border: 1px solid rgba(18,59,74,.1);
}
.page-conv .conv-faq .faq-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  background: #fffdf8;
  border-bottom: 1px dashed rgba(18,59,74,.16);
  padding: 0 8px 0 0;
}
.page-conv .conv-faq .faq-item:last-child { border-bottom: 0; }
.conv-faq-no {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  align-self: start;
  height: 58px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--clr-terracotta);
}
.page-conv .conv-faq .faq-question {
  grid-column: 2;
  padding-left: 0;
}
.page-conv .conv-faq .faq-answer {
  grid-column: 2;
  padding-left: 0;
  padding-right: 16px;
}

@media (max-width: 980px) {
  .conv-desk-grid,
  .conv-ledger-pair,
  .conv-spread { grid-template-columns: 1fr; }
  .conv-phase-grid { grid-template-columns: 1fr 1fr; }
  .page-conv .conv-desk .form-intro-features { grid-template-columns: 1fr 1fr; }
  .conv-spread-photo img { min-height: 280px; }
  .conv-call-inner { padding: 56px 20px; }
  .conv-call-actions { width: 100%; flex-direction: column; }
  .conv-call-actions a { width: 100%; text-align: center; }
}

@media (max-width: 720px) {
  .conv-sample-strip,
  .conv-phase-grid { grid-template-columns: 1fr 1fr; }
  .page-conv .conv-desk .form-intro-features { grid-template-columns: 1fr; }
  .conv-diptych { grid-template-columns: 1fr; }
  .conv-diptych-pane img { height: 280px; }
  .conv-diptych-mark { display: none; }
  .page-conv .conv-spec thead { display: none; }
  .page-conv .conv-spec tbody tr { display: grid; }
  .page-conv .conv-spec tbody td {
    border-right: 0;
    padding: 8px 14px;
  }
  .page-conv .conv-spec tbody td:first-child {
    padding-top: 14px;
    background: #efe6d8;
  }
  .page-conv .conv-spec tbody td:nth-child(2)::before { content: "Cleaning — "; }
  .page-conv .conv-spec tbody td:nth-child(3)::before { content: "Grout — "; }
  .page-conv .conv-spec tbody td:nth-child(4)::before { content: "Maintenance — "; }
  .page-conv .conv-spec tbody td:nth-child(5)::before { content: "Suitable Conditions — "; }
  .page-conv .conv-spec tbody td:not(:first-child)::before {
    font-weight: 800;
    color: var(--clr-eucalyptus);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
  }
}

@media (max-width: 560px) {
  .conv-sample-strip,
  .conv-phase-grid { grid-template-columns: 1fr; }
  .page-conv .conv-faq .faq-item { grid-template-columns: 40px minmax(0, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  .conv-sample:hover img { transform: none; }
}

/* ============================================================
   SHOWER-TO-TUB CONVERSION — Soak Restore
   Unique to .page-rst
   ============================================================ */
.page-rst .rst-studio {
  background:
    linear-gradient(180deg, rgba(31,90,87,.06) 0 12px, transparent 12px 100%),
    var(--clr-sand);
  border-bottom: 0;
  overflow: hidden;
}
.rst-studio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.rst-studio-left {
  position: relative;
  padding: 18px 18px 0 18px;
  background: var(--clr-white);
  border-radius: 28px 28px 4px 4px;
  box-shadow: var(--shadow-card);
  border-left: 10px solid var(--clr-limestone);
  border-right: 10px solid var(--clr-limestone);
  border-top: 14px solid var(--clr-eucalyptus);
}
.rst-studio-left::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 8px;
  background: linear-gradient(90deg, transparent, rgba(184,206,199,.9), transparent);
  border-radius: 100px;
}
.rst-studio-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 16px 16px 4px 4px;
  height: 280px;
}
.rst-studio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rst-studio-inset {
  position: absolute;
  top: 196px;
  right: -18px;
  width: 148px;
  margin: 0;
  border: 5px solid var(--clr-white);
  border-radius: 50% 50% 42% 42%;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  z-index: 2;
}
.rst-studio-inset img {
  width: 100%;
  height: 118px;
  object-fit: cover;
}
.page-rst .rst-studio .form-intro-column {
  position: relative;
  z-index: 1;
  padding: 28px 8px 36px;
}
.page-rst .rst-studio .form-intro-card h2 { max-width: 16ch; }
.page-rst .rst-studio .form-intro-features {
  background: var(--clr-sand);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
}
.page-rst .rst-studio .form-column { position: relative; }
.page-rst .rst-studio .estimate-card {
  border-radius: 8px 8px 28px 28px;
  border-top: 6px solid var(--clr-terracotta);
  box-shadow: 0 18px 48px rgba(18,59,74,.14);
}

.rst-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.rst-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 600;
  color: var(--clr-teal);
  line-height: 1.15;
  margin: 0 0 14px;
}
.rst-head p {
  margin: 0 auto;
  color: #4a5c62;
  max-width: 62ch;
}
.rst-head--light { margin-bottom: 32px; }
.rst-head--light h2 { color: var(--clr-white); }

.rst-plan {
  padding: var(--section-pad) 0;
  background: var(--clr-white);
}
.rst-plan-board {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 56px;
}
.rst-plan-visual {
  display: grid;
  gap: 0;
  background: var(--clr-sand);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.rst-plan-photo { margin: 0; height: 260px; }
.rst-plan-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rst-plate {
  padding: 22px 22px 18px;
}
.rst-plate h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--clr-teal);
  margin: 0 0 12px;
}
.rst-plate svg {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
.rst-plate p {
  font-size: 13px;
  color: #6a7d82;
  margin: 12px 0 0;
  max-width: none;
}

.rst-ruler {
  position: relative;
  background: var(--clr-sand);
  border-radius: var(--radius-card);
  padding: 28px 28px 28px 52px;
  box-shadow: var(--shadow-card);
}
.rst-ruler::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 18px;
  width: 14px;
  border-radius: 8px;
  background:
    repeating-linear-gradient(
      to bottom,
      var(--clr-terracotta) 0 2px,
      transparent 2px 16px
    ),
    var(--clr-limestone);
  box-shadow: inset 0 0 0 1px rgba(18,59,74,.12);
}
.rst-ruler h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--clr-teal);
  margin: 0 0 16px;
}
.rst-ruler-list li {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(18,59,74,.14);
}
.rst-ruler-list li:last-child { border-bottom: 0; }

.rst-studies {
  display: grid;
  grid-template-columns: .85fr minmax(280px, 1.2fr) .85fr;
  gap: 22px;
  align-items: center;
}
.rst-study {
  margin: 0;
  overflow: hidden;
  min-height: 340px;
}
.rst-study img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.rst-study--alcove {
  border-left: 12px solid var(--clr-eucalyptus);
  border-right: 12px solid var(--clr-eucalyptus);
  border-top: 16px solid var(--clr-teal);
  border-radius: 4px 4px 18px 18px;
}
.rst-study--free {
  border-radius: 50% 50% 28px 28px;
  box-shadow: var(--shadow-lift);
}
.rst-studies-copy {
  text-align: center;
  padding: 8px 6px;
}
.rst-studies-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  font-weight: 600;
  color: var(--clr-teal);
  margin: 0 0 14px;
  line-height: 1.2;
}
.rst-studies-copy p {
  color: #4a5c62;
  margin: 0 auto 12px;
  max-width: none;
}
.rst-studies-copy p:last-child { margin-bottom: 0; }

.rst-cutaway {
  position: relative;
  padding: 0 0 var(--section-pad);
  background: var(--clr-teal);
}
.rst-cutaway-hero {
  position: relative;
  margin: 0 0 -72px;
  height: 280px;
  overflow: hidden;
}
.rst-cutaway-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92);
}
.rst-cutaway-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 180px;
  height: 100px;
  background: linear-gradient(180deg, transparent, var(--clr-teal));
  pointer-events: none;
}
.rst-cutaway-inner { position: relative; z-index: 1; }
.rst-layers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.rst-layer {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(184,206,199,.22);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.rst-layer figure {
  margin: 0;
  height: 200px;
  overflow: hidden;
}
.rst-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rst-layer p {
  color: rgba(255,255,255,.88);
  margin: 0;
  padding: 22px 24px 26px;
  max-width: none;
}

.rst-fill {
  padding: var(--section-pad) 0;
  background:
    linear-gradient(180deg, #e7f0ee 0%, var(--clr-sand) 28%, var(--clr-sand) 100%);
}
.rst-fill-list {
  display: grid;
  gap: 18px;
  margin: 0;
  counter-reset: none;
}
.rst-fill-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, .9fr) minmax(0, 1.1fr);
  gap: 0;
  background: var(--clr-white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.rst-fill-step::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--fill, 16%);
  background: linear-gradient(180deg, rgba(31,90,87,.0), rgba(31,90,87,.16));
  pointer-events: none;
  z-index: 0;
}
.rst-fill-step:nth-child(even) {
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, .9fr);
}
.rst-fill-step:nth-child(even) figure { order: 2; }
.rst-fill-step:nth-child(even) .step-content { order: 1; }
.rst-fill-step figure {
  margin: 0;
  position: relative;
  min-height: 200px;
}
.rst-fill-step figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
}
.rst-fill-step .step-number {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--clr-terracotta);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(180,83,50,.35);
}
.rst-fill-step .step-content {
  position: relative;
  z-index: 1;
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rst-fill-step h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--clr-teal);
  margin: 0 0 8px;
}
.rst-fill-step p {
  margin: 0;
  color: #4a5c62;
  max-width: 52ch;
}
.rst-fill-step--finale {
  background: var(--clr-teal);
}
.rst-fill-step--finale h3 { color: #fff; }
.rst-fill-step--finale p { color: rgba(255,255,255,.88); }
.rst-fill-step--finale::after {
  background: linear-gradient(180deg, transparent, rgba(184,206,199,.22));
}

.rst-soak {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: grid;
  align-items: center;
}
.rst-soak-photo {
  position: absolute;
  inset: 0;
  margin: 0;
}
.rst-soak-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}
.rst-soak-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18,59,74,.55) 0%, rgba(31,90,87,.82) 100%);
}
.rst-soak-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  padding: 80px 20px;
}
.rst-soak-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.15;
  max-width: none;
}
.rst-soak-text p {
  color: rgba(255,255,255,.88);
  margin: 0 auto;
  max-width: 42ch;
}
.rst-soak-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.rst-faq {
  padding: var(--section-pad) 0;
  background: var(--clr-white);
}
.rst-faq-banner {
  margin: 0 0 28px;
  overflow: hidden;
  border-radius: 28px 28px 8px 8px;
  max-height: 240px;
}
.rst-faq-banner img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.page-rst .rst-faq-list {
  max-width: none;
  margin: 0;
  border: 1px solid rgba(18,59,74,.1);
  border-radius: 8px 8px 20px 20px;
  overflow: hidden;
}
.page-rst .rst-faq-list .faq-item {
  background: #fffdf8;
  border-bottom: 1px solid rgba(18,59,74,.08);
}
.page-rst .rst-faq-list .faq-item:last-child { border-bottom: 0; }

@media (max-width: 1024px) {
  .rst-studio-grid,
  .rst-plan-board,
  .rst-studies,
  .rst-layers { grid-template-columns: 1fr; }
  .rst-studio-inset { right: 18px; }
  .rst-study img { height: 320px; }
  .rst-studies-copy { text-align: left; padding: 8px 0 4px; }
  .rst-fill-step,
  .rst-fill-step:nth-child(even) { grid-template-columns: 1fr; }
  .rst-fill-step:nth-child(even) figure,
  .rst-fill-step:nth-child(even) .step-content { order: unset; }
  .rst-fill-step figure img { height: 220px; min-height: 220px; }
}

@media (max-width: 720px) {
  .rst-studio-left { padding: 12px 12px 0; border-left-width: 6px; border-right-width: 6px; }
  .rst-studio-photo { height: 220px; }
  .rst-studio-inset {
    width: 110px;
    top: 150px;
    right: 10px;
  }
  .rst-studio-inset img { height: 88px; }
  .page-rst .rst-studio .form-intro-features { grid-template-columns: 1fr; }
  .rst-ruler { padding: 22px 18px 22px 44px; }
  .rst-cutaway-hero { height: 200px; margin-bottom: -48px; }
  .rst-soak-inner { padding: 56px 20px; }
  .rst-soak-actions { width: 100%; flex-direction: column; }
  .rst-soak-actions a { width: 100%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .rst-fill-step::after { transition: none; }
}

/* ============================================================
   BATHROOM FLOORING — Floor Lookbook
   Unique to .page-look
   ============================================================ */
.page-look .look-head {
  max-width: 40rem;
  margin: 0 auto 48px;
  text-align: center;
}
.page-look .look-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--clr-teal);
  margin: 0 0 14px;
}
.page-look .look-head p {
  color: #4a5c62;
  margin: 0 auto;
  max-width: 58ch;
}

.page-look .look-atelier {
  background:
    radial-gradient(1200px 420px at 12% 0%, rgba(184,206,199,.35), transparent 60%),
    var(--clr-sand);
  border-bottom: 0;
  overflow: hidden;
}
.look-atelier-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 460px);
  gap: clamp(28px, 3.5vw, 48px);
  align-items: stretch;
}
.look-atelier-left { min-width: 0; }
.look-stage {
  position: relative;
  margin: 0;
  padding-bottom: 0;
}
.look-stage-main {
  margin: 0;
  width: 100%;
  height: 520px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(18,59,74,.16);
}
.look-stage-main img,
.look-stage-inset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.look-stage-inset {
  position: absolute;
  right: 28px;
  top: 280px;
  width: 200px;
  height: 150px;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 5px solid var(--clr-sand);
  box-shadow: 0 16px 36px rgba(18,59,74,.18);
  z-index: 2;
}
.page-look .look-atelier .form-intro-column {
  position: relative;
  z-index: 3;
  margin: -140px 28px 0 28px;
  order: unset;
}
.page-look .look-atelier .form-intro-card {
  background: var(--clr-white);
  border-radius: 22px;
  padding: 28px 28px 26px;
  box-shadow: 0 20px 44px rgba(18,59,74,.12);
}
.page-look .look-atelier .form-intro-card h2 { max-width: 16ch; }
.page-look .look-atelier .form-intro-features {
  grid-template-columns: 1fr 1fr;
}
.page-look .look-atelier .estimate-card {
  border-radius: 24px;
  box-shadow: 0 24px 56px rgba(18,59,74,.14);
}
.page-look .look-atelier .form-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
}
.look-form-fill {
  margin: 0;
  flex: 1 1 auto;
  min-height: 220px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(18,59,74,.12);
}
.look-form-fill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-look .look-gallery {
  padding: var(--section-pad) 0;
  background: var(--clr-white);
}
.look-sample-head {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.look-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 0;
  background: var(--clr-teal);
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 22px;
  min-height: 360px;
}
.look-feature figure { margin: 0; min-height: 360px; }
.look-feature figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.look-feature-copy {
  padding: clamp(28px, 4vw, 44px);
  color: rgba(255,255,255,.86);
}
.look-feature-copy h3,
.look-tile h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 600;
  margin: 0 0 18px;
  line-height: 1.15;
}
.look-feature-copy h3 { color: var(--clr-white); }
.look-feature-copy dl,
.look-tile dl {
  display: grid;
  gap: 14px;
  margin: 0;
}
.look-feature-copy dt,
.look-tile dt {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.look-feature-copy dt { color: var(--clr-seaglass); }
.look-feature-copy dd,
.look-tile dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}
.look-tile-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 22px;
}
.look-tile {
  background: var(--clr-sand);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(18,59,74,.08);
}
.look-tile figure {
  margin: 0;
  height: 220px;
  overflow: hidden;
}
.look-tile figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms var(--ease-out);
}
.look-tile:hover figure img { transform: scale(1.06); }
.look-tile h3 {
  color: var(--clr-teal);
  padding: 20px 22px 0;
  font-size: 1.55rem;
}
.look-tile dl { padding: 0 22px 24px; }
.look-tile dt { color: var(--clr-terracotta); }
.look-tile dd { color: #4a5c62; }

.page-look .look-texture { background: var(--clr-sand); }
.look-texture-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.look-texture-hero > figure {
  position: absolute;
  inset: 0;
  margin: 0;
}
.look-texture-hero > figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.look-texture-hero > figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18,59,74,.18) 0%, rgba(18,59,74,.55) 100%);
}
.look-texture-hero .container { position: relative; z-index: 1; }
.look-float {
  margin-left: auto;
  max-width: 34rem;
  background: rgba(247,242,234,.94);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 24px 50px rgba(18,59,74,.2);
}
.look-float h2,
.look-structure-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 600;
  color: var(--clr-teal);
  margin: 0 0 14px;
  line-height: 1.18;
}
.look-float p,
.look-structure-copy p {
  color: #4a5c62;
  margin: 0 0 12px;
}

.look-structure {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: var(--section-pad) 0;
}
.look-structure-photos {
  position: relative;
  min-height: 380px;
}
.look-structure-back,
.look-structure-front {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(18,59,74,.14);
}
.look-structure-back {
  width: 78%;
  height: 300px;
}
.look-structure-front {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 240px;
  border: 6px solid var(--clr-sand);
}
.look-structure-back img,
.look-structure-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-look .look-layouts {
  padding: var(--section-pad) 0;
  background: var(--clr-white);
}
.look-spread {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  margin-bottom: 56px;
}
.look-layout {
  display: flex;
  flex-direction: column;
  background: var(--clr-sand);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(18,59,74,.08);
  min-height: 100%;
}
.look-layout figure {
  margin: 0;
  overflow: hidden;
  height: 220px;
  flex: 0 0 220px;
}
.look-layout figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 600ms var(--ease-out);
}
.look-layout:hover figure img { transform: scale(1.05); }
.look-layout p {
  margin: 0;
  padding: 22px 22px 24px;
  color: #4a5c62;
  font-size: 15.5px;
  line-height: 1.65;
  flex: 1;
}

.look-warm {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
}
.look-warm > figure {
  margin: 0;
  min-height: 420px;
}
.look-warm > figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 420px;
}
.look-warm-card {
  position: absolute;
  left: 28px;
  bottom: 28px;
  max-width: 32rem;
  background: rgba(247,242,234,.95);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 28px 30px;
  box-shadow: 0 18px 40px rgba(18,59,74,.18);
}
.look-warm-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 600;
  color: var(--clr-teal);
  margin: 0 0 12px;
  line-height: 1.2;
}
.look-warm-card p {
  color: #4a5c62;
  margin: 0 0 10px;
}

.page-look .look-path {
  padding: var(--section-pad) 0;
  background:
    radial-gradient(900px 280px at 80% 0%, rgba(180,83,50,.08), transparent 55%),
    var(--clr-sand);
}
.look-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.look-step {
  background: var(--clr-white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(18,59,74,.08);
  padding-bottom: 18px;
}
.look-step figure {
  margin: 0 0 0;
  height: 150px;
  overflow: hidden;
}
.look-step figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.look-step-num {
  display: inline-block;
  margin: 14px 16px 6px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--clr-terracotta);
}
.look-step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--clr-teal);
  margin: 0 16px 8px;
  line-height: 1.25;
}
.look-step p {
  margin: 0 16px;
  font-size: 13.5px;
  line-height: 1.55;
  color: #4a5c62;
}

.page-look .look-invite {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.look-invite-photo {
  position: absolute;
  inset: 0;
  margin: 0;
}
.look-invite-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.look-invite-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18,59,74,.48);
}
.look-invite-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.look-invite-card {
  max-width: 38rem;
  text-align: center;
  background: rgba(18,59,74,.42);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  padding: 40px 36px;
}
.look-invite-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 10px;
}
.look-invite-card .cta-band-actions {
  justify-content: center;
  margin-top: 22px;
}

.page-look .look-faq {
  padding: var(--section-pad) 0;
  background: var(--clr-white);
}
.look-faq-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}
.look-faq-photo {
  margin: 0;
  height: 140px;
  border-radius: 20px;
  overflow: hidden;
}
.look-faq-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-look .look-faq-list .faq-item {
  background: var(--clr-sand);
  border: 0;
  border-radius: 16px;
  margin-bottom: 12px;
  padding: 4px 20px 0;
}
.page-look .look-faq-list .faq-answer p { max-width: none; }

@media (max-width: 1100px) {
  .look-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .look-spread { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .look-atelier-grid,
  .look-feature,
  .look-tile-row,
  .look-structure,
  .look-faq-top {
    grid-template-columns: 1fr;
  }
  .look-stage { min-height: 0; }
  .look-stage-main { width: 100%; height: 280px; }
  .look-stage-inset { width: 140px; height: 110px; top: 180px; right: 18px; }
  .page-look .look-atelier .form-intro-column { margin: -80px 16px 0; }
  .page-look .look-atelier .form-column { min-height: 0; }
  .look-form-fill { min-height: 200px; height: 220px; flex: none; }
  .look-feature figure { min-height: 240px; height: 240px; }
  .look-texture-hero { min-height: 0; padding: 48px 0; }
  .look-texture-hero > figure { position: absolute; }
  .look-float { margin: 0; }
  .look-structure-photos { min-height: 300px; }
  .look-warm-card { position: relative; left: auto; bottom: auto; max-width: none; margin: 0; border-radius: 0; }
  .look-warm { display: grid; }
  .look-invite-card .cta-band-actions { flex-direction: column; }
  .look-invite-card .cta-band-actions a { width: 100%; text-align: center; }
}

@media (max-width: 720px) {
  .look-tile-row,
  .look-spread,
  .look-steps { grid-template-columns: 1fr; }
  .look-stage-inset { display: none; }
  .page-look .look-atelier .form-intro-column { margin: 18px 0 0; }
  .page-look .look-atelier .form-intro-features { grid-template-columns: 1fr; }
  .look-structure-front { width: 70%; height: 180px; }
}

@media (prefers-reduced-motion: reduce) {
  .look-tile:hover figure img,
  .look-layout:hover figure img { transform: none; }
}

/* ============================================================
   BATHROOM VANITY INSTALLATION — Vanity Cabinet Layout
   Unique to .page-vanity
   ============================================================ */
.page-vanity #lead-form,
.page-vanity .van-choice,
.page-vanity .van-types,
.page-vanity .van-clearance,
.page-vanity .van-spec,
.page-vanity .van-band,
.page-vanity .van-faq {
  scroll-margin-top: 96px;
}

.page-vanity .van-head {
  max-width: 40rem;
  margin: 0 auto 44px;
  text-align: center;
}
.page-vanity .van-head--left {
  margin: 0 0 36px;
  text-align: left;
  max-width: 32rem;
}
.page-vanity .van-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 3.4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--clr-teal);
  margin: 0;
}

/* --- Form: cabinet frame --- */
.page-vanity .van-cabinet {
  margin-top: -48px;
  position: relative;
  z-index: 4;
  background: transparent;
  border-bottom: 0;
}
.page-vanity .van-cabinet-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
  padding-top: 0;
  padding-bottom: 56px;
}
.page-vanity .van-cabinet-frame {
  position: relative;
  background: var(--clr-white);
  border-radius: 4px 4px 24px 24px;
  border-top: 12px solid var(--clr-eucalyptus);
  border-left: 8px solid var(--clr-limestone);
  border-right: 8px solid var(--clr-limestone);
  box-shadow: var(--shadow-lift);
  overflow: visible;
}
.page-vanity .van-cabinet-photo {
  margin: 0;
  height: 260px;
  overflow: hidden;
  border-radius: 0 0 4px 4px;
}
.page-vanity .van-cabinet-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-vanity .van-cabinet-detail {
  position: absolute;
  top: 200px;
  right: -20px;
  width: 130px;
  margin: 0;
  border: 5px solid var(--clr-white);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  z-index: 2;
}
.page-vanity .van-cabinet-detail img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}
.page-vanity .van-cabinet .form-intro-column {
  order: unset;
  padding: 28px 32px 36px;
}
.page-vanity .van-cabinet .form-intro-card {
  background: none;
  padding: 0;
}
.page-vanity .van-cabinet .form-intro-card h2 { max-width: 16ch; }
.page-vanity .van-cabinet .form-intro-features {
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-top: 20px;
  padding: 14px 16px;
  background: var(--clr-sand);
  border-radius: var(--radius-sm);
}
.page-vanity .van-cabinet .form-column { order: unset; }
.page-vanity .van-cabinet .estimate-card {
  border-radius: 24px;
  border-top: 5px solid var(--clr-terracotta);
  box-shadow: var(--shadow-lift);
  margin-top: 48px;
}

/* --- Choice: two cards --- */
.page-vanity .van-choice {
  padding: var(--section-pad) 0;
  background: var(--clr-sand);
}
.page-vanity .van-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.page-vanity .van-choice-card {
  background: var(--clr-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.page-vanity .van-choice-card figure {
  margin: 0;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.page-vanity .van-choice-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-vanity .van-choice-body {
  padding: 24px 28px 28px;
  flex: 1;
  border-top: 3px solid var(--clr-seaglass);
}
.page-vanity .van-choice-body p {
  margin: 0;
  color: #4a5c62;
  line-height: 1.68;
  max-width: none;
}

/* --- Types: product grid --- */
.page-vanity .van-types {
  padding: var(--section-pad) 0;
  background: var(--clr-white);
}
.page-vanity .van-types-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.page-vanity .van-type-card {
  background: var(--clr-sand);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.page-vanity .van-type-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.page-vanity .van-type-card figure {
  margin: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.page-vanity .van-type-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-slow) var(--ease-out);
}
.page-vanity .van-type-card:hover figure img { transform: scale(1.04); }
.page-vanity .van-type-body {
  padding: 20px 22px 24px;
  flex: 1;
}
.page-vanity .van-type-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--clr-teal);
  margin: 0 0 8px;
}
.page-vanity .van-type-body p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.62;
  color: #4a5c62;
  max-width: none;
}

/* --- Clearance --- */
.page-vanity .van-clearance {
  padding: var(--section-pad) 0;
  background: var(--clr-limestone);
}
.page-vanity .van-clearance-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
.page-vanity .van-clearance-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-vanity .van-clearance-block {
  background: var(--clr-white);
  padding: clamp(24px, 3vw, 32px);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}
.page-vanity .van-clearance-block h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--clr-teal);
  margin: 0 0 12px;
}
.page-vanity .van-clearance-block p {
  margin: 0 0 12px;
  color: #4a5c62;
  line-height: 1.65;
  max-width: none;
}
.page-vanity .van-clearance-block p:last-of-type { margin-bottom: 0; }
.page-vanity .van-clearance-block--accent {
  background: var(--clr-teal);
  color: rgba(255,255,255,.88);
}
.page-vanity .van-clearance-block--accent h3 { color: var(--clr-white); }
.page-vanity .van-clearance-block--accent p { color: rgba(255,255,255,.82); }
.page-vanity .van-clearance-block--accent .check-list li { color: rgba(255,255,255,.85); }
.page-vanity .van-clearance-thumb {
  margin: 0 0 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 140px;
}
.page-vanity .van-clearance-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-vanity .van-clearance-visual {
  margin: 0;
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  position: sticky;
  top: 108px;
}
.page-vanity .van-clearance-visual img {
  width: 100%;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.page-vanity .van-clearance-dims {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  background: linear-gradient(to top, rgba(18,59,74,.75), transparent);
}
.page-vanity .van-clearance-dims span {
  background: var(--clr-white);
  color: var(--clr-teal);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 4px;
}

/* --- Spec table --- */
.page-vanity .van-spec {
  padding: var(--section-pad) 0;
  background: var(--clr-white);
}
.page-vanity .van-spec-table-wrap {
  border: 1px solid rgba(18,59,74,.1);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow-card);
}
.page-vanity .van-spec-head {
  display: grid;
  grid-template-columns: minmax(180px, 1.4fr) repeat(3, minmax(0, 1fr));
  background: var(--clr-teal);
  color: var(--clr-white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 20px;
  gap: 12px;
}
.page-vanity .van-spec-row {
  display: grid;
  grid-template-columns: minmax(180px, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 16px 20px;
  align-items: center;
  border-top: 1px solid rgba(18,59,74,.08);
  background: var(--clr-white);
}
.page-vanity .van-spec-row:nth-child(even) { background: var(--clr-sand); }
.page-vanity .van-spec-material {
  display: flex;
  align-items: center;
  gap: 14px;
}
.page-vanity .van-spec-material figure {
  margin: 0;
  width: 64px;
  height: 48px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.page-vanity .van-spec-material figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-vanity .van-spec-material h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--clr-teal);
  margin: 0;
  line-height: 1.25;
}
.page-vanity .van-spec-row > div[role="cell"] {
  font-size: 14px;
  color: #4a5c62;
  line-height: 1.5;
}
.page-vanity .van-spec-label {
  display: none;
}
.page-vanity .van-sync {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.page-vanity .van-sync-item {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 20px;
  background: var(--clr-sand);
  border-radius: var(--radius-card);
}
.page-vanity .van-sync-item figure {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 100px;
}
.page-vanity .van-sync-item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-vanity .van-sync-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #4a5c62;
  max-width: none;
}

/* --- CTA band --- */
.page-vanity .van-band {
  background: var(--clr-teal);
  padding: 0;
}
.page-vanity .van-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 0;
  align-items: stretch;
  min-height: 360px;
}
.page-vanity .van-band-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 72px) clamp(24px, 4vw, 0);
}
.page-vanity .van-band-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--clr-white);
  margin: 0 0 12px;
  line-height: 1.12;
}
.page-vanity .van-band-copy p {
  margin: 0;
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 38ch;
}
.page-vanity .van-band-copy .cta-band-actions {
  margin-top: 24px;
  flex-wrap: wrap;
}
.page-vanity .van-band-copy .btn-outline-light {
  border-color: rgba(255,255,255,.5);
  color: var(--clr-white);
}
.page-vanity .van-band-photo {
  margin: 0;
  overflow: hidden;
  min-height: 280px;
}
.page-vanity .van-band-photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

/* --- FAQ --- */
.page-vanity .van-faq {
  padding: var(--section-pad) 0;
  background: var(--clr-sand);
}
.page-vanity .van-faq-grid {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
.page-vanity .van-faq-visual {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.page-vanity .van-faq-visual img {
  width: 100%;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.page-vanity .van-faq-list .faq-item {
  background: var(--clr-white);
  border: 1px solid rgba(18,59,74,.08);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}
.page-vanity .van-faq-list .faq-item:last-child { margin-bottom: 0; }
.page-vanity .van-faq-list .faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: transparent;
  border: 0;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--clr-teal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.page-vanity .van-faq-list .faq-answer {
  padding: 0 22px 18px;
}
.page-vanity .van-faq-list .faq-answer p {
  margin: 0;
  color: #4a5c62;
  line-height: 1.65;
  max-width: none;
  font-size: 15px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .page-vanity .van-cabinet-grid { grid-template-columns: 1fr; }
  .page-vanity .van-cabinet .estimate-card { margin-top: 0; }
  .page-vanity .van-types-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-vanity .van-clearance-main,
  .page-vanity .van-band-inner,
  .page-vanity .van-faq-grid {
    grid-template-columns: 1fr;
  }
  .page-vanity .van-clearance-visual { position: static; max-width: 400px; }
  .page-vanity .van-band-photo { min-height: 240px; }
}

@media (max-width: 768px) {
  .page-vanity .van-cabinet { margin-top: 0; }
  .page-vanity .van-cabinet-detail { display: none; }
  .page-vanity .van-choice-grid,
  .page-vanity .van-types-grid,
  .page-vanity .van-sync {
    grid-template-columns: 1fr;
  }
  .page-vanity .van-spec-head { display: none; }
  .page-vanity .van-spec-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }
  .page-vanity .van-spec-row > div[role="cell"] {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 8px;
  }
  .page-vanity .van-spec-label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--clr-terracotta);
  }
  .page-vanity .van-sync-item {
    grid-template-columns: 1fr;
  }
  .page-vanity .van-sync-item figure { height: 160px; }
  .page-vanity .van-band-copy .cta-band-actions { flex-direction: column; }
  .page-vanity .van-band-copy .cta-band-actions a { width: 100%; text-align: center; }
  .page-vanity .van-faq-visual img { aspect-ratio: 16/10; }
}

@media (prefers-reduced-motion: reduce) {
  .page-vanity .van-type-card:hover { transform: none; }
  .page-vanity .van-type-card:hover figure img { transform: none; }
}

/* ============================================================
   WALK-IN TUB INSTALLATION — page-wit v3
   Blueprint bento + vertical timeline + split compare
   ============================================================ */
.page-wit #lead-form,
.page-wit .wit-plan,
.page-wit .wit-timeline,
.page-wit .wit-split,
.page-wit .wit-banner,
.page-wit .wit-ledger {
  scroll-margin-top: 92px;
}

.page-wit .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wit-label {
  display: inline-block;
  margin: 0 0 10px;
  color: var(--clr-terracotta);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.wit-label--light { color: var(--clr-seaglass); }

/* --- Lounge form --- */
.page-wit .wit-lounge {
  background: var(--clr-limestone);
  border-bottom: 0;
  padding: 56px 0 72px;
  margin-top: -48px;
  position: relative;
  z-index: 10;
}
.wit-lounge-frame {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 1.05fr);
  gap: 0;
  background: var(--clr-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
  border: 1px solid rgba(18,59,74,.08);
}
.wit-lounge-aside {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  background: var(--clr-teal);
  position: relative;
}
.wit-lounge-aside::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--clr-terracotta);
}
.wit-lounge-stack {
  margin: 0;
  position: relative;
  min-height: 100%;
  overflow: hidden;
}
.wit-lounge-stack-a,
.wit-lounge-stack-b {
  display: block;
  object-fit: cover;
}
.wit-lounge-stack-a {
  width: 100%;
  height: 100%;
  min-height: 420px;
  opacity: .55;
}
.wit-lounge-stack-b {
  position: absolute;
  right: -20px;
  bottom: 28px;
  width: 120px;
  height: 120px;
  border-radius: 8px;
  border: 3px solid var(--clr-white);
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
}
.page-wit .wit-lounge .form-intro-column {
  order: 0;
  padding: 36px 32px 40px 28px;
  display: flex;
  align-items: center;
}
.page-wit .wit-lounge .form-intro-card {
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}
.page-wit .wit-lounge .form-intro-eyebrow { color: var(--clr-seaglass); }
.page-wit .wit-lounge .form-intro-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 600;
  color: var(--clr-white);
  max-width: 14ch;
  margin-bottom: 14px;
}
.page-wit .wit-lounge .form-intro-card p {
  color: rgba(255,255,255,.82);
  font-size: 15px;
  max-width: none;
}
.page-wit .wit-lounge .form-intro-rule {
  background: var(--clr-terracotta);
}
.page-wit .wit-lounge .form-intro-features li {
  color: rgba(255,255,255,.9);
  font-size: 13px;
}
.page-wit .wit-lounge .form-intro-features li::before {
  background: var(--clr-seaglass);
}
.page-wit .wit-lounge .form-column {
  padding: 36px 40px 40px;
  background: var(--clr-sand);
  border-left: 1px dashed rgba(18,59,74,.12);
}
.page-wit .wit-lounge-form {
  background: var(--clr-white);
  border-radius: var(--radius-sm);
  padding: 28px 28px 32px;
  box-shadow: var(--shadow-card);
}

/* --- Plan bento --- */
.wit-plan {
  padding: var(--section-pad) 0;
  background:
    linear-gradient(rgba(18,59,74,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,59,74,.03) 1px, transparent 1px),
    var(--clr-sand);
  background-size: 32px 32px;
}
.wit-plan-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.wit-plan-header {
  grid-column: 1 / -1;
  max-width: 52rem;
}
.wit-plan-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 14px;
}
.wit-plan-header p {
  margin: 0;
  color: #4a5c62;
  font-size: 16.5px;
  line-height: 1.68;
  max-width: none;
}
.wit-plan-photo {
  grid-column: 1 / 8;
  margin: 0;
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  min-height: 320px;
}
.wit-plan-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}
.wit-plan-pins {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.wit-pin {
  position: absolute;
  background: var(--clr-white);
  color: var(--clr-teal);
  font-size: 12px;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(18,59,74,.2);
  white-space: nowrap;
}
.wit-pin::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--clr-terracotta);
  border-radius: 50%;
}
.wit-pin--w { top: 18%; left: 12%; }
.wit-pin--w::after { bottom: -14px; left: 50%; transform: translateX(-50%); }
.wit-pin--l { bottom: 22%; right: 14%; }
.wit-pin--l::after { top: -14px; left: 50%; transform: translateX(-50%); }
.wit-pin--d { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.wit-pin--d::after { display: none; }
.wit-plan-spec {
  grid-column: 8 / -1;
  background: var(--clr-white);
  border-radius: var(--radius-card);
  padding: 28px 32px;
  box-shadow: var(--shadow-card);
  align-self: start;
}
.wit-plan-spec h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 16px;
}
.wit-plan-spec .check-list li {
  color: #4a5c62;
  font-size: 15px;
}
.wit-plan-water {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  background: var(--clr-teal);
  border-radius: var(--radius-card);
  padding: 28px 32px;
  color: rgba(255,255,255,.88);
}
.wit-plan-water figure {
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  width: 140px;
  height: 140px;
  border: 3px solid rgba(255,255,255,.25);
  flex-shrink: 0;
}
.wit-plan-water figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wit-plan-water h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--clr-white);
  margin: 0 0 10px;
}
.wit-plan-water p {
  margin: 0 0 10px;
  color: rgba(255,255,255,.82);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: none;
}
.wit-plan-water p:last-child { margin-bottom: 0; }

/* --- Timeline features --- */
.wit-timeline {
  padding: var(--section-pad) 0;
  background: var(--clr-teal);
  position: relative;
  overflow: hidden;
}
.wit-timeline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 80% 20%, rgba(184,206,199,.12), transparent 60%);
  pointer-events: none;
}
.wit-timeline-head {
  max-width: 44rem;
  margin: 0 0 52px;
  position: relative;
}
.wit-timeline-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 600;
  color: var(--clr-white);
  line-height: 1.12;
  margin: 0;
}
.wit-timeline-track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.wit-timeline-track::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(184,206,199,.35);
  transform: translateX(-50%);
}
.wit-timeline-step {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  position: relative;
}
.wit-timeline-step figure {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  aspect-ratio: 4/3;
}
.wit-timeline-step figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wit-timeline-node {
  width: 16px;
  height: 16px;
  background: var(--clr-terracotta);
  border: 3px solid var(--clr-teal);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(180,83,50,.35);
  justify-self: center;
  z-index: 1;
}
.wit-timeline-content {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  backdrop-filter: blur(4px);
}
.wit-timeline-step--left figure { grid-column: 1; grid-row: 1; }
.wit-timeline-step--left .wit-timeline-node { grid-column: 2; grid-row: 1; }
.wit-timeline-step--left .wit-timeline-content { grid-column: 3; grid-row: 1; }
.wit-timeline-step--right figure { grid-column: 3; grid-row: 1; }
.wit-timeline-step--right .wit-timeline-node { grid-column: 2; grid-row: 1; }
.wit-timeline-step--right .wit-timeline-content { grid-column: 1; grid-row: 1; }
.wit-timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--clr-white);
  margin: 0 0 8px;
}
.wit-timeline-benefit {
  margin: 0 0 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--clr-seaglass);
}
.wit-timeline-benefit span {
  display: inline-block;
  margin-right: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-terracotta);
}
.wit-timeline-content > p:last-child {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  max-width: none;
}
.wit-timeline-quote {
  margin: 40px 0 0;
  padding: 28px 32px 28px 36px;
  border-left: 4px solid var(--clr-terracotta);
  background: rgba(0,0,0,.15);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.55;
  color: rgba(255,255,255,.9);
  position: relative;
}

/* --- Split compare --- */
.wit-split {
  padding: var(--section-pad) 0;
  background: var(--clr-white);
}
.wit-split-intro {
  max-width: 52rem;
  margin: 0 auto 48px;
  text-align: center;
}
.wit-split-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 14px;
}
.wit-split-intro p {
  margin: 0 auto;
  color: #4a5c62;
  font-size: 16.5px;
  max-width: 62ch;
}
.wit-split-stage {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid rgba(18,59,74,.1);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.wit-split-side {
  display: flex;
  flex-direction: column;
}
.wit-split-side figure {
  margin: 0;
  height: 200px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}
.wit-split-side--shower figure {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
}
.wit-split-side figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wit-split-copy {
  padding: 28px 32px 36px;
  flex: 1;
}
.wit-split-side--tub .wit-split-copy {
  background: #f3eee6;
}
.wit-split-side--shower .wit-split-copy {
  background: var(--clr-sand);
}
.wit-split-copy h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 14px;
  line-height: 1.25;
}
.wit-split-copy .check-list li {
  color: #4a5c62;
  font-size: 15px;
}
.wit-split-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  background: var(--clr-teal);
  position: relative;
  z-index: 2;
}
.wit-split-divider span {
  background: var(--clr-terracotta);
  color: var(--clr-white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 12px 8px;
  border-radius: 999px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.wit-split-note {
  text-align: center;
  margin: 28px auto 0;
  max-width: 52ch;
  font-size: 15.5px;
  color: #4a5c62;
}

/* --- Banner CTA --- */
.wit-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.wit-banner-bg {
  position: absolute;
  inset: 0;
  margin: 0;
}
.wit-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wit-banner-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18,59,74,.82) 0%, rgba(31,90,87,.72) 100%);
}
.wit-banner .container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.wit-banner-glass {
  max-width: 560px;
  text-align: center;
  padding: 48px 52px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-card);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 48px rgba(0,0,0,.2);
}
.wit-banner-glass h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  font-weight: 600;
  color: var(--clr-white);
  margin: 0 0 12px;
  line-height: 1.12;
}
.wit-banner-glass p {
  margin: 0 auto;
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  max-width: 36ch;
}
.wit-banner-glass .cta-band-actions {
  margin-top: 28px;
  justify-content: center;
  flex-wrap: wrap;
}
.wit-banner-glass .btn-outline-light {
  border-color: rgba(255,255,255,.5);
  color: var(--clr-white);
}

/* --- Ledger FAQ --- */
.wit-ledger {
  padding: var(--section-pad) 0;
  background: var(--clr-limestone);
}
.wit-ledger-top {
  display: grid;
  grid-template-columns: minmax(200px, 280px) minmax(0, 1fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 36px;
}
.wit-ledger-top .section-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  font-weight: 600;
  margin: 0;
}
.wit-ledger-photo {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  max-height: 200px;
}
.wit-ledger-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.page-wit .wit-ledger-list {
  max-width: none;
  margin: 0;
  counter-reset: wit-faq;
}
.page-wit .wit-ledger-list .faq-item {
  counter-increment: wit-faq;
  background: var(--clr-white);
  border: 0;
  border-bottom: 1px solid rgba(18,59,74,.1);
  border-radius: 0;
  margin: 0;
  overflow: visible;
}
.page-wit .wit-ledger-list .faq-item:first-child {
  border-top: 1px solid rgba(18,59,74,.1);
}
.page-wit .wit-ledger-list .faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 24px 22px 72px;
  background: transparent;
  border: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-teal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}
.page-wit .wit-ledger-list .faq-question::before {
  content: counter(wit-faq, decimal-leading-zero);
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--clr-terracotta);
  opacity: .7;
}
.page-wit .wit-ledger-list .faq-answer {
  padding: 0 24px 22px 72px;
}
.page-wit .wit-ledger-list .faq-answer p {
  margin: 0;
  color: #4a5c62;
  line-height: 1.65;
  max-width: none;
  font-size: 15px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .wit-lounge-frame {
    grid-template-columns: 1fr;
  }
  .wit-lounge-aside {
    grid-template-columns: 140px minmax(0, 1fr);
  }
  .wit-plan-bento {
    grid-template-columns: 1fr;
  }
  .wit-plan-photo,
  .wit-plan-spec,
  .wit-plan-water {
    grid-column: 1 / -1;
  }
  .wit-timeline-track::before { left: 20px; }
  .wit-timeline-step {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 20px;
    padding-left: 0;
  }
  .wit-timeline-step--left figure,
  .wit-timeline-step--right figure,
  .wit-timeline-step--left .wit-timeline-content,
  .wit-timeline-step--right .wit-timeline-content {
    grid-column: 2;
  }
  .wit-timeline-step--left .wit-timeline-node,
  .wit-timeline-step--right .wit-timeline-node {
    grid-column: 1;
    grid-row: 1;
  }
  .wit-split-stage {
    grid-template-columns: 1fr;
  }
  .wit-split-divider {
    width: 100%;
    height: 48px;
  }
  .wit-split-divider span {
    writing-mode: horizontal-tb;
    transform: none;
    padding: 8px 20px;
  }
  .wit-ledger-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-wit .wit-lounge {
    margin-top: 0;
    padding: 40px 0 56px;
  }
  .wit-lounge-aside {
    grid-template-columns: 1fr;
  }
  .wit-lounge-stack { min-height: 200px; }
  .wit-lounge-stack-a { min-height: 200px; }
  .wit-lounge-stack-b {
    width: 90px;
    height: 90px;
    right: 16px;
    bottom: 16px;
  }
  .page-wit .wit-lounge .form-column {
    padding: 24px;
    border-left: 0;
    border-top: 1px dashed rgba(18,59,74,.12);
  }
  .wit-plan-water {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .wit-plan-water figure {
    margin: 0 auto;
  }
  .wit-pin { font-size: 10px; padding: 6px 10px; }
  .wit-banner { padding: 72px 0; }
  .wit-banner-glass { padding: 36px 28px; }
  .wit-banner-glass .cta-band-actions { flex-direction: column; }
  .wit-banner-glass .cta-band-actions a { width: 100%; text-align: center; }
  .page-wit .wit-ledger-list .faq-question,
  .page-wit .wit-ledger-list .faq-answer {
    padding-left: 24px;
  }
  .page-wit .wit-ledger-list .faq-question::before {
    position: static;
    transform: none;
    display: block;
    margin-bottom: 6px;
  }
  .page-wit .wit-ledger-list .faq-question {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wit-split-side figure img { transition: none; }
}

/* ============================================================
   TOILET INSTALLATION — Fixture Specimen Lab
   Unique to .page-toilet
   ============================================================ */
.page-toilet .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Brief / form --- */
.page-toilet .tls-brief {
  background:
    linear-gradient(180deg, rgba(184,206,199,.22) 0%, transparent 38%),
    var(--clr-sand);
  border-bottom: 0;
  overflow: hidden;
}
.tls-brief-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 440px);
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
}
.tls-brief-visual {
  position: relative;
  min-width: 0;
}
.tls-brief-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.tls-brief-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--clr-teal);
  color: var(--clr-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.tls-brief-photo {
  margin: 0;
  height: clamp(380px, 52vh, 520px);
  border-radius: 26px 26px 8px 26px;
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(18,59,74,.17);
}
.tls-brief-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tls-brief-inset {
  position: absolute;
  right: 24px;
  top: 200px;
  width: 42%;
  max-width: 240px;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 5px solid var(--clr-sand);
  box-shadow: 0 18px 40px rgba(18,59,74,.2);
  z-index: 2;
}
.tls-brief-inset img {
  width: 100%;
  height: 100%;
  aspect-ratio: 12 / 7;
  object-fit: cover;
  display: block;
}
.page-toilet .tls-brief .form-intro-column {
  position: relative;
  z-index: 3;
  margin: -100px 32px 0 0;
}
.page-toilet .tls-brief .form-intro-card {
  background: var(--clr-white);
  border-radius: 22px;
  padding: 28px 28px 26px;
  box-shadow: 0 22px 48px rgba(18,59,74,.13);
  border-left: 4px solid var(--clr-terracotta);
}
.page-toilet .tls-brief .form-intro-card h2 { max-width: 18ch; }
.page-toilet .tls-brief .form-intro-features {
  grid-template-columns: 1fr 1fr;
}
.page-toilet .tls-brief .estimate-card {
  border-radius: 24px;
  box-shadow: 0 24px 56px rgba(18,59,74,.14);
  position: sticky;
  top: 96px;
}

/* --- Types / specimen --- */
.tls-types {
  padding: var(--section-pad) 0;
  background: var(--clr-white);
}
.tls-types-head {
  max-width: 44rem;
  margin: 0 auto 52px;
  text-align: center;
}
.tls-types-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--clr-teal);
  margin: 0 0 14px;
}
.tls-types-head p {
  margin: 0 auto;
  color: #4a5c62;
  max-width: 62ch;
  line-height: 1.65;
}
.tls-types-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.tls-types-feature {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(18,59,74,.08);
  box-shadow: 0 16px 40px rgba(18,59,74,.08);
  background: var(--clr-sand);
}
.tls-types-feature figure {
  margin: 0;
  min-height: 280px;
}
.tls-types-feature figure img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}
.tls-types-feature-copy {
  display: flex;
  align-items: stretch;
  min-width: 0;
}
.tls-height-bar {
  width: 52px;
  flex-shrink: 0;
  background: rgba(18,59,74,.06);
  border-right: 1px dashed rgba(18,59,74,.14);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 16px 8px;
  position: relative;
}
.tls-height-fill {
  display: block;
  width: 18px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--clr-eucalyptus), var(--clr-teal));
  margin-bottom: 8px;
}
.tls-height-bar em {
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--clr-teal);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.tls-height-bar--tall .tls-height-fill {
  background: linear-gradient(180deg, var(--clr-terracotta), #8a3a24);
}
.tls-types-feature-body {
  padding: 24px 22px 22px;
  flex: 1;
}
.tls-types-feature-body h3,
.tls-types-card-copy h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--clr-teal);
  margin: 0 0 14px;
}
.tls-types-feature-body dl,
.tls-types-card-copy dl {
  margin: 0;
  display: grid;
  gap: 10px;
}
.tls-types-feature-body dl div,
.tls-types-card-copy dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px;
  font-size: 14px;
  line-height: 1.45;
}
.tls-types-feature-body dt,
.tls-types-card-copy dt {
  font-weight: 700;
  color: #5a6d73;
  margin: 0;
}
.tls-types-feature-body dd,
.tls-types-card-copy dd {
  margin: 0;
  color: #2f4046;
}
.tls-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tls-types-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--clr-sand);
  border: 1px solid rgba(18,59,74,.07);
  box-shadow: 0 12px 32px rgba(18,59,74,.07);
  transition: transform .25s ease, box-shadow .25s ease;
}
.tls-types-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(18,59,74,.12);
}
.tls-types-card figure {
  margin: 0;
  height: 200px;
  overflow: hidden;
}
.tls-types-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tls-types-card-copy {
  padding: 20px 20px 22px;
}

/* --- Blueprint / rough-in --- */
.tls-blueprint {
  padding: var(--section-pad) 0;
  background:
    linear-gradient(rgba(18,59,74,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,59,74,.03) 1px, transparent 1px),
    linear-gradient(180deg, #eef4f2 0%, var(--clr-sand) 100%);
  background-size: 32px 32px, 32px 32px, 100% 100%;
}
.tls-blueprint-top {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.tls-blueprint-photo {
  margin: 0;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(18,59,74,.16);
}
.tls-blueprint-photo img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
}
.tls-blueprint-chips {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tls-blueprint-chips span {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 8px;
  background: rgba(18,59,74,.88);
  color: var(--clr-seaglass);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  backdrop-filter: blur(6px);
}
.tls-blueprint-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--clr-teal);
  margin: 0 0 16px;
  line-height: 1.15;
}
.tls-blueprint-copy p {
  color: #4a5c62;
  line-height: 1.68;
  margin: 0 0 14px;
}
.tls-blueprint-diagram {
  margin: 24px 0 0;
  padding: 20px 24px;
  background: var(--clr-white);
  border-radius: 18px;
  border: 1px solid rgba(18,59,74,.1);
  box-shadow: inset 0 0 0 1px rgba(184,206,199,.35);
}

/* --- Flange block --- */
.tls-flange {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  padding: clamp(32px, 4vw, 48px);
  background: var(--clr-white);
  border-radius: 28px;
  box-shadow: 0 20px 52px rgba(18,59,74,.1);
}
.tls-flange-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  font-weight: 600;
  color: var(--clr-teal);
  margin: 0 0 14px;
}
.tls-flange-copy > p {
  color: #4a5c62;
  line-height: 1.68;
  margin: 0 0 14px;
}
.tls-flange-note {
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: 16px;
  background: #fdf6ee;
  border-left: 4px solid var(--clr-terracotta);
}
.tls-flange-note h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--clr-teal);
  margin: 0 0 8px;
}
.tls-flange-note p {
  margin: 0;
  color: #4a5c62;
  line-height: 1.65;
  font-size: 15px;
}
.tls-flange-photo {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(18,59,74,.14);
}
.tls-flange-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

/* --- Timeline / process --- */
.tls-timeline {
  padding: var(--section-pad) 0;
  background: var(--clr-teal);
  color: var(--clr-white);
}
.tls-timeline-head {
  margin-bottom: 48px;
}
.tls-timeline-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.65rem);
  font-weight: 600;
  margin: 0;
  color: var(--clr-white);
}
.tls-timeline-track {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.tls-timeline-track::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(184,206,199,.25);
  transform: translateX(-50%);
}
.tls-timeline-step {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 48px;
  position: relative;
}
.tls-timeline-step:last-child { margin-bottom: 0; }
.tls-timeline-step figure {
  margin: 0;
  grid-column: 1;
  grid-row: 1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}
.tls-timeline-step figure img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.tls-timeline-step .tls-timeline-content {
  grid-column: 3;
  grid-row: 1;
  padding: 24px 28px;
  background: rgba(255,255,255,.06);
  border-radius: 18px;
  border: 1px solid rgba(184,206,199,.18);
}
.tls-timeline-step--flip figure {
  grid-column: 3;
}
.tls-timeline-step--flip .tls-timeline-content {
  grid-column: 1;
}
.tls-timeline-node {
  grid-column: 2;
  grid-row: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--clr-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(18,59,74,.85);
}
.tls-timeline-node span {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
}
.tls-timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--clr-seaglass);
}
.tls-timeline-content p {
  margin: 0;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
  font-size: 15px;
}

/* --- CTA --- */
.tls-cta {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.tls-cta-photo {
  position: absolute;
  inset: 0;
  margin: 0;
}
.tls-cta-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tls-cta-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(18,59,74,.92) 0%, rgba(18,59,74,.55) 48%, transparent 72%);
}
.tls-cta-panel {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 64px clamp(20px, 5vw, 80px);
  padding: 40px 44px;
  background: rgba(18,59,74,.72);
  border-radius: 24px;
  border: 1px solid rgba(184,206,199,.22);
  backdrop-filter: blur(8px);
}
.tls-cta-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 600;
  margin: 0 0 10px;
}
.tls-cta-panel p {
  margin: 0 0 24px;
}
.tls-cta-panel .cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* --- FAQ --- */
.tls-faq {
  padding: var(--section-pad) 0;
  background: var(--clr-sand);
}
.tls-faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.tls-faq-side .section-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 600;
  color: var(--clr-teal);
  margin: 0 0 24px;
}
.tls-faq-photo {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(18,59,74,.12);
}
.tls-faq-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.page-toilet .tls-faq-list .faq-item {
  background: var(--clr-white);
  border-radius: 16px;
  border: 1px solid rgba(18,59,74,.08);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(18,59,74,.06);
}
.page-toilet .tls-faq-list .faq-item:last-child { margin-bottom: 0; }
.page-toilet .tls-faq-list .faq-question {
  padding: 20px 24px;
  font-weight: 700;
  color: var(--clr-teal);
}
.page-toilet .tls-faq-list .faq-answer {
  padding: 0 24px 20px;
}
.page-toilet .tls-faq-list .faq-answer p {
  margin: 0;
  color: #4a5c62;
  line-height: 1.68;
  max-width: none;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .tls-brief-grid {
    grid-template-columns: 1fr;
  }
  .page-toilet .tls-brief .form-intro-column {
    margin: -60px 16px 0;
  }
  .page-toilet .tls-brief .estimate-card {
    position: static;
  }
  .tls-brief-inset {
    width: 180px;
    top: 160px;
  }
  .tls-types-hero {
    grid-template-columns: 1fr;
  }
  .tls-types-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tls-blueprint-top,
  .tls-flange {
    grid-template-columns: 1fr;
  }
  .tls-blueprint-photo img { min-height: 360px; }
  .tls-timeline-track::before { left: 28px; }
  .tls-timeline-step,
  .tls-timeline-step--flip {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 20px;
  }
  .tls-timeline-step figure,
  .tls-timeline-step--flip figure {
    grid-column: 2;
    grid-row: 2;
  }
  .tls-timeline-step .tls-timeline-content,
  .tls-timeline-step--flip .tls-timeline-content {
    grid-column: 2;
    grid-row: 3;
  }
  .tls-timeline-node {
    grid-column: 1;
    grid-row: 1;
    width: 48px;
    height: 48px;
  }
  .tls-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .tls-brief-photo { height: 320px; border-radius: 20px; }
  .tls-brief-inset {
    position: static;
    width: 100%;
    max-width: none;
    margin: -40px 0 0;
  }
  .page-toilet .tls-brief .form-intro-column { margin: 18px 0 0; }
  .page-toilet .tls-brief .form-intro-features { grid-template-columns: 1fr; }
  .tls-types-feature {
    grid-template-columns: 1fr;
  }
  .tls-types-feature figure { min-height: 200px; }
  .tls-types-feature figure img { min-height: 200px; }
  .tls-types-feature-body dl div,
  .tls-types-card-copy dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .tls-types-grid { grid-template-columns: 1fr; }
  .tls-cta-panel {
    margin: 48px 16px;
    padding: 32px 24px;
  }
  .tls-cta-panel .cta-band-actions {
    flex-direction: column;
  }
  .tls-cta-panel .cta-band-actions a {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tls-types-card { transition: none; }
  .tls-types-card:hover { transform: none; }
}

/* -----------------------------------------------------------
   43. BATHROOM LIGHTING — LUMEN ATELIER (page-lighting only)
   ----------------------------------------------------------- */
.page-lighting #lead-form,
.page-lighting #layers,
.page-lighting #pendants,
.page-lighting #placement,
.page-lighting #spectrum,
.page-lighting #cta,
.page-lighting #faqs {
  scroll-margin-top: 92px;
}

.page-lighting .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Lead form: orb constellation bay --- */
.page-lighting .lux-bay {
  background: linear-gradient(165deg, #0c222c 0%, #123B4A 42%, #1a4a55 100%);
  border-bottom: 0;
  position: relative;
  overflow: hidden;
}
.page-lighting .lux-bay::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 480px 320px at 18% 28%, rgba(180,83,50,.22) 0%, transparent 70%),
    radial-gradient(ellipse 360px 280px at 72% 68%, rgba(184,206,199,.14) 0%, transparent 65%);
  pointer-events: none;
}
.page-lighting .lux-bay-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 1.05fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding-top: 48px;
  padding-bottom: 48px;
  position: relative;
  z-index: 1;
}
.page-lighting .lux-bay-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}
.page-lighting .lux-orbs {
  position: relative;
  min-height: 260px;
  margin-bottom: -24px;
}
.page-lighting .lux-orb {
  position: absolute;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 0 0 4px rgba(255,255,255,.08),
    0 12px 40px rgba(0,0,0,.35),
    0 0 60px rgba(180,83,50,.18);
}
.page-lighting .lux-orb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-lighting .lux-orb--main {
  width: clamp(200px, 38vw, 280px);
  height: clamp(200px, 38vw, 280px);
  top: 0;
  left: 8%;
  z-index: 3;
}
.page-lighting .lux-orb--mid {
  width: clamp(140px, 24vw, 190px);
  height: clamp(140px, 24vw, 190px);
  top: 12%;
  right: 6%;
  z-index: 2;
  box-shadow:
    0 0 0 3px rgba(255,255,255,.06),
    0 10px 32px rgba(0,0,0,.3),
    0 0 48px rgba(184,206,199,.2);
}
.page-lighting .lux-orb--low {
  width: clamp(120px, 20vw, 160px);
  height: clamp(120px, 20vw, 160px);
  bottom: 8%;
  left: 42%;
  z-index: 4;
  box-shadow:
    0 0 0 3px rgba(255,255,255,.06),
    0 8px 28px rgba(0,0,0,.28),
    0 0 40px rgba(31,90,87,.25);
}
.page-lighting .lux-bay .form-intro-column {
  position: relative;
  z-index: 5;
  padding-top: 12px;
}
.page-lighting .lux-bay .form-intro-card {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 32px 36px 36px;
}
.page-lighting .lux-bay .form-intro-eyebrow { color: var(--clr-seaglass); }
.page-lighting .lux-bay .form-intro-card h2 {
  color: var(--clr-white);
  max-width: 16ch;
}
.page-lighting .lux-bay .form-intro-rule {
  background: linear-gradient(90deg, var(--clr-terracotta), rgba(180,83,50,.3));
}
.page-lighting .lux-bay .form-intro-card p { color: rgba(255,255,255,.78); }
.page-lighting .lux-bay .form-intro-features {
  grid-template-columns: 1fr 1fr;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.page-lighting .lux-bay .form-intro-features li { color: rgba(255,255,255,.88); }
.page-lighting .lux-bay .form-intro-features li::before {
  background: var(--clr-terracotta);
  box-shadow: 0 0 12px rgba(180,83,50,.5);
}
.page-lighting .lux-bay .form-intro-cta .btn-secondary {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.35);
  color: var(--clr-white);
}
.page-lighting .lux-bay .form-intro-cta .btn-secondary:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--clr-seaglass);
}
.page-lighting .lux-bay .form-column {
  align-self: center;
  display: flex;
  align-items: center;
}
.page-lighting .lux-bay .estimate-card {
  background: var(--clr-white);
  border-radius: 20px;
  box-shadow: var(--shadow-lift);
  padding: 32px 28px 28px;
  width: 100%;
}

/* --- Theater: day / evening toggle stage --- */
.page-lighting .lux-theater {
  padding: 88px 0 72px;
  background: var(--clr-sand);
}
.page-lighting .lux-head {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto 48px;
}
.page-lighting .lux-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--clr-teal);
  margin: 0 0 16px;
}
.page-lighting .lux-head p {
  margin: 0;
  color: #4a5c62;
  font-size: 17px;
  max-width: 58ch;
  margin-inline: auto;
}
.page-lighting .lux-stage {
  max-width: 960px;
  margin: 0 auto;
}
.page-lighting .lighting-scene {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(18,59,74,.18),
    0 0 0 1px rgba(18,59,74,.06);
}
.page-lighting .lighting-scene > div {
  position: relative;
}
.page-lighting .lighting-scene img {
  width: 100%;
  height: auto;
  min-height: 320px;
  object-fit: cover;
  display: block;
  transition: opacity var(--dur-slow) var(--ease-out);
}
.page-lighting .scene-label {
  position: absolute;
  bottom: 20px;
  left: 24px;
  padding: 8px 16px;
  background: rgba(18,59,74,.82);
  backdrop-filter: blur(8px);
  color: var(--clr-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 100px;
}
.page-lighting .lux-dimmer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.page-lighting .toggle-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-teal);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.page-lighting .toggle-switch {
  position: relative;
  display: inline-block;
  width: 64px;
  height: 32px;
  cursor: pointer;
}
.page-lighting .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.page-lighting .toggle-slider {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f5e6c8 0%, #e8d4a8 100%);
  border-radius: 100px;
  transition: background var(--dur-base) var(--ease-out);
  box-shadow: inset 0 2px 6px rgba(0,0,0,.12);
}
.page-lighting .toggle-slider::before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  left: 3px;
  bottom: 3px;
  background: var(--clr-white);
  border-radius: 50%;
  transition: transform var(--dur-base) var(--ease-out);
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.page-lighting .toggle-switch input:checked + .toggle-slider {
  background: linear-gradient(135deg, #1a3540 0%, #0f2530 100%);
}
.page-lighting .toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(32px);
  background: #f0d080;
  box-shadow: 0 0 12px rgba(240,208,128,.6);
}
.page-lighting .toggle-switch input:focus-visible + .toggle-slider {
  outline: 3px solid var(--clr-terracotta);
  outline-offset: 3px;
}
.page-lighting .lux-stage-note {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: #7a8a90;
  font-style: italic;
}

/* --- Pendants: three hanging layer cards --- */
.page-lighting .lux-pendants {
  padding: 72px 0 96px;
  background: linear-gradient(180deg, var(--clr-sand) 0%, #ede6da 100%);
}
.page-lighting .lux-pendant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
}
.page-lighting .lux-pendant {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.page-lighting .lux-pendant:nth-child(2) { padding-top: 36px; }
.page-lighting .lux-pendant:nth-child(3) { padding-top: 18px; }
.page-lighting .lux-cord {
  display: block;
  width: 2px;
  height: 48px;
  background: linear-gradient(180deg, rgba(18,59,74,.15) 0%, rgba(18,59,74,.45) 100%);
  margin-bottom: 0;
}
.page-lighting .lux-pendant-photo {
  width: 100%;
  aspect-ratio: 1;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 0 0 6px var(--clr-white),
    0 0 0 8px rgba(18,59,74,.06),
    0 16px 48px rgba(18,59,74,.14);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.page-lighting .lux-pendant-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-lighting .lux-pendant:hover .lux-pendant-photo {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 6px var(--clr-white),
    0 0 0 8px rgba(180,83,50,.12),
    0 20px 56px rgba(18,59,74,.2);
}
.page-lighting .lux-pendant-copy {
  margin-top: 28px;
  padding: 0 8px;
}
.page-lighting .lux-pendant-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  background: var(--clr-white);
  border-radius: 50%;
  box-shadow: var(--shadow-card);
}
.page-lighting .lux-pendant-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--clr-teal);
  margin: 0 0 12px;
  line-height: 1.2;
}
.page-lighting .lux-pendant-copy p {
  margin: 0;
  color: #4a5c62;
  font-size: 15.5px;
  line-height: 1.65;
}

/* --- Sconce: mirror placement section --- */
.page-lighting .lux-sconce {
  padding: 88px 0;
  background: var(--clr-teal);
  position: relative;
  overflow: hidden;
}
.page-lighting .lux-sconce::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(180,83,50,.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-lighting .lux-sconce-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.page-lighting .lux-sconce-stage {
  position: relative;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
}
.page-lighting .lux-sconce-stage img {
  width: 100%;
  height: auto;
  min-height: 420px;
  object-fit: cover;
  display: block;
}
.page-lighting .lux-hotspot {
  position: absolute;
  top: 38%;
  padding: 6px 12px;
  background: rgba(180,83,50,.92);
  color: var(--clr-white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.page-lighting .lux-hotspot::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--clr-terracotta);
  border: 2px solid var(--clr-white);
  border-radius: 50%;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
}
.page-lighting .lux-hotspot--left { left: 8%; }
.page-lighting .lux-hotspot--right { right: 8%; }
.page-lighting .lux-sconce-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--clr-white);
  margin: 0 0 20px;
}
.page-lighting .lux-sconce-copy p {
  color: rgba(255,255,255,.82);
  margin: 0 0 16px;
  font-size: 16.5px;
  line-height: 1.68;
  max-width: 54ch;
}
.page-lighting .lux-sconce-copy p:last-child { margin-bottom: 0; }

/* --- Spectrum: kelvin rail + electrical panel --- */
.page-lighting .lux-spectrum {
  padding: 88px 0;
  background: var(--clr-white);
}
.page-lighting .lux-kelvin {
  max-width: 900px;
  margin: 0 auto 72px;
}
.page-lighting .lux-kelvin-copy {
  text-align: center;
  margin-bottom: 36px;
}
.page-lighting .lux-kelvin-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--clr-teal);
  margin: 0 0 14px;
}
.page-lighting .lux-kelvin-copy p {
  margin: 0 auto;
  color: #4a5c62;
  max-width: 48ch;
  font-size: 16.5px;
}
.page-lighting .lux-kelvin-rail {
  position: relative;
  height: 12px;
  margin: 0 0 48px;
  border-radius: 100px;
  background: linear-gradient(
    90deg,
    #ffb347 0%,
    #ffd699 22%,
    #fff4e0 40%,
    #f5f0e8 58%,
    #e8f0f5 78%,
    #c8dce8 100%
  );
  box-shadow: inset 0 1px 3px rgba(0,0,0,.08);
}
.page-lighting .lux-kelvin-stop {
  position: absolute;
  top: 24px;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 800;
  color: var(--clr-teal);
  letter-spacing: .02em;
  white-space: nowrap;
}
.page-lighting .lux-kelvin-stop::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 16px;
  background: var(--clr-teal);
  border-radius: 2px;
}
.page-lighting .lux-kelvin-table {
  margin-bottom: 20px;
}
.page-lighting .lux-kelvin-table .compare-table {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(18,59,74,.08);
}
.page-lighting .lux-kelvin-table .compare-table thead th {
  background: var(--clr-teal);
  padding: 14px 18px;
}
.page-lighting .lux-kelvin-table .compare-table tbody td {
  padding: 14px 18px;
  font-size: 15px;
}
.page-lighting .lux-kelvin-table .compare-table tbody tr:nth-child(1) td:first-child { color: #c47a20; }
.page-lighting .lux-kelvin-table .compare-table tbody tr:nth-child(2) td:first-child { color: #a8926c; }
.page-lighting .lux-kelvin-table .compare-table tbody tr:nth-child(3) td:first-child { color: var(--clr-eucalyptus); }
.page-lighting .lux-kelvin-table .compare-table tbody tr:nth-child(4) td:first-child { color: #5a8a9a; }
.page-lighting .lux-cri-note {
  text-align: center;
  font-size: 14.5px;
  color: #5a6a70;
  font-style: italic;
  max-width: 58ch;
  margin: 0 auto;
  line-height: 1.6;
}
.page-lighting .lux-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 0;
  background: var(--clr-sand);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(18,59,74,.08);
  box-shadow: var(--shadow-card);
}
.page-lighting .lux-panel-photo {
  margin: 0;
  min-height: 100%;
}
.page-lighting .lux-panel-photo img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}
.page-lighting .lux-panel-copy {
  padding: clamp(32px, 4vw, 48px) clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-lighting .lux-panel-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.6vw, 2.1rem);
  font-weight: 600;
  color: var(--clr-teal);
  margin: 0 0 18px;
  line-height: 1.15;
}
.page-lighting .lux-panel-copy p {
  margin: 0 0 14px;
  color: #4a5c62;
  font-size: 15.5px;
  line-height: 1.68;
}
.page-lighting .lux-panel-copy p:last-child { margin-bottom: 0; }

/* --- Glow CTA band --- */
.page-lighting .lux-glow {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-lighting .lux-glow-photo {
  position: absolute;
  inset: 0;
  margin: 0;
}
.page-lighting .lux-glow-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-lighting .lux-glow-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18,59,74,.88) 0%,
    rgba(18,59,74,.72) 50%,
    rgba(31,90,87,.78) 100%
  );
}
.page-lighting .lux-glow-panel {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 64px 24px;
  max-width: 640px;
}
.page-lighting .lux-glow-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  font-weight: 600;
  margin: 0 0 12px;
}
.page-lighting .lux-glow-panel .text-light-muted {
  margin: 0 0 28px;
  font-size: 17px;
}
.page-lighting .lux-glow-panel .cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* --- FAQ ask section --- */
.page-lighting .lux-ask {
  padding: 88px 0;
  background: var(--clr-sand);
}
.page-lighting .lux-ask-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}
.page-lighting .lux-ask-side .section-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--clr-teal);
  margin: 0 0 28px;
}
.page-lighting .lux-ask-photo {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.page-lighting .lux-ask-photo img {
  width: 100%;
  height: auto;
  min-height: 360px;
  object-fit: cover;
  display: block;
}
.page-lighting .lux-ask-list .faq-item {
  background: var(--clr-white);
  border: 1px solid rgba(18,59,74,.08);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(18,59,74,.04);
  border-bottom: 1px solid rgba(18,59,74,.08);
}
.page-lighting .lux-ask-list .faq-item:last-child { margin-bottom: 0; }
.page-lighting .lux-ask-list .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-teal);
  line-height: 1.4;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out);
}
.page-lighting .lux-ask-list .faq-question:hover {
  background: rgba(18,59,74,.03);
}
.page-lighting .lux-ask-list .faq-question[aria-expanded="true"] {
  background: rgba(180,83,50,.06);
  color: var(--clr-terracotta);
}
.page-lighting .lux-ask-list .faq-arrow {
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease-out);
}
.page-lighting .lux-ask-list .faq-question[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
}
.page-lighting .lux-ask-list .faq-answer {
  padding: 0 24px 20px;
}
.page-lighting .lux-ask-list .faq-answer p {
  margin: 0;
  color: #4a5c62;
  line-height: 1.68;
  max-width: none;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .page-lighting .lux-bay-grid {
    grid-template-columns: 1fr;
  }
  .page-lighting .lux-orbs {
    min-height: 220px;
    margin-bottom: -16px;
  }
  .page-lighting .lux-orb--main { left: 4%; }
  .page-lighting .lux-orb--low { left: 50%; }
  .page-lighting .lux-pendant-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .page-lighting .lux-pendant:nth-child(2),
  .page-lighting .lux-pendant:nth-child(3) { padding-top: 0; }
  .page-lighting .lux-sconce-grid {
    grid-template-columns: 1fr;
  }
  .page-lighting .lux-sconce-stage img { min-height: 320px; }
  .page-lighting .lux-panel {
    grid-template-columns: 1fr;
  }
  .page-lighting .lux-panel-photo img { min-height: 280px; }
  .page-lighting .lux-ask-grid {
    grid-template-columns: 1fr;
  }
  .page-lighting .lux-ask-photo img { min-height: 280px; }
}

@media (max-width: 640px) {
  .page-lighting .lux-bay-grid {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .page-lighting .lux-orbs {
    min-height: 200px;
    margin-bottom: -12px;
  }
  .page-lighting .lux-orb--main {
    width: 160px;
    height: 160px;
    left: 0;
  }
  .page-lighting .lux-orb--mid {
    width: 110px;
    height: 110px;
    right: 0;
  }
  .page-lighting .lux-orb--low {
    width: 90px;
    height: 90px;
    bottom: 0;
    left: 38%;
  }
  .page-lighting .lux-bay .form-intro-card {
    padding: 24px 22px 28px;
  }
  .page-lighting .lux-bay .form-intro-features {
    grid-template-columns: 1fr;
  }
  .page-lighting .lux-theater { padding: 64px 0 56px; }
  .page-lighting .lighting-scene img { min-height: 220px; }
  .page-lighting .lux-pendants { padding: 56px 0 72px; }
  .page-lighting .lux-cord { height: 32px; }
  .page-lighting .lux-sconce { padding: 64px 0; }
  .page-lighting .lux-hotspot {
    font-size: 9px;
    padding: 4px 8px;
  }
  .page-lighting .lux-spectrum { padding: 64px 0; }
  .page-lighting .lux-kelvin { margin-bottom: 48px; }
  .page-lighting .lux-kelvin-rail { margin-bottom: 56px; }
  .page-lighting .lux-kelvin-stop { font-size: 10px; }
  .page-lighting .lux-glow { min-height: 360px; }
  .page-lighting .lux-glow-panel .cta-band-actions {
    flex-direction: column;
  }
  .page-lighting .lux-glow-panel .cta-band-actions a {
    width: 100%;
    text-align: center;
  }
  .page-lighting .lux-ask { padding: 64px 0; }
  .page-lighting .lux-ask-list .faq-question {
    padding: 16px 18px;
    font-size: 15px;
  }
  .page-lighting .lux-ask-list .faq-answer { padding: 0 18px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .page-lighting .lux-pendant:hover .lux-pendant-photo { transform: none; }
  .page-lighting .lighting-scene img { transition: none; }
  .page-lighting .toggle-slider,
  .page-lighting .toggle-slider::before { transition: none; }
}

/* -----------------------------------------------------------
   PRIVACY / LEGAL PAGE
   ----------------------------------------------------------- */
.page-privacy .legal-masthead {
  position: relative;
  padding: 120px 0 48px;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(31, 90, 87, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 20%, rgba(180, 83, 50, 0.12), transparent 50%),
    linear-gradient(165deg, #0e2f3a 0%, var(--clr-teal) 48%, #1a4a52 100%);
  color: var(--clr-white);
  overflow: hidden;
}

.page-privacy .legal-masthead::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 206, 199, 0.45), transparent);
}

.page-privacy .legal-masthead-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.page-privacy .legal-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.7);
}

.page-privacy .legal-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-privacy .legal-breadcrumb li:not(:last-child)::after {
  content: "/";
  opacity: 0.45;
}

.page-privacy .legal-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.page-privacy .legal-breadcrumb a:hover {
  color: var(--clr-seaglass);
  text-decoration: underline;
}

.page-privacy .legal-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-seaglass);
}

.page-privacy .legal-masthead h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--clr-white);
  margin-bottom: 16px;
}

.page-privacy .legal-lede {
  font-size: var(--fs-intro);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 38em;
  margin-bottom: 18px;
}

.page-privacy .legal-meta {
  font-size: var(--fs-sm);
  color: rgba(184, 206, 199, 0.95);
  letter-spacing: 0.02em;
}

.page-privacy .legal-body {
  padding-top: 56px;
  padding-bottom: 88px;
}

.page-privacy .legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.page-privacy .legal-toc {
  position: sticky;
  top: 100px;
  padding: 20px 18px;
  border-left: 2px solid var(--clr-seaglass);
  background: transparent;
}

.page-privacy .legal-toc-title {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-teal);
}

.page-privacy .legal-toc ol {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-privacy .legal-toc a {
  color: var(--clr-espresso);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.35;
  opacity: 0.82;
}

.page-privacy .legal-toc a:hover {
  color: var(--clr-terracotta);
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-privacy .legal-content {
  max-width: 720px;
}

.page-privacy .legal-block {
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(18, 59, 74, 0.12);
  scroll-margin-top: 104px;
}

.page-privacy .legal-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.page-privacy .legal-block h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 34px);
  font-weight: 600;
  color: var(--clr-teal);
  margin-bottom: 14px;
  line-height: 1.2;
}

.page-privacy .legal-block p {
  margin-bottom: 14px;
}

.page-privacy .legal-block p:last-child {
  margin-bottom: 0;
}

.page-privacy .legal-block .check-list {
  margin: 16px 0 18px;
}

.page-privacy .legal-contact-card {
  margin-top: 18px;
  padding: 24px 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(222, 211, 194, 0.35));
  border: 1px solid rgba(18, 59, 74, 0.1);
  border-radius: var(--radius-sm);
}

.page-privacy .legal-contact-name {
  font-weight: 800;
  color: var(--clr-teal);
  margin-bottom: 8px;
}

.page-privacy .legal-contact-card p {
  margin-bottom: 12px;
}

.page-privacy .legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

@media (max-width: 900px) {
  .page-privacy .legal-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .page-privacy .legal-toc {
    position: static;
    padding: 0 0 8px;
    border-left: 0;
    border-bottom: 1px solid rgba(18, 59, 74, 0.12);
  }

  .page-privacy .legal-toc ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 16px;
    padding-bottom: 18px;
  }
}

@media (max-width: 640px) {
  .page-privacy .legal-masthead {
    padding: 108px 0 36px;
  }

  .page-privacy .legal-toc ol {
    grid-template-columns: 1fr;
  }

  .page-privacy .legal-actions {
    flex-direction: column;
  }

  .page-privacy .legal-actions .btn-primary,
  .page-privacy .legal-actions .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-privacy .legal-block {
    scroll-margin-top: 96px;
  }
}

/* GoHighLevel survey embed */
.ghl-survey-embed {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.ghl-survey-embed iframe {
  border: 0;
  width: 100%;
  max-width: 100%;
  display: block;
}
