/* =====================================================================
   RL Property Maintenance — Local Launch Sites build
   Design language: industrial / dark-turf. Jet black, chrome silver,
   vivid turf-lime. Heavy condensed display + clean grotesque body.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --bg:        #080a08;
  --bg-1:      #0d100c;
  --bg-2:      #12160f;
  --panel:     #161b13;
  --line:      #232a1e;
  --line-2:    #2f3a26;

  --ink:       #f4f7ef;
  --ink-soft:  #c3ccbb;
  --ink-mute:  #8a9481;

  --lime:      #8fd118;
  --lime-hi:   #b6ff3b;
  --lime-deep: #5f9310;

  --steel-1:   #ffffff;
  --steel-2:   #b9c2b0;
  --steel-3:   #7d8873;

  --danger:    #e6532b;

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius: 16px;
  --radius-s: 10px;

  --shadow:    0 24px 60px -20px rgba(0,0,0,.75);
  --shadow-lime: 0 16px 40px -12px rgba(143,209,24,.35);

  --ease: cubic-bezier(.22,.61,.36,1);

  --ff-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset-ish ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3 { margin: 0; line-height: 1.02; }
p { margin: 0; }
::selection { background: var(--lime); color: #0b0f07; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 128px); position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--lime); margin: 0 0 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--lime); display: inline-block; }
.h-display {
  font-family: var(--ff-display); font-weight: 400;
  text-transform: uppercase; letter-spacing: .01em;
  font-size: clamp(2.1rem, 6vw, 4.1rem); line-height: .96;
}
.lead { color: var(--ink-soft); font-size: clamp(1.02rem, 1.6vw, 1.18rem); max-width: 60ch; }
.steel {
  background: linear-gradient(180deg, var(--steel-1) 0%, var(--steel-2) 55%, var(--steel-3) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hl { color: var(--lime-hi); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--lime);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px; border: 0;
  font-weight: 800; font-size: .96rem; letter-spacing: .01em;
  background: var(--btn-bg); color: #0a0f05;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  box-shadow: var(--shadow-lime);
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -12px rgba(143,209,24,.55); }
.btn.ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line-2); box-shadow: none;
}
.btn.ghost:hover { border-color: var(--lime); color: var(--lime-hi); background: rgba(143,209,24,.06); }
.btn.dark { background: #0c0f09; color: var(--ink); border: 1.5px solid var(--line-2); box-shadow: none; }
.btn.dark:hover { border-color: var(--lime); color: var(--lime-hi); }
.btn.lg { padding: 18px 34px; font-size: 1.02rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  transition: background .3s var(--ease), border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8,10,8,.82);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: .02em; }
.brand .mark {
  font-family: var(--ff-display); font-size: 1.5rem; line-height: 1;
  display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(160deg,#1b2214,#0b0f08); border: 1px solid var(--line-2);
}
.brand .mark b { color: var(--steel-1); }
.brand .mark i { color: var(--lime); font-style: normal; }
.brand .brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand .brand-txt .b1 { font-family: var(--ff-display); font-size: 1.02rem; letter-spacing: .03em; }
.brand .brand-txt .b2 { font-size: .62rem; letter-spacing: .28em; color: var(--lime); text-transform: uppercase; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 9px 14px; border-radius: 8px; font-size: .93rem; font-weight: 600; color: var(--ink-soft);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(255,255,255,.04); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; color: var(--ink); font-size: .95rem; }
.nav-phone svg { width: 16px; height: 16px; color: var(--lime); }

.hamburger {
  display: none; width: 46px; height: 46px; border-radius: 10px;
  background: rgba(255,255,255,.05); border: 1px solid var(--line-2);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.hamburger span { width: 20px; height: 2px; background: var(--ink); transition: transform .3s var(--ease), opacity .2s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 74px 0 auto 0; z-index: 55;
  background: rgba(8,10,8,.97); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transform: translateY(-115%); transition: transform .4s var(--ease);
  padding: 14px var(--gutter) 26px;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { display: block; padding: 15px 6px; font-size: 1.1rem; font-weight: 700; border-bottom: 1px solid var(--line); }
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-menu .btn { width: 100%; margin-top: 16px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: 132px; padding-bottom: 84px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 80% at 82% -10%, rgba(143,209,24,.16), transparent 55%),
    radial-gradient(90% 60% at 10% 0%, rgba(120,170,40,.08), transparent 60%),
    linear-gradient(180deg, #0a0d08, #080a08 60%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: linear-gradient(rgba(143,209,24,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(143,209,24,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(80% 60% at 50% 30%, #000, transparent 80%);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px,4vw,64px); align-items: center; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px; font-size: .8rem; font-weight: 700;
  color: var(--ink-soft); background: rgba(255,255,255,.03); border: 1px solid var(--line-2);
}
.chip svg { width: 14px; height: 14px; color: var(--lime); }
.hero h1 { font-family: var(--ff-display); text-transform: uppercase; font-size: clamp(2.7rem, 7.4vw, 5.4rem); line-height: .92; letter-spacing: .005em; }
.hero h1 .sub { display: block; color: var(--lime-hi); }
.hero .lead { margin-top: 22px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-proof { display: flex; align-items: center; gap: 22px; margin-top: 34px; flex-wrap: wrap; }
.hero-proof .stat b { font-family: var(--ff-display); font-size: 1.9rem; color: var(--ink); display: block; line-height: 1; }
.hero-proof .stat span { font-size: .78rem; color: var(--ink-mute); text-transform: uppercase; letter-spacing: .12em; }
.hero-proof .divider { width: 1px; height: 34px; background: var(--line-2); }

.hero-visual { position: relative; }
.hero-card {
  border-radius: 22px; overflow: hidden; border: 1px solid var(--line-2);
  box-shadow: var(--shadow); background: var(--panel);
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.hero-float {
  position: absolute; left: -26px; bottom: 26px;
  background: rgba(10,13,8,.86); backdrop-filter: blur(10px);
  border: 1px solid var(--line-2); border-radius: 14px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow);
}
.hero-float .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(143,209,24,.2); }
.hero-float small { color: var(--ink-mute); display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.hero-float b { font-size: .95rem; }

/* ---------- Marquee trust strip ---------- */
.strip { border-block: 1px solid var(--line); background: var(--bg-1); overflow: hidden; }
.marquee { display: flex; gap: 0; white-space: nowrap; }
.marquee-track { display: flex; align-items: center; gap: 46px; padding: 18px 23px; animation: slide 32s linear infinite; }
.strip:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { display: inline-flex; align-items: center; gap: 12px; font-family: var(--ff-display); text-transform: uppercase; font-size: 1.05rem; letter-spacing: .05em; color: var(--ink-mute); }
.marquee-track span svg { width: 16px; height: 16px; color: var(--lime); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Section heading block ---------- */
.sec-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head p { margin-top: 16px; }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px;
  position: relative; overflow: hidden;
  transition: transform .35s var(--ease), border-color .3s, background .3s;
}
.svc::after {
  content: ""; position: absolute; inset: auto -40% -60% -40%; height: 120px;
  background: radial-gradient(closest-side, rgba(143,209,24,.16), transparent);
  opacity: 0; transition: opacity .4s;
}
.svc:hover { transform: translateY(-6px); border-color: var(--line-2); }
.svc:hover::after { opacity: 1; }
.svc-ic {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  background: rgba(143,209,24,.1); border: 1px solid rgba(143,209,24,.25); margin-bottom: 18px;
}
.svc-ic svg { width: 26px; height: 26px; color: var(--lime-hi); }
.svc h3 { font-size: 1.24rem; font-weight: 800; letter-spacing: .01em; margin-bottom: 8px; }
.svc p { color: var(--ink-mute); font-size: .95rem; }
.svc.wide { grid-column: span 3; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 26px 30px; background: linear-gradient(110deg, rgba(143,209,24,.09), var(--bg-1)); }
.svc.wide .svc-ic { margin-bottom: 0; }
.svc.wide .txt { flex: 1 1 320px; }

/* ---------- Packages ---------- */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.pkg {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px;
  display: flex; flex-direction: column;
}
.pkg.feature { border-color: var(--lime-deep); background: linear-gradient(180deg, rgba(143,209,24,.09), var(--bg-1)); box-shadow: var(--shadow-lime); position: relative; }
.pkg .tag { align-self: flex-start; font-size: .68rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: #0a0f05; background: var(--lime); padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; }
.pkg .tag.muted { color: var(--ink-mute); background: transparent; border: 1px solid var(--line-2); }
.pkg h3 { font-family: var(--ff-display); text-transform: uppercase; font-size: 1.7rem; letter-spacing: .02em; }
.pkg .desc { color: var(--ink-mute); font-size: .92rem; margin: 8px 0 18px; min-height: 40px; }
.pkg ul { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 11px; }
.pkg li { display: flex; gap: 11px; align-items: flex-start; font-size: .94rem; color: var(--ink-soft); }
.pkg li svg { width: 18px; height: 18px; flex: 0 0 18px; margin-top: 2px; color: var(--lime); }
.pkg li.off { color: var(--ink-mute); }
.pkg li.off svg { color: var(--line-2); }
.pkg .btn { margin-top: auto; width: 100%; }

.note-bar {
  margin-top: 22px; display: flex; align-items: center; gap: 16px;
  border: 1px dashed var(--line-2); border-radius: var(--radius-s);
  padding: 16px 20px; background: rgba(230,83,43,.05);
}
.note-bar svg { width: 26px; height: 26px; color: var(--danger); flex: 0 0 26px; }
.note-bar b { color: var(--ink); }
.note-bar span { color: var(--ink-mute); font-size: .93rem; }

/* ---------- Before / After gallery ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.ba {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--bg-1);
}
.ba-media { position: relative; aspect-ratio: 4/3; overflow: hidden; touch-action: none; cursor: ew-resize; user-select: none; }
.ba-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-after { clip-path: inset(0 0 0 50%); }
.ba-line { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--lime); transform: translateX(-1px); pointer-events: none; box-shadow: 0 0 14px rgba(143,209,24,.7); }
.ba-handle {
  position: absolute; top: 50%; left: 50%; width: 44px; height: 44px; transform: translate(-50%,-50%);
  border-radius: 50%; background: var(--lime); display: grid; place-items: center; pointer-events: none;
  box-shadow: 0 6px 18px rgba(0,0,0,.5); color: #0a0f05;
}
.ba-handle svg { width: 22px; height: 22px; }
.ba-tag { position: absolute; top: 12px; padding: 5px 11px; border-radius: 999px; font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; backdrop-filter: blur(4px); pointer-events: none; }
.ba-tag.b { left: 12px; background: rgba(10,13,8,.75); color: var(--ink-soft); border: 1px solid var(--line-2); }
.ba-tag.a { right: 12px; background: rgba(143,209,24,.9); color: #0a0f05; }
.ba-cap { padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.ba-cap b { font-size: 1.02rem; }
.ba-cap span { font-size: .82rem; color: var(--ink-mute); }

/* ---------- Split / why ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,64px); align-items: stretch; }
.why-list { display: grid; gap: 14px; margin-top: 26px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-s); background: var(--bg-1); transition: border-color .3s, transform .3s var(--ease); }
.why-item:hover { border-color: var(--line-2); transform: translateX(4px); }
.why-item .ic { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: rgba(143,209,24,.1); border: 1px solid rgba(143,209,24,.22); flex: 0 0 44px; }
.why-item .ic svg { width: 22px; height: 22px; color: var(--lime-hi); }
.why-item b { display: block; font-size: 1.05rem; margin-bottom: 3px; }
.why-item p { font-size: .93rem; color: var(--ink-mute); }
.prep-card { display: flex; flex-direction: column; border: 1px solid var(--line-2); border-radius: var(--radius); overflow: hidden; background: linear-gradient(180deg,var(--bg-2),var(--bg-1)); box-shadow: var(--shadow); height: 100%; }
.prep-card .head {
  position: relative; padding: 26px 26px 22px; border-bottom: 1px solid var(--line);
  min-height: 176px; display: flex; flex-direction: column; justify-content: flex-end;
  background-image: linear-gradient(180deg, rgba(8,10,8,.15) 0%, rgba(8,10,8,.5) 52%, rgba(8,10,8,.94) 100%), url("assets/gallery/fence-after.jpg");
  background-size: cover; background-position: center 62%;
}
.prep-card .head b { font-family: var(--ff-display); text-transform: uppercase; font-size: 1.5rem; letter-spacing: .02em; position: relative; }
.prep-card .head span { color: var(--lime-hi); font-size: .82rem; text-transform: uppercase; letter-spacing: .16em; display: block; margin-bottom: 6px; position: relative; }
.prep-steps { display: flex; flex-direction: column; flex: 1; }
.prep-step { display: flex; align-items: center; gap: 16px; padding: 20px 26px; border-bottom: 1px solid var(--line); flex: 1; }
.prep-step:last-child { border-bottom: 0; }
.prep-step .n { font-family: var(--ff-display); font-size: 1.6rem; color: var(--lime); width: 30px; flex: 0 0 30px; }
.prep-step b { display: block; margin-bottom: 3px; font-size: 1.02rem; }
.prep-step p { color: var(--ink-mute); font-size: .9rem; }
.prep-cta { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 20px 26px; border-top: 1px solid var(--line); font-weight: 800; letter-spacing: .01em; color: var(--ink); background: rgba(143,209,24,.06); transition: background .25s, color .25s; }
.prep-cta:hover { background: rgba(143,209,24,.13); color: var(--lime-hi); }
.prep-cta .arw { color: var(--lime); font-size: 1.3rem; transition: transform .25s var(--ease); }
.prep-cta:hover .arw { transform: translateX(5px); }

/* ---------- Service area ---------- */
.area { text-align: center; }
.area-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.area-chips .chip { font-size: .95rem; padding: 12px 20px; }
.area-chips .chip.main { background: rgba(143,209,24,.12); border-color: var(--lime-deep); color: var(--ink); }

/* ---------- Quote / contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px,4vw,56px); align-items: stretch; }
.contact-info .lead { margin-top: 16px; }
.contact-methods { display: grid; gap: 14px; margin-top: 30px; }
.cm { display: flex; align-items: center; gap: 16px; padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--radius-s); background: var(--bg-1); transition: border-color .3s; }
.cm:hover { border-color: var(--lime-deep); }
.cm .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(143,209,24,.1); border: 1px solid rgba(143,209,24,.22); flex: 0 0 46px; }
.cm .ic svg { width: 22px; height: 22px; color: var(--lime-hi); }
.cm small { color: var(--ink-mute); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; display: block; }
.cm b { font-size: 1.05rem; }

form.quote { display: flex; flex-direction: column; background: linear-gradient(180deg,var(--bg-2),var(--bg-1)); border: 1px solid var(--line-2); border-radius: var(--radius); padding: clamp(24px,3vw,36px); box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field.grow { flex: 1; display: flex; flex-direction: column; }
.field.grow textarea { flex: 1; }
.field label { display: block; font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.field label .req { color: var(--lime); }
.field input, .field select, .field textarea {
  width: 100%; background: #0a0d07; border: 1px solid var(--line-2); border-radius: 10px;
  padding: 13px 15px; color: var(--ink); font-family: inherit; font-size: 1rem; transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--lime); box-shadow: 0 0 0 3px rgba(143,209,24,.15); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238fd118' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
form.quote .btn { width: 100%; margin-top: 6px; }
.hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .8rem; color: var(--ink-mute); margin-top: 14px; text-align: center; }
.form-success { display: none; text-align: center; padding: 20px; border: 1px solid var(--lime-deep); background: rgba(143,209,24,.08); border-radius: 12px; margin-top: 16px; color: var(--ink); font-weight: 600; }
.form-success.show { display: block; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: 24px; border: 1px solid var(--line-2); padding: clamp(40px,6vw,72px); text-align: center; background: linear-gradient(120deg, rgba(143,209,24,.14), var(--bg-1) 60%); }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(60% 100% at 50% 0%, rgba(143,209,24,.18), transparent 70%); }
.cta-band h2 { font-family: var(--ff-display); text-transform: uppercase; font-size: clamp(2rem,5.5vw,3.4rem); }
.cta-band .lead { margin: 18px auto 30px; }
.cta-band .hero-cta { justify-content: center; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-1); padding-block: 56px 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.foot-brand .brand { margin-bottom: 16px; }
.foot-brand p { color: var(--ink-mute); font-size: .92rem; max-width: 34ch; }
.foot-col h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .18em; color: var(--lime); margin: 0 0 16px; }
.foot-col a, .foot-col p { display: block; color: var(--ink-soft); font-size: .93rem; padding: 5px 0; }
.foot-col a:hover { color: var(--lime-hi); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--ink-mute); font-size: .82rem; }
.foot-bottom .lic { display: inline-flex; align-items: center; gap: 8px; }
.foot-bottom .lic svg { width: 14px; height: 14px; color: var(--lime); }
.foot-credit { margin-top: 16px; text-align: center; font-size: .8rem; letter-spacing: .04em; color: var(--ink-mute); }
.foot-credit a { color: var(--ink-soft); font-weight: 700; border-bottom: 1px solid var(--line-2); padding-bottom: 1px; transition: color .2s, border-color .2s; }
.foot-credit a:hover { color: var(--lime-hi); border-color: var(--lime); }

/* ---------- Mobile sticky call bar ---------- */
.callbar { position: fixed; inset: auto 0 0 0; z-index: 50; display: none; grid-template-columns: 1fr 1fr; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(8,10,8,.94); backdrop-filter: blur(12px); border-top: 1px solid var(--line); }
.callbar .btn { padding: 13px; font-size: .92rem; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 440px; }
  .hero-card { transform: none; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc.wide { grid-column: span 1; }
  .ba-grid { grid-template-columns: 1fr; }
  .two { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-proof .divider { display: none; }
  .nav-cta { display: none; }
  .callbar { display: grid; }
  .site-footer-pad { height: 70px; }
  .hero-float { left: 12px; right: 12px; bottom: 12px; }
}
