/* ============================================================
   FixFlow — on-demand multi-trade handyman service
   Gen-Z, app-style booking. Bold, punchy, playful.
   ============================================================ */

:root {
  /* brand palette */
  --blue:      #2f4bff;   /* electric blue */
  --blue-deep: #1a2bb8;
  --lime:      #c6ff3d;   /* zappy lime */
  --coral:     #ff5c6c;   /* hot coral */
  --coral-deep:#e8384b;
  --grape:     #7a3cff;   /* punchy purple */
  --sun:       #ffce3a;   /* sticker yellow */

  --ink:       #11132b;   /* near-black navy */
  --ink-soft:  #4a4d72;
  --paper:     #fbfaff;
  --paper-2:   #f1efff;
  --card:      #ffffff;
  --line:      #e7e3ff;

  --grad-hot:  linear-gradient(120deg, var(--blue) 0%, var(--grape) 55%, var(--coral) 110%);
  --grad-cool: linear-gradient(135deg, #2f4bff 0%, #5a78ff 100%);
  --grad-lime: linear-gradient(120deg, var(--lime) 0%, #7bff8a 100%);
  --grad-sun:  linear-gradient(120deg, var(--sun) 0%, var(--coral) 120%);

  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 32px;
  --r-pill: 999px;

  --shadow-sm: 0 6px 18px rgba(17,19,43,.08);
  --shadow-md: 0 18px 40px rgba(17,19,43,.12);
  --shadow-pop:0 22px 50px rgba(47,75,255,.28);
  --shadow-lime:0 16px 38px rgba(143,219,42,.40);

  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --ease-out:    cubic-bezier(.16, 1, .3, 1);

  --wrap: 1200px;
  --font-display: "Baloo 2", system-ui, sans-serif;
  --font-body: "Mulish", system-ui, sans-serif;
}

/* ---------- reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.04; letter-spacing: -.02em; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.02rem; padding: .95rem 1.8rem;
  border-radius: var(--r-pill); transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease-out), background .3s;
  white-space: nowrap;
}
.btn .arr { transition: transform .35s var(--ease-spring); }
.btn:hover .arr { transform: translateX(5px); }
.btn-solid { background: var(--ink); color: #fff; box-shadow: var(--shadow-sm); }
.btn-solid:hover { transform: translateY(-3px) rotate(-1deg); box-shadow: var(--shadow-pop); }
.btn-blue { background: var(--grad-cool); color: #fff; box-shadow: var(--shadow-pop); }
.btn-blue:hover { transform: translateY(-3px) scale(1.02); }
.btn-lime { background: var(--lime); color: var(--ink); box-shadow: var(--shadow-lime); }
.btn-lime:hover { transform: translateY(-3px) rotate(1.5deg); }
.btn-coral { background: var(--grad-sun); color: var(--ink); box-shadow: 0 16px 36px rgba(255,92,108,.35); }
.btn-coral:hover { transform: translateY(-3px) scale(1.02); }
.btn-ghost { background: #fff; color: var(--ink); border: 2px solid var(--ink); }
.btn-ghost:hover { transform: translateY(-3px); background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); box-shadow: var(--shadow-md); }
.btn-light:hover { transform: translateY(-3px) rotate(-1deg); }
.btn-big { padding: 1.15rem 2.3rem; font-size: 1.15rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,250,255,.82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 2px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.stuck { border-color: var(--line); box-shadow: 0 6px 24px rgba(17,19,43,.07); }
.nav { display: flex; align-items: center; gap: 1.5rem; padding: .85rem 0; }
.brand { display: flex; align-items: center; gap: .55rem; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; letter-spacing: -.03em; }
.brand-badge {
  width: 38px; height: 38px; border-radius: 12px;
  background: var(--grad-cool); display: grid; place-items: center;
  box-shadow: var(--shadow-pop); transform: rotate(-6deg);
  transition: transform .4s var(--ease-spring);
}
.brand:hover .brand-badge { transform: rotate(6deg) scale(1.08); }
.brand-badge svg { width: 22px; height: 22px; stroke: var(--lime); }
.brand-mark { color: var(--ink); }
.brand-mark .fx { color: var(--blue); }
.nav-links { list-style: none; display: flex; gap: .35rem; margin-left: auto; }
.nav-links a {
  display: block; padding: .5rem .95rem; border-radius: var(--r-pill);
  font-weight: 800; font-family: var(--font-display); color: var(--ink-soft);
  transition: color .25s, background .25s, transform .25s var(--ease-spring);
}
.nav-links a:hover { color: var(--ink); background: var(--paper-2); transform: translateY(-1px); }
.nav-links a.active { color: var(--blue); background: var(--paper-2); }
.nav-cta { display: flex; align-items: center; gap: .9rem; }
.nav-phone { display: inline-flex; align-items: center; gap: .45rem; font-weight: 800; font-family: var(--font-display); color: var(--ink); font-size: .95rem; }
.nav-phone svg { width: 17px; height: 17px; stroke: var(--blue); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; border-radius: 12px; background: var(--ink); }
.nav-toggle span { width: 22px; height: 2.6px; background: var(--lime); border-radius: 3px; transition: transform .3s var(--ease-spring), opacity .2s; }

/* ---------- hero ---------- */
.hero { position: relative; padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 6rem); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(60% 60% at 12% 8%, rgba(122,60,255,.16), transparent 60%),
    radial-gradient(55% 55% at 92% 18%, rgba(255,92,108,.16), transparent 60%),
    radial-gradient(50% 50% at 70% 95%, rgba(198,255,61,.20), transparent 60%);
}
.blob { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .55; z-index: -1; }
.blob-1 { width: 230px; height: 230px; background: var(--grad-cool); top: -40px; left: -60px; animation: float 9s ease-in-out infinite; }
.blob-2 { width: 180px; height: 180px; background: var(--grad-sun); bottom: 40px; right: -40px; animation: float 11s ease-in-out infinite reverse; }
@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-26px) } }

.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 800; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--blue); background: #fff; padding: .42rem 1rem;
  border-radius: var(--r-pill); box-shadow: var(--shadow-sm); border: 2px solid var(--line);
}
.eyebrow.on-dark { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.25); box-shadow: none; }
.hero h1 { font-size: clamp(2.6rem, 6.4vw, 4.6rem); margin: 1.1rem 0; }
.hero h1 .hl { position: relative; color: var(--blue); white-space: nowrap; }
.hero h1 .hl::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: .06em; height: .42em; z-index: -1;
  background: var(--lime); border-radius: var(--r-pill); transform: rotate(-1.2deg);
}
.hero-tag { font-size: 1.18rem; color: var(--ink-soft); max-width: 30rem; margin-bottom: 1.7rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.hero-actions.center { justify-content: center; }
.hero-trust { display: flex; align-items: center; gap: .8rem; margin-top: 1.7rem; font-size: .96rem; color: var(--ink-soft); }
.hero-trust b { color: var(--ink); }
.avatars { display: flex; }
.avatars span {
  width: 38px; height: 38px; border-radius: 50%; margin-left: -10px;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 800;
  color: #fff; border: 3px solid var(--paper); font-size: .9rem;
}
.avatars span:first-child { margin-left: 0; }
.avatars span:nth-child(1) { background: var(--blue); }
.avatars span:nth-child(2) { background: var(--coral); }
.avatars span:nth-child(3) { background: var(--grape); }
.avatars span:nth-child(4) { background: var(--ink); }

/* hero media */
.hero-media { position: relative; }
.frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 6px solid #fff; box-shadow: var(--shadow-md); background: var(--paper-2);
}
.frame img { width: 100%; aspect-ratio: 16/11; object-fit: cover; }
.frame-tilt { transform: rotate(-2deg); transition: transform .5s var(--ease-spring); }
.frame-tilt:hover { transform: rotate(0deg) scale(1.01); }

.sticker {
  position: absolute; font-family: var(--font-display); font-weight: 800;
  background: #fff; border-radius: var(--r-md); box-shadow: var(--shadow-md);
  border: 3px solid var(--ink); z-index: 3;
}
.sticker-book { top: -18px; left: -22px; padding: .7rem 1rem; background: var(--lime); display: flex; align-items: center; gap: .5rem; }
.sticker-book svg { width: 20px; height: 20px; stroke: var(--ink); }
.sticker-rating { bottom: -22px; right: -14px; padding: .8rem 1.1rem; display: flex; flex-direction: column; gap: .1rem; background: var(--coral); color: #fff; border-color: var(--ink); }
.sticker-rating b { font-size: 1.4rem; line-height: 1; }
.sticker-rating .stars { font-size: .8rem; color: var(--sun); }
.sticker-eta { top: 38%; right: -28px; padding: .65rem .95rem; background: var(--blue); color: #fff; display: flex; align-items: center; gap: .5rem; }
.sticker-eta b { font-size: 1.1rem; }
.float-a { animation: bob 4.5s var(--ease-out) infinite; }
.float-b { animation: bob 5.5s var(--ease-out) infinite reverse; }
.float-c { animation: bob 6.2s var(--ease-out) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0) rotate(-2deg) } 50% { transform: translateY(-12px) rotate(2deg) } }
.spark { position: absolute; color: var(--grape); font-size: 1.6rem; z-index: 2; animation: twinkle 3s ease-in-out infinite; }
.spark-1 { top: 4%; right: 14%; }
.spark-2 { bottom: 8%; left: -4%; color: var(--coral); }
.spark-3 { top: -8%; left: 30%; color: var(--blue); }
@keyframes twinkle { 0%,100% { opacity: .4; transform: scale(.8) } 50% { opacity: 1; transform: scale(1.2) } }

/* ---------- marquee ---------- */
.marquee { background: var(--ink); color: #fff; padding: .95rem 0; overflow: hidden; white-space: nowrap; border-top: 3px solid var(--lime); border-bottom: 3px solid var(--lime); }
.marquee-track { display: inline-flex; gap: 2.2rem; animation: scroll 26s linear infinite; will-change: transform; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; display: inline-flex; align-items: center; gap: 2.2rem; }
.marquee-track .star { color: var(--lime); }
@keyframes scroll { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ---------- sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; position: relative; }
.section.tint { background: var(--paper-2); }
.section.ink { background: var(--ink); color: #fff; }
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; margin-bottom: 3rem; flex-wrap: wrap; }
.sec-head.center { flex-direction: column; align-items: center; text-align: center; }
.sec-head h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); margin-top: .8rem; }
.sec-head p { color: var(--ink-soft); max-width: 30rem; font-size: 1.08rem; }
.sec-head.center p { text-align: center; }
.ink .sec-head p, .ink .sec-head h2 { color: #fff; }

/* ---------- stats ---------- */
.stats { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
  background: var(--grad-cool); border-radius: var(--r-lg); padding: 2.4rem 1.5rem;
  box-shadow: var(--shadow-pop); position: relative; overflow: hidden;
}
.stats-inner::after { content: ""; position: absolute; width: 200px; height: 200px; background: var(--lime); border-radius: 50%; filter: blur(50px); opacity: .35; top: -50px; right: -30px; }
.stat { text-align: center; color: #fff; position: relative; }
.stat .n { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4.5vw, 3.1rem); line-height: 1; }
.stat .n .suf { color: var(--lime); }
.stat .l { font-size: .95rem; opacity: .9; margin-top: .4rem; font-weight: 700; }

/* ---------- services / cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.svc-card {
  background: var(--card); border-radius: var(--r-lg); padding: 1.8rem;
  border: 2px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-spring), box-shadow .4s var(--ease-out), border-color .3s;
  position: relative; overflow: hidden;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.svc-ico {
  width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center;
  margin-bottom: 1.1rem; transition: transform .4s var(--ease-spring);
}
.svc-card:hover .svc-ico { transform: rotate(-8deg) scale(1.08); }
.svc-ico svg { width: 28px; height: 28px; stroke-width: 2.2; }
.ic-blue { background: rgba(47,75,255,.12); } .ic-blue svg { stroke: var(--blue); }
.ic-coral { background: rgba(255,92,108,.14); } .ic-coral svg { stroke: var(--coral-deep); }
.ic-grape { background: rgba(122,60,255,.13); } .ic-grape svg { stroke: var(--grape); }
.ic-lime { background: rgba(143,219,42,.20); } .ic-lime svg { stroke: #5a8b00; }
.ic-sun { background: rgba(255,206,58,.22); } .ic-sun svg { stroke: #b88600; }
.ic-ink { background: rgba(17,19,43,.08); } .ic-ink svg { stroke: var(--ink); }
.svc-card h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.svc-card p { color: var(--ink-soft); font-size: .98rem; margin-bottom: 1rem; }
.svc-from { display: inline-flex; align-items: baseline; gap: .35rem; font-family: var(--font-display); font-weight: 800; color: var(--ink); }
.svc-from small { font-size: .72rem; color: var(--ink-soft); font-weight: 700; }
.svc-from b { font-size: 1.5rem; color: var(--blue); }
.svc-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.tag { font-family: var(--font-display); font-weight: 800; font-size: .76rem; padding: .25rem .7rem; border-radius: var(--r-pill); background: var(--paper-2); color: var(--ink-soft); }

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.step {
  background: var(--card); border-radius: var(--r-lg); padding: 1.8rem;
  border: 2px solid var(--line); position: relative; transition: transform .4s var(--ease-spring), box-shadow .3s;
}
.step:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: var(--shadow-md); }
.step-num {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--ink); background: var(--lime);
  margin-bottom: 1rem; transform: rotate(-5deg);
}
.step:nth-child(2) .step-num { background: var(--coral); color: #fff; }
.step:nth-child(3) .step-num { background: var(--grape); color: #fff; }
.step:nth-child(4) .step-num { background: var(--blue); color: #fff; }
.step h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.step p { color: var(--ink-soft); font-size: .95rem; }

/* ---------- split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split.flip .split-media { order: 2; }
.split-media { position: relative; }
.split-copy .eyebrow { margin-bottom: 1rem; }
.split-copy h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 1.1rem; }
.lead { font-size: 1.15rem; color: var(--ink-soft); margin-bottom: 1.5rem; }
.check-list { list-style: none; display: grid; gap: .85rem; margin-bottom: 1.8rem; }
.check-list li { display: flex; gap: .8rem; align-items: flex-start; font-weight: 600; color: var(--ink); }
.tick { flex: none; width: 28px; height: 28px; border-radius: 9px; display: grid; place-items: center; background: var(--lime); color: var(--ink); font-weight: 900; font-family: var(--font-display); transform: rotate(-4deg); }

/* ---------- app phone mock ---------- */
.app-band { background: var(--grad-hot); color: #fff; border-radius: clamp(24px, 4vw, 44px); margin: 0 auto; padding: clamp(2.5rem,5vw,4rem); position: relative; overflow: hidden; }
.app-band::after { content: ""; position: absolute; width: 300px; height: 300px; background: var(--lime); opacity: .25; filter: blur(70px); border-radius: 50%; bottom: -100px; left: -60px; }
.app-grid { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(2rem,4vw,3.5rem); align-items: center; position: relative; z-index: 1; }
.app-grid h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); color: #fff; margin-bottom: 1.1rem; }
.app-grid .lead { color: rgba(255,255,255,.92); }
.phone-shell { position: relative; max-width: 280px; margin: 0 auto; }
.phone-shell .frame { border: 8px solid var(--ink); border-radius: 38px; transform: rotate(3deg); transition: transform .5s var(--ease-spring); }
.phone-shell:hover .frame { transform: rotate(0); }
.phone-shell .frame img { aspect-ratio: 9/16; }
.phone-tag { position: absolute; top: -16px; left: -26px; background: var(--lime); color: var(--ink); padding: .6rem .9rem; border-radius: var(--r-md); font-family: var(--font-display); font-weight: 800; border: 3px solid var(--ink); box-shadow: var(--shadow-md); animation: bob 5s var(--ease-out) infinite; }

/* ---------- testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.qcard { background: var(--card); border-radius: var(--r-lg); padding: 1.8rem; border: 2px solid var(--line); transition: transform .4s var(--ease-spring); }
.qcard:hover { transform: translateY(-6px) rotate(1deg); }
.ink .qcard { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
.qcard .stars { color: var(--sun); font-size: 1.05rem; margin-bottom: .8rem; }
.qcard blockquote { font-size: 1.05rem; font-weight: 600; margin-bottom: 1.2rem; }
.ink .qcard blockquote { color: #fff; }
.qmeta { display: flex; align-items: center; gap: .8rem; }
.qmeta .av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; color: #fff; background: var(--grad-cool); }
.qmeta b { display: block; font-family: var(--font-display); }
.qmeta span { font-size: .85rem; color: var(--ink-soft); }
.ink .qmeta span { color: rgba(255,255,255,.7); }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: stretch; }
.price-card { background: var(--card); border: 2px solid var(--line); border-radius: var(--r-lg); padding: 2rem; display: flex; flex-direction: column; position: relative; transition: transform .4s var(--ease-spring), box-shadow .3s; }
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.price-card.feat { border-color: var(--blue); box-shadow: var(--shadow-pop); background: linear-gradient(180deg,#fff, #f5f4ff); }
.price-badge { position: absolute; top: -14px; right: 22px; background: var(--lime); color: var(--ink); font-family: var(--font-display); font-weight: 800; font-size: .78rem; padding: .35rem .9rem; border-radius: var(--r-pill); border: 2px solid var(--ink); transform: rotate(3deg); }
.price-card h3 { font-size: 1.35rem; }
.price-card .ptag { color: var(--ink-soft); font-size: .92rem; margin: .3rem 0 1.1rem; }
.price-amt { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; color: var(--blue); line-height: 1; }
.price-amt small { font-size: .9rem; color: var(--ink-soft); font-weight: 700; }
.price-list { list-style: none; display: grid; gap: .6rem; margin: 1.4rem 0; }
.price-list li { display: flex; gap: .55rem; font-size: .95rem; color: var(--ink); }
.price-list li::before { content: "✓"; color: #5a8b00; font-weight: 900; }
.price-card .btn { margin-top: auto; justify-content: center; }

/* ---------- filter bar ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.4rem; justify-content: center; }
.filter-btn { font-family: var(--font-display); font-weight: 800; padding: .6rem 1.3rem; border-radius: var(--r-pill); background: #fff; border: 2px solid var(--line); color: var(--ink-soft); transition: transform .3s var(--ease-spring), background .25s, color .25s, border-color .25s; }
.filter-btn:hover { transform: translateY(-2px); border-color: var(--blue); color: var(--ink); }
.filter-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }
[data-svc].hide { display: none; }

/* ---------- areas / coverage ---------- */
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.area { background: var(--card); border: 2px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem; transition: transform .4s var(--ease-spring), box-shadow .3s; display: block; }
.area:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: var(--shadow-md); }
.area .idx { font-family: var(--font-display); font-weight: 800; color: var(--blue); font-size: 1.1rem; }
.area h3 { font-size: 1.3rem; margin: .3rem 0 .5rem; }
.area p { color: var(--ink-soft); font-size: .95rem; margin-bottom: .9rem; }
.area .go { font-family: var(--font-display); font-weight: 800; color: var(--blue); }

/* ---------- blog ---------- */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.post { background: var(--card); border: 2px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform .4s var(--ease-spring), box-shadow .3s; display: flex; flex-direction: column; }
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post-img { aspect-ratio: 16/10; background: var(--paper-2); overflow: hidden; }
.post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.post:hover .post-img img { transform: scale(1.05); }
.post-strip { aspect-ratio: 16/7; display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; }
.strip-blue { background: var(--grad-cool); } .strip-coral { background: var(--grad-sun); } .strip-grape { background: linear-gradient(120deg,var(--grape),var(--coral)); } .strip-lime { background: var(--grad-lime); color: var(--ink); }
.post-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post .meta { display: flex; align-items: center; gap: .6rem; font-size: .82rem; color: var(--ink-soft); margin-bottom: .7rem; }
.post .type { font-family: var(--font-display); font-weight: 800; color: var(--blue); background: var(--paper-2); padding: .2rem .7rem; border-radius: var(--r-pill); }
.post h3 { font-size: 1.25rem; margin-bottom: .6rem; }
.post p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1rem; flex: 1; }
.more { font-family: var(--font-display); font-weight: 800; color: var(--blue); }

.feature-post { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(1.5rem,3vw,2.5rem); background: var(--card); border: 2px solid var(--line); border-radius: var(--r-lg); overflow: hidden; margin-bottom: 3rem; align-items: stretch; }
.feature-post .fp-img { overflow: hidden; min-height: 320px; }
.feature-post .fp-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-post .fp-body { padding: clamp(1.5rem,3vw,2.6rem); display: flex; flex-direction: column; justify-content: center; }
.feature-post .fp-body h2 { font-size: clamp(1.6rem,3vw,2.4rem); margin: .6rem 0 .9rem; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem,4vw,3rem); align-items: start; }
.form-card { background: var(--card); border: 2px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.6rem,3vw,2.4rem); box-shadow: var(--shadow-md); }
.form-card h2 { font-size: 1.8rem; margin-bottom: .4rem; }
.form-card .sub { color: var(--ink-soft); margin-bottom: 1.6rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--font-display); font-weight: 800; font-size: .9rem; margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; padding: .85rem 1rem; border-radius: var(--r-md);
  border: 2px solid var(--line); background: var(--paper); color: var(--ink);
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(47,75,255,.12); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
[data-form-note] { margin-top: 1rem; font-weight: 800; font-family: var(--font-display); color: var(--blue); min-height: 1.2em; }
.honey { position: absolute; left: -9999px; opacity: 0; }

.info-card { background: var(--card); border: 2px solid var(--line); border-radius: var(--r-lg); padding: 1.8rem; margin-bottom: 1.4rem; }
.info-card h3 { font-size: 1.3rem; margin-bottom: 1rem; }
.info-row { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: 1rem; }
.info-row:last-child { margin-bottom: 0; }
.info-row .ico { flex: none; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--paper-2); }
.info-row .ico svg { width: 19px; height: 19px; stroke: var(--blue); }
.info-row b { font-family: var(--font-display); display: block; }
.info-row span, .info-row a { color: var(--ink-soft); font-size: .95rem; }
.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; padding: .55rem 0; border-bottom: 1px dashed var(--line); font-size: .95rem; }
.hours-list li:last-child { border: none; }
.hours-list b { font-family: var(--font-display); }
.hours-list .open { color: #5a8b00; font-weight: 800; }
.map-card { border-radius: var(--r-lg); overflow: hidden; border: 2px solid var(--line); box-shadow: var(--shadow-sm); }
.map-card svg { display: block; width: 100%; height: auto; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-inner { background: var(--grad-hot); border-radius: clamp(24px,4vw,44px); padding: clamp(2.6rem,5vw,4.5rem); text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-inner::before { content: ""; position: absolute; width: 260px; height: 260px; background: var(--lime); opacity: .25; filter: blur(60px); border-radius: 50%; top: -80px; right: -40px; }
.cta-inner h2 { font-size: clamp(2rem,4.6vw,3.4rem); margin: 1rem 0; }
.cta-inner p { font-size: 1.15rem; color: rgba(255,255,255,.92); max-width: 34rem; margin: 0 auto 1.8rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #fff; padding-top: 3.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer-brand .brand { color: #fff; margin-bottom: 1rem; }
.footer-brand .brand-mark { color: #fff; }
.footer-brand .brand-mark .fx { color: var(--lime); }
.footer-brand p { color: rgba(255,255,255,.65); max-width: 26rem; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.08); transition: transform .3s var(--ease-spring), background .25s; }
.footer-social a:hover { transform: translateY(-3px) rotate(-6deg); background: var(--blue); }
.footer-social svg { width: 18px; height: 18px; stroke: #fff; }
.footer-col h4 { font-size: 1rem; margin-bottom: 1rem; color: var(--lime); }
.footer-col a { display: block; color: rgba(255,255,255,.65); padding: .3rem 0; transition: color .25s, transform .25s; }
.footer-col a:hover { color: #fff; transform: translateX(4px); }
.footer-nap { font-style: normal; color: rgba(255,255,255,.65); line-height: 1.9; font-size: .95rem; }
.footer-nap a { color: rgba(255,255,255,.65); }
.footer-nap a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.55); font-size: .88rem; }
.footer-disclaimer { background: #0a0b1c; color: rgba(255,255,255,.45); font-size: .8rem; text-align: center; padding: 1rem 24px; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px) scale(.97); transition: opacity .7s var(--ease-out), transform .7s var(--ease-spring); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

@keyframes wobble {
  0%,100% { transform: rotate(0) }
  25% { transform: rotate(-3deg) }
  50% { transform: rotate(2deg) }
  75% { transform: rotate(-2deg) }
}

/* page hero (sub pages) */
.page-hero { padding: clamp(2.5rem,5vw,4.5rem) 0 clamp(2rem,3vw,3rem); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(50% 70% at 80% 10%, rgba(122,60,255,.12), transparent 60%), radial-gradient(50% 60% at 10% 90%, rgba(198,255,61,.16), transparent 60%); }
.page-hero h1 { font-size: clamp(2.4rem,5.5vw,4rem); margin: 1rem 0; }
.page-hero p { font-size: 1.15rem; color: var(--ink-soft); max-width: 36rem; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .split, .app-grid, .contact-grid, .feature-post { grid-template-columns: 1fr; }
  .split.flip .split-media { order: 0; }
  .svc-grid, .quotes, .price-grid, .areas-grid, .journal-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.8rem 1rem; }
  .feature-post .fp-img { min-height: 240px; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.open { flex-direction: column; align-items: stretch; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: .2rem; width: 100%; margin: 1rem 0 .5rem;
    animation: dropIn .4s var(--ease-spring);
  }
  .nav.open .nav-links a { padding: .9rem 1rem; background: var(--paper-2); }
  .nav.open .nav-cta { display: flex; flex-direction: column; gap: .6rem; width: 100%; }
  .nav.open .nav-cta .btn { justify-content: center; }
  .nav.open .nav-toggle span:nth-child(1) { transform: translateY(7.6px) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7.6px) rotate(-45deg); }
  @keyframes dropIn { from { opacity: 0; transform: translateY(-10px) } to { opacity: 1; transform: none } }
  .svc-grid, .quotes, .price-grid, .areas-grid, .journal-grid, .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero h1 .hl { white-space: normal; }
  .sticker-eta { display: none; }
}
@media (max-width: 460px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
