/* On Point Pressure Cleaning — "The Clean Line"
   Palette: wet asphalt, deep petrol teal, high-pressure aqua, warm sand */
:root {
  --grime: #14181a;
  --grime-2: #0f1416;
  --deep: #0c3b3a;
  --aqua: #16e0bd;        /* accent for use on DARK surfaces only */
  --aqua-deep: #0bb59a;   /* mid tone, dark surfaces */
  --aqua-ink: #06735f;    /* AA-safe accent for text on SAND/white (>=4.5:1) */
  --sand: #f4efe6;
  --sand-2: #ebe3d4;
  --ink: #0a0c0d;
  --ink-soft: #47504f;
  --line: rgba(20, 24, 26, 0.12);
  --maxw: 1180px;
  --r: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wet: polygon(0 0, 100% 0, 100% calc(100% - 2.8vw), 0 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: "Bricolage Grotesque", sans-serif; line-height: 1.02; letter-spacing: -0.02em; font-weight: 800; }
a { color: inherit; text-decoration: none; }
.hl { color: var(--aqua-ink); font-style: normal; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(244, 239, 230, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 0.6rem; margin-right: auto; }
.brand-mark {
  width: 30px; height: 30px; border-radius: 8px; flex: none;
  background: radial-gradient(circle at 30% 25%, var(--aqua), var(--deep) 78%);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.25), 0 6px 16px -6px var(--aqua-deep);
  position: relative;
}
.brand-mark::after {
  content: ""; position: absolute; inset: 0; border-radius: 8px;
  background: linear-gradient(120deg, transparent 46%, rgba(255,255,255,0.7) 50%, transparent 54%);
}
.brand-text { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 1.02rem; line-height: 1; letter-spacing: -0.02em; }
.brand-text em { display: block; font-style: normal; font-family: "Space Mono", monospace; font-weight: 400; font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); margin-top: 3px; }
.nav-links { display: flex; gap: 1.6rem; font-size: 0.92rem; font-weight: 600; }
.nav-links a { color: var(--ink-soft); transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.call-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: "Space Mono", monospace; font-weight: 700; font-size: 0.9rem;
  padding: 0.55rem 1rem; border-radius: 999px;
  background: var(--ink); color: var(--sand);
  transition: transform 0.2s var(--ease), background 0.2s;
}
.call-btn:hover { transform: translateY(-2px); background: var(--deep); }
.call-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--aqua); box-shadow: 0 0 0 0 var(--aqua); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(22,224,189,0.6); } 70% { box-shadow: 0 0 0 8px rgba(22,224,189,0); } 100% { box-shadow: 0 0 0 0 rgba(22,224,189,0); } }

/* ---------- HERO ---------- */
.hero {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 4vw, 2.5rem) clamp(3rem, 6vw, 4.5rem);
}
.eyebrow { font-family: "Space Mono", monospace; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--aqua-ink); margin-bottom: 1.1rem; }
.hero h1 { font-size: clamp(2.5rem, 6.2vw, 4.4rem); }
.lede { font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: var(--ink-soft); max-width: 34ch; margin: 1.4rem 0 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 700; font-size: 0.98rem; padding: 0.9rem 1.5rem; border-radius: 999px;
  cursor: pointer; border: none; transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
}
.btn-primary { background: var(--aqua); color: var(--ink); box-shadow: 0 12px 30px -12px var(--aqua-deep); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px var(--aqua-deep); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--ink); transform: translateY(-2px); }
.btn-block { width: 100%; }
.hero-proof { display: flex; gap: 2rem; list-style: none; margin-top: 2.6rem; }
.hero-proof li { display: flex; flex-direction: column; }
.hero-proof strong { font-family: "Bricolage Grotesque", sans-serif; font-size: 1.35rem; }
.hero-proof span { font-family: "Space Mono", monospace; font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- HERO PHOTO (real "clean line") ---------- */
.hero-photo {
  position: relative; aspect-ratio: 4 / 3.4; border-radius: var(--r); overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(12,59,58,0.6); isolation: isolate;
}
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s var(--ease); pointer-events: none; }
.hero-slide.is-active { opacity: 1; pointer-events: auto; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-dots { position: absolute; left: 0; right: 0; bottom: 12px; z-index: 3; display: flex; justify-content: center; gap: 8px; }
.hero-dots button {
  width: 9px; height: 9px; padding: 0; border: none; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,0.45); box-shadow: 0 0 0 1px rgba(0,0,0,0.25); transition: all 0.25s var(--ease);
}
.hero-dots button.is-active { background: var(--aqua); width: 22px; border-radius: 999px; }
.hero-dots button:focus-visible { outline: 2px solid var(--aqua); outline-offset: 2px; }
.ph-tag {
  position: absolute; top: 14px; font-family: "Space Mono", monospace; font-size: 0.64rem;
  letter-spacing: 0.16em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; z-index: 2;
}
.ph-tag--before { left: 14px; background: rgba(0,0,0,0.6); color: #e7e3d6; }
.ph-tag--after { right: 14px; background: var(--aqua); color: var(--ink); }
.hero-photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  font-family: "Space Mono", monospace; font-size: 0.66rem; letter-spacing: 0.06em;
  color: #f2efe6; padding: 1.8rem 1rem 1.9rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
}
.nozzle--sm {
  width: 40px; height: 40px; flex: none; border-radius: 50%; display: grid; place-items: center;
  background: var(--ink); box-shadow: inset 0 0 0 2px var(--aqua);
}
.nozzle--sm::before { content: "☎"; font-size: 1rem; }

/* ---------- WET EDGE (recurring motif) ---------- */
/* Divider color = the section BELOW it, sliced up diagonally into the section above. */
.wet-edge { height: 2.8vw; margin-top: -1px; clip-path: var(--wet); position: relative; z-index: 2; }
.wet-edge--grime { background: var(--grime); }
.wet-edge--sand { background: var(--sand); }

/* ---------- BANDS ---------- */
.band { padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 4vw, 2.5rem); }
.band-dark { background: var(--grime); color: var(--sand); }
.band-sand { background: var(--sand); color: var(--ink); }
.band-dark + .band-sand, .band-sand + .band-dark { position: relative; }
.section-head { max-width: var(--maxw); margin: 0 auto 2.8rem; }
.idx { font-family: "Space Mono", monospace; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--aqua); }
.band-sand .idx { color: var(--aqua-ink); }
.section-head h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); margin: 0.8rem 0 0.9rem; max-width: 18ch; }
.section-head p { color: rgba(244,239,230,0.72); max-width: 52ch; font-size: 1.05rem; }
.band-sand .section-head p { color: var(--ink-soft); }

/* proof cards */
.proof-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.proof-card { background: var(--grime-2); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--r); padding: 1.8rem 1.6rem; transition: transform 0.25s var(--ease), border-color 0.25s; }
.proof-card:hover { transform: translateY(-4px); border-color: rgba(22,224,189,0.5); }
.proof-num { font-family: "Space Mono", monospace; color: var(--aqua); font-size: 0.85rem; }
.proof-card h3 { font-size: 1.3rem; margin: 0.9rem 0 0.6rem; color: #fff; }
.proof-card p { color: rgba(244,239,230,0.68); font-size: 0.98rem; }

/* services */
.services { max-width: var(--maxw); margin: 0 auto; list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--line); }
.services li { display: flex; flex-direction: column; gap: 0.35rem; padding: 1.5rem 1.2rem; border-bottom: 1px solid var(--line); position: relative; transition: background 0.2s; }
.services li:hover { background: var(--sand-2); }
.services li::before { content: ""; position: absolute; left: 0; top: 1.5rem; width: 0; height: 2px; background: var(--aqua-deep); transition: width 0.3s var(--ease); }
.services li:hover::before { width: 22px; }
.svc-k { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 1.2rem; padding-left: 0; transition: padding-left 0.3s var(--ease); }
.services li:hover .svc-k { padding-left: 30px; }
.svc-d { color: var(--ink-soft); font-size: 0.95rem; }
.services-foot { max-width: var(--maxw); margin: 1.6rem auto 0; color: var(--ink-soft); }
.services-foot a, .area-foot a { color: var(--aqua-ink); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* area */
.band-area .section-head p { display: none; }
.area-list { max-width: var(--maxw); margin: 0 auto; list-style: none; display: flex; flex-wrap: wrap; gap: 0.7rem; }
.area-list li { font-family: "Space Mono", monospace; font-size: 0.9rem; padding: 0.6rem 1.1rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.16); color: rgba(244,239,230,0.9); transition: all 0.2s; }
.area-list li:hover { border-color: var(--aqua); color: var(--aqua); }
.area-foot { max-width: var(--maxw); margin: 2rem auto 0; color: rgba(244,239,230,0.72); }
.area-foot a { color: var(--aqua); }

/* recent work gallery */
.gallery {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; grid-auto-flow: dense;
}
.gal { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 5; box-shadow: 0 20px 50px -30px rgba(0,0,0,0.8); }
.gal-tall { grid-row: span 2; aspect-ratio: 4 / 6.4; }
.gal img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease); }
.gal:hover img { transform: scale(1.05); }
.gal figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  font-family: "Space Mono", monospace; font-size: 0.64rem; letter-spacing: 0.05em; color: #f2efe6;
  padding: 1.5rem 0.85rem 0.75rem; background: linear-gradient(transparent, rgba(0,0,0,0.72));
}
.gal::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08); border-radius: 14px; pointer-events: none; }
.gallery-foot { max-width: var(--maxw); margin: 1.6rem auto 0; color: rgba(244,239,230,0.7); font-size: 0.95rem; }
.gallery-foot a { color: var(--aqua); font-weight: 700; }

/* meet mike */
.meet-mike { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; max-width: 30rem; }
.meet-mike img { width: 76px; height: 76px; flex: none; border-radius: 50%; object-fit: cover; object-position: 50% 30%; box-shadow: 0 0 0 3px var(--sand), 0 0 0 5px var(--aqua-deep); }
.meet-mike p { font-size: 0.98rem; color: var(--ink-soft); margin: 0; }
.meet-mike strong { color: var(--ink); }

/* quote */
.band-quote { padding-bottom: clamp(4rem, 9vw, 7rem); }
.quote-wrap { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: start; }
.quote-copy h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 0.6rem 0 0.9rem; }
.quote-copy p { color: var(--ink-soft); max-width: 40ch; }
.quote-call { display: inline-flex; align-items: center; gap: 0.9rem; margin-top: 2rem; padding: 0.9rem 1.2rem; border-radius: 14px; background: var(--grime); color: var(--sand); transition: transform 0.2s var(--ease); }
.quote-call:hover { transform: translateY(-2px); }
.quote-call span:not(.nozzle--sm) { display: flex; flex-direction: column; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(244,239,230,0.6); }
.quote-call strong { font-family: "Space Mono", monospace; font-size: 1.15rem; letter-spacing: 0; text-transform: none; color: var(--aqua); }
.quote-form { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: 0 30px 70px -45px rgba(12,59,58,0.5); }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); }
.field label span { text-transform: none; font-weight: 500; color: #9aa19f; }
.field label .req { color: var(--aqua-ink); font-weight: 600; }
.svc-k { color: inherit; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; padding: 0.8rem 0.9rem; border-radius: 11px;
  border: 1.5px solid var(--line); background: var(--sand); color: var(--ink); transition: border-color 0.2s, background 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--aqua-deep); background: #fff; }
.field textarea { resize: vertical; }
.form-status { margin-top: 0.9rem; font-size: 0.92rem; font-weight: 600; min-height: 1.2em; }
.form-status.ok { color: var(--aqua-deep); }
.form-status.err { color: #c2492f; }

/* footer */
.foot { background: var(--grime-2); color: var(--sand); padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1rem, 4vw, 2.5rem); display: grid; gap: 1.4rem; }
.foot-brand { display: flex; align-items: center; gap: 0.8rem; max-width: var(--maxw); margin: 0 auto; width: 100%; }
.foot-brand strong { display: block; font-family: "Bricolage Grotesque", sans-serif; }
.foot-brand span { font-size: 0.85rem; color: rgba(244,239,230,0.6); }
.foot-contact { max-width: var(--maxw); margin: 0 auto; width: 100%; display: flex; flex-wrap: wrap; gap: 1.4rem; font-family: "Space Mono", monospace; font-size: 0.92rem; }
.foot-contact a { color: var(--aqua); }
.foot-legal { max-width: var(--maxw); margin: 0 auto; width: 100%; font-size: 0.8rem; color: rgba(244,239,230,0.45); }

/* mobile sticky call */
.mobile-call { display: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-photo { aspect-ratio: 4 / 3.6; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .quote-wrap { grid-template-columns: 1fr; }
  .mobile-call {
    display: flex; align-items: center; justify-content: center; gap: 0.6rem;
    position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60;
    padding: 0.85rem; border-radius: 14px; background: var(--aqua); color: var(--ink);
    font-weight: 700; box-shadow: 0 14px 34px -12px rgba(11,181,154,0.8);
  }
  .call-btn { display: none; }
  .foot { padding-bottom: 84px; }
}
@media (max-width: 480px) {
  .field-row { grid-template-columns: 1fr; }
  .hero-proof { gap: 1.3rem; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; transition-duration: 0.01ms !important; }
}
