/* ═══════════════════════════════════════════════════════════
   PARKLINE SOLUTIONS — STYLESHEET v2
═══════════════════════════════════════════════════════════ */

:root {
  --yellow:       #F5C400;
  --yellow-light: #FFD400;
  --black:        #0A0A0A;
  --charcoal:     #161616;
  --surface:      #111111;
  --white:        #FFFFFF;
  --muted-white:  rgba(255, 255, 255, 0.68);
  --muted-black:  rgba(0, 0, 0, 0.55);
  --font:         'Helvetica Neue', Helvetica, Arial, sans-serif;
  --nav-h:        76px;
  --max-w:        1320px;
  --py:           130px;
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);

  /* SVG grain as data URI — tiles as noise texture */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img    { display: block; max-width: 100%; }
a      { text-decoration: none; color: inherit; }
ul     { list-style: none; }
button { cursor: pointer; font-family: var(--font); }

/* ── Type scale ─────────────────────────────────────────── */
h1, h2, h3 { font-weight: 900; letter-spacing: -0.03em; line-height: 1.0; }

/* Hero h1 handled separately */
h2 { font-size: clamp(3rem, 6.5vw, 7.5rem); }
h3 { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.3; }
p  { font-size: 1.08rem; line-height: 1.82; }

/* ── Utility ────────────────────────────────────────────── */
.text-white  { color: var(--white); }
.text-black  { color: var(--black); }
.text-muted  { color: var(--muted-white); }
.bg-black    { background-color: var(--black); }
.bg-yellow   { background-color: var(--yellow); }

/* ── Eyebrow ────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.eyebrow-yellow { color: var(--yellow); }
.eyebrow-black  { color: var(--black); }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s var(--ease), box-shadow 0.2s ease;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
}
.btn-yellow:hover {
  background: var(--yellow-light);
  box-shadow: 0 10px 30px rgba(245, 196, 0, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.5);
}

.btn-black {
  background: var(--black);
  color: var(--white);
  width: 100%;
}
.btn-black:hover { background: #1a1a1a; }

/* ── Section wrapper ────────────────────────────────────── */
.section   { position: relative; overflow: hidden; }
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--py) 2.5rem;
  position: relative;
  z-index: 2;
}

/* ── Textured dark sections (grain overlay) ─────────────── */
.section-textured::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  background-size: 300px 300px;
  opacity: 0.035;
  pointer-events: none;
  z-index: 1;
}

/* Diagonal stripe layer — evokes road markings at low opacity */
.section-textured::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -52deg,
    transparent,
    transparent 38px,
    rgba(255,255,255,0.02) 38px,
    rgba(255,255,255,0.02) 39px
  );
  pointer-events: none;
  z-index: 1;
}

/* ── Section number watermark ───────────────────────────── */
.section-num-bg {
  position: absolute;
  right: -0.05em;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(12rem, 22vw, 28rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
#main-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245, 196, 0, 0.08);
  transition: background 0.3s ease;
}
.nav-container {
  max-width: var(--max-w);
  height: 100%;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.nav-logo img { height: 50px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--yellow);
  transition: width 0.28s var(--ease);
}
.nav-links a:hover        { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a:focus-visible { outline: 2px solid var(--yellow); outline-offset: 4px; }
.nav-links a.active       { color: var(--white); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  margin-left: 2rem;
  padding: 0.6rem 1.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--black);
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.15s var(--ease), box-shadow 0.2s ease;
}
.nav-cta:hover {
  background: var(--yellow-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(245,196,0,0.25);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
#main-nav.nav-open .nav-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(10,10,10,0.99);
  padding: 1.5rem 2.5rem 2rem;
  border-bottom: 1px solid rgba(245,196,0,0.1);
}
#main-nav.nav-open .nav-links a {
  font-size: 0.875rem;
  padding: 0.85rem 0;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
#main-nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
#main-nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
#main-nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background image + overlays */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(1.2) brightness(0.9);
}

/* Multi-layer overlay for depth and drama */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 5% 85%, rgba(245,196,0,0.14) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 20%, rgba(245,196,0,0.04) 0%, transparent 40%),
    linear-gradient(108deg, rgba(0,0,0,0.91) 0%, rgba(0,0,0,0.62) 42%, rgba(0,0,0,0.2) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.55) 100%);
}

/* Grain texture on hero */
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  background-size: 300px 300px;
  opacity: 0.045;
  pointer-events: none;
}

/* Massive watermark behind content */
.hero-watermark {
  position: absolute;
  left: 50%;
  bottom: -0.08em;
  transform: translateX(-50%);
  font-size: clamp(8rem, 20vw, 26rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: rgba(255,255,255,0.028);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  white-space: nowrap;
  text-transform: uppercase;
}

/* Hero content */
.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
  padding-top: var(--nav-h);
}
.hero-content { max-width: 760px; }

.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0;
}
.hero-dash {
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--yellow);
  flex-shrink: 0;
}
.hero-eyebrow-row .eyebrow { margin-bottom: 0; }

.hero-headline {
  display: flex;
  flex-direction: column;
  color: var(--white);
  margin: 1rem 0 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.92;
}
.hero-line1 {
  font-size: clamp(4rem, 10vw, 12rem);
  display: block;
}
.hero-line2 {
  font-size: clamp(3.2rem, 8vw, 9.5rem);
  display: block;
  color: var(--yellow);
}

.hero-sub {
  color: rgba(255,255,255,0.58);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  max-width: 480px;
  margin-bottom: 2.75rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero entrance animation */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow-row { animation: heroIn 0.65s var(--ease) 0.15s both; }
.hero-line1       { animation: heroIn 0.75s var(--ease) 0.28s both; }
.hero-line2       { animation: heroIn 0.75s var(--ease) 0.43s both; }
.hero-sub         { animation: heroIn 0.65s var(--ease) 0.58s both; }
.hero-actions     { animation: heroIn 0.65s var(--ease) 0.70s both; }

/* Animated scroll hint — vertical */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: max(2.5rem, calc((100vw - var(--max-w)) / 2 + 2.5rem));
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  animation: heroIn 0.6s ease 1s both;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
  position: relative;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: var(--yellow);
  transform: translateY(-100%);
  animation: scanLineV 2.4s ease-in-out infinite;
}
@keyframes scanLineV {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(350%); }
}
.hero-scroll-chevron {
  color: rgba(255,255,255,0.38);
  animation: chevronBob 1.8s ease-in-out infinite;
}
@keyframes chevronBob {
  0%, 100% { transform: translateY(0);   opacity: 0.38; }
  50%       { transform: translateY(5px); opacity: 0.65; }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-text h2 {
  color: var(--white);
  margin-bottom: 2rem;
}
.about-text p   { color: var(--muted-white); margin-bottom: 1.4rem; }
.about-text p:last-child { margin-bottom: 0; }

/* About visual graphic */
.about-visual { position: relative; }

.about-svg-wrap {
  position: relative;
  border: 1px solid rgba(245,196,0,0.16);
  border-radius: 6px;
  overflow: hidden;
  background: #0c0c0c;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  cursor: crosshair;
  box-shadow: 0 0 0 0 rgba(245,196,0,0);
}
.about-svg-wrap:hover {
  border-color: rgba(245,196,0,0.38);
  box-shadow: 0 0 32px -8px rgba(245,196,0,0.14), 0 24px 48px -12px rgba(0,0,0,0.6);
}

.about-svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Draw-in: all lines hidden initially */
.about-svg .pl {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}
.about-svg .pl-sym  { opacity: 0; }
.about-svg .pl-fade { opacity: 0; }

/* Drawn state */
.about-svg-wrap.is-drawn .pl       { stroke-dashoffset: 0; }
.about-svg-wrap.is-drawn .pl-sym   { opacity: 1; }
.about-svg-wrap.is-drawn .pl-fade  { opacity: 1; }
.about-svg-wrap.is-drawn .scan-bar { animation: scan-sweep 4.2s cubic-bezier(0.4,0,0.6,1) 2.2s infinite; }

/* Staggered draw/fade delays */
.about-svg .pl-g0               { transition: stroke-dashoffset 1.0s cubic-bezier(0.25,1,0.35,1) 0s; }
.about-svg .pl-fade.pl-g1       { transition: opacity 0.8s ease 0.6s; }
.about-svg .pl-g2               { transition: stroke-dashoffset 1.2s cubic-bezier(0.2,1,0.3,1)   1.0s; }
.about-svg .pl-sym.pl-g3        { transition: opacity 0.7s ease 2.2s; }

/* Parking lot stall stagger — each line draws in sequentially */
.about-svg .pl-s1  { transition: stroke-dashoffset 0.8s cubic-bezier(0.2,1,0.3,1) 0.8s; }
.about-svg .pl-s2  { transition: stroke-dashoffset 0.8s cubic-bezier(0.2,1,0.3,1) 0.95s; }
.about-svg .pl-s3  { transition: stroke-dashoffset 0.8s cubic-bezier(0.2,1,0.3,1) 1.10s; }
.about-svg .pl-s4  { transition: stroke-dashoffset 0.8s cubic-bezier(0.2,1,0.3,1) 1.25s; }
.about-svg .pl-s5  { transition: stroke-dashoffset 0.8s cubic-bezier(0.2,1,0.3,1) 1.40s; }
.about-svg .pl-s6  { transition: stroke-dashoffset 0.8s cubic-bezier(0.2,1,0.3,1) 1.55s; }
.about-svg .pl-s7  { transition: stroke-dashoffset 0.8s cubic-bezier(0.2,1,0.3,1) 1.70s; }
.about-svg .pl-s8  { transition: stroke-dashoffset 0.8s cubic-bezier(0.2,1,0.3,1) 1.85s; }
.about-svg .pl-s9  { transition: stroke-dashoffset 0.8s cubic-bezier(0.2,1,0.3,1) 2.00s; }
.about-svg .pl-s10 { transition: stroke-dashoffset 0.8s cubic-bezier(0.2,1,0.3,1) 2.15s; }

.scan-bar { opacity: 0; will-change: transform, opacity; transform: translateZ(0); }

@keyframes scan-sweep {
  0%   { transform: translateY(0);     opacity: 0; }
  5%   { opacity: 1; }
  88%  { opacity: 0.82; }
  100% { transform: translateY(462px); opacity: 0; }
}

.about-svg .pl-g0 { will-change: stroke-dashoffset; }
.about-svg .pl-g2 { will-change: stroke-dashoffset; }
.about-svg .pl-fade { will-change: opacity; }
.about-svg .pl-sym { will-change: opacity; }

/* Footer label */
.about-svg-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0.45rem 0.85rem;
  border-top: 1px solid rgba(245,196,0,0.07);
}
.about-svg-label {
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.14);
}

/* ═══════════════════════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════════════════════ */
.bg-yellow { position: relative; overflow: hidden; }

/* Depth on yellow sections */
.bg-yellow::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 100%, rgba(0,0,0,0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Crosshatch grid texture on yellow sections — technical drafting feel */
.bg-yellow::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(0,0,0,0.07) 0px, rgba(0,0,0,0.07) 1px,
      transparent 1px, transparent 18px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,0.07) 0px, rgba(0,0,0,0.07) 1px,
      transparent 1px, transparent 18px
    );
  background-size: 18px 18px;
  pointer-events: none;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   BG-LINES — Photo background section (Lines.webp)
═══════════════════════════════════════════════════════════ */
.bg-lines {
  position: relative;
  overflow: hidden;
  /* Layer order (bottom → top):
     1. The photo
     2. Yellow bloom from below — pulls out the warm asphalt color
     3. Dark curtain — ensures headings and content read cleanly
     4. Subtle yellow warmth at very top edge — visual continuity with nav */
  background:
    linear-gradient(180deg,
      #0a0a0a 0%,
      rgba(10,10,10,0.97) 6%,
      rgba(6,6,6,0.82) 18%,
      rgba(4,4,4,0.52) 38%,
      rgba(4,4,4,0.48) 55%,
      rgba(4,4,4,0.72) 80%,
      rgba(4,4,4,0.92) 100%
    ),
    radial-gradient(ellipse at 50% 110%, rgba(245,196,0,0.32) 0%, transparent 52%),
    url('brand_assets/Lines.webp') center 38% / cover no-repeat;
}

/* Grain overlay — film-like texture over the photo */
#why.bg-lines::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  background-size: 280px 280px;
  opacity: 0.045;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}

/* Subtle horizontal scan lines — precision instrument feel */
#why.bg-lines::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    180deg,
    transparent 0px,
    transparent 3px,
    rgba(0,0,0,0.03) 3px,
    rgba(0,0,0,0.03) 4px
  );
  background-size: 100% 4px;
  pointer-events: none;
  z-index: 0;
}

/* Geometric edge accent blocks — remapped for dark context */
.why-deco-block {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.why-deco-block--tl {
  top: -48px;
  left: -56px;
  width: 38%;
  height: 64%;
  background: linear-gradient(135deg, rgba(245,196,0,0.06) 0%, transparent 70%);
  clip-path: polygon(0% 0%, 88% 0%, 100% 100%, 0% 100%);
}
.why-deco-block--br {
  bottom: -40px;
  right: -48px;
  width: 24%;
  height: 40%;
  background: linear-gradient(315deg, rgba(245,196,0,0.05) 0%, transparent 70%);
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
}

#why .container      { position: relative; z-index: 2; padding-bottom: calc(var(--py) * 0.9); }
#why.bg-lines h2     { color: var(--white); margin-bottom: 4rem; line-height: 1.0; }

/* ── Cards — frosted glass over the photo ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.why-card {
  position: relative;
  background: rgba(6, 6, 6, 0.58);
  backdrop-filter: blur(20px) saturate(1.6) brightness(0.9);
  -webkit-backdrop-filter: blur(20px) saturate(1.6) brightness(0.9);
  border: 1px solid rgba(245,196,0,0.18);
  border-bottom: 1px solid rgba(245,196,0,0.08);
  padding: 2.25rem 2rem;
  cursor: default;
  overflow: hidden;
  transition: transform 0.32s var(--ease), background 0.25s ease, border-color 0.25s ease, box-shadow 0.32s ease;
  box-shadow:
    0 4px 24px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

/* Subtle gradient wash inside each card */
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(245,196,0,0.05) 0%, transparent 55%);
  pointer-events: none;
}

/* Yellow bottom edge accent line per card */
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245,196,0,0.45), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease);
}
.why-card:hover::after { transform: scaleX(1); }

.why-card:hover {
  background: rgba(10,10,10,0.72);
  border-color: rgba(245,196,0,0.32);
  transform: translateY(-7px);
  box-shadow:
    0 20px 52px rgba(0,0,0,0.55),
    0 0 0 1px rgba(245,196,0,0.1),
    0 0 40px -10px rgba(245,196,0,0.18);
}

.why-icon  { margin-bottom: 1.4rem; }
.why-card h3 { color: var(--white); margin-bottom: 0.7rem; }
.why-card p  { color: rgba(255,255,255,0.72); font-size: 0.95rem; line-height: 1.72; }

/* ── Bottom copy block ── */
.why-copy {
  border-top: 1px solid rgba(245,196,0,0.22);
  padding-top: 2.5rem;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.why-copy p { color: rgba(255,255,255,0.55); font-size: 1rem; line-height: 1.85; }

/* ═══════════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════════ */
#services h2 { color: var(--white); margin-bottom: 4rem; line-height: 1.0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}
.service-card {
  background: var(--charcoal);
  padding: 2.75rem 2.25rem 2.25rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.28s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(245,196,0,0.1) 0%, transparent 80%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.service-card:hover::before {
  opacity: 1;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--yellow);
  transition: width 0.42s var(--ease);
}
.service-card:hover::after  { width: 100%; }
.service-card:hover {
  background: #222222;
  box-shadow:
    inset 0 1px 0 rgba(245,196,0,0.14),
    0 0 40px -8px rgba(245,196,0,0.1);
}
.service-card:focus-visible  {
  outline: 2px solid var(--yellow);
  outline-offset: -2px;
}

.service-num {
  display: block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--yellow);
  margin-bottom: 1.4rem;
}
.service-card h3 { color: var(--white); margin-bottom: 0.75rem; }
.service-card p  { color: rgba(255,255,255,0.65); font-size: 0.93rem; line-height: 1.72; flex: 1; }

.service-card-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  margin-top: 1.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,196,0,0);
  transition: color 0.25s ease, gap 0.25s ease, transform 0.28s var(--ease);
}
.service-card:hover .service-card-cue {
  color: rgba(245,196,0,0.85);
  gap: 0.6em;
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════
   SERVICE MODAL
═══════════════════════════════════════════════════════════ */
.svc-modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.svc-modal[hidden] { display: none; }

.svc-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.svc-modal.is-open .svc-modal-backdrop { opacity: 1; }

.svc-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  background: #111111;
  border: 1px solid rgba(245,196,0,0.18);
  border-top: 3px solid var(--yellow);
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.04);
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.32s ease 0.06s, transform 0.38s cubic-bezier(0.22,1,0.36,1) 0.06s;
}
.svc-modal.is-open .svc-modal-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.svc-modal-num-bg {
  position: absolute;
  top: -0.5rem;
  right: 1.5rem;
  font-size: 9rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.svc-modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.svc-modal-close:hover {
  background: rgba(245,196,0,0.12);
  border-color: rgba(245,196,0,0.35);
  color: var(--yellow);
}
.svc-modal-close:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.svc-modal-inner { padding: 2.75rem 2.5rem 2.5rem; }

.svc-modal-eyebrow { display: block; margin-bottom: 0.75rem; }

.svc-modal-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.svc-modal-body {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.78;
  margin-bottom: 1.75rem;
}

.svc-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 2.25rem;
}
.svc-modal-tags li {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(245,196,0,0.8);
  background: rgba(245,196,0,0.08);
  border: 1px solid rgba(245,196,0,0.18);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}

.svc-modal-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 1.6rem;
  transition: background 0.2s ease, gap 0.2s ease, transform 0.2s ease;
}
.svc-modal-cta:hover {
  background: #ffe033;
  gap: 0.9rem;
  transform: translateX(2px);
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5.5rem;
  align-items: start;
}
#contact h2    { color: var(--black); margin-bottom: 0.9rem; font-size: clamp(2.2rem, 3.5vw, 4rem); }
.contact-lead  { color: rgba(0,0,0,0.58); font-size: 1.05rem; margin-bottom: 2.75rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item    { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item > div   { display: flex; flex-direction: column; gap: 0.2rem; }
.contact-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.38);
}
.contact-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
}
.contact-value:is(a):hover { text-decoration: underline; }

/* Form */
.contact-form {
  background: var(--black);
  padding: 2.75rem;
  position: relative;
  z-index: 2;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}
.form-group label {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.09);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  outline: none;
  border-radius: 1px;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.18); }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.28)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
  color: rgba(255,255,255,0.45);
}
.form-group select option { background: var(--charcoal); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
  background: rgba(245,196,0,0.04);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer { background: var(--charcoal); border-top: 1px solid rgba(255,255,255,0.05); }
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.footer-logo  { height: 38px; width: auto; }
.footer-copy  { font-size: 0.73rem; color: rgba(255,255,255,0.26); letter-spacing: 0.04em; margin: 0 auto; }
.footer-nav   { display: flex; gap: 2rem; flex-shrink: 0; }
.footer-nav a {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  transition: color 0.2s ease;
}
.footer-nav a:hover         { color: var(--yellow); }
.footer-nav a:focus-visible { outline: 1px solid var(--yellow); outline-offset: 3px; }

/* ═══════════════════════════════════════════════════════════
   ABOUT — CTA LINK
═══════════════════════════════════════════════════════════ */
.about-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.25rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s ease;
}
.about-cta-link span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--yellow);
  transition: gap 0.22s var(--ease);
}
.about-cta-link:hover { color: rgba(255,255,255,0.6); }
.about-cta-link:hover span { gap: 0.6rem; }

/* ═══════════════════════════════════════════════════════════
   STATS SECTION
═══════════════════════════════════════════════════════════ */
.stats-section {
  position: relative;
  background: var(--black);
  overflow: hidden;
}
.stats-section::before,
.stats-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,196,0,0.28), transparent);
  pointer-events: none;
}
.stats-section::before { top: 0; }
.stats-section::after  { bottom: 0; }

.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5.5rem 2.5rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255,255,255,0.06);
}
.stat-value {
  display: flex;
  align-items: baseline;
  gap: 0;
  line-height: 1;
}
.stat-num {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-suffix {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: -0.03em;
  line-height: 1;
  opacity: 0.7;
}
.guarantee-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--yellow);
  font-weight: 900;
}
.stat-label {
  margin-top: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

/* ═══════════════════════════════════════════════════════════
   WHY SECTION — CTA REPLACE
═══════════════════════════════════════════════════════════ */
.why-cta {
  text-align: center;
  padding-top: 2.75rem;
  border-top: 1px solid rgba(245,196,0,0.22);
  position: relative;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */

/* Charcoal base + crosshatch blueprint texture + yellow ambient glow */
.testimonials-section {
  background:
    radial-gradient(ellipse at 50% -10%, rgba(245,196,0,0.07) 0%, transparent 52%),
    var(--charcoal);
  border-top: 1px solid rgba(245,196,0,0.1);
  position: relative;
  overflow: hidden;
}

/* Grain overlay */
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  background-size: 280px 280px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
}

/* Diamond crosshatch — technical blueprint feel, distinct from services diagonal */
.testimonials-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.022) 0px,
      rgba(255,255,255,0.022) 1px,
      transparent 1px,
      transparent 32px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.022) 0px,
      rgba(255,255,255,0.022) 1px,
      transparent 1px,
      transparent 32px
    );
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 1;
}

#testimonials h2 { color: var(--white); margin-bottom: 4rem; line-height: 1.0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 2px solid rgba(245,196,0,0.32);
  padding: 2.5rem 2rem 2.25rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.32s var(--ease), border-top-color 0.25s ease, box-shadow 0.32s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-top-color: var(--yellow);
  box-shadow: 0 18px 50px rgba(0,0,0,0.45), 0 0 0 1px rgba(245,196,0,0.07);
}
.testimonial-quote {
  font-size: 4.5rem;
  line-height: 0.75;
  color: var(--yellow);
  font-family: Georgia, serif;
  opacity: 0.35;
  margin-bottom: 1.25rem;
  height: 2.5rem;
  overflow: hidden;
}
.testimonial-body {
  color: rgba(255,255,255,0.72);
  font-size: 0.98rem;
  line-height: 1.78;
  margin-bottom: 2rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(245,196,0,0.1);
  border: 1px solid rgba(245,196,0,0.22);
  color: var(--yellow);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.testimonial-role {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.36);
  margin-top: 0.2rem;
}

/* ═══════════════════════════════════════════════════════════
   FORM — SUBMIT OVERRIDE + SUCCESS STATE
═══════════════════════════════════════════════════════════ */
.form-submit { width: 100%; }

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  gap: 1.25rem;
  animation: heroIn 0.5s var(--ease) both;
}
.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(245,196,0,0.08);
  border: 1px solid rgba(245,196,0,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.form-success-body {
  color: rgba(255,255,255,0.55);
  font-size: 0.96rem;
  max-width: 300px;
  line-height: 1.65;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --py: 100px; }
  .about-grid        { grid-template-columns: 1fr; gap: 4rem; }
  .about-visual      { max-width: 520px; }
  .services-grid     { grid-template-columns: repeat(2, 1fr); }
  .why-grid          { grid-template-columns: repeat(2, 1fr); }
  .contact-grid      { grid-template-columns: 1fr; gap: 3.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .hero-watermark    { opacity: 0.018; }
  .section-num-bg    { opacity: 0.018; }
}

@media (max-width: 768px) {
  :root { --py: 80px; }

  .nav-links  { display: none; }
  .nav-cta    { display: none; }
  .nav-toggle { display: flex; }

  .hero { min-height: 600px; }
  .hero-line1 { font-size: clamp(3.2rem, 12vw, 6rem); }
  .hero-line2 { font-size: clamp(2.6rem, 9.5vw, 5rem); }
  .hero-watermark { display: none; }
  .hero-scroll { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 0.75rem; }

  .about-svg [filter] { filter: none !important; }

  .services-grid     { grid-template-columns: 1fr; }

  .service-card::after { height: 2px; width: 100%; left: 0; right: auto; bottom: auto; top: 0; }
  .service-card { background: var(--charcoal); }
  .service-card:nth-child(odd) { background: #1a1a1a; }
  .service-num { font-size: 0.85rem; margin-bottom: 1rem; font-weight: 800; }
  .service-card-cue { color: rgba(245,196,0,0.7); margin-top: auto; }

  .why-grid          { grid-template-columns: 1fr; }
  .form-row          { grid-template-columns: 1fr; }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .stat-item:nth-child(odd)::after { display: block; }

  .footer-inner  { flex-direction: column; text-align: center; gap: 1.25rem; }
  .footer-copy   { margin: 0; }
}

@media (max-width: 480px) {
  .container     { padding-left: 1.25rem; padding-right: 1.25rem; }
  .nav-container { padding-left: 1.25rem; padding-right: 1.25rem; }
  .contact-form  { padding: 1.75rem 1.25rem; }
  .section-num-bg { display: none; }
  .stats-grid    { grid-template-columns: 1fr; }
  .stats-inner   { padding: 4rem 1.25rem; }
  .stat-item::after { display: none !important; }
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
