/* ==========================================================================
   Maiden's Pressure Cleaning — "GRIME MEETS ITS MATCH"
   Industrial power-wash aesthetic: ink-dark grime panels sliced by diagonal
   cuts into blasted-clean paper sections. Big Shoulders display type,
   water-cyan + safety-orange on navy, grain texture, ghost typography.
   ========================================================================== */

:root {
  --ink: #060B1A;        /* page dark base */
  --ink-2: #0A1430;      /* raised dark panel */
  --paper: #F2F7FC;      /* washed-clean light bg */
  --paper-2: #E3EDF7;
  --cyan: #37D2FF;       /* water / energy */
  --cyan-ink: #0B63A6;   /* cyan-family, AA on paper */
  --orange: #FF7A1C;     /* safety accent, large text on ink only */
  --orange-btn: #C2410C; /* CTA fill, AA with white text */
  --orange-btn-hover: #9A3412;
  --body-on-ink: #B9CBE8;
  --body-on-paper: #2A3A57;
  --head-on-paper: #0A1430;
  --border-dark: rgba(55, 210, 255, 0.16);
  --border-light: #C7D9EB;
  --star: #F59E0B;

  --font-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Segoe UI", system-ui, sans-serif;

  --seam: 4.5vw;         /* diagonal cut height */
  --header-h: 72px;
  --radius: 12px;
  --radius-sm: 8px;

  /* SVG grain, inlined so dark sections feel like surface, not flat fill */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Reset-lite ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
/* rotated ticker corners extend past the viewport; clip keeps sticky working */
html, body { overflow-x: clip; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--body-on-paper);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
}
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
input, button, select, textarea { font: inherit; color: inherit; }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }
a { color: var(--cyan-ink); }

h1, h2, h3 { line-height: 0.95; }
h1, h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
h2 { font-size: clamp(2.75rem, 6.5vw, 4.75rem); color: var(--head-on-paper); }
h2 em {
  font-style: normal;
  color: var(--cyan-ink);
}
.section-ink h2 em { color: var(--cyan); }
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.55rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.accent-dot { color: var(--orange); }

section { scroll-margin-top: calc(var(--header-h) + 8px); }

.container {
  width: min(100% - 2 * 24px, 1180px);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -48px; left: 16px;
  z-index: 200;
  background: var(--cyan);
  color: var(--ink);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
  transition: top 150ms ease;
}
.skip-link:focus { top: 0; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 28px;
  border: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: transform 180ms ease;
}
.btn .icon { width: 20px; height: 20px; flex: none; transition: transform 200ms ease; }
.btn:hover .icon { transform: translateX(4px); }
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--orange-btn); color: #fff; }
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 500ms ease;
}
.btn-primary:hover { background: var(--orange-btn-hover); color: #fff; }
.btn-primary:hover::before { transform: translateX(110%); }
.btn-lg { min-height: 58px; padding: 14px 34px; font-size: 1.45rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 11, 26, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-dark);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}
.brand-mark { width: 40px; height: 40px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.brand-sub {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-top: 4px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  color: #fff;
  cursor: pointer;
}
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  padding: 0;
}
.nav-menu a:not(.btn) {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  color: #DCE7F8;
  padding: 6px 2px;
  position: relative;
}
.nav-menu a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--cyan);
  transition: right 200ms ease;
}
.nav-menu a:not(.btn):hover { color: #fff; }
.nav-menu a:not(.btn):hover::after { right: 0; }
.nav-cta { white-space: nowrap; font-size: 1.1rem; min-height: 44px; padding: 8px 20px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: max(92vh, 680px);
  display: flex;
  align-items: center;
  padding: 84px 0 calc(56px + var(--seam));
  background:
    var(--grain),
    radial-gradient(90rem 50rem at 85% -20%, #12275C 0%, transparent 55%),
    var(--ink);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  width: 55%;
  clip-path: polygon(26% 0, 100% 0, 100% 100%, 12% 100%);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.12) brightness(1.02);
}
.hero-media::before {
  /* duotone wash so stock photo sits inside the palette */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(78deg, var(--ink) 0%, rgba(6, 11, 26, 0.93) 28%, rgba(10, 20, 48, 0.42) 60%, rgba(55, 210, 255, 0.08) 100%);
}
.hero-media::after {
  /* cyan spray-line on the cut edge */
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(102deg, var(--cyan) 0, transparent 2.5px);
  opacity: 0.9;
}
.hero-mist {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(34rem 18rem at 18% 88%, rgba(55, 210, 255, 0.10), transparent 65%),
    radial-gradient(28rem 16rem at 55% 100%, rgba(55, 210, 255, 0.06), transparent 60%);
}
.hero-inner { position: relative; z-index: 2; max-width: 700px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid var(--border-dark);
  background: rgba(10, 20, 48, 0.55);
  padding: 9px 16px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.tag-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 122, 28, 0.55); }
  55% { box-shadow: 0 0 0 9px rgba(255, 122, 28, 0); }
}

.hero-title {
  margin: 28px 0 24px;
  display: flex;
  flex-direction: column;
  color: #fff;
}
.hero-title .line { display: block; }
.line-ghost {
  font-size: clamp(4.5rem, 12vw, 9.5rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px rgba(185, 203, 232, 0.5);
  letter-spacing: 0.01em;
}
.line-mid {
  font-size: clamp(1.6rem, 3.6vw, 2.7rem);
  font-weight: 600;
  letter-spacing: 0.34em;
  color: var(--body-on-ink);
  margin: 10px 0 2px 6px;
}
.line-hit {
  font-size: clamp(4.5rem, 12vw, 9.5rem);
  font-weight: 900;
  background: linear-gradient(95deg, #FFFFFF 20%, var(--cyan) 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hit-dot {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: var(--orange);
}

/* staggered load-in */
html.js .hero-title .line,
html.js .hero-tag,
html.js .hero-sub,
html.js .hero-ctas,
html.js .trust-chips {
  opacity: 0;
  transform: translateY(26px);
}
html.js .hero.loaded .hero-tag,
html.js .hero.loaded .hero-title .line,
html.js .hero.loaded .hero-sub,
html.js .hero.loaded .hero-ctas,
html.js .hero.loaded .trust-chips {
  opacity: 1;
  transform: none;
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
html.js .hero.loaded .hero-title .line-ghost { transition-delay: 90ms; }
html.js .hero.loaded .hero-title .line-mid { transition-delay: 200ms; }
html.js .hero.loaded .hero-title .line-hit { transition-delay: 310ms; }
html.js .hero.loaded .hero-sub { transition-delay: 430ms; }
html.js .hero.loaded .hero-ctas { transition-delay: 520ms; }
html.js .hero.loaded .trust-chips { transition-delay: 620ms; }

.hero-sub {
  font-size: 1.18rem;
  max-width: 38ch;
  color: var(--body-on-ink);
  text-shadow: 0 2px 14px rgba(6, 11, 26, 0.85);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 32px;
  margin-top: 34px;
}
.hero-phone {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.hero-phone-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--body-on-ink);
  text-shadow: 0 2px 10px rgba(6, 11, 26, 0.9);
}
.hero-phone-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.3rem;
  letter-spacing: 0.03em;
  color: #fff;
  transition: color 180ms ease;
  text-shadow: 0 2px 16px rgba(6, 11, 26, 0.9);
}
.hero-phone:hover .hero-phone-num { color: var(--cyan); }

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
  padding: 0;
}
.trust-chips li {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--body-on-ink);
  border: 1px solid var(--border-dark);
  padding: 7px 14px;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
  background: rgba(10, 20, 48, 0.78);
}
.trust-chips li span { color: var(--orange); font-weight: 700; }

.hero-seam {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: var(--seam);
  background: var(--paper);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 3;
}

/* ---------- Ticker ---------- */
.ticker {
  position: relative;
  z-index: 4;
  background: var(--orange-btn);
  overflow: hidden;
  padding: 12px 0;
  transform: rotate(-1.1deg) scale(1.02);
  margin-top: calc(-1 * var(--seam) / 2);
  box-shadow: 0 10px 30px rgba(6, 11, 26, 0.35);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 26s linear infinite;
}
.ticker-seq {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFF3E9;
  white-space: nowrap;
  padding-right: 0.6em;
}
.ticker-seq i {
  font-style: normal;
  color: #FFC59A;
  padding: 0 0.45em;
}
@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section {
  position: relative;
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
}
.section-paper { background: var(--paper); }
.section-paper2 { background: var(--paper-2); }
.section-ink {
  background:
    var(--grain),
    radial-gradient(70rem 40rem at 10% 0%, #10214E 0%, transparent 60%),
    var(--ink);
  color: var(--body-on-ink);
}
.section-ink h2 { color: #fff; }
.section-ink a:not(.btn) { color: var(--cyan); }

/* diagonal seams between stacked sections */
.section-ink::before,
.section-paper2::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: var(--seam);
  background: var(--paper);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.section-paper2::before { background: var(--paper); }
#how::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: var(--seam);
  background: var(--ink);
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 100%);
}
#area::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: var(--seam);
  background: var(--paper-2);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
#quote::before {
  background: var(--paper);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 30%);
  transform: scaleX(-1);
}

.section-index {
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange-btn);
  margin-bottom: 14px;
}
.section-index::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  background: var(--orange-btn);
  vertical-align: middle;
  margin-right: 12px;
}
.section-index-dark { color: var(--orange); }
.section-index-dark::before { background: var(--orange); }

.section-head { max-width: 700px; margin-bottom: clamp(40px, 5vw, 64px); position: relative; z-index: 2; }
.section-sub { font-size: 1.12rem; margin-top: 16px; }
.section-ink .section-sub { color: var(--body-on-ink); }

/* giant ghost word behind sections */
.ghost-word {
  position: absolute;
  top: 0.5vw;
  right: -1vw;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(8rem, 22vw, 20rem);
  line-height: 0.8;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px rgba(10, 20, 48, 0.07);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
.ghost-word-dark { -webkit-text-stroke-color: rgba(185, 203, 232, 0.07); }

/* ---------- Services ---------- */
.svc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 clamp(32px, 5vw, 72px);
  position: relative;
  z-index: 2;
  counter-reset: svc;
}
.svc {
  position: relative;
  padding: 30px 0 30px 92px;
  border-top: 1px solid var(--border-light);
  transition: transform 200ms ease;
}
.svc:nth-child(even) { transform: translateY(34px); }
.svc-num {
  position: absolute;
  left: 0;
  top: 26px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.4rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.6px var(--cyan-ink);
  transition: color 200ms ease;
}
.svc:hover .svc-num { color: var(--cyan-ink); }
.svc h3 { color: var(--head-on-paper); margin-bottom: 8px; }
.svc p { font-size: 1rem; max-width: 44ch; }
.svc::after {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  height: 3px;
  width: 0;
  background: var(--orange-btn);
  transition: width 320ms ease;
}
.svc:hover::after { width: 64px; }

/* ---------- Before / After ---------- */
.ba-slider { max-width: 940px; margin-inline: auto; position: relative; z-index: 2; }
.ba-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #04070F;
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 26px 100%, 0 calc(100% - 26px));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.ba-frame:focus-within { outline: 3px solid var(--cyan); outline-offset: 4px; }
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-before {
  filter: saturate(0.45) sepia(0.4) brightness(0.55) contrast(1.05);
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
}
.ba-label {
  position: absolute;
  top: 18px;
  padding: 6px 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.ba-label-before { left: 18px; background: rgba(4, 7, 15, 0.8); color: #E8B48D; }
.ba-label-after { right: 18px; background: var(--cyan); color: var(--ink); }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--split);
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 18px rgba(55, 210, 255, 0.65);
}
.ba-grip {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  background: var(--orange-btn);
  color: #fff;
  border: 3px solid #fff;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.ba-grip svg { width: 24px; height: 24px; }
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  touch-action: pan-y;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}
.ba-note {
  margin-top: 18px;
  text-align: center;
  font-size: 0.9rem;
  color: #7E93C4;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  position: relative;
  z-index: 2;
}
.step { position: relative; padding-top: 18px; }
.step-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 7vw, 6rem);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 2px var(--orange-btn);
  margin-bottom: 14px;
}
.step h3 { color: var(--head-on-paper); margin-bottom: 10px; }
.step p { font-size: 1rem; }

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border-light);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  box-shadow: 0 14px 34px rgba(10, 20, 48, 0.10);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.review-card:nth-child(1) { transform: rotate(-1.4deg); }
.review-card:nth-child(2) { transform: rotate(0.9deg) translateY(22px); }
.review-card:nth-child(3) { transform: rotate(-0.7deg); }
.review-card:hover { transform: rotate(0deg) translateY(-4px); box-shadow: 0 22px 44px rgba(10, 20, 48, 0.16); }
.review-card::before {
  content: "“";
  position: absolute;
  top: -34px;
  right: 16px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 7rem;
  line-height: 1;
  color: var(--paper-2);
  -webkit-text-stroke: 1.5px var(--cyan-ink);
  pointer-events: none;
}
.stars { display: flex; gap: 4px; color: var(--star); }
.stars svg { width: 20px; height: 20px; }
.review-card blockquote {
  font-size: 1.08rem;
  color: var(--head-on-paper);
  font-weight: 500;
}
.review-card figcaption {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-ink);
}

/* ---------- Service area ---------- */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.area-info h2 { margin-bottom: 18px; }
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
}
.area-list li {
  background: #fff;
  border: 1px solid var(--border-light);
  padding: 7px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--head-on-paper);
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
}
.nap {
  font-style: normal;
  border-left: 4px solid var(--orange-btn);
  padding-left: 18px;
}
.nap strong {
  color: var(--head-on-paper);
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.area-map {
  position: relative;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
  box-shadow: 0 20px 50px rgba(10, 20, 48, 0.18);
}
.area-map iframe { width: 100%; height: 440px; }

/* ---------- Quote ---------- */
.quote-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  position: relative;
  z-index: 2;
}
.quote-info h2 { margin-bottom: 18px; }
.shine {
  position: relative;
  background: linear-gradient(100deg, var(--cyan) 30%, #fff 50%, var(--cyan) 70%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 3.4s ease-in-out infinite;
}
@keyframes shine {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
}
.quote-call {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.quote-call > span {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--body-on-ink);
}
.quote-phone {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  letter-spacing: 0.02em;
  color: #fff !important;
  text-decoration: none;
  transition: color 180ms ease;
  width: fit-content;
}
.quote-phone:hover { color: var(--cyan) !important; }

.quote-form {
  background: var(--paper);
  padding: clamp(28px, 3.5vw, 44px);
  color: var(--body-on-paper);
  display: flex;
  flex-direction: column;
  gap: 22px;
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 26px 100%, 0 calc(100% - 26px));
  border-top: 5px solid var(--cyan);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--head-on-paper);
}
.field label span { color: var(--orange-btn); }
.field input,
.field select,
.field textarea {
  border: 1.5px solid var(--border-light);
  border-radius: 0;
  padding: 12px 14px;
  min-height: 48px;
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cyan-ink);
  box-shadow: 0 0 0 3px rgba(11, 99, 166, 0.2);
}
.field input.invalid { border-color: #DC2626; }
.form-status { font-weight: 600; min-height: 1.4em; margin: 0; }
.form-status.ok { color: #15803D; }
.form-status.err { color: #DC2626; }

/* ---------- Footer ---------- */
.site-footer {
  background: #04070F;
  color: #8FA5CE;
  padding-bottom: 28px;
}
.footer-stripe {
  height: 10px;
  background: repeating-linear-gradient(-45deg, var(--orange-btn) 0 18px, #04070F 18px 36px);
  margin-bottom: clamp(40px, 5vw, 64px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(55, 210, 255, 0.12);
}
.footer-brand p { margin-top: 16px; max-width: 34ch; }
.brand-light { color: #fff; }
.brand-light .brand-sub { color: var(--cyan); }
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col a { color: #8FA5CE; text-decoration: none; }
.footer-col a:hover { color: var(--cyan); text-decoration: underline; }
.footer-col address { font-style: normal; line-height: 1.9; }
.footer-col ul li { margin-bottom: 8px; }
.footer-bottom { padding-top: 26px; font-size: 0.9rem; }

/* ---------- Mobile call bar ---------- */
.callbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  grid-template-columns: 1fr 1fr;
  padding-bottom: env(safe-area-inset-bottom);
  border-top: 3px solid var(--cyan);
  box-shadow: 0 -6px 24px rgba(4, 7, 15, 0.5);
}
.callbar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.callbar .icon { width: 20px; height: 20px; }
.callbar-call { background: var(--orange-btn); color: #fff; }
.callbar-quote { background: var(--ink-2); color: #fff; }

/* ---------- Reveal animation (only hides content when JS is running) ---------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(26px) rotate(0.4deg);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
html.js .reveal.in { opacity: 1; transform: none; }
html.js .review-card.reveal.in:nth-child(1) { transform: rotate(-1.4deg); }
html.js .review-card.reveal.in:nth-child(2) { transform: rotate(0.9deg) translateY(22px); }
html.js .review-card.reveal.in:nth-child(3) { transform: rotate(-0.7deg); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-media { width: 70%; opacity: 0.5; }
  .area-grid, .quote-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 560px; }
  .review-card:nth-child(2) { transform: rotate(0.9deg); }
  html.js .review-card.reveal.in:nth-child(2) { transform: rotate(0.9deg); }
}

@media (max-width: 760px) {
  .hero { min-height: 88vh; padding-top: 72px; }
  .hero-media { width: 100%; clip-path: none; opacity: 0.28; }
  .hero-media::after { display: none; }

  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink-2);
    border-bottom: 1px solid var(--border-dark);
    padding: 12px 24px 24px;
    display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { border-bottom: 1px solid rgba(55, 210, 255, 0.08); }
  .nav-menu li:last-child { border-bottom: 0; }
  .nav-menu a:not(.btn) { display: block; padding: 15px 4px; }
  .nav-menu a:not(.btn)::after { display: none; }
  .nav-cta-item { padding-top: 16px; }
  .nav-cta { width: 100%; }

  .svc-list { grid-template-columns: 1fr; }
  .svc:nth-child(even) { transform: none; }
  .svc { padding-left: 76px; }
  .svc-num { font-size: 2.8rem; }

  .ticker-seq { font-size: 1.1rem; }

  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .area-map iframe { height: 340px; }

  .callbar { display: grid; }
  body { padding-bottom: 59px; } /* room for callbar */
}

/* ---------- Reduced motion ---------- */
@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;
  }
  html.js .reveal { opacity: 1; transform: none; }
  html.js .hero-title .line,
  html.js .hero-tag,
  html.js .hero-sub,
  html.js .hero-ctas,
  html.js .trust-chips { opacity: 1; transform: none; }
  .ticker-track { animation: none; }
  .shine {
    animation: none;
    background: none;
    color: var(--cyan);
    -webkit-background-clip: initial;
    background-clip: initial;
  }
}
