/* ============================================================
   MAMMOTH PRESSURE CLEANING — Design System
   Palette sampled from supplied logo tokens (build prompt §1).
   // ASSUMPTION — VERIFY: re-sample exact hex from transparent SVG logo.
   ============================================================ */

:root {
  /* Brand palette */
  --navy:      #080D2D;  /* headers, footer, body text, nav */
  --royal:     #244385;  /* section bg, headings, primary fill */
  --blue:      #4B7CBF;  /* secondary buttons, links, accents */
  --sky:       #97C4E9;  /* highlights, icons, hover */
  --ice:       #D6EDF6;  /* light section bg, cards */
  --gold:      #C58F47;  /* PRIMARY CTA */
  --cream:     #F0CC85;  /* CTA hover, badges, highlights */
  --white:     #FFFFFF;

  --navy-90:   rgba(8,13,45,0.90);
  --navy-70:   rgba(8,13,45,0.70);
  --navy-08:   rgba(8,13,45,0.08);
  --gold-grad: linear-gradient(135deg, #D9A65B 0%, #C58F47 55%, #B07C39 100%);
  --royal-grad: linear-gradient(160deg, #2C4F9B 0%, #244385 50%, #182F63 100%);

  /* Type */
  --font-display: "Archivo", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing / layout */
  --maxw: 1180px;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(8,13,45,0.08);
  --shadow-md: 0 10px 30px rgba(8,13,45,0.14);
  --shadow-lg: 0 24px 60px rgba(8,13,45,0.22);

  --header-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--royal); text-decoration: none; }
a:hover { color: var(--blue); }
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.08; margin: 0 0 .5em; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.1rem, 6vw, 4rem); font-weight: 800; text-transform: uppercase; }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 800; }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); font-weight: 700; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.2rem; }
li { margin-bottom: .4rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(48px, 7vw, 92px) 0; position: relative; }
.section--ice { background: var(--ice); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h1,.section--navy h2,.section--navy h3 { color: var(--white); }
.section--royal { background: var(--royal-grad); color: var(--white); }
.section--royal h1,.section--royal h2,.section--royal h3 { color: var(--white); }
.eyebrow {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; font-size: .8rem; color: var(--gold); margin-bottom: .6rem;
}
.section--navy .eyebrow, .section--royal .eyebrow { color: var(--cream); }
.lead { font-size: 1.18rem; color: var(--navy-70); max-width: 65ch; }
.section--navy .lead, .section--royal .lead { color: rgba(255,255,255,.82); }
.center { text-align: center; }
.measure { max-width: 760px; margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  text-transform: uppercase; letter-spacing: .03em;
  padding: 15px 28px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  line-height: 1;
}
.btn--primary { background: var(--gold-grad); color: var(--navy); box-shadow: 0 8px 22px rgba(197,143,71,.4); }
.btn--primary:hover { background: var(--cream); color: var(--navy); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(240,204,133,.5); }
.btn--secondary { background: var(--blue); color: var(--white); }
.btn--secondary:hover { background: var(--sky); color: var(--navy); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.4); }
.btn--ghost:hover { border-color: var(--gold); color: var(--cream); }
.btn--lg { padding: 18px 36px; font-size: 1.08rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy-90); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(151,196,233,.18);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 18px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 46px; height: 46px; flex: 0 0 auto; }
.brand__name {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  color: var(--white); font-size: 1.12rem; letter-spacing: .01em; line-height: 1;
}
.brand__name span { display: block; font-size: .62rem; letter-spacing: .22em; color: var(--sky); font-weight: 600; margin-top: 3px; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a { color: rgba(255,255,255,.85); font-weight: 600; font-size: .95rem; }
.nav__links a:hover { color: var(--cream); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__phone {
  display: inline-flex; align-items: center; gap: 8px; color: var(--white);
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
}
.nav__phone:hover { color: var(--cream); }
.nav__phone svg { width: 18px; height: 18px; fill: var(--gold); }

/* dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 10px; min-width: 230px; opacity: 0; visibility: hidden; transition: .18s ease;
  display: grid; gap: 2px;
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop a { color: var(--navy); padding: 9px 12px; border-radius: 8px; font-size: .9rem; }
.drop a:hover { background: var(--ice); color: var(--royal); }

/* mobile nav */
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: .25s; }
.mobile-menu {
  display: none; position: fixed; inset: var(--header-h) 0 0; z-index: 99;
  background: var(--navy); padding: 24px 22px; overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; color: var(--white); font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; font-size: 1.1rem; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-menu details summary { color: var(--cream); cursor: pointer; }
.mobile-menu details a { font-size: .95rem; padding-left: 14px; text-transform: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; background: var(--navy); color: var(--white);
  padding: clamp(56px, 9vw, 110px) 0 0; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 78% -10%, rgba(75,124,191,.45), transparent 60%),
    radial-gradient(700px 480px at 10% 110%, rgba(36,67,133,.6), transparent 55%);
  z-index: 0;
}
.hero .container { position: relative; z-index: 2; }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(151,196,233,.14); border: 1px solid rgba(151,196,233,.3);
  padding: 7px 16px; border-radius: 999px; font-family: var(--font-display);
  font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; color: var(--cream);
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 18px; }
.hero h1 .accent { color: var(--cream); }
.hero__sub { font-size: 1.22rem; color: rgba(255,255,255,.86); max-width: 52ch; margin-bottom: 28px; }
.hero__art { position: relative; }
.hero__mascot { width: 100%; max-width: 430px; height: auto; margin: 0 auto; display: block; filter: drop-shadow(0 24px 44px rgba(0,0,0,.5)); }
.brand__mark { object-fit: contain; }
.hero__pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero__pill {
  display: inline-flex; align-items: center; gap: 7px; font-size: .85rem; font-weight: 600;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  padding: 8px 14px; border-radius: 999px; color: rgba(255,255,255,.9);
}
.hero__pill svg { width: 15px; height: 15px; fill: var(--cream); }

/* wave divider */
.wave { display: block; width: 100%; height: auto; position: relative; z-index: 2; margin-top: 30px; }
.wave--flip { transform: rotate(180deg); }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--white); }
.trust-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
}
.trust-item { text-align: center; padding: 12px; }
.trust-item svg { width: 40px; height: 40px; margin: 0 auto 10px; fill: var(--royal); }
.trust-item b { display: block; font-family: var(--font-display); font-size: 1rem; color: var(--navy); }
.trust-item span { font-size: .82rem; color: var(--navy-70); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white); border: 1px solid var(--navy-08); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card__icon {
  width: 56px; height: 56px; border-radius: 14px; background: var(--ice);
  display: grid; place-items: center; margin-bottom: 16px;
}
.card__icon svg { width: 30px; height: 30px; fill: var(--royal); }
.card h3 { margin-bottom: 8px; }
.card p { font-size: .95rem; color: var(--navy-70); margin-bottom: 14px; }
.card__link { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: .82rem; letter-spacing: .04em; color: var(--royal); }
.card__link::after { content: " →"; }
.card--link { display: block; color: inherit; }
.card--service h3 { color: var(--navy); }

/* badge */
.badge {
  display: inline-flex; align-items: center; gap: 6px; background: var(--cream); color: var(--navy);
  font-family: var(--font-display); font-weight: 700; font-size: .72rem; text-transform: uppercase;
  letter-spacing: .06em; padding: 5px 12px; border-radius: 999px; margin-bottom: 12px;
}

/* ---------- Split / content blocks ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.split--media .media {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  background: var(--ice); aspect-ratio: 4/3; display: grid; place-items: center; color: var(--royal);
}
.photo-slot {
  border: 2px dashed var(--blue); border-radius: var(--radius-lg); background: var(--ice);
  display: grid; place-items: center; text-align: center; padding: 30px; color: var(--royal);
  font-family: var(--font-display); font-weight: 700; min-height: 240px;
}
.photo-slot small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .8rem; color: var(--navy-70); margin-top: 6px; }

/* process steps */
.steps { counter-reset: step; display: grid; gap: 18px; }
.step { display: flex; gap: 18px; align-items: flex-start; }
.step__num {
  counter-increment: step; flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px;
  background: var(--gold-grad); color: var(--navy); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.2rem;
}
.step__num::before { content: counter(step); }
.step h4 { margin-bottom: 4px; font-size: 1.1rem; }
.step p { margin: 0; color: var(--navy-70); font-size: .95rem; }

/* guarantee callout */
.guarantee {
  background: var(--royal-grad); color: var(--white); border-radius: var(--radius-lg);
  padding: 32px; display: flex; gap: 22px; align-items: center; box-shadow: var(--shadow-md);
}
.guarantee svg { width: 64px; height: 64px; flex: 0 0 auto; fill: var(--cream); }
.guarantee h3 { color: var(--white); margin-bottom: 6px; }
.guarantee p { margin: 0; color: rgba(255,255,255,.85); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq__item { background: var(--white); border: 1px solid var(--navy-08); border-radius: var(--radius); overflow: hidden; }
.section--ice .faq__item { background: var(--white); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 18px 22px; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__q::after { content: "+"; font-size: 1.6rem; color: var(--gold); line-height: 1; transition: transform .2s; }
.faq__item[open] .faq__q::after { content: "–"; }
.faq__a { padding: 0 22px 20px; color: var(--navy-70); }
.faq__a p:last-child { margin-bottom: 0; }

/* ---------- Location specifics ---------- */
.zip-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 0; padding: 0; list-style: none; }
.zip-list li {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: var(--white);
  padding: 5px 12px; border-radius: 999px; font-size: .85rem; font-weight: 600; margin: 0;
}
.section--ice .zip-list li, .section:not(.section--navy):not(.section--royal):not(.hero) .zip-list li {
  background: var(--ice); border-color: rgba(36,67,133,.15); color: var(--royal);
}

/* service chips on location pages */
.svc-chips { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.svc-chip {
  background: var(--white); border: 1px solid var(--navy-08); border-radius: var(--radius);
  padding: 16px; text-align: center; color: var(--navy); font-family: var(--font-display);
  font-weight: 700; font-size: .92rem; box-shadow: var(--shadow-sm); transition: .18s;
}
.svc-chip:hover { background: var(--royal); color: var(--white); transform: translateY(-3px); }
.svc-chip svg { width: 28px; height: 28px; margin: 0 auto 8px; fill: var(--royal); transition: .18s; }
.svc-chip:hover svg { fill: var(--cream); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); color: var(--white); text-align: center; }
.cta-band h2 { color: var(--white); }
.cta-band .lead { margin: 0 auto 26px; color: rgba(255,255,255,.82); }

/* ---------- Contact form ---------- */
.form-grid { display: grid; gap: 16px; }
.field label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .92rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1.5px solid rgba(8,13,45,.16); border-radius: 10px;
  font-family: var(--font-body); font-size: 1rem; background: var(--white); color: var(--navy);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(75,124,191,.18); }
.field textarea { min-height: 130px; resize: vertical; }

/* ---------- Reviews (BUILT BUT OFF) ---------- */
/* Review module styles ship ready; section is commented out in HTML until real reviews + GBP exist. */
.reviews-off-note {
  border: 2px dashed var(--blue); border-radius: var(--radius-lg); background: var(--ice);
  padding: 26px; text-align: center; color: var(--royal);
}

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.72); padding: 56px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 34px; }
.site-footer h4 { color: var(--white); font-size: 1rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.site-footer a { color: rgba(255,255,255,.72); display: block; padding: 4px 0; font-size: .92rem; }
.site-footer a:hover { color: var(--cream); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand .brand__mark { width: 52px; height: 52px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 22px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .82rem;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; padding: 0; }
.footer-social a:hover { background: var(--gold); }
.footer-social svg { width: 18px; height: 18px; fill: var(--white); }

/* ---------- Sticky mobile bar ---------- */
.sticky-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--navy); border-top: 1px solid rgba(151,196,233,.2);
  padding: 9px 12px calc(9px + env(safe-area-inset-bottom)); gap: 10px;
  box-shadow: 0 -6px 24px rgba(0,0,0,.3);
}
.sticky-bar a {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 9px 6px; border-radius: 12px; font-family: var(--font-display); font-weight: 700;
  font-size: .92rem; text-transform: uppercase; letter-spacing: .02em;
}
.sticky-bar a svg { width: 20px; height: 20px; }
.sticky-bar .sb-call { background: var(--gold-grad); color: var(--navy); }
.sticky-bar .sb-call svg { fill: var(--navy); }
.sticky-bar .sb-text { background: var(--blue); color: var(--white); }
.sticky-bar .sb-text svg { fill: var(--white); }

/* ---------- Breadcrumb ---------- */
.crumbs { font-size: .82rem; color: rgba(255,255,255,.6); padding-top: 6px; }
.crumbs a { color: rgba(255,255,255,.75); }
.crumbs a:hover { color: var(--cream); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.stack > * + * { margin-top: 1rem; }
.pill-note { font-size: .8rem; color: var(--navy-70); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__art { order: -1; max-width: 280px; margin: 0 auto; }
  .hero__sub, .hero__pills { margin-left: auto; margin-right: auto; }
  .hero__pills, .btn-row { justify-content: center; }
  .split { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .svc-chips { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: block; }
  .nav__cta .btn { display: none; }
  .sticky-bar { display: flex; }
  body { padding-bottom: 76px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .guarantee { flex-direction: column; text-align: center; }
  .svc-chips { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 46px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---- Service/Location additions ---- */
.measure-wide { max-width: 880px; margin-left: auto; margin-right: auto; }
.measure-wide p { font-size: 1.06rem; color: var(--navy-70); margin-bottom: 1rem; }

.hero__zips {
  margin-top: 18px; font-size: .95rem; color: var(--sky);
  display: flex; align-items: center; gap: 8px; font-weight: 600;
}
.hero__zips svg { width: 18px; height: 18px; fill: var(--gold); flex: none; }

.guarantee-band {
  display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px; padding: 26px 30px;
}
.guarantee-band__icon {
  width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center;
  background: var(--gold-grad); flex: none;
}
.guarantee-band__icon svg { width: 34px; height: 34px; fill: var(--navy); }
@media (max-width: 760px) {
  .guarantee-band { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 16px; }
}

/* ---- Inline icon sizing fixes (constrain unscoped icon() SVGs) ---- */
.hero__eyebrow svg, .eyebrow svg, .btn svg, .crumbs svg, .lead svg,
.cta-band svg, h2 svg, h3 svg, h4 svg, .reviews-off-note svg, p svg {
  width: 1.15em; height: 1.15em; vertical-align: -0.18em; flex: none;
}
.hero__eyebrow svg { fill: var(--cream); }
.btn svg { fill: currentColor; }
.btn--primary svg { fill: var(--navy); }
.section--navy h2 svg, .section--royal h2 svg { fill: var(--cream); }
/* bullet lists with leading icons */
.stack li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.stack li svg { width: 22px; height: 22px; flex: none; fill: var(--cream); margin-top: 3px; }
.section .stack li svg { fill: var(--gold); }
.section--royal .stack li svg, .section--navy .stack li svg { fill: var(--cream); }
