/* =========================================================
   Integra Cleaning LLC — Landing Page Styles
   ========================================================= */

:root {
  --cream: #F7F2E6;
  --cream-deep: #EFE7D4;
  --ink: #16262B;
  --ink-soft: #3C4C50;
  --clarity: #1D8C87;
  --clarity-deep: #12615D;
  --clarity-pale: #DCEEEC;
  --citrus: #E1A33E;
  --citrus-deep: #C4831F;
  --white: #FFFFFF;

  --font-display: "Fraunces", ui-serif, Georgia, serif;
  --font-body: "Karla", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --container: 1160px;
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --shadow-soft: 0 20px 60px -30px rgba(22, 38, 43, 0.35);
  --shadow-tight: 0 8px 24px -12px rgba(22, 38, 43, 0.3);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3 { font-family: var(--font-display); color: var(--ink); margin: 0; font-weight: 600; }

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

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clarity-deep);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--citrus);
  display: inline-block;
}

:focus-visible {
  outline: 3px solid var(--citrus);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  padding: 15px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow-tight);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(22,38,43,0.45); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--cream); }
.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 230, 0.88);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid rgba(22,38,43,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
}
.logo-word {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.logo-sub {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--clarity-deep);
}
.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 15px;
}
.nav-links a { padding: 6px 0; border-bottom: 2px solid transparent; transition: border-color 0.15s ease, color 0.15s ease; }
.nav-links a:hover { border-color: var(--citrus); }

/* Reusable rising-circle pill hover effect */
.pill-fx {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pill-circle {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 220%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ink);
  transform: translate(-50%, 65%) scale(0);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
  pointer-events: none;
}
.pill-fx:hover .pill-circle,
.pill-fx:focus-visible .pill-circle {
  transform: translate(-50%, 35%) scale(1);
}
.pill-label-stack {
  position: relative;
  z-index: 1;
  display: inline-block;
  overflow: hidden;
  height: 1.2em;
  line-height: 1.2em;
  white-space: nowrap;
}
.pill-label,
.pill-label-hover {
  display: block;
  white-space: nowrap;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}
.pill-label-hover {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  color: var(--cream);
  opacity: 0;
}
.pill-fx:hover .pill-label,
.pill-fx:focus-visible .pill-label {
  transform: translateY(-100%);
  opacity: 0;
}
.pill-fx:hover .pill-label-hover,
.pill-fx:focus-visible .pill-label-hover {
  transform: translateY(-100%);
  opacity: 1;
}

@media (min-width: 860px) {
  .nav-links a.pill-fx {
    border-bottom: none;
    padding: 9px 20px;
  }
  .nav-links a:hover { border-color: transparent; }
}
@media (max-width: 859px) {
  .nav-links .pill-circle, .nav-links .pill-label-hover { display: none; }
  .nav-links .pill-label-stack { display: contents; }
}
.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(22,38,43,0.25);
  background: transparent;
  color: var(--ink);
  flex-shrink: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.nav-icon-btn svg { width: 18px; height: 18px; }
.nav-icon-btn:hover { background: var(--ink); color: var(--cream); transform: translateY(-1px); }

.nav-contact-wrap { position: relative; }
.nav-contact-popover {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(22,38,43,0.08);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 60;
}
.nav-contact-popover.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: background 0.15s ease;
  white-space: nowrap;
}
.nav-contact-row svg { width: 18px; height: 18px; color: var(--clarity-deep); flex-shrink: 0; }
.nav-contact-row:hover { background: var(--clarity-pale); }
@media (max-width: 420px) {
  .nav-contact-popover { right: -60px; min-width: 240px; }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: transform 0.2s ease, opacity 0.2s ease; }


/* ---------- Hero (cinematic curtain reveal) ---------- */
.hero-cinematic {
  position: relative;
  height: 250vh;
}
.hero-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.hero-stage-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(calc(1.15 - var(--p, 0) * 0.15));
  filter: contrast(1.15) saturate(1.2) brightness(0.92);
  will-change: transform;
}
.hero-duotone {
  position: absolute;
  inset: 0;
  z-index: 1;
  mix-blend-mode: overlay;
  background: linear-gradient(120deg, var(--citrus) 0%, transparent 45%, transparent 55%, var(--clarity) 100%);
  opacity: calc(var(--p, 0) * 0.38);
  pointer-events: none;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at center, transparent 20%, rgba(0,0,0,0.78) 100%);
  pointer-events: none;
}

.hero-panel {
  position: absolute;
  top: 0;
  height: 100%;
  width: 52%;
  background: var(--ink);
  z-index: 5;
  will-change: transform;
}
.hero-panel-left { left: 0; transform: translateX(calc(var(--p, 0) * -100%)); }
.hero-panel-right { right: 0; transform: translateX(calc(var(--p, 0) * 100%)); }

.hero-seam {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  z-index: 6;
  pointer-events: none;
}
.seam-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  will-change: transform;
}
.seam-dot-a {
  background: var(--citrus);
  box-shadow: 0 0 18px 5px rgba(225,163,62,0.7);
  transform: translate(calc(-4px - var(--p, 0) * 44vw), calc(-4px - var(--p, 0) * 42vh));
}
.seam-dot-b {
  background: var(--clarity);
  box-shadow: 0 0 18px 5px rgba(29,140,135,0.6);
  transform: translate(calc(-4px + var(--p, 0) * 44vw), calc(-4px + var(--p, 0) * 42vh));
}

.hero-wordmark {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%) scale(calc(1 + var(--p, 0) * 0.16));
  transform-origin: center;
  display: flex;
  justify-content: center;
  gap: 0.1em;
  z-index: 7;
  margin: 0;
  padding: 0 1vw;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.3rem, 6vw, 6rem);
  line-height: 0.84;
  letter-spacing: calc(-0.025em - var(--p, 0) * 0.03em);
  color: #FFFFFF;
  text-shadow: 0 0 60px rgba(0,0,0,0.55), 0 4px 30px rgba(0,0,0,0.4);
  opacity: calc(1 - max(0, var(--p, 0) - 0.4) * 2.2);
  pointer-events: none;
  white-space: nowrap;
  will-change: transform, opacity;
}
.wordmark-half {
  transition: none;
  will-change: transform;
}
.wordmark-left {
  transform: translateX(calc(var(--p, 0) * -50%));
  text-align: right;
}
.wordmark-right {
  transform: translateX(calc(var(--p, 0) * 50%));
  text-align: left;
}

.hero-meta {
  position: absolute;
  z-index: 6;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,242,230,0.75);
  opacity: calc(1 - var(--p, 0) * 1.3);
  pointer-events: none;
}
.hero-meta-tl { top: 100px; left: 28px; }
.hero-meta-tr { top: 100px; right: 28px; text-align: right; }
.hero-meta-bl { bottom: 28px; left: 28px; }
.hero-meta-br { bottom: 28px; right: 28px; text-align: right; }

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  opacity: calc((var(--p, 0) - 0.45) * 2.2);
  transform: translateY(calc((1 - var(--p, 0)) * 24px));
  pointer-events: none;
}
.hero-content .wrap { width: 100%; }

.hero-content .hero-copy h1 {
  margin: 18px 0 22px;
  font-size: clamp(3.4rem, 7vw, 5.4rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--cream);
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.hero-content .hero-copy h1 em {
  font-style: normal;
  color: var(--citrus);
}
.hero-content .hero-copy p.lede {
  font-size: 18px;
  color: rgba(247,242,230,0.9);
  max-width: 46ch;
  margin: 0 0 34px;
  text-shadow: 0 1px 16px rgba(0,0,0,0.25);
}
.hero-content .eyebrow { color: var(--citrus); text-shadow: 0 1px 12px rgba(0,0,0,0.25); }
.hero-content .eyebrow::before { background: var(--citrus); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-ctas .btn-secondary {
  color: var(--cream);
  border-color: rgba(247,242,230,0.7);
}
.hero-ctas .btn-secondary:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

@media (max-width: 700px) {
  .hero-cinematic { height: 180vh; }
  .hero-meta-tl, .hero-meta-tr { top: 88px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cinematic { height: 100vh; }
  .hero-stage { position: relative; }
  .hero-bg-video { transform: none; }
  .hero-panel-left { transform: translateX(-100%); }
  .hero-panel-right { transform: translateX(100%); }
  .hero-seam, .hero-wordmark, .hero-meta { display: none; }
  .hero-content { opacity: 1; transform: none; pointer-events: auto; }
}

/* Clarity slider */
.clarity-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.results-card {
  max-width: 760px;
  margin: 0 auto;
}
.clarity-slider {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3.1;
  isolation: isolate;
}
.clarity-slider svg,
.clarity-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.scene-after {
  clip-path: inset(0 calc(100% - var(--reveal, 55%)) 0 0);
}
.slider-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--reveal, 55%);
  width: 3px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(22,38,43,0.15);
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}
.slider-handle {
  position: absolute;
  top: 50%;
  left: var(--reveal, 55%);
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-tight);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  pointer-events: none;
}
.slider-handle svg { width: 20px; height: 20px; }
.clarity-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
  -webkit-appearance: none;
  appearance: none;
}
.clarity-range::-webkit-slider-thumb { -webkit-appearance: none; width: 46px; height: 46px; }
.clarity-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 6px 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.tag-before, .tag-after { display: flex; align-items: center; gap: 6px; }
.tag-before::before, .tag-after::before { content: ""; width: 8px; height: 8px; border-radius: 50%; }
.tag-before::before { background: #9AA7A6; }
.tag-after::before { background: var(--clarity); }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--ink);
  color: var(--cream);
  padding: 30px 0;
}
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px 32px;
}
.trust-item { display: flex; align-items: center; gap: 12px; font-size: 14.5px; font-weight: 600; }
.trust-item svg { flex-shrink: 0; width: 26px; height: 26px; color: var(--citrus); }

/* ---------- Section shells ---------- */
.section { padding: 96px 0; }
.section-head { max-width: 640px; margin-bottom: 54px; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); margin-top: 16px; line-height: 1.15; }
.section-head p { color: var(--ink-soft); margin-top: 16px; font-size: 17px; }
.section-alt { background: var(--clarity-pale); }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid .service-card:nth-child(5):last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    max-width: calc((100% - 24px) / 2);
  }
}
.service-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px;
  border: 1px solid rgba(22,38,43,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  --mx: 50%;
  --my: 40%;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-tight); }

.card-spotlight {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(220px circle at var(--mx) var(--my), rgba(29,140,135,0.14), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.service-card:hover .card-spotlight { opacity: 1; }

.card-border-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  padding: 1.5px;
  pointer-events: none;
  background: radial-gradient(220px circle at var(--mx) var(--my), var(--citrus), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.service-card:hover .card-border-glow { opacity: 1; }

.sparkle {
  position: absolute;
  z-index: 2;
  font-size: 17px;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: scale(0) rotate(0deg);
  text-shadow: 0 0 10px currentColor, 0 0 18px currentColor;
}
.sparkle.animate {
  animation: sparkle-pop 1.1s ease-out forwards;
}
@keyframes sparkle-pop {
  0% { transform: scale(0) rotate(0deg); opacity: 0; }
  35% { transform: scale(1.5) rotate(45deg); opacity: 1; }
  100% { transform: scale(0.5) rotate(100deg) translateY(-22px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .card-spotlight, .card-border-glow { display: none; }
  .sparkle { display: none; }
}
.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--clarity-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 28px; height: 28px; color: var(--clarity-deep); }
.service-card h3 { font-size: 21px; margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); font-size: 15.5px; margin: 0 0 18px; }
.service-card a.service-cta {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--clarity-deep);
  letter-spacing: 0.02em;
  padding: 7px 16px;
  margin-left: -16px;
}
.service-card a.service-cta .pill-label-hover { color: var(--cream); }

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  counter-reset: step;
}
@media (min-width: 760px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.step { position: relative; padding-left: 0; }
.step-num {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--clarity);
  display: block;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.step h3 { font-size: 20px; margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 15.5px; margin: 0; }
.steps .step:not(:last-child) { border-bottom: 1px solid rgba(22,38,43,0.1); padding-bottom: 32px; }
@media (min-width: 760px) {
  .steps .step:not(:last-child) { border-bottom: none; padding-bottom: 0; border-right: 1px dashed rgba(22,38,43,0.18); padding-right: 32px; }
}

/* ---------- Service area ---------- */
.area-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .area-layout { grid-template-columns: 0.9fr 1.1fr; }
}
.area-copy p { color: var(--ink-soft); font-size: 17px; margin: 18px 0 26px; max-width: 44ch; }
.town-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.town-pill {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  background: var(--white);
  border: 1px solid rgba(22,38,43,0.15);
  padding: 9px 16px;
  border-radius: 999px;
}
.town-pill.hq { background: var(--ink); color: var(--cream); border-color: var(--ink); font-weight: 600; }

.map-card {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  aspect-ratio: 4 / 3.3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(22,38,43,0.08);
}
.map-card iframe { display: block; width: 100%; height: 100%; border: 0; }

/* ---------- Quote section ---------- */
.quote-section { background: var(--ink); color: var(--cream); }
.quote-section .eyebrow { color: var(--citrus); }
.quote-section .eyebrow::before { background: var(--clarity); }
.quote-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
@media (min-width: 940px) {
  .quote-layout { grid-template-columns: 0.85fr 1.15fr; }
}
.quote-intro h2 { color: var(--cream); font-size: clamp(1.9rem, 3.2vw, 2.4rem); margin: 16px 0 18px; line-height: 1.15; }
.quote-intro p { color: rgba(247,242,230,0.75); font-size: 16.5px; max-width: 40ch; margin: 0 0 30px; }
.direct-contact { display: flex; flex-direction: column; gap: 16px; }
.direct-contact a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 17px;
}
.direct-contact a svg { width: 22px; height: 22px; color: var(--citrus); flex-shrink: 0; }
.direct-note { font-family: var(--font-mono); font-size: 13px; color: rgba(247,242,230,0.55); margin-top: 6px; }

.quote-form {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-soft);
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 20px; }
.form-row.two { grid-template-columns: 1fr; }
@media (min-width: 560px) {
  .form-row.two { grid-template-columns: 1fr 1fr; }
}
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 15.5px;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(22,38,43,0.2);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--clarity);
  box-shadow: 0 0 0 4px rgba(29,140,135,0.15);
}
.field textarea { resize: vertical; min-height: 90px; }
.form-foot { display: flex; align-items: center; gap: 16px; margin-top: 8px; flex-wrap: wrap; }
.form-note { font-size: 13px; color: var(--ink-soft); }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: var(--clarity-pale);
  border: 1.5px solid var(--clarity);
  color: var(--clarity-deep);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  margin-top: 18px;
}
.form-success.show { display: flex; }
.form-success svg { width: 22px; height: 22px; flex-shrink: 0; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* ---------- Footer ---------- */
.site-footer { padding: 60px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(22,38,43,0.12);
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}
.footer-brand p { color: var(--ink-soft); font-size: 14.5px; margin: 14px 0 0; max-width: 30ch; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.footer-col a:hover { color: var(--clarity-deep); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 26px;
  font-size: 13px;
  color: var(--ink-soft);
  font-family: var(--font-mono);
}

/* ---------- Floating side contact button ---------- */
.side-fab {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 55;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--cream);
  padding: 14px 16px 14px 14px;
  border-radius: 999px 0 0 999px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  max-width: 54px;
  transition: max-width 0.3s ease, padding 0.3s ease, background 0.2s ease;
  white-space: nowrap;
}
.side-fab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--citrus);
}
.side-fab-icon svg { width: 22px; height: 22px; }
.side-fab-label {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 0.2s ease 0.05s;
}
.side-fab:hover,
.side-fab:focus-visible {
  max-width: 220px;
  padding: 14px 22px 14px 14px;
  background: var(--clarity-deep);
}
.side-fab:hover .side-fab-label,
.side-fab:focus-visible .side-fab-label {
  opacity: 1;
}
@media (max-width: 640px) {
  .side-fab {
    top: auto;
    bottom: 22px;
    right: 18px;
    transform: none;
    border-radius: 999px;
    max-width: 54px;
    padding: 14px;
  }
  .side-fab:hover, .side-fab:focus-visible { padding: 14px; max-width: 54px; }
  .side-fab .side-fab-label { display: none; }
}

/* ---------- Mobile nav ---------- */
@media (max-width: 640px) {
  .nav-icon-btn { display: none; }
}
@media (max-width: 859px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 8px 28px 20px;
    border-bottom: 1px solid rgba(22,38,43,0.1);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links li { border-bottom: 1px solid rgba(22,38,43,0.08); }
  .nav-links a { display: block; padding: 14px 0; }
}

/* ---------- Policy pages ---------- */
.policy-header { padding: 64px 0 40px; border-bottom: 1px solid rgba(22,38,43,0.1); }
.policy-header h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 16px 0 12px; line-height: 1.15; }
.policy-header p { color: var(--ink-soft); margin: 0; }
.policy-content { max-width: 720px; padding: 56px 0 96px; }
.policy-content h2 { font-size: 22px; margin: 40px 0 14px; }
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { color: var(--ink-soft); margin: 0 0 16px; font-size: 16.5px; }
.policy-content ul { color: var(--ink-soft); margin: 0 0 16px; padding-left: 22px; font-size: 16.5px; }
.policy-content li { margin-bottom: 8px; }
.policy-content a { color: var(--clarity-deep); text-decoration: underline; text-underline-offset: 2px; }
.policy-content strong { color: var(--ink); }

/* ---------- Thank-you page ---------- */
.thanks-hero {
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 0;
}
.thanks-card { max-width: 560px; margin: 0 auto; padding: 0 24px; }
.thanks-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--clarity-pale);
  color: var(--clarity-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.thanks-icon svg { width: 34px; height: 34px; }
.thanks-card .eyebrow { justify-content: center; }
.thanks-card h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 16px 0 18px; line-height: 1.15; }
.thanks-card p { color: var(--ink-soft); font-size: 17.5px; margin: 0 0 32px; }
.thanks-clock { width: 18px; height: 18px; display: inline-block; vertical-align: -3px; margin-right: 6px; color: var(--clarity-deep); }
.thanks-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.thanks-direct {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(22,38,43,0.1);
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: var(--ink-soft);
}
.thanks-direct a { color: var(--clarity-deep); }
