/* =====================================================
   Thousand Oaks Epoxy Flooring
   Theme: Charcoal + Royal Blue (logo palette)
   ===================================================== */

/* ── Variables ─────────────────────────────────────── */
:root {
  --ivory:       #F4F7FB;
  --ivory-deep:  #E8EEF5;
  --surface:     #FFFFFF;
  --primary:     #2F3438;
  --primary-mid: #3D4549;
  --primary-lt:  #5C6670;
  --accent:      #1B66C4;
  --accent-dark: #1554A3;
  --accent-light:#E8F1FC;
  --cream:       var(--ivory);
  --light:       var(--ivory-deep);
  --text:        #2F3438;
  --text-muted:  #4F5965;
  --border:      #D4DCE6;
  --white:       #FFFFFF;
  --header-bg:   var(--surface);
  --footer-bg:   #2F3438;
  --max:         1200px;
  --nav-h:       130px;
  --shadow-sm:   0 2px 12px rgba(47, 52, 56, 0.06);
  --shadow-md:   0 8px 28px rgba(47, 52, 56, 0.1);
  --shadow-lg:   0 16px 48px rgba(47, 52, 56, 0.14);
  --hero-panel:  rgba(255, 255, 255, 0.78);
  --hero-panel-overlay: rgba(255, 255, 255, 0.74);
  --hero-form-panel: rgba(232, 241, 252, 0.92);
  --scrim:       47, 52, 56;
}

/* ── Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 5rem 0; }
.bg-cream { background: var(--cream); }
.bg-light { background: var(--light); }
.bg-primary { background: var(--primary); color: var(--white); }

/* ── Typography ────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--primary); }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }
.section-title { text-align: center; margin-bottom: 0.5rem; }
.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0.75rem auto 3rem;
  max-width: 760px;
}
.gold-bar {
  display: block;
  width: 56px;
  height: 4px;
  background: var(--accent);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* ── Buttons ────────────────────────────────────────── */
.btn, .btn-gold, .btn-outline, .btn-white, .btn-outline-white {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-gold {
  background: var(--accent);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(27, 102, 196, 0.28);
}
.btn-gold:hover { background: var(--accent-dark); border-color: transparent; color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover { background: var(--cream); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

/* ── Header ─────────────────────────────────────────── */
.site-header {
  position: relative;
  z-index: 1000;
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(var(--scrim), 0.04);
  height: var(--nav-h);
}
.header-inner {
  display: grid;
  grid-template-columns: minmax(0, min(280px, 30vw)) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  height: 100%;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  margin-left: 1.25rem;
}
.header-call-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}
.header-license {
  margin: 0;
  color: var(--primary);
  font-size: 0.68rem;
  line-height: 1.15;
  text-align: right;
}
.header-license span {
  display: block;
}
.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  line-height: 1.15;
  text-decoration: none;
  min-width: 0;
}
.brand-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.brand-logo img {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.brand-eyebrow {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  line-height: 1;
}
.brand-name {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  justify-content: center;
}
.main-nav a {
  display: block;
  padding: 0.55rem 0.95rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover,
.main-nav [aria-current="page"] { color: var(--primary); background: var(--ivory); }

/* Dropdown */
.has-drop { position: relative; }
.has-drop::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.65rem;
  z-index: 201;
}
.drop {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 0 0 6px 6px;
  box-shadow: var(--shadow-md);
  min-width: 240px;
  max-height: min(70vh, 420px);
  overflow-y: auto;
  padding: 0.5rem 0;
  z-index: 200;
}
.drop li a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text);
  background: transparent;
  border-radius: 0;
}
.drop li a:hover { background: var(--cream); color: var(--primary); }
.has-drop:hover .drop,
.has-drop:focus-within .drop,
.has-drop.is-open .drop { display: block; }
.nav-drop-icon { display: inline; }

/* Header phone CTA */
.header-phone {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  background: var(--accent);
  padding: 0.65rem 1.35rem;
  border: none;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
  color: var(--white);
  box-shadow: 0 6px 18px rgba(27, 102, 196, 0.28);
}
.header-phone:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-1px); }
.call-icon {
  width: 1.55rem;
  height: 1.55rem;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}
.phone-emoji {
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
}
.phone-num {
  font-size: 0.95rem;
  font-weight: 800;
  color: inherit;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Floating phone (after hero scroll) */
.floating-phone {
  position: fixed;
  right: 8.25rem;
  bottom: 6.5rem;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  background: var(--accent);
  color: var(--white);
  border-radius: 100px;
  box-shadow: 0 8px 28px rgba(27, 102, 196, 0.32);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(1.25rem);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.floating-phone:hover {
  background: var(--accent-dark);
  color: var(--white);
}
.floating-phone.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.floating-phone .phone-icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

/* Mobile menu toggle (right side, with phone) */
.menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  color: var(--primary);
  flex-shrink: 0;
  padding: 0;
  margin: 0;
  transition: background 0.2s, border-color 0.2s;
}
.menu-btn:hover {
  background: var(--ivory);
  border-color: var(--primary-lt);
}
.menu-btn-bars {
  display: block;
  width: 22px;
  height: 16px;
  position: relative;
}
.menu-btn-bars span {
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}
.menu-btn-bars span:nth-child(1) { top: 0; }
.menu-btn-bars span:nth-child(2) { top: 7px; }
.menu-btn-bars span:nth-child(3) { top: 14px; }
.menu-btn[aria-expanded="true"] .menu-btn-bars span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}
.menu-btn[aria-expanded="true"] .menu-btn-bars span:nth-child(2) {
  opacity: 0;
}
.menu-btn[aria-expanded="true"] .menu-btn-bars span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}
.nav-backdrop {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: rgba(var(--scrim), 0.4);
}
.nav-backdrop.is-visible {
  display: block;
}

/* Mobile header phone bar (shown ≤768px) */
.header-mobile-bar {
  display: none;
}
.header-mobile-bar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.mobile-phone-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 1.75rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s;
  box-shadow: 0 6px 18px rgba(27, 102, 196, 0.28);
}
.mobile-phone-btn:hover {
  background: var(--accent-dark);
  color: var(--white);
}
.mobile-phone-num { white-space: nowrap; }
.header-mobile-creds {
  margin: 0.45rem 0 0;
  font-size: 0.72rem;
  color: var(--text);
  line-height: 1.45;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}
.header-mobile-creds span { display: block; }

/* ── Hero ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: clamp(520px, 85vh, 820px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--text);
}
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-slide.is-active { opacity: 1; }
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(var(--scrim), 0.08) 45%,
    rgba(var(--scrim), 0.24) 100%
  );
}
.hero .container {
  width: 100%;
  max-width: var(--max);
  padding: 0 1.5rem;
}
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: calc(var(--nav-h) + 2.5rem) 0 3rem;
  min-height: inherit;
}
.hero-layout > * {
  min-width: 0;
  max-width: 100%;
}
.hero-panel {
  background: var(--hero-panel);
  padding: 2rem 2.25rem;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.68);
  max-width: 640px;
  width: 100%;
  box-sizing: border-box;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.hero-panel-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.hero-panel-title {
  font-size: clamp(1.65rem, 4.2vw, 2.875rem);
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.hero-panel-lead,
.hero-panel-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.85rem;
}
.hero-panel-body { margin-bottom: 1.35rem; }
.btn-hero-talk {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 0.7rem 1.65rem;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
  margin-bottom: 1.25rem;
  max-width: 100%;
  box-shadow: 0 6px 18px rgba(27, 102, 196, 0.28);
}
.btn-hero-talk .phone-num {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.btn-hero-talk:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-1px);
}
.hero .hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  justify-content: flex-start;
}
.hero .hero-trust span::before { content: '✓  '; color: var(--accent); font-weight: 700; }
.hero-form-card {
  background: var(--hero-form-panel);
  padding: 1.75rem 1.65rem 1.35rem;
  border-radius: 10px;
  border: 1px solid rgba(27, 102, 196, 0.22);
  box-shadow: var(--shadow-lg);
  align-self: center;
  justify-self: center;
  width: 100%;
  max-width: min(100%, 540px);
  margin-top: 0.75rem;
  box-sizing: border-box;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.hero-form-title {
  font-size: 1.25rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.lead-form.hero-form {
  gap: 0.65rem;
}
.lead-form.hero-form .hero-form-fields-top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}
.form-field {
  min-width: 0;
}
.lead-form.hero-form .form-field input:not([type="checkbox"]),
.lead-form.hero-form textarea {
  background: rgba(255, 255, 255, 0.34);
  border-color: rgba(36, 35, 31, 0.55);
  padding: 0.65rem 0.75rem;
  font-size: 0.88rem;
}
.lead-form.hero-form textarea { min-height: 68px; }
.lead-form.hero-form .form-checkbox-section {
  gap: 0;
}
.lead-form.hero-form .form-checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 0.85rem;
  row-gap: 0.15rem;
}
.lead-form.hero-form .form-checkbox-group legend {
  grid-column: 1 / -1;
  margin-bottom: 0.45rem;
  font-size: 0.8rem;
}
.lead-form.hero-form .form-checkbox-hint {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 400;
}
.lead-form.hero-form .form-option {
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  line-height: 1.35;
}
.lead-form.hero-form .form-option--wide {
  grid-column: 1 / -1;
}
.lead-form.hero-form .form-consent {
  font-size: 0.76rem;
}
.lead-form.hero-form .form-consent-note {
  font-size: 0.68rem;
  line-height: 1.4;
}
.lead-form.hero-form button[type="submit"] {
  padding: 0.8rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #FFFFFF;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(27, 102, 196, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.lead-form.hero-form button[type="submit"]:hover:not(:disabled):not(.is-incomplete) {
  background: var(--accent-dark);
  color: #FFFFFF;
}
.lead-form.hero-form button[type="submit"].is-incomplete {
  background: #9aa3b2;
  color: rgba(255, 255, 255, 0.92);
  cursor: not-allowed;
  box-shadow: none;
}
.lead-form.hero-form button[type="submit"]:disabled.is-sending {
  opacity: 0.72;
  cursor: wait;
}
.lead-form.hero-form button[type="submit"]:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.86);
  outline-offset: 3px;
}

/* ── Lead Form Section ────────────────────────────────── */
.lead-section {
  background: var(--cream);
  padding: 4.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.lead-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.lead-inner--solo {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.lead-inner--solo .lead-checklist li { text-align: left; }
.lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.lead-text h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.lead-text p { color: var(--text-muted); margin-bottom: 1.5rem; }
.lead-checklist { margin-bottom: 2rem; }
.lead-checklist li {
  padding: 0.45rem 0 0.45rem 1.75rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.lead-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.lead-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--ivory);
  padding: 0.6rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
}
.lead-form-card {
  background: var(--surface);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
}
.lead-form-card h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.lead-form { display: flex; flex-direction: column; gap: 1rem; }
.lead-form input:not([type="checkbox"]),
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--ivory);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.lead-form input:not([type="checkbox"]):focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(242, 190, 36, 0.24);
  background: var(--surface);
}
.lead-form textarea { resize: vertical; min-height: 110px; }
.lead-form button[type="submit"] {
  width: 100%;
  padding: 1rem;
  background: var(--accent);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, opacity 0.2s;
  font-family: inherit;
  box-shadow: none;
}
.lead-form button[type="submit"]:hover:not(:disabled):not(.is-incomplete) {
  background: var(--accent-dark);
}
.lead-form button[type="submit"].is-incomplete {
  background: #b8bcc4;
  color: rgba(255, 255, 255, 0.92);
  cursor: not-allowed;
}
.lead-form button[type="submit"]:disabled.is-sending {
  opacity: 0.72;
  cursor: wait;
}
.lead-form input.is-invalid,
.lead-form textarea.is-invalid {
  border-color: #dc2626;
  background: #fffafa;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.14);
}
.lead-form input.is-invalid:focus,
.lead-form textarea.is-invalid:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.18);
}
.field-error {
  display: block;
  margin: 0.35rem 0 0;
  font-size: 0.76rem;
  line-height: 1.35;
  color: #dc2626;
}
.form-checkbox-group.is-invalid {
  border: 1px solid #fca5a5;
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  background: #fffafa;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
.form-checkbox-group.is-invalid > .field-error {
  margin-top: 0.5rem;
}
.form-consent.is-invalid {
  border: 1px solid #fca5a5;
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  background: #fffafa;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
.form-consent .field-error {
  grid-column: 2;
  grid-row: 2;
  margin: 0.35rem 0 0;
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.form-consent {
  display: grid;
  grid-template-columns: 1rem 1fr;
  column-gap: 0.6rem;
  row-gap: 0.35rem;
  align-items: start;
  width: 100%;
  text-align: left;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text);
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  grid-column: 1;
  grid-row: 1;
  width: 1rem;
  height: 1rem;
  min-width: 1rem;
  margin-top: 0.15rem;
  padding: 0;
  flex-shrink: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  accent-color: var(--accent);
}
.form-consent span {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}
.form-consent-note {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.45;
  color: var(--text);
}
.form-consent-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}
.form-consent-note a:hover {
  color: inherit;
  opacity: 0.85;
}
.form-status {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
}
.form-status:empty {
  display: none;
}
.form-status.is-success {
  color: #166534;
  background: #ecfdf3;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 0.7rem 0.85rem;
}
.form-status.is-error {
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 0.7rem 0.85rem;
}
.form-checkbox-section {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.form-checkbox-intro {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
}
.form-checkbox-group {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}
.form-checkbox-group legend {
  padding: 0;
  margin-bottom: 0.6rem;
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--primary-lt);
}
.form-required-badge {
  display: inline-block;
  margin-left: 0.15rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: #E2E8EF;
  color: var(--primary);
  font-size: 0.66rem;
  font-weight: 600;
  vertical-align: middle;
}
.form-option {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.5rem;
  font-size: 0.84rem;
  line-height: 1.4;
  color: var(--text);
  cursor: pointer;
}
.form-option:last-child { margin-bottom: 0; }
.form-option input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  min-width: 1rem;
  margin-top: 0.12rem;
  padding: 0;
  flex-shrink: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  accent-color: var(--accent);
}
.legal-copy .section-title {
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.legal-copy .feature-list {
  margin-top: 0.75rem;
}

/* ── Rebuilt Mid-Page Sections ───────────────────────── */
.story-stats {
  background: #F3F3F1;
  border-top: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.stat-card {
  background: var(--surface);
  border: 1px solid #E6E6E6;
  border-radius: 6px;
  text-align: center;
  padding: 1.1rem 1rem 1rem;
}
.stat-card strong {
  display: block;
  font-size: 1.7rem;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.stat-card span {
  display: block;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.signature-services {
  background: var(--surface);
  border-bottom: 1px solid #ECECEC;
}
.signature-services.alt { background: var(--ivory-deep); }
.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.signature-card {
  border: 1px solid #E6E6E6;
  border-radius: 6px;
  background: var(--surface);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.signature-image {
  height: 300px;
  overflow: hidden;
  background: var(--surface-muted, #eef2f6);
}
.signature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.signature-card h3 {
  font-size: 1rem;
  margin: 0.9rem 1rem 0.45rem;
  color: var(--primary);
}
.signature-card p {
  margin: 0 1rem;
  flex: 1 1 auto;
  font-size: 0.87rem;
  line-height: 1.55;
  color: var(--text-muted);
}
.signature-card .text-link {
  margin: 0.75rem 1rem 1.1rem;
  align-self: flex-start;
}
.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.experience-copy,
.process-flow,
.pricing-overview,
.trend-section,
.compliance-section,
.faq-section {
  border-bottom: 1px solid #ECECEC;
}
.experience-copy { background: #F2F2EF; }
.process-flow { background: #FFFFFF; }
.narrow-copy {
  max-width: 900px;
}
.narrow-copy p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.72;
}
.experience-copy a,
.narrow-copy a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}
.experience-copy a:hover,
.narrow-copy a:hover {
  color: var(--primary);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 2.5rem;
}
.process-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}
.process-row-reverse .process-row-copy { order: 2; }
.process-row-reverse .process-row-media { order: 1; }
.process-row-copy h3 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
  color: var(--primary);
}
.process-row-copy p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.process-row-media {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  min-height: 260px;
}
.process-row-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.pricing-overview { background: var(--ivory-deep); }
.trend-section { background: #FFFFFF; }
.compliance-section { background: #F3F3F1; }
.faq-section { background: #FFFFFF; }
.compliance-grid article {
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  padding: 1.1rem;
}
.compliance-grid h3 {
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
}
.compliance-grid p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.trend-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.2rem 1.45rem;
}
.trend-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}
.trend-image {
  height: 170px;
  background-size: cover;
  background-position: center;
  margin-bottom: 0.75rem;
}
.trend-card h3 {
  font-size: 0.98rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: var(--primary);
}
.trend-card p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.5;
}
.zoomable-image {
  cursor: zoom-in;
  position: relative;
}
.zoomable-image::after {
  content: 'Tap to zoom';
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  background: rgba(0, 0, 0, 0.68);
  color: #FFFFFF;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(0.25rem);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.zoomable-image:hover::after,
.zoomable-image:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}
.zoomable-image:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.82);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.image-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.image-lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
  background: #FFFFFF;
}
.image-lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
body.lightbox-open {
  overflow: hidden;
}
.pricing-copy {
  max-width: 1040px;
  margin: 0 auto;
}
.pricing-copy .section-title {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.75rem;
}
.pricing-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: start;
}
.pricing-column h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--primary);
}
.pricing-column h4 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 1.45rem 0 0.45rem;
  color: var(--primary);
}
.pricing-column h4:first-of-type {
  margin-top: 0;
}
.pricing-column p,
.pricing-note {
  font-size: 0.96rem;
  line-height: 1.62;
  color: var(--text);
}
.pricing-note {
  max-width: 900px;
  margin: 2.25rem auto 0;
  text-align: center;
}
.pricing-details {
  max-width: 900px;
  margin: 2rem auto 0;
  border-top: 1px solid rgba(36, 35, 31, 0.18);
  border-bottom: 1px solid rgba(36, 35, 31, 0.18);
  padding: 0.85rem 0;
}
.pricing-details summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--primary);
  list-style: none;
  text-align: center;
}
.pricing-details summary::-webkit-details-marker { display: none; }
.pricing-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 2rem;
  margin-top: 1.5rem;
}
.pricing-detail-grid h4 {
  font-size: 0.96rem;
  margin-bottom: 0.45rem;
}
.pricing-detail-grid ul {
  list-style: disc;
  padding-left: 1.25rem;
}
.pricing-detail-grid li {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 0.3rem;
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid #E3E3E3;
}
.faq-list details {
  background: #FFFFFF;
  border-bottom: 1px solid #E3E3E3;
  padding: 0;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.98rem;
  line-height: 1.35;
  padding: 1rem 0;
  position: relative;
  padding-right: 2rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 1rem;
  font-weight: 800;
}
.faq-list details[open] summary::after {
  content: '-';
}
.faq-list p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.service-area-strip {
  background: var(--accent);
  padding: 0.8rem 0;
}
.service-area-strip p {
  margin: 0;
  color: #FFFFFF;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.45;
}

/* ── Services ─────────────────────────────────────────── */
.services-section { padding: 5rem 0; }
.services-section.alt { background: var(--light); }
.services-section .section-title { color: var(--primary); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background: var(--surface);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* Image placeholder - replace with real <img> later */
.card-img {
  height: 210px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 4px,
    rgba(255,255,255,0.04) 4px,
    rgba(255,255,255,0.04) 8px
  );
}
.card-img .img-label {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(var(--scrim), 0.55);
  color: var(--ivory);
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Unique card gradients — logo blue tones */
.ci-1 { background: linear-gradient(140deg, #5B9AE8, #1B66C4); }
.ci-2 { background: linear-gradient(140deg, #4A8FD9, #1554A3); }
.ci-3 { background: linear-gradient(140deg, #7EB3EE, #1B66C4); }
.ci-4 { background: linear-gradient(140deg, #3D7FC4, #124788); }
.ci-5 { background: linear-gradient(140deg, #6AA6E8, #1B66C4); }
.ci-6 { background: linear-gradient(140deg, #8FC0F2, #2B75C8); }
.ci-7 { background: linear-gradient(140deg, #4D8FCE, #1554A3); }
.ci-8 { background: linear-gradient(140deg, #A8D0F5, #1B66C4); }
.ci-9 { background: linear-gradient(140deg, #5B9AE8, #124788); }
.ci-10 { background: linear-gradient(140deg, #7EB3EE, #1554A3); }

.card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-body h3 {
  color: var(--primary);
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}
.card-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
}
.card-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}
.card-link:hover { gap: 0.55rem; }
.card-link::after { content: '→'; }

/* ── Trust Bar ─────────────────────────────────────────── */
.trust-bar {
  background: var(--primary);
  padding: 3rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.trust-item { color: var(--white); }
.trust-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
  color: var(--accent);
}
.trust-item strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--white);
}
.trust-item span { font-size: 0.85rem; color: rgba(255,255,255,0.65); }

/* ── Reviews ─────────────────────────────────────────── */
.reviews-section { padding: 5rem 0; background: var(--cream); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.review-card {
  background: var(--surface);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  font-family: Georgia, serif;
}
.review-stars { color: var(--accent); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.review-text { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.review-author strong { display: block; color: var(--primary); font-size: 0.95rem; }
.review-author span { font-size: 0.82rem; color: var(--text-muted); }
.reviews-trust { text-align: center; margin: 1.25rem 0 0.5rem; }
.google-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  color: var(--primary);
  font-size: 0.92rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.google-trust-badge:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  color: var(--primary);
}
.google-trust-stars { color: var(--accent); letter-spacing: 0.08em; font-size: 1rem; }

/* ── CTA Band ────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  padding: 4.5rem 0;
  text-align: center;
  border-top: 3px solid var(--accent);
}
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 2.25rem; }
.cta-band .cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── Footer ──────────────────────────────────────────── */
.site-footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.7);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-eyebrow { color: #9EC5F5; }
.footer-brand p {
  margin-top: 1rem;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
}
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
  color: #9EC5F5;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-col address { font-style: normal; }
.footer-col address p { font-size: 0.9rem; margin-bottom: 0.5rem; color: rgba(255,255,255,0.82); }
.footer-col address a { color: rgba(255,255,255,0.82); transition: color 0.2s; }
.footer-col address a:hover { color: #9EC5F5; }
.footer-col .social-links { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-col .social-links a {
  width: 36px; height: 36px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s;
}
.footer-col .social-links a:hover { background: var(--accent); color: var(--white); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.82); transition: color 0.2s; }
.footer-bottom a:hover { color: #9EC5F5; }
.footer-fine-print {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
}

/* ── Page Hero (inner pages) ─────────────────────────── */
.page-hero {
  background: linear-gradient(165deg, var(--primary) 0%, var(--primary-mid) 55%, #3A3936 100%);
  padding: 4.5rem 0 4rem;
  text-align: center;
  border-bottom: 3px solid var(--accent);
}
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin: 0; }

/* ── About Page ──────────────────────────────────────── */
.about-body { padding: 5rem 0; }
.about-body h2 { color: var(--primary); margin-bottom: 1rem; }
.about-body p { color: var(--text-muted); margin-bottom: 1.25rem; }
.about-body ul { list-style: disc; padding-left: 1.5rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.about-body li { margin-bottom: 0.5rem; }
.about-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 4rem 0; }
.mv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 2rem;
  border-radius: 0 6px 6px 0;
}
.mv-card h3 { color: var(--primary); margin-bottom: 0.75rem; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.08em; }
.mv-card p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }
.credentials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; }
.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--surface);
  border-radius: 6px;
  border: 1px solid var(--border);
}
.cred-icon { font-size: 1.5rem; flex-shrink: 0; }
.cred-text strong { display: block; color: var(--primary); font-size: 0.9rem; margin-bottom: 0.2rem; }
.cred-text span { font-size: 0.83rem; color: var(--text-muted); }

/* ── Contact Page ────────────────────────────────────── */
.contact-body { padding: 5rem 0; }
.contact-two-col { display: grid; grid-template-columns: 3fr 2fr; gap: 4rem; align-items: start; }
.contact-form-card {
  background: var(--surface);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
}
.contact-form-card h2 { color: var(--primary); margin-bottom: 0.5rem; }
.contact-form-card > p { color: var(--text-muted); margin-bottom: 2rem; font-size: 0.95rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(242, 190, 36, 0.24);
  background: var(--surface);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form button {
  padding: 1rem;
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}
.contact-form button:hover { background: var(--accent-dark); }
.contact-info-card { position: sticky; top: calc(var(--nav-h) + 2rem); }
.contact-info-card h3 { color: var(--primary); margin-bottom: 1.5rem; font-size: 1.1rem; }
.info-block { margin-bottom: 2rem; }
.info-block h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.info-block p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.info-block a { color: var(--primary); font-weight: 600; }
.info-block a:hover { color: var(--accent); }
.license-badge {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 1rem 1.25rem;
  border-radius: 0 6px 6px 0;
  margin-top: 2rem;
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.license-badge strong { display: block; color: var(--primary); margin-bottom: 0.25rem; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .hero-panel { padding: 1.65rem 1.5rem; max-width: none; }
  .hero-form-card { max-width: 480px; margin: 0.75rem auto 0; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .signature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* Stacked header: logo → nav → phone */
  .site-header {
    height: auto;
    position: relative;
  }
  .site-header > .container.header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    padding-top: 1rem !important;
    padding-bottom: 0.75rem;
    height: auto;
    box-sizing: border-box;
  }
  .brand {
    justify-content: center;
    width: 100%;
    min-width: 0;
    max-width: none;
    flex: none;
    overflow: visible;
  }
  .header-actions { display: none; }
  .menu-btn { display: none !important; }
  .nav-backdrop { display: none !important; }
  .main-nav {
    display: block;
    position: static;
    width: 100%;
    flex-shrink: 0;
    align-self: center;
  }
  .main-nav > ul {
    flex-wrap: wrap;
    gap: 0.15rem 0.35rem;
    justify-content: center;
  }
  .main-nav a {
    padding: 0.35rem 0.55rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    background: transparent;
    border-radius: 0;
    white-space: nowrap;
  }
  .main-nav a:hover,
  .main-nav [aria-current="page"] {
    color: var(--primary);
    background: transparent;
    text-decoration: underline;
  }
  .nav-drop-icon { display: none; }
  .has-drop .drop,
  .has-drop:hover .drop,
  .has-drop.is-open .drop { display: none !important; }
  .header-mobile-bar {
    display: block;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0 0.75rem;
  }
  .hero .container.hero-layout {
    padding: 0.85rem 1rem 1.35rem;
  }
}

@media (max-width: 768px) {
  .brand-text {
    flex: 1;
    min-width: 0;
    overflow: visible;
  }
  .brand-eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    line-height: 1;
    white-space: normal;
  }
  .brand-name {
    font-size: 0.56rem;
    letter-spacing: 0.06em;
    line-height: 1.15;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .call-icon { width: 1.35rem; height: 1.35rem; }

  .floating-phone {
    display: inline-flex !important;
    right: 2rem;
    bottom: 4rem;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    z-index: 1100;
    transform: translateY(1.25rem);
  }
  .floating-phone.is-visible {
    transform: translateY(0);
  }

  .hero {
    min-height: clamp(420px, 72vh, 680px);
    background: transparent;
  }
  .hero-scrim {
    background: rgba(var(--scrim), 0.18);
  }
  .hero-slideshow { opacity: 1; }
  .hero .container { padding: 0; max-width: 100%; }
  .hero .container.hero-layout {
    display: flex;
    flex-direction: column;
    padding: 0.85rem 1rem 1.35rem;
    gap: 1rem;
    min-height: inherit;
    align-items: stretch;
  }
  .hero-panel {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 1.15rem 1rem 1.25rem;
    background: var(--hero-panel-overlay);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-left: none;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
  }
  .hero-panel-kicker {
    color: var(--text-muted);
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.4rem;
  }
  .hero-panel-title {
    font-size: clamp(1.4rem, 5.5vw, 1.85rem);
    color: var(--primary);
    line-height: 1.22;
    margin-bottom: 0.75rem;
  }
  .hero-panel-lead,
  .hero-panel-body {
    color: var(--text);
    font-size: 0.88rem;
  }
  .btn-hero-talk {
    padding: 0.6rem 1.15rem;
  }
  .btn-hero-talk .phone-num {
    font-size: 0.88rem;
  }
  .hero .hero-trust {
    flex-direction: column;
    gap: 0.3rem;
    align-items: flex-start;
    color: var(--text-muted);
    font-size: 0.75rem;
  }
  .hero .hero-trust span::before { color: var(--accent); }
  .hero-form-card {
    max-width: none;
    margin: 1rem 0 0;
    padding: 1.35rem 1rem 1.15rem;
    border-radius: 4px;
  }
  .lead-form.hero-form .hero-form-fields-top {
    grid-template-columns: 1fr;
  }
  .lead-form.hero-form .form-checkbox-group {
    grid-template-columns: 1fr;
  }
  .lead-form.hero-form .form-option--wide {
    grid-column: auto;
  }
  .page-hero { padding: 1.75rem 0 1.5rem; }

  .lead-inner { grid-template-columns: 1fr; gap: 2rem; }
  .cards-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .about-two-col { grid-template-columns: 1fr; gap: 2rem; }
  .mission-vision { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
  .contact-two-col { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-band .cta-actions { flex-direction: column; align-items: center; }
  .stats-grid,
  .signature-grid,
  .process-row,
  .pricing-columns,
  .pricing-detail-grid,
  .trend-grid,
  .compliance-grid { grid-template-columns: 1fr; }
  .trend-grid { gap: 1.5rem; }
  .trend-image { height: 190px; }
  .process-steps { gap: 2rem; }
  .process-row-media,
  .process-row-media img { min-height: 190px; }
  .signature-image { height: 300px; }
  .stat-card strong { font-size: 1.5rem; }
  .narrow-copy p { font-size: 0.93rem; }
}

@media (max-width: 480px) {
  .site-header > .container.header-inner {
    padding-top: 0.85rem !important;
    gap: 0.65rem;
  }
  .brand-eyebrow {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    line-height: 1;
  }
  .brand-name { font-size: 0.5rem; letter-spacing: 0.05em; }
  .brand { gap: 0.45rem; }
  .main-nav a { font-size: 0.72rem; padding: 0.3rem 0.45rem; }
  .call-icon { width: 1.2rem; height: 1.2rem; }
  .mobile-phone-btn { font-size: 0.95rem; padding: 0.5rem 1.35rem; }
  .header-mobile-creds { font-size: 0.68rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .card-img { height: 170px; }
  .floating-phone span { font-size: 0.82rem; }
  .section-pad { padding: 3.5rem 0; }
  .container { padding: 0 1rem; }
}


/* Thousand Oaks Epoxy Flooring site additions */
.brand .brand-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  line-height: 0;
  max-width: min(280px, 100%);
}
.brand .brand-logo img {
  display: block;
  width: auto;
  height: auto;
  max-height: 100px;
  max-width: 100%;
  object-fit: contain;
}
@media (max-width: 1024px) {
  .brand .brand-logo {
    justify-content: center;
    width: 100%;
    max-width: none;
  }
  .brand .brand-logo img {
    height: 100px;
    max-width: min(320px, 88vw);
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  .main-nav > ul { gap: 0.35rem; }
  .main-nav a { padding: 0.5rem 0.7rem; font-size: 0.84rem; }
  .header-phone { font-size: 0.92rem; padding: 0.55rem 1.1rem; }
}
.footer-nap {
  display: grid;
  gap: 0.2rem;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
}
.footer-nap a {
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}
.footer-nap a:hover { color: #9EC5F5; }
.text-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.text-link:hover { color: var(--primary); }
.contact-section .lead-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
}
.feature-list {
  list-style: none;
  margin: 1.25rem 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.feature-list li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--text);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.7rem;
  height: 0.4rem;
  border-left: 3px solid var(--accent-dark);
  border-bottom: 3px solid var(--accent-dark);
  transform: rotate(-45deg);
}
