/* =====================================================================
   FR PLUMBING — style.css v3
   "American Trade Premium" — bold, legible, masculine, contractor-grade
   - Archivo (display, weight 800-900)
   - Inter Tight (body, 400-600)
   - Big Shoulders Display (numerals, 800-900)
   - JetBrains Mono (labels)
===================================================================== */

:root {
  --bg:        #f5f1ea;       /* warm paper */
  --bg-2:      #ebe6dc;       /* slightly deeper paper */
  --ink:       #0e1014;       /* near-black */
  --ink-2:     #1c1f24;
  --navy:      #0f1d2e;       /* dark surface */
  --navy-2:    #142a40;
  --cyan:      #00b4ff;       /* logo cyan */
  --cyan-2:    #0099db;
  --cyan-soft: rgba(0,180,255,.14);
  --line:      #d9d3c5;
  --line-2:    rgba(255,255,255,.08);
  --line-3:    rgba(255,255,255,.16);
  --muted:     #545862;
  --muted-2:   #9aa3b1;
  --muted-3:   #c7cdd6;
  --red:       #ff3b3b;
  --red-2:     #d92626;
  --green:     #25d366;
  --green-2:   #1ea656;
  --white:     #ffffff;

  --ff-display: 'Archivo', system-ui, sans-serif;
  --ff-body:    'Inter Tight', -apple-system, system-ui, sans-serif;
  --ff-num:     'Big Shoulders Display', 'Archivo', sans-serif;
  --ff-mono:    'JetBrains Mono', ui-monospace, monospace;

  --container: 1280px;
  --r: 0px;

  --t: cubic-bezier(.2,.8,.2,1);
}

/* ----------------------------- RESET ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; padding: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 800; line-height: 1.05; letter-spacing: -0.025em; font-family: var(--ff-display); }
p { margin: 0; }
::selection { background: var(--cyan); color: #00131f; }

/* ----------------------------- UTIL ------------------------------- */
.u-cyan { color: var(--cyan); }
.kicker, .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.kicker__dot, .eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0,180,255,.18);
}
.eyebrow__num {
  font-family: var(--ff-num);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--cyan);
  line-height: 1;
}
.eyebrow--light { color: var(--muted-3); }
.eyebrow--light .eyebrow__num { color: var(--cyan); }

/* ============================ TOP BAR ============================ */
.topbar {
  background: var(--ink);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-family: var(--ff-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
}
.topbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px 28px;
  display: flex; align-items: center; gap: 16px;
}
.topbar__pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,.16);
  text-transform: uppercase;
  font-weight: 500;
  flex: none;
}
.topbar__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,180,255,.25);
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: .4; } }
.topbar__sep { flex: 1; height: 1px; background: rgba(255,255,255,.1); }
.topbar__msg { color: var(--muted-3); flex: none; }
.topbar__cta {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color .2s var(--t);
}
.topbar__cta:hover { color: var(--cyan); }
.topbar__arrow { color: var(--cyan); }
@media (max-width: 900px) {
  .topbar__msg { display: none; }
  .topbar__inner { padding: 9px 16px; gap: 12px; font-size: 0.7rem; }
}

/* ============================ HEADER ============================ */
.header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
          backdrop-filter: saturate(140%) blur(12px);
  background-color: rgba(245,241,234,.92);
}
.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex; align-items: center; gap: 32px;
}

/* BRAND (real logo)
   Source PNGs are square (1:1) but the wordmark sits in the middle band
   surrounded by ~35% empty padding top + bottom. We crop the padding
   by forcing a wide display box + object-fit:cover so the wordmark
   reads bigger and isn't stretched.
   The PNGs also have solid white/black backgrounds. We blend them
   into the page surface (multiply on light, screen on dark) so they
   integrate cleanly without a visible plate. */
.brand { display: inline-flex; align-items: center; flex: none; }
.brand__img {
  display: block;
  height: 64px;
  width: 230px;
  object-fit: cover;
  object-position: center;
}
/* transparent PNG — no blend mode needed, integrates naturally */
.brand__img--dark { mix-blend-mode: screen; display: none; }

/* NAV */
.nav { display: flex; align-items: center; gap: 30px; flex: 1; justify-content: flex-end; }
.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 8px 0;
  transition: color .2s var(--t);
  letter-spacing: -0.005em;
}
.nav a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 2px;
  height: 2px; background: var(--cyan);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--t);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }

.header__cta { display: flex; align-items: center; gap: 16px; flex: none; }
.phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-mono);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.phone svg { color: var(--cyan); }
.phone:hover { color: var(--cyan); }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--t), opacity .2s;
}
.mobile-nav {
  display: none;
  flex-direction: column; gap: 0;
  padding: 14px 28px 24px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.mobile-nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
  font-weight: 500;
}
.mobile-nav .btn { margin-top: 10px; justify-content: center; }

@media (max-width: 1024px) {
  .nav { gap: 22px; }
  .header__cta .btn { display: none; }
}
@media (max-width: 880px) {
  .nav { display: none; }
  .header__cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav.open { display: flex; }
  .header__inner { padding: 14px 20px; }
  .brand__img { height: 52px; width: 178px; }
}

/* ============================ BUTTONS ============================
   Canonical button system. Three semantic variants:
   - .btn--call     (red  / phone — urgent voice)
   - .btn--whatsapp (green / WA   — chat)
   - .btn--book     (ink + cyan accent — neutral primary)
   - .btn--ghost    (outlined for dark surfaces)
   All buttons share the same height/padding rhythm so they line up
   when stacked next to each other.
================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: -0.005em;
  background: var(--ink);
  color: var(--white);
  border: 2px solid var(--ink);
  transition: transform .2s var(--t), background .2s var(--t), border-color .2s var(--t), color .2s var(--t), box-shadow .25s var(--t);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }

.btn--xl { padding: 16px 24px; font-size: 1rem; }

/* Primary "Book a service" — premium ink button with cyan hover and
   a subtle cyan rule on the bottom so it reads as a designed system,
   not an off-the-shelf primary. */
.btn--book {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  padding: 12px 20px;
  font-weight: 800;
  letter-spacing: 0.01em;
  position: relative;
}
.btn--book::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--t);
}
.btn--book:hover { background: #000; }
.btn--book:hover::after { transform: scaleX(1); }
.btn--book .btn__arrow {
  font-family: var(--ff-mono);
  font-weight: 600;
  color: var(--cyan);
  transition: transform .25s var(--t);
}
.btn--book:hover .btn__arrow { transform: translateX(4px); }

/* CALL — red, white text, white phone icon. Used everywhere a phone
   call is the action. */
.btn--call {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn--call:hover { background: var(--red-2); border-color: var(--red-2); box-shadow: 0 10px 30px rgba(255,59,59,.36); }
.btn--call .btn__icon svg,
.btn--call svg { color: #fff; }

/* WHATSAPP — green, white text, white WA glyph. */
.btn--whatsapp {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn--whatsapp:hover { background: var(--green-2); border-color: var(--green-2); box-shadow: 0 10px 30px rgba(37,211,102,.32); }
.btn--whatsapp .btn__icon svg,
.btn--whatsapp svg { color: #fff; }

/* GHOST — outlined, used inside dark sections only. */
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.32);
}
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* Stacked label / number layout used inside Call buttons. */
.btn__main { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 2px; line-height: 1; text-align: left; }
.btn__label {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: .9;
}
.btn__num {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.btn__icon { display: inline-flex; flex: none; }

/* ============================== HERO ============================== */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__grad {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 100% 70% at 80% 0%, rgba(0,180,255,.18), transparent 60%),
    radial-gradient(ellipse 100% 80% at 0% 100%, rgba(15,29,46,.9), transparent 60%),
    linear-gradient(180deg, #0a0c10 0%, #0e1014 100%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 96px 96px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent 80%);
          mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent 80%);
}
.hero__glow {
  position: absolute;
  width: 600px; height: 600px;
  right: -120px; top: -120px;
  background: radial-gradient(circle, rgba(0,180,255,.18), transparent 60%);
  filter: blur(40px);
}

.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 28px 80px;
  display: flex; flex-direction: column; gap: 44px;
}
.hero__top { animation: fadeUp .7s .05s both; }

.kicker {
  color: var(--muted-3);
  border: 1px solid rgba(255,255,255,.16);
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,.03);
}

.hero__title {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(3.2rem, 9vw, 8.4rem);
  line-height: .92;
  letter-spacing: -0.045em;
  font-variation-settings: "wdth" 95;
  margin-top: 8px;
  color: #fff;
}
.hero__title-row {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.18em;
}
.hero__title-row:nth-child(1) { animation: fadeUp .9s .15s both; }
.hero__title-row:nth-child(2) { animation: fadeUp .9s .28s both; }
.hero__title-row:nth-child(3) { animation: fadeUp .9s .41s both; }
.hero__word--cyan { color: var(--cyan); }
.hero__word--italic { font-style: italic; font-weight: 800; font-variation-settings: "wdth" 110; }

.hero__split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  margin-top: 12px;
  animation: fadeUp .9s .55s both;
}
.hero__sub {
  font-size: 1.18rem;
  line-height: 1.5;
  color: var(--muted-3);
  max-width: 52ch;
  font-weight: 400;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: flex-start; }
.hero__support {
  grid-column: 1 / -1;
  font-family: var(--ff-mono);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  color: var(--muted-2);
  margin-top: 4px;
}
.hero__support a { color: var(--cyan); border-bottom: 1px solid var(--cyan); padding-bottom: 1px; }

.hero__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  margin-top: 30px;
  animation: fadeUp 1s .7s both;
}
.hero__meta-item {
  padding: 28px 24px;
  border-right: 1px solid var(--line-2);
  display: flex; flex-direction: column; gap: 8px;
}
.hero__meta-item:last-child { border-right: 0; }
.hero__meta-num {
  font-family: var(--ff-num);
  font-weight: 800;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
  color: var(--cyan);
  letter-spacing: -0.02em;
}
.hero__meta-lbl {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted-3);
  line-height: 1.4;
}

@media (max-width: 880px) {
  .hero__inner { padding: 40px 20px 60px; gap: 28px; }
  .hero__split { grid-template-columns: 1fr; gap: 22px; }
  .hero__meta { grid-template-columns: repeat(2, 1fr); }
  .hero__meta-item { padding: 20px 16px; border-right: 1px solid var(--line-2); }
  .hero__meta-item:nth-child(2n) { border-right: 0; }
  .hero__meta-item:nth-child(-n+2) { border-bottom: 1px solid var(--line-2); }
}

/* ============================ MARQUEE ============================ */
.marquee {
  position: relative; z-index: 1;
  background: var(--cyan);
  color: var(--ink);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 28px;
  padding: 14px 0;
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-variation-settings: "wdth" 110;
  animation: scrollX 40s linear infinite;
}
@keyframes scrollX {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ============================ INTRO ============================ */
.intro {
  background: var(--bg);
  padding: 110px 0;
  border-bottom: 1px solid var(--line);
}
.intro__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.intro__title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -0.035em;
  font-variation-settings: "wdth" 95;
  margin-top: 18px;
}
.intro__lead {
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.intro__body {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 28px;
}
.intro__bullets { display: flex; flex-direction: column; gap: 0; }
.intro__bullets li {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.02rem;
  font-weight: 500;
}
.intro__check {
  flex: none;
  width: 22px; height: 22px;
  background: var(--cyan);
  position: relative;
}
.intro__check::after {
  content: '';
  position: absolute;
  left: 6px; top: 4px;
  width: 6px; height: 12px;
  border: solid var(--ink);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

@media (max-width: 900px) {
  .intro { padding: 70px 0; }
  .intro__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* =========================== SERVICES =========================== */
.services {
  background: var(--ink);
  color: #fff;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(0,180,255,.08), transparent 60%);
  pointer-events: none;
}
.services__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.services__head {
  display: flex; flex-direction: column; gap: 18px;
  margin-bottom: 60px; max-width: 60ch;
}
.services__title {
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  font-weight: 900;
  font-variation-settings: "wdth" 95;
}
.services__sub {
  font-size: 1.12rem;
  color: var(--muted-3);
  line-height: 1.55;
  font-weight: 400;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-2);
  border-left: 1px solid var(--line-2);
}

.svc {
  background: var(--ink);
  border-right: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  padding: 36px 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  transition: background .35s var(--t);
  overflow: hidden;
}
.svc__bignum {
  position: absolute;
  top: -10px; right: -8px;
  font-family: var(--ff-num);
  font-weight: 800;
  font-size: 8rem;
  line-height: 1;
  color: rgba(255,255,255,.04);
  pointer-events: none;
  letter-spacing: -0.05em;
  transition: color .4s var(--t);
}
.svc:hover { background: var(--navy); }
.svc:hover .svc__bignum { color: rgba(0,180,255,.18); }

.svc__top { display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 2; }
.svc__tag {
  font-family: var(--ff-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}
.svc__icon { color: var(--cyan); }
.svc__title {
  font-size: 1.65rem;
  font-weight: 800;
  font-variation-settings: "wdth" 95;
  letter-spacing: -0.02em;
  color: #fff;
  position: relative; z-index: 2;
}
.svc__desc {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--muted-3);
  position: relative; z-index: 2;
}
.svc__list {
  display: flex; flex-direction: column;
  font-family: var(--ff-mono);
  font-size: 0.82rem;
  color: var(--muted-2);
  letter-spacing: 0.02em;
  position: relative; z-index: 2;
  margin-top: 4px;
}
.svc__list li { padding: 4px 0; }
.svc__list li::before { content: '– '; color: var(--cyan); }

.svc__cta {
  margin-top: auto;
  padding-top: 18px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--line-2);
  font-family: var(--ff-mono);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  position: relative; z-index: 2;
  transition: color .25s var(--t);
}
.svc__arrow { color: var(--cyan); transition: transform .3s var(--t); }
.svc__cta:hover { color: var(--cyan); }
.svc__cta:hover .svc__arrow { transform: translateX(6px); }

.svc--feature { background: var(--navy); }
.svc--feature .svc__bignum { color: rgba(0,180,255,.12); }

@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services { padding: 70px 0; }
  .services__grid { grid-template-columns: 1fr; }
  .svc { padding: 28px 22px; }
}

/* ============================ ALERT ============================ */
.alert {
  background: var(--red);
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.alert::before {
  content: 'EMERGENCY';
  position: absolute;
  bottom: -50px; right: -20px;
  font-family: var(--ff-num);
  font-weight: 900;
  font-size: clamp(8rem, 18vw, 18rem);
  letter-spacing: -0.04em;
  color: rgba(0,0,0,.06);
  pointer-events: none;
  line-height: 1;
}
.alert__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 8px 1fr auto;
  gap: 32px;
  align-items: center;
}
.alert__pulse {
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  position: relative;
  align-self: center;
  justify-self: start;
  margin-left: -4px;
}
.alert__pulse::after {
  content: '';
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.6);
  animation: pulseRing 1.6s ease-out infinite;
}
@keyframes pulseRing {
  0%   { transform: scale(.6); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
.alert__copy { display: flex; flex-direction: column; gap: 6px; max-width: 60ch; }
.alert__tag {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: .85;
}
.alert__title {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  font-variation-settings: "wdth" 95;
  color: #fff;
}
.alert__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
}
.alert__ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: stretch; }
/* On the red emergency band, invert the Call button to white-on-red so
   it pops without using black (which conflicts visually with the band). */
.alert .btn--call {
  background: #fff;
  color: var(--red-2);
  border-color: #fff;
}
.alert .btn--call:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: 0 14px 32px rgba(0,0,0,.28);
}
.alert .btn--call .btn__icon svg,
.alert .btn--call svg { color: var(--red-2); transition: color .2s var(--t); }
.alert .btn--call:hover .btn__icon svg,
.alert .btn--call:hover svg { color: #fff; }
/* WhatsApp button on red band: keep green but slightly brighter so it
   reads cleanly against the red without competing with Call. */
.alert .btn--whatsapp {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.alert .btn--whatsapp:hover { background: var(--green-2); border-color: var(--green-2); box-shadow: 0 14px 32px rgba(0,0,0,.24); }

@media (max-width: 880px) {
  .alert__inner { grid-template-columns: 8px 1fr; }
  .alert__ctas { grid-column: 1 / -1; padding-left: 28px; }
}

/* ============================ PROCESS ============================ */
.process {
  background: var(--bg);
  padding: 110px 0;
  border-bottom: 1px solid var(--line);
}
.process__inner { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.process__head {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 60px; max-width: 50ch;
}
.process__title {
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  font-weight: 900;
  font-variation-settings: "wdth" 95;
}

.process__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: #fff;
}
.step {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
  transition: background .25s var(--t);
}
.step:last-child { border-right: 0; }
.step:hover { background: var(--bg-2); }
.step__num {
  font-family: var(--ff-num);
  font-weight: 800;
  font-size: 4rem;
  line-height: 1;
  color: var(--cyan);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.step__title {
  font-size: 1.4rem;
  font-weight: 800;
  font-variation-settings: "wdth" 95;
  letter-spacing: -0.02em;
}
.step__body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .process__list { grid-template-columns: repeat(2, 1fr); }
  .step { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .step:nth-child(2n) { border-right: 0; }
  .step:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 600px) {
  .process { padding: 70px 0; }
  .process__list { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: 0; }
}

/* ============================ WORK ============================ */
.work {
  background: var(--bg-2);
  padding: 110px 0;
}
.work__inner { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.work__head {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 50px; max-width: 60ch;
}
.work__title {
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  font-weight: 900;
  font-variation-settings: "wdth" 95;
}
.work__sub { font-size: 1.12rem; color: var(--muted); line-height: 1.55; }

/* Balanced 3×2 grid — every card is the same size so the cluster
   reads as a clean editorial gallery, not a broken masonry. The
   photo slot inside each card is a deliberate placeholder marked
   "PHOTO SLOT" so visitors understand a real image goes here. */
.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.job {
  margin: 0;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  background: var(--ink);
  overflow: hidden;
  position: relative;
  transition: transform .35s var(--t), box-shadow .35s var(--t);
}
.job:hover { transform: translateY(-3px); box-shadow: 0 24px 50px rgba(14,16,20,.18); }
.job__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(ellipse 60% 60% at 30% 25%, rgba(0,180,255,.18), transparent 65%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.025) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, #0e1014 0%, #0f1d2e 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.job__photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.job__photo::before {
  content: attr(data-cap);
  font-family: var(--ff-num);
  font-weight: 900;
  font-size: clamp(2.4rem, 4.4vw, 4.4rem);
  letter-spacing: -0.04em;
  color: rgba(255,255,255,.06);
  text-transform: uppercase;
  text-align: center;
  pointer-events: none;
  padding: 0 16px;
}
.job__placeholder {
  position: absolute;
  bottom: 14px; left: 14px;
  font-family: var(--ff-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  padding: 5px 10px;
  border: 1px dashed rgba(255,255,255,.22);
}
.job figcaption {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: var(--bg);
  border-top: 1px solid var(--line);
  font-family: var(--ff-mono);
  font-size: 0.82rem;
  font-weight: 500;
}
.job__num { color: var(--cyan); letter-spacing: 0.04em; }
.job__cap { letter-spacing: 0.02em; color: var(--ink); }
.work__note {
  margin-top: 22px;
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .work { padding: 70px 0; }
  .work__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .work__grid { grid-template-columns: 1fr; }
}

/* ============================ HONEST ============================ */
.honest {
  background: var(--ink);
  color: #fff;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.honest::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(0,180,255,.10), transparent 60%);
  pointer-events: none;
}
.honest__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.honest__left { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 100px; }
.honest__title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 900;
  font-variation-settings: "wdth" 95;
}
.honest__sub { font-size: 1.05rem; color: var(--muted-3); line-height: 1.55; max-width: 38ch; }

.honest__list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line-2);
}
.honest__list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-2);
}
.honest__bignum {
  font-family: var(--ff-num);
  font-weight: 800;
  font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: .9;
  color: var(--cyan);
  letter-spacing: -0.02em;
}
.honest__list h3 {
  font-size: 1.4rem;
  font-weight: 800;
  font-variation-settings: "wdth" 95;
  margin-bottom: 6px;
  color: #fff;
}
.honest__list p { color: var(--muted-3); font-size: 1rem; line-height: 1.55; }

@media (max-width: 900px) {
  .honest { padding: 70px 0; }
  .honest__inner { grid-template-columns: 1fr; gap: 30px; }
  .honest__left { position: static; }
  .honest__list li { grid-template-columns: 70px 1fr; gap: 16px; padding: 22px 0; }
}

/* ============================ CONTACT ============================ */
.contact {
  background: var(--navy);
  color: #fff;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.contact__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 100% 0%, rgba(0,180,255,.18), transparent 60%);
  pointer-events: none;
}
.contact__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: start;
}
.contact__title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 900;
  font-variation-settings: "wdth" 95;
  margin: 14px 0 18px;
}
.contact__sub { color: var(--muted-3); font-size: 1.08rem; line-height: 1.55; max-width: 40ch; margin-bottom: 32px; }

.contact__channels { display: flex; flex-direction: column; }
.channel {
  display: grid;
  grid-template-columns: 44px 150px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 4px;
  border-top: 1px solid var(--line-3);
  transition: padding .28s var(--t), background .28s var(--t);
}
.channel:last-child { border-bottom: 1px solid var(--line-3); }
.channel:hover { padding-left: 14px; background: rgba(255,255,255,.04); }
.channel__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.18);
  color: var(--cyan);
  transition: border-color .25s var(--t), color .25s var(--t), background .25s var(--t);
}
.channel__lbl {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-3);
}
.channel__val {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.015em;
  color: #fff;
  font-variation-settings: "wdth" 95;
}
.channel__arrow { color: var(--cyan); font-size: 1.3rem; transition: transform .3s var(--t), color .25s var(--t); }
.channel:hover .channel__arrow { transform: translateX(8px); }

/* Per-channel hover tinting so the color language stays consistent
   with the global button system. */
.channel--call:hover .channel__icon { color: var(--red); border-color: var(--red); }
.channel--call:hover .channel__arrow { color: var(--red); }
.channel--call:hover .channel__val   { color: #fff; }
.channel--wa .channel__icon         { color: var(--green); border-color: rgba(37,211,102,.32); }
.channel--wa:hover .channel__icon   { color: #062a14; background: var(--green); border-color: var(--green); }
.channel--wa:hover .channel__arrow  { color: var(--green); }
.channel--text:hover .channel__icon { color: var(--cyan); border-color: var(--cyan); }
.channel--mail:hover .channel__icon { color: #fff; border-color: #fff; }

/* form */
.form {
  background: var(--bg);
  color: var(--ink);
  padding: 32px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: 0 30px 60px rgba(0,0,0,.3);
}
.form__head { margin-bottom: 8px; display: flex; flex-direction: column; gap: 6px; }
.form__num {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--cyan);
  text-transform: uppercase;
}
.form__title {
  font-size: 1.7rem;
  font-weight: 900;
  font-variation-settings: "wdth" 95;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.form__sub { font-size: 0.96rem; color: var(--muted); }

.form__row { display: flex; flex-direction: column; gap: 6px; }
.form__grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__lbl {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.form__inp {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 500;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 0;
  transition: border-color .2s var(--t), box-shadow .2s var(--t);
}
.form__inp:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,180,255,.18); }
.form__inp--ta { resize: vertical; min-height: 110px; }

.form__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.form__submit { flex: 1; justify-content: center; }
.form__note {
  font-family: var(--ff-mono);
  font-size: 0.82rem;
  color: var(--muted);
  min-height: 18px;
}
.form__note.error { color: var(--red); font-weight: 600; }

@media (max-width: 900px) {
  .contact { padding: 70px 0; }
  .contact__inner { grid-template-columns: 1fr; }
  .form__grid2 { grid-template-columns: 1fr; }
  .channel { grid-template-columns: 40px 1fr auto; gap: 14px; padding: 18px 4px; }
  .channel__lbl { display: none; }
  .channel__val { font-size: 1.05rem; }
}

/* ============================ AREA ============================ */
.area {
  background: var(--bg);
  padding: 110px 0;
  border-bottom: 1px solid var(--line);
}
.area__inner { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.area__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 260px);
  gap: 48px;
  align-items: center;
  margin-bottom: 50px;
}
.area__intro { display: flex; flex-direction: column; gap: 14px; max-width: 60ch; }
.area__title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 900;
  font-variation-settings: "wdth" 95;
}
.area__sub { color: var(--muted); font-size: 1.05rem; line-height: 1.55; }

/* New England locator map */
.area__map { display: flex; flex-direction: column; gap: 14px; align-items: center; }
.usmap { width: 100%; height: auto; display: block; overflow: visible; }
.usmap__state {
  fill: #fff;
  stroke: var(--ink);
  stroke-width: 0.7;
  stroke-linejoin: round;
  transition: fill .25s ease;
}
.usmap__ma {
  fill: var(--cyan);
  stroke: var(--ink);
  stroke-width: 1.1;
  stroke-linejoin: round;
  filter: drop-shadow(0 6px 14px rgba(8,170,236,.35));
}
.usmap__sig {
  fill: var(--ink);
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 5px;
  letter-spacing: 0.03em;
  text-anchor: middle;
}
.usmap__sig--sm { font-size: 3.4px; }
.usmap__star {
  fill: var(--ink);
  stroke: #fff;
  stroke-width: 0.45;
  stroke-linejoin: round;
}
.usmap__city {
  fill: var(--ink);
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 5.4px;
  letter-spacing: 0.02em;
  text-anchor: end;
  paint-order: stroke;
  stroke: rgba(255,255,255,0.7);
  stroke-width: 1.1;
  stroke-linejoin: round;
}
.area__map-cap {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.area__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.area__col h4 {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}
.area__col ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.area__col li {
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.005em;
  color: var(--ink);
  position: relative;
}
.area__col li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--cyan);
  margin-right: 8px;
  vertical-align: middle;
}

@media (max-width: 900px) {
  .area { padding: 70px 0; }
  .area__head { grid-template-columns: 1fr; gap: 36px; }
  .area__map { order: -1; max-width: 320px; margin: 0 auto; }
  .area__cols { grid-template-columns: 1fr; gap: 40px; }
  .area__col ul { grid-template-columns: repeat(2, 1fr); }
}

/* ============================ FOOTER ============================ */
.footer {
  background: var(--ink);
  color: #fff;
}
.footer__top { padding: 80px 0 50px; }
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.6fr;
  gap: 44px;
}
.footer__brand { display: flex; flex-direction: column; gap: 18px; }
.footer__logo {
  display: block;
  height: 78px;
  width: 280px;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: screen;     /* black square of Logo4 blends with dark footer */
}
.footer__about {
  color: var(--muted-3);
  font-size: 0.96rem;
  line-height: 1.55;
  max-width: 38ch;
}
.footer__social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer__social a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.15);
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  transition: border-color .2s var(--t), color .2s var(--t);
}
.footer__social a:hover { border-color: var(--cyan); color: var(--cyan); }
.footer__social a svg, .footer__social-soon svg { flex: none; }
.footer__social--wa svg { color: var(--green); }
.footer__social--wa:hover { border-color: var(--green); color: var(--green); }
.footer__social-soon {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  border: 1px dashed rgba(255,255,255,.18);
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-2);
  cursor: not-allowed;
}
.footer__social-soon small {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  padding: 2px 6px;
  background: rgba(0,180,255,.12);
  color: var(--cyan);
}

.footer__col h5 {
  font-family: var(--ff-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col li, .footer__col a {
  color: var(--muted-3);
  font-size: 0.96rem;
  font-weight: 500;
  transition: color .2s var(--t);
}
.footer__col a:hover { color: var(--cyan); }

.footer__col--wide { }
.footer__hoods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px 14px;
}
.footer__hoods span {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  color: var(--muted-3);
  padding: 4px 0;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 28px;
  max-width: var(--container);
  margin: 0 auto;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--ff-mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__col--wide { grid-column: span 2; }
}
@media (max-width: 600px) {
  .footer__top { padding: 60px 0 40px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__col--wide { grid-column: span 1; }
  .footer__hoods { grid-template-columns: repeat(2, 1fr); }
}

/* =========================== STICKY MOBILE =========================== */
.sticky {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 8px;
  gap: 6px;
  box-shadow: 0 -10px 30px rgba(0,0,0,.4);
}
.sticky__btn {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 8px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.sticky__btn--call { background: var(--red); }
.sticky__btn--text { background: var(--ink-2); border: 1px solid rgba(255,255,255,.1); }
.sticky__btn--wa { background: var(--green); color: #062a14; }

.sticky__pulse {
  position: absolute;
  inset: 0;
  border: 2px solid #fff;
  pointer-events: none;
  animation: pulseCall 2.4s ease-out infinite;
  opacity: 0;
}
@keyframes pulseCall {
  0%   { transform: scale(.92); opacity: .6; }
  60%  { transform: scale(1.06); opacity: 0; }
  100% { transform: scale(1.06); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .sticky__pulse { animation: none; }
}
@media (max-width: 720px) {
  .sticky { display: flex; }
  body { padding-bottom: 72px; }
}

/* =========================== ANIMATIONS =========================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--t), transform .8s var(--t); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
