/* ============================================================
   The Plumber Guy — Peoria, AZ
   Deep azure / steel blue + crisp white + warm copper accent
   Sora (display) + Inter (body) · 2026 mobile-first · vanilla
   ============================================================ */

:root {
  --azure-900: #082138;
  --azure-800: #0c2c4c;
  --azure-700: #123c66;
  --azure-600: #1d5b96;
  --azure-500: #2b7fc7;
  --azure-400: #4ba3e6;
  --sky:       #8fd0f7;
  --copper:    #d98841;
  --copper-lt: #f0b27a;
  --copper-dk: #b56a2c;
  --white:     #ffffff;
  --ink:       #0c2440;
  --mist:      #eef5fb;
  --mist-2:    #e2eef8;
  --muted:     #56688a;
  --line:      rgba(12,44,76,.10);
  --good:      #1fb472;

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --shadow: 0 18px 50px -22px rgba(12,44,76,.42);
  --shadow-lg: 0 30px 80px -28px rgba(12,44,76,.52);

  --ease: cubic-bezier(.22,1,.36,1);
  --max: 1200px;
  --header-h: 78px;

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: "Sora", var(--font);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }
.section { padding-block: clamp(64px, 11vw, 132px); }

h1, h2, h3, h4, .logo-text, .stat-num, .section-title, .hero-title { font-family: var(--display); }

/* skip link */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--copper); color: var(--azure-900); font-weight: 700;
  padding: 10px 16px; border-radius: 10px; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

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

/* ============ BUTTONS ============ */
.btn {
  --shine: -150%;
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; min-height: 48px; padding: 0 22px; border: 0; cursor: pointer;
  font: inherit; font-weight: 700; font-size: 1rem; letter-spacing: .1px;
  border-radius: 999px; overflow: hidden; isolation: isolate;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  text-align: center;
}
.btn:active { transform: scale(.97); }
.btn-lg { min-height: 54px; padding: 0 28px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-primary { background: linear-gradient(135deg, var(--copper-lt), var(--copper-dk)); color: var(--azure-900); box-shadow: 0 14px 34px -14px rgba(217,136,65,.85); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 46px -16px rgba(217,136,65,.95); }

.btn-secondary { background: linear-gradient(135deg, var(--azure-400), var(--azure-600)); color: #fff; box-shadow: 0 14px 34px -14px rgba(43,127,199,.8); }
.btn-secondary:hover { transform: translateY(-3px); box-shadow: 0 22px 46px -16px rgba(43,127,199,.9); }

.btn-ghost { background: rgba(255,255,255,.08); color: var(--white); border: 1.5px solid rgba(255,255,255,.34); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-3px); }

.btn-call { background: linear-gradient(135deg, var(--copper-lt), var(--copper-dk)); color: var(--azure-900); }
.btn-call:hover { transform: translateY(-2px); }

.btn-shine {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
  transform: translateX(var(--shine)); transition: transform .7s var(--ease);
}
.btn:hover .btn-shine { --shine: 150%; }

.btn-ping {
  width: 9px; height: 9px; border-radius: 50%; background: var(--good); position: relative;
  box-shadow: 0 0 0 0 rgba(31,180,114,.7); animation: ping 2.2s infinite var(--ease);
}
@keyframes ping { 0%{box-shadow:0 0 0 0 rgba(31,180,114,.7)} 70%{box-shadow:0 0 0 9px rgba(31,180,114,0)} 100%{box-shadow:0 0 0 0 rgba(31,180,114,0)} }

/* ============ OPENING ANIMATION OVERLAY ============ */
.intro {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
  background: radial-gradient(120% 90% at 50% 20%, var(--azure-700) 0%, var(--azure-800) 45%, var(--azure-900) 100%);
  transition: opacity .55s var(--ease), visibility .55s var(--ease);
}
.intro[hidden] { display: none; }
.intro.is-hiding { opacity: 0; visibility: hidden; }
.intro-stage { width: min(300px, 76vw); text-align: center; }
.intro-svg { width: 100%; height: auto; }
.intro-word {
  margin-top: 18px; font-family: var(--display); font-weight: 700;
  font-size: 1.05rem; letter-spacing: .02em; color: #fff;
  opacity: 0; animation: introWord .5s var(--ease) 1.7s forwards;
}
.intro-word b { color: var(--copper-lt); }
@keyframes introWord { to { opacity: 1; } }

/* the drip falling */
.intro-drop { transform-origin: 150px 92px; animation: introDrop 1.7s var(--ease) forwards; }
@keyframes introDrop {
  0%   { transform: translateY(0); opacity: 0; }
  10%  { opacity: 1; }
  55%  { transform: translateY(70px); opacity: 1; }
  62%  { transform: translateY(78px); opacity: 0; }
  100% { transform: translateY(78px); opacity: 0; }
}
/* the joint tightening / sealing */
.intro-seal { transform-origin: 150px 78px; opacity: 0; animation: introSeal .6s var(--ease) 1.1s forwards; }
@keyframes introSeal { 0%{opacity:0; transform:scale(.6)} 60%{opacity:1; transform:scale(1.12)} 100%{opacity:1; transform:scale(1)} }
/* the check */
.intro-check { stroke-dasharray: 40; stroke-dashoffset: 40; animation: introCheck .55s var(--ease) 1.55s forwards; }
@keyframes introCheck { to { stroke-dashoffset: 0; } }
.intro-ring { transform-origin: 150px 150px; opacity: 0; animation: introRing .6s var(--ease) 1.5s forwards; }
@keyframes introRing { 0%{opacity:0; transform:scale(.5)} 50%{opacity:1} 100%{opacity:1; transform:scale(1)} }

.intro-skip {
  position: absolute; bottom: 26px; right: 26px;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.28);
  font: inherit; font-weight: 700; font-size: .9rem; cursor: pointer;
  padding: 10px 18px; border-radius: 999px; backdrop-filter: blur(6px);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.intro-skip:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }

/* ============ HEADER ============ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: height .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}
.site-header.scrolled {
  height: 64px; background: rgba(12,44,76,.82);
  backdrop-filter: saturate(160%) blur(16px); -webkit-backdrop-filter: saturate(160%) blur(16px);
  box-shadow: 0 8px 30px -16px rgba(0,0,0,.55); border-bottom: 1px solid rgba(255,255,255,.07);
}
.header-inner { display: flex; align-items: center; gap: 18px; width: 100%; }

.logo { display: inline-flex; align-items: center; gap: 11px; color: var(--white); }
.logo-mark { display: grid; place-items: center; filter: drop-shadow(0 6px 14px rgba(75,163,230,.5)); transition: transform .4s var(--ease); }
.logo:hover .logo-mark { transform: rotate(-8deg) scale(1.08); }
.logo-text { font-weight: 800; font-size: 1.2rem; letter-spacing: -.02em; line-height: 1; }
.logo-text-sub { color: var(--copper-lt); }

.main-nav { display: none; margin-left: auto; gap: 24px; align-items: center; }
.main-nav a { position: relative; color: rgba(255,255,255,.84); font-weight: 600; font-size: .95rem; padding: 6px 0; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--copper-lt); transition: width .3s var(--ease); }
.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { width: 100%; }
.main-nav .nav-portal { color: var(--sky); font-weight: 700; }

.header-call { margin-left: auto; font-size: .88rem; padding: 0 16px; min-height: 42px; }

@media (min-width: 960px) {
  .main-nav { display: flex; }
  .header-call { margin-left: 0; font-size: .95rem; padding: 0 20px; min-height: 46px; }
}

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: calc(var(--header-h) + 24px); padding-bottom: 64px;
  background: radial-gradient(125% 95% at 78% -12%, var(--azure-600) 0%, var(--azure-700) 38%, var(--azure-900) 100%);
  color: var(--white); overflow: hidden;
}
.hero-fx { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-fx svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-wave { animation: heroWave 14s ease-in-out infinite alternate; transform-origin: center; }
.hero-wave-2 { animation-duration: 19s; animation-direction: alternate-reverse; }
@keyframes heroWave { 0%{transform:translate3d(0,0,0)} 100%{transform:translate3d(-3%,2%,0)} }
.hero-mesh {
  position: absolute; inset: -20%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(40% 40% at 16% 24%, rgba(75,163,230,.34), transparent 70%),
    radial-gradient(45% 45% at 84% 68%, rgba(217,136,65,.24), transparent 70%);
  filter: blur(12px); animation: meshDrift 18s ease-in-out infinite alternate;
}
@keyframes meshDrift { 0%{transform:translate3d(0,0,0) scale(1)} 100%{transform:translate3d(2%,-2%,0) scale(1.08)} }

/* floating bubbles, pure CSS */
.hero-bubbles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-bubbles span {
  position: absolute; bottom: -40px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.55), rgba(143,208,247,.12));
  animation: bubbleRise linear infinite;
}
@keyframes bubbleRise {
  0% { transform: translateY(0) scale(.7); opacity: 0; }
  12% { opacity: .8; }
  90% { opacity: .5; }
  100% { transform: translateY(-105svh) scale(1); opacity: 0; }
}

.hero-inner { position: relative; z-index: 2; max-width: 780px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: .92rem;
  color: rgba(255,255,255,.88); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  padding: 8px 16px; border-radius: 999px; backdrop-filter: blur(6px); margin-bottom: 22px;
}
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--good); box-shadow: 0 0 0 0 rgba(31,180,114,.7); animation: ping 2.2s infinite var(--ease); flex: none; }

.hero-title {
  font-size: clamp(2.8rem, 10vw, 6rem); line-height: 1; font-weight: 800;
  letter-spacing: -.03em; margin-bottom: 22px;
}
.grad-word {
  background: linear-gradient(120deg, var(--sky), var(--azure-400) 50%, var(--copper-lt));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: clamp(1.05rem, 2.4vw, 1.3rem); color: rgba(255,255,255,.84); max-width: 56ch; margin-bottom: 32px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-cta .btn { flex: 1 1 auto; min-width: 220px; }
@media (max-width:480px){ .hero-cta .btn{ flex:1 1 100%; } }

.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 14px 28px; }
.hero-trust li { display: inline-flex; align-items: center; gap: 9px; font-size: .96rem; color: rgba(255,255,255,.78); }
.hero-trust svg { flex: none; color: var(--sky); }

/* ============ MARQUEE ============ */
.marquee { background: var(--copper); color: var(--azure-900); overflow: hidden; border-block: 2px solid var(--copper-dk); }
.marquee-track { display: inline-flex; align-items: center; gap: 22px; white-space: nowrap; padding: 13px 0; font-family: var(--display); font-weight: 700; font-size: 1.02rem; text-transform: uppercase; letter-spacing: .04em; animation: marquee 28s linear infinite; will-change: transform; }
.marquee-track .dot { opacity: .5; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ============ STATS ============ */
.stats { background: var(--azure-900); color: var(--white); padding-block: clamp(48px, 8vw, 84px); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 5vw, 48px); }
@media (min-width: 760px){ .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat-num { display: block; font-size: clamp(2.4rem, 7vw, 3.6rem); font-weight: 800; letter-spacing: -.02em; background: linear-gradient(120deg, #fff, var(--sky)); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.stat-label { display: block; margin-top: 10px; color: rgba(255,255,255,.68); font-size: .95rem; font-weight: 500; }

/* ============ SECTION HEADS ============ */
.section-head { max-width: 740px; margin-bottom: clamp(34px, 6vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.kicker { display: inline-block; font-weight: 800; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--azure-500); margin-bottom: 12px; }
.section-title { font-size: clamp(2rem, 5.5vw, 3.3rem); line-height: 1.06; font-weight: 800; letter-spacing: -.025em; color: var(--ink); }
.section-lede { margin-top: 16px; font-size: clamp(1.02rem, 2vw, 1.18rem); color: var(--muted); max-width: 62ch; }
.section-head.center .section-lede { margin-inline: auto; }

/* ============ SERVICES ============ */
.services { background: var(--mist); }
.card-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 600px){ .card-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 980px){ .card-grid { grid-template-columns: repeat(3,1fr); } }

.svc-card {
  position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 26px; box-shadow: var(--shadow);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  transform-style: preserve-3d; will-change: transform;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(43,127,199,.4); }
.svc-icon { display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: 18px; color: var(--azure-600); background: linear-gradient(160deg, #e3f1fc, #cfe6f8); margin-bottom: 18px; box-shadow: inset 0 0 0 1px rgba(43,127,199,.22); }
.svc-card h3 { font-size: 1.3rem; font-weight: 800; letter-spacing: -.01em; margin-bottom: 8px; }
.svc-card p { color: var(--muted); font-size: 1rem; }
.svc-tag { display: inline-block; margin-top: 14px; font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--copper-dk); background: rgba(217,136,65,.14); padding: 5px 11px; border-radius: 999px; }
.svc-card-emergency { background: linear-gradient(160deg, var(--azure-700), var(--azure-800)); color: var(--white); border-color: rgba(255,255,255,.1); }
.svc-card-emergency p { color: rgba(255,255,255,.8); }
.svc-card-emergency .svc-icon { background: rgba(217,136,65,.2); color: var(--copper-lt); }
.svc-call { display: inline-block; margin-top: 16px; font-weight: 800; color: var(--copper-lt); }
.svc-call:hover { color: #fff; }

/* ============ WHY ============ */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 820px){ .why-grid { grid-template-columns: repeat(3,1fr); } }
.why-card { position: relative; padding: 36px 30px 30px; border-radius: var(--r-lg); background: var(--mist); border: 1px solid var(--line); overflow: hidden; transition: transform .35s var(--ease); }
.why-card:hover { transform: translateY(-6px); }
.why-num { font-family: var(--display); font-size: 3rem; font-weight: 800; line-height: 1; letter-spacing: -.04em; color: transparent; -webkit-text-stroke: 1.5px var(--azure-500); margin-bottom: 14px; opacity: .85; }
.why-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.why-card p { color: var(--muted); }

/* ============ SHOWCASE (CSS/SVG cutaway) ============ */
.showcase { background: var(--white); }
.showcase-inner { display: grid; grid-template-columns: 1fr; gap: clamp(30px, 6vw, 60px); align-items: center; }
@media (min-width: 900px){ .showcase-inner { grid-template-columns: 1.05fr .95fr; } }
.showcase-art { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: linear-gradient(165deg, var(--azure-700), var(--azure-900)); }
.showcase-art svg { width: 100%; height: auto; }
.flow { stroke-dasharray: 7 9; animation: flowMove 2.6s linear infinite; }
@keyframes flowMove { to { stroke-dashoffset: -32; } }
.showcase-copy p { color: var(--muted); font-size: 1.08rem; margin-top: 16px; }
.showcase-steps { list-style: none; margin-top: 26px; display: grid; gap: 14px; }
.showcase-steps li { display: flex; gap: 14px; align-items: flex-start; }
.showcase-steps .num { flex: none; display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(160deg, var(--azure-400), var(--azure-600)); color: #fff; font-family: var(--display); font-weight: 800; box-shadow: var(--shadow); }
.showcase-steps h3 { font-size: 1.06rem; font-weight: 800; }
.showcase-steps p { margin-top: 2px; font-size: .96rem; }

/* ============ ABOUT ============ */
.about { background: var(--mist); }
.about-inner { display: grid; grid-template-columns: 1fr; gap: clamp(30px, 6vw, 64px); align-items: center; }
@media (min-width: 880px){ .about-inner { grid-template-columns: .85fr 1.15fr; } }
.about-art { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.about-copy p { color: var(--muted); font-size: 1.08rem; margin-top: 16px; }
.about-copy .btn { margin-top: 26px; }

/* ============ TESTIMONIALS ============ */
.reviews { background: var(--azure-800); color: var(--white); }
.reviews .section-title { color: #fff; }
.reviews .section-lede { color: rgba(255,255,255,.74); }
.reviews .kicker { color: var(--sky); }
.review-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 820px){ .review-grid { grid-template-columns: repeat(3,1fr); } }
.review-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg); padding: 28px 26px; transition: transform .35s var(--ease), background .35s var(--ease); }
.review-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.09); }
.stars { color: var(--copper-lt); font-size: 1.2rem; letter-spacing: 3px; margin-bottom: 12px; }
.review-card p { color: rgba(255,255,255,.88); font-size: 1.04rem; }
.review-who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.review-avatar { flex: none; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(160deg, var(--azure-400), var(--azure-600)); color: #fff; font-family: var(--display); font-weight: 800; font-size: 1rem; }
.review-name { font-weight: 800; font-size: .98rem; }
.review-loc { font-size: .84rem; color: rgba(255,255,255,.6); }
.review-note { margin-top: 24px; font-size: .9rem; color: rgba(255,255,255,.52); }

/* ============ SERVICE AREA ============ */
.area { background: var(--mist); }
.area-inner { display: grid; grid-template-columns: 1fr; gap: clamp(30px, 6vw, 60px); align-items: center; }
@media (min-width: 880px){ .area-inner { grid-template-columns: 1.1fr .9fr; } }
.area-copy p { color: var(--muted); font-size: 1.08rem; margin-top: 16px; }
.area-list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.area-list li { background: var(--white); border: 1px solid var(--line); padding: 8px 16px; border-radius: 999px; font-weight: 700; font-size: .95rem; box-shadow: var(--shadow); }
.area-art { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }

/* ============ FAQ ============ */
.faq { background: var(--white); }
.faq-list { max-width: 840px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r-md); background: var(--mist); margin-bottom: 12px; overflow: hidden; transition: border-color .3s var(--ease), box-shadow .3s var(--ease); }
.faq-item[open] { border-color: rgba(43,127,199,.45); box-shadow: var(--shadow); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; list-style: none; padding: 20px 22px; font-weight: 700; font-size: 1.08rem; font-family: var(--display); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; width: 20px; height: 20px; flex: none; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; inset: 0; margin: auto; background: var(--azure-600); border-radius: 2px; transition: transform .3s var(--ease); }
.faq-plus::before { width: 20px; height: 2.5px; }
.faq-plus::after { width: 2.5px; height: 20px; }
.faq-item[open] .faq-plus::after { transform: rotate(90deg); opacity: 0; }
.faq-item p { padding: 0 22px 22px; color: var(--muted); }

/* ============ CTA BAND ============ */
.cta-band { background: linear-gradient(135deg, var(--azure-600), var(--azure-800)); color: #fff; }
.cta-band .container { display: grid; gap: 20px; place-items: center; text-align: center; }
.cta-band h2 { font-size: clamp(1.9rem, 5vw, 3rem); font-weight: 800; letter-spacing: -.025em; }
.cta-band p { color: rgba(255,255,255,.82); font-size: clamp(1.02rem, 2vw, 1.18rem); max-width: 54ch; }
.cta-band .hero-cta { justify-content: center; }

/* ============ CONTACT ============ */
.contact { background: linear-gradient(160deg, var(--azure-700), var(--azure-900)); color: var(--white); }
.contact .section-title { color: #fff; }
.contact .kicker { color: var(--sky); }
.contact-inner { display: grid; grid-template-columns: 1fr; gap: clamp(30px, 6vw, 56px); align-items: start; }
@media (min-width: 880px){ .contact-inner { grid-template-columns: 1fr 1fr; } }
.contact-copy p { color: rgba(255,255,255,.8); font-size: 1.08rem; margin-top: 16px; }
.contact-phone { display: inline-flex; align-items: center; gap: 12px; margin-top: 26px; font-family: var(--display); font-size: clamp(1.6rem, 5vw, 2.3rem); font-weight: 800; color: var(--sky); letter-spacing: -.02em; }
.contact-phone:hover { color: #fff; }
.contact-meta { list-style: none; margin-top: 26px; display: grid; gap: 8px; color: rgba(255,255,255,.74); }
.contact-meta strong { color: #fff; }

.contact-form { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-lg); padding: clamp(24px, 4vw, 36px); backdrop-filter: blur(8px); }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: 7px; color: rgba(255,255,255,.86); }
.field input, .field textarea { width: 100%; font: inherit; color: #fff; background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.16); border-radius: var(--r-sm); padding: 13px 15px; min-height: 48px; transition: border-color .25s var(--ease), background .25s var(--ease); }
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.42); }
.field input:focus, .field textarea:focus { border-color: var(--sky); background: rgba(255,255,255,.1); outline: none; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #ff8d8d; }
.form-status { margin-top: 14px; font-weight: 700; min-height: 1.2em; }
.form-status.ok { color: var(--good); }
.form-status.err { color: #ff8d8d; }
.form-fineprint { margin-top: 14px; font-size: .92rem; color: rgba(255,255,255,.62); }
.form-fineprint a { color: var(--sky); font-weight: 700; }

/* ============ FOOTER ============ */
.site-footer { background: var(--azure-900); color: rgba(255,255,255,.72); padding-top: clamp(50px, 8vw, 80px); }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 24px; padding-bottom: 40px; }
@media (min-width: 820px){ .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand .logo-text { color: #fff; font-size: 1.32rem; }
.footer-brand p { margin-top: 12px; max-width: 34ch; font-size: .96rem; }
.footer-col h4 { color: #fff; font-size: .92rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.footer-col a { display: block; padding: 5px 0; font-size: .96rem; transition: color .2s; }
.footer-col a:hover { color: var(--sky); }
.footer-call { font-size: 1.2rem !important; font-weight: 800; color: var(--sky) !important; font-family: var(--display); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,.08); padding-block: 22px; font-size: .88rem; }
.footer-bottom a { color: var(--sky); font-weight: 600; }
.footer-top-link { font-weight: 700; }
.footer-top-link:hover { color: var(--sky); }

/* ============ STICKY MOBILE BAR ============ */
.action-bar {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90;
  display: flex; gap: 10px;
  transform: translateY(140%); transition: transform .45s var(--ease);
}
.action-bar.show { transform: translateY(0); }
.action-bar .btn { flex: 1; min-height: 54px; box-shadow: 0 16px 40px -14px rgba(12,44,76,.7); }
@media (min-width: 960px){ .action-bar { display: none; } }
@media (max-width: 959px){ .site-footer { padding-bottom: 90px; } }

/* ============ SCROLL REVEAL ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-mesh, .hero-wave, .hero-bubbles, .marquee-track, .pulse-dot, .btn-ping, .flow, .intro-drop, .intro-seal, .intro-check, .intro-ring, .intro-word { animation: none !important; }
  .intro-word { opacity: 1; }
  .action-bar { transform: translateY(0); }
}
