/* ============================================================
   LIGHTNING ELECTRICAL — design system
   Warm near-black + warm off-white + electric amber accent.
   Display: Bricolage Grotesque · Body: Archivo · Label: JetBrains Mono
   ============================================================ */

:root {
  /* warm neutrals */
  --ink:        oklch(0.17 0.006 80);   /* near-black, warm */
  --ink-2:      oklch(0.23 0.007 80);   /* raised dark surface */
  --ink-3:      oklch(0.30 0.008 80);   /* hairlines on dark */
  --paper:      oklch(0.965 0.006 85);  /* warm off-white */
  --paper-2:    oklch(0.93 0.008 85);   /* warm card / section */
  --paper-3:    oklch(0.88 0.009 85);   /* warm border */
  --muted:      oklch(0.55 0.01 80);    /* secondary text */
  --muted-dk:   oklch(0.72 0.012 85);   /* secondary text on dark */

  /* the spark */
  --amber:      oklch(0.58 0.146 252);  /* electric blue (downlight) */
  --amber-hi:   oklch(0.67 0.142 250);  /* brighter highlight */
  --amber-deep: oklch(0.50 0.155 255);  /* deep blue for text on light */
  --star:       oklch(0.80 0.135 80);   /* gold, for rating stars only */

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

  --ff-display: "Bricolage Grotesque", "Archivo", system-ui, sans-serif;
  --ff-body: "Archivo", system-ui, -apple-system, sans-serif;
  --ff-mono: "JetBrains Mono", ui-monospace, monospace;

  --shadow: 0 1px 2px rgba(20,18,12,.06), 0 12px 32px -12px rgba(20,18,12,.18);
  --shadow-lg: 0 2px 4px rgba(20,18,12,.08), 0 40px 80px -32px rgba(20,18,12,.42);

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

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--ff-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv01";
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }

/* ---------- image-slot empty state: on-brand placeholders ---------- */
image-slot::part(frame) {
  background:
    repeating-linear-gradient(135deg, oklch(0.27 0.008 80) 0 12px, oklch(0.255 0.008 80) 12px 24px);
}
image-slot::part(ring) { border: 1.5px dashed oklch(0.55 0.04 80); border-radius: inherit; }
image-slot::part(empty) { color: oklch(0.78 0.02 85); }
image-slot[data-filled]::part(frame) { background: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--amber-deep);
  display: inline-flex;
  align-items: center;
  gap: .6em;
  white-space: nowrap;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: currentColor;
  opacity: .6;
}
.eyebrow.center::before { display: none; }

h1, h2, h3 { font-family: var(--ff-display); font-weight: 800; line-height: 1.02; letter-spacing: -0.02em; text-wrap: balance; }
.h-display { font-size: clamp(2.5rem, 5.6vw, 4.6rem); line-height: .98; letter-spacing: -0.035em; }
.h-section { font-size: clamp(2.1rem, 5vw, 3.7rem); }
.h-sub { font-size: clamp(1.3rem, 2.6vw, 1.9rem); font-weight: 700; letter-spacing: -.02em; }
.lede { font-size: clamp(1.05rem, 1.7vw, 1.35rem); color: var(--muted); line-height: 1.5; max-width: 56ch; text-wrap: pretty; }

.amber-text { color: var(--amber-deep); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-weight: 700; font-size: 1rem;
  padding: .92em 1.5em;
  border-radius: 999px;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .2s;
  white-space: nowrap;
  letter-spacing: -.01em;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-amber {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(0,0,0,0), inset 0 0 0 1px oklch(0.52 0.15 252);
}
.btn-amber:hover { background: var(--amber-hi); transform: translateY(-2px); box-shadow: var(--shadow), 0 14px 30px -10px var(--amber); }
.btn-ink {
  background: var(--ink); color: var(--paper);
}
.btn-ink:hover { background: var(--ink-2); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--paper-3);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); transform: translateY(-2px); }
.btn-ghost.on-dark { color: var(--paper); box-shadow: inset 0 0 0 1.5px var(--ink-3); }
.btn-ghost.on-dark:hover { box-shadow: inset 0 0 0 1.5px var(--muted-dk); }
.btn .arr { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }
.btn-lg { font-size: 1.08rem; padding: 1.05em 1.7em; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
  padding-block: 13px;
}
.header.scrolled {
  background: color-mix(in oklab, var(--paper) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 var(--paper-3);
  padding-block: 8px;
}
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; }
/* Daniel's original logo, backlit like his LED strip work: a 1px rim of blue
   light hugging the letterforms ("tight, more like a shadow" — Paul 2026-06-06),
   near-instant falloff, only a whisper of wall-wash. */
.brand-img {
  height: 38px;
  width: auto;
  display: block;
  filter:
    drop-shadow(0 0   1px oklch(0.80 0.15 246 / 0.48))
    drop-shadow(0 0 2.5px oklch(0.66 0.17 250 / 0.28))
    drop-shadow(0 0   8px oklch(0.58 0.17 252 / 0.06));
  transition: filter .35s var(--ease);
}
.brand:hover .brand-img,
.brand:focus-visible .brand-img {
  filter:
    drop-shadow(0 0 1.5px oklch(0.82 0.15 246 / 0.50))
    drop-shadow(0 0   4px oklch(0.66 0.17 250 / 0.33))
    drop-shadow(0 0  10px oklch(0.58 0.17 252 / 0.09));
}
/* footer: dark panel — invert the logo to white, same tight backlight */
.footer .brand-img {
  filter:
    brightness(0) invert(1)
    drop-shadow(0 0   1px oklch(0.80 0.15 246 / 0.48))
    drop-shadow(0 0 2.5px oklch(0.66 0.17 250 / 0.30))
    drop-shadow(0 0   8px oklch(0.58 0.17 252 / 0.08));
}
.bolt {
  width: 34px; height: 34px; flex: none;
  display: grid; place-items: center;
  background: var(--ink); border-radius: 9px;
  position: relative; overflow: hidden;
}
.bolt {
  width: 36px; height: 36px; flex: none;
  display: grid; place-items: center;
  background: var(--ink); border-radius: 9px;
  position: relative; overflow: hidden;
}
.bolt svg { width: 19px; height: 19px; }
.bolt path { fill: var(--amber); }
/* brand tile: LEAC over a bolt watermark */
.bolt .bolt-bg { position: absolute; width: 124%; height: 124%; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.bolt .bolt-bg path { fill: var(--amber); opacity: .9; }
.bolt .leac { position: relative; z-index: 1; font-family: var(--ff-display); font-weight: 800; font-size: 10px; letter-spacing: .01em; color: #fff; line-height: 1; text-shadow: 0 1px 2px rgba(0,0,0,.55); }
/* lightning bolt set into the wordmark (replaces the 'i' in Lightning) */
.wbolt { height: 1.06em; width: auto; display: inline-block; vertical-align: -0.17em; margin: 0 -0.2em; }
.wbolt path { fill: var(--amber-deep); }
.footer .wbolt path { fill: var(--amber); }
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name b { font-family: var(--ff-display); font-weight: 800; font-size: 1.12rem; letter-spacing: -.02em; }
.brand-name span { font-family: var(--ff-mono); font-size: .58rem; letter-spacing: .2em; word-spacing: -0.28em; text-transform: uppercase; color: var(--muted); margin-top: 4px; display: block; text-align: left; white-space: nowrap; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: .95rem; font-weight: 600; padding: .5em .2em; margin-inline: .5em;
  color: var(--ink); transition: color .2s; white-space: nowrap; position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--amber); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .26s var(--ease);
}
.nav a:hover { color: var(--amber-deep); }
.nav a:hover::after { transform: scaleX(1); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.phone-link {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 700; font-size: 1rem; letter-spacing: -.01em; white-space: nowrap;
}
.phone-link .dot { width: 8px; height: 8px; border-radius: 50%; background: oklch(0.72 0.17 145); box-shadow: 0 0 0 0 oklch(0.72 0.17 145 / .5); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 oklch(0.72 0.17 145 / .5);} 70%{ box-shadow: 0 0 0 7px oklch(0.72 0.17 145 / 0);} 100%{ box-shadow:0 0 0 0 oklch(0.72 0.17 145 / 0);} }

.menu-btn { display: none; width: 44px; height: 44px; border-radius: 11px; background: var(--ink); place-items: center; }
.menu-btn span, .menu-btn span::before, .menu-btn span::after { content:""; display:block; width: 18px; height: 2px; background: var(--paper); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.menu-btn span { position: relative; }
.menu-btn span::before { position:absolute; top:-6px; }
.menu-btn span::after { position:absolute; top:6px; }
body.menu-open .menu-btn span { background: transparent; }
body.menu-open .menu-btn span::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .menu-btn span::after { transform: translateY(-6px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 99;
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: var(--gutter);
  transform: translateY(-100%); opacity: 0; pointer-events: none;
  transition: transform .45s var(--ease), opacity .35s;
}
body.menu-open .drawer { transform: translateY(0); opacity: 1; pointer-events: auto; }
.drawer a { color: var(--paper); font-family: var(--ff-display); font-weight: 800; font-size: clamp(2rem, 9vw, 3rem); letter-spacing: -.03em; padding: .12em 0; transition: color .2s, transform .2s; }
.drawer a:hover { color: var(--amber); transform: translateX(8px); }
.drawer .drawer-foot { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.drawer .drawer-foot .phone-link { color: var(--paper); font-size: 1.3rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(8px, 1.5vw, 20px); padding-bottom: clamp(36px, 5vw, 72px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 60px); align-items: stretch; }
.hero-copy { max-width: 640px; }
.hero h1 { margin-top: 22px; }
.hero h1 .spark { color: var(--amber-deep); position: relative; white-space: nowrap; }
.hero .lede { margin-top: 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-assure { margin-top: 22px; font-family: var(--ff-mono); font-size: .76rem; letter-spacing: .04em; color: var(--muted); display:flex; align-items:center; gap:10px; flex-wrap: wrap; }
.hero-assure b { color: var(--ink); font-weight: 700; }

.hero-media { position: relative; }
.hero-media { position: relative; display: flex; }
.hero-media image-slot { width: 100%; aspect-ratio: 4/5; box-shadow: var(--shadow-lg); }
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: 64% 42%; border-radius: 20px; }
.hero-media .hero-frame { position: relative; flex: 1; min-height: 420px; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-media .hero-frame::after { content:""; position:absolute; inset:0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.14); border-radius: 20px; pointer-events:none; }
.hero-badge {
  position: absolute; left: -18px; bottom: 34px;
  background: var(--paper); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
}
.hero-badge .num { font-family: var(--ff-display); font-weight: 800; font-size: 2.4rem; line-height: 1; letter-spacing: -.04em; }
.hero-badge .lbl { font-size: .82rem; line-height: 1.25; color: var(--muted); font-weight: 600; }
.hero-badge .lbl b { color: var(--ink); display:block; }

/* awards finalist badge */
.award { display: inline-flex; align-items: center; gap: 12px; background: var(--paper); border: 1px solid var(--paper-3); border-radius: 14px; padding: 10px 16px 10px 12px; box-shadow: var(--shadow); }
.award img { height: 52px; width: auto; display: block; }
.award .txt { line-height: 1.15; }
.award .txt b { font-family: var(--ff-display); font-weight: 800; font-size: .98rem; letter-spacing: -.01em; display: block; }
.award .txt span { font-family: var(--ff-mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.award.on-dark { background: var(--ink-2); border-color: var(--ink-3); }
.award.on-dark .txt b { color: var(--paper); }
.award.on-dark .txt span { color: var(--muted-dk); }

/* rating row */
.stars { display: inline-flex; gap: 2px; color: var(--star); }
.stars svg { width: 16px; height: 16px; }

/* ============================================================
   MARQUEE / SERVICE-AREA STRIP
   ============================================================ */
.strip {
  background: var(--ink); color: var(--paper);
  padding-block: 16px; overflow: hidden;
  border-block: 1px solid var(--ink-3);
}
.marquee { display: flex; gap: 0; width: max-content; animation: scroll-x 38s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee .m-item { display: inline-flex; align-items: center; gap: 18px; padding-inline: 22px; font-family: var(--ff-display); font-weight: 700; font-size: 1.15rem; letter-spacing: -.01em; white-space: nowrap; }
.marquee .m-item .b { color: var(--amber); font-size: .9rem; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION SHELL
   ============================================================ */
section { position: relative; }
.section-pad { padding-block: clamp(64px, 9vw, 130px); }
.section-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 70px); }
.section-head .lede { margin-top: 20px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* ============================================================
   SERVICES — editorial numbered list
   ============================================================ */
.services { background: var(--paper); }
.svc-list { border-top: 1px solid var(--paper-3); }
.svc-row {
  display: grid; grid-template-columns: 84px 1fr auto; gap: clamp(16px,3vw,48px);
  align-items: center;
  padding: clamp(22px, 3vw, 34px) 0 clamp(22px, 3vw, 34px) 0;
  border-bottom: 1px solid var(--paper-3);
  position: relative;
}
.svc-row::before {
  content:""; position:absolute; left:0; top:0; bottom:0; width: 0;
  background: var(--amber); transition: width .35s var(--ease);
}
.svc-num, .svc-main { transition: transform .35s var(--ease); }
.svc-row:hover .svc-num, .svc-row:hover .svc-main { transform: translateX(14px); }
.svc-row:hover::before { width: 4px; }
.svc-num { font-family: var(--ff-mono); font-size: .9rem; color: var(--muted); font-weight: 500; letter-spacing: .05em; padding-top: .25em; }
.svc-row:hover .svc-num { color: var(--amber-deep); }
.svc-main h3 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
.svc-main p { color: var(--muted); margin-top: 8px; max-width: 60ch; font-size: 1.02rem; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; max-width: 280px; }
.svc-tags span { font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--paper-3); padding: .4em .7em; border-radius: 99px; }

/* ============================================================
   WORK GALLERY
   ============================================================ */
.work { background: var(--paper-2); }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(12px, 1.6vw, 18px); grid-auto-rows: clamp(220px, 27vw, 350px); }
.g-item { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--ink-2); }
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s var(--ease); }
.g-item:hover img { transform: scale(1.045); }
.g-item::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(0,0,0,.06); border-radius: var(--radius); pointer-events: none; }
.g-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 18px; color: #fff; font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; background: linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,0)); display: flex; align-items: center; gap: 8px; }
.g-cap .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--amber); flex: none; }
.g-a { grid-column: span 7; }
.g-b { grid-column: span 5; }
.g-c { grid-column: span 5; }
.g-d { grid-column: span 7; }
@media (max-width: 720px) {
  .gallery-grid { grid-auto-rows: auto; }
  .g-a, .g-b, .g-c, .g-d { grid-column: span 12; aspect-ratio: 4/3; }
}

/* ============================================================
   ABOUT — Daniel / The Slopes
   ============================================================ */
.about { background: var(--ink); color: var(--paper); }
.about .eyebrow { color: var(--amber); }
.about .lede { color: var(--muted-dk); }
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.about-media { position: relative; display: flex; gap: 14px; }
.about-media .col { display: flex; flex-direction: column; gap: 14px; flex: 1; min-width: 0; }
.about-media img { width: 100%; object-fit: cover; border-radius: 18px; display: block; }
.about-media .col-left img { flex: 1; min-height: 0; }
.about-media .col-right img { aspect-ratio: 4/5; }
.about-copy h2 { color: var(--paper); }
.about-copy h2 em { font-style: normal; color: var(--amber); }
.about-copy .body { color: var(--muted-dk); font-size: 1.08rem; margin-top: 22px; display: flex; flex-direction: column; gap: 16px; max-width: 54ch; }
.about-copy .body strong { color: var(--paper); font-weight: 700; }
.sign { margin-top: 30px; display: flex; align-items: center; gap: 16px; }
.sign .who { font-family: var(--ff-display); font-weight: 800; font-size: 1.15rem; }
.sign .who span { display:block; font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-dk); font-weight: 500; margin-top: 4px; }

/* stat cluster */
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--ink-3); border: 1px solid var(--ink-3); border-radius: var(--radius); overflow: hidden; margin-top: 40px; }
.stat { background: var(--ink-2); padding: 24px 22px; }
.stat .n { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.8rem,3.5vw,2.6rem); letter-spacing: -.03em; color: var(--amber); }
.stat .t { font-size: .85rem; color: var(--muted-dk); margin-top: 4px; line-height: 1.3; }

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--paper-2); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.5vw, 28px); counter-reset: step; }
.step { background: var(--paper); border-radius: var(--radius); padding: 32px 28px 30px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.step .sn { font-family: var(--ff-mono); font-size: .8rem; letter-spacing: .1em; color: var(--amber-deep); font-weight: 600; }
.step h3 { font-size: 1.5rem; margin-top: 14px; }
.step p { color: var(--muted); margin-top: 10px; font-size: 1rem; }
.step .big { position: absolute; right: -8px; bottom: -28px; font-family: var(--ff-display); font-weight: 800; font-size: 9rem; line-height: 1; color: var(--paper-2); z-index: 0; user-select: none; }
.step > * { position: relative; z-index: 1; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--paper); }
.reviews-top { display:flex; align-items:flex-end; justify-content:space-between; gap:24px; flex-wrap: wrap; margin-bottom: clamp(36px,5vw,60px); }
.gscore { display:flex; align-items:center; gap:18px; }
.gscore .big { font-family: var(--ff-display); font-weight:800; font-size:3.4rem; line-height:1; letter-spacing:-.04em; }
.gscore .meta { font-size:.9rem; color: var(--muted); }
.gscore .meta .stars { margin-bottom: 4px; }
.gscore .meta b { color: var(--ink); }

.review-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(310px, 1fr); gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); scrollbar-width: thin; }
.review-track::-webkit-scrollbar { height: 8px; }
.review-track::-webkit-scrollbar-thumb { background: var(--paper-3); border-radius: 99px; }
.rev-card { scroll-snap-align: start; background: var(--paper); border: 1px solid var(--paper-3); border-radius: var(--radius); padding: 28px 26px; display:flex; flex-direction:column; gap:14px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.rev-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--paper-2); }
.rev-card .stars svg { width: 17px; height: 17px; }
.rev-card .quote { font-size: 1.08rem; line-height: 1.5; font-weight: 500; flex: 1; text-wrap: pretty; }
.rev-card .who { display:flex; align-items:center; gap:12px; padding-top: 6px; border-top: 1px solid var(--paper-3); }
.rev-card .av { width:40px; height:40px; border-radius:50%; background: var(--ink); color: var(--amber); display:grid; place-items:center; font-family:var(--ff-display); font-weight:800; font-size:1.05rem; flex:none; }
.rev-card .who b { font-size:.95rem; }
.rev-card .who span { display:block; font-size:.78rem; color: var(--muted); font-family: var(--ff-mono); letter-spacing:.03em; }
.rev-hint { font-family: var(--ff-mono); font-size:.72rem; letter-spacing:.05em; color: var(--muted); margin-top: 18px; display:flex; align-items:center; gap:8px; }
.rev-hint .arr { color: var(--amber-deep); }

/* ============================================================
   AREAS
   ============================================================ */
.areas { background: var(--ink); color: var(--paper); }
.areas .eyebrow { color: var(--amber); }
.areas-grid { display:grid; grid-template-columns: 1fr 1.3fr; gap: clamp(32px,5vw,72px); align-items:center; }
.areas h2 { color: var(--paper); }
.areas .lede { color: var(--muted-dk); }
.area-cloud { display:flex; flex-wrap:wrap; gap:10px; }
.area-cloud .chip { font-family: var(--ff-body); font-weight:600; font-size:.98rem; padding:.55em 1.05em; border-radius:99px; border:1px solid var(--ink-3); color: var(--paper); transition: background .2s, color .2s, border-color .2s, transform .2s; }
.area-cloud .chip:hover { background: var(--amber); color: #fff; border-color: var(--amber); transform: translateY(-2px); }
.area-cloud .chip.hub { background: var(--ink-2); border-color: var(--amber); }
.area-note { font-family: var(--ff-mono); font-size:.78rem; color: var(--muted-dk); margin-top: 22px; letter-spacing:.03em; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--paper-2); }
.contact-grid { display:grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px,5vw,64px); align-items: stretch; }
.contact-pitch h2 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
.contact-pitch .lede { margin-top: 20px; }
.contact-direct { margin-top: 38px; display:flex; flex-direction:column; gap: 4px; }
.contact-direct a.big-phone { font-family: var(--ff-display); font-weight:800; font-size: clamp(2rem,4.5vw,3rem); letter-spacing:-.03em; display:inline-flex; align-items:center; gap:.4em; transition: color .2s; width: max-content; }
.contact-direct a.big-phone:hover { color: var(--amber-deep); }
.contact-meta { margin-top: 26px; display:grid; grid-template-columns: repeat(2, max-content); gap: 22px 48px; }
.contact-meta .k { font-family:var(--ff-mono); font-size:.68rem; letter-spacing:.16em; text-transform:uppercase; color: var(--muted); }
.contact-meta .v { font-weight:600; margin-top:4px; }
.contact-meta .v a:hover { color: var(--amber-deep); }
.socials { display:flex; gap:10px; margin-top: 28px; }
.socials a { width:44px; height:44px; border-radius:12px; background: var(--paper); display:grid; place-items:center; box-shadow: var(--shadow); transition: transform .2s, background .2s; }
.socials a:hover { transform: translateY(-3px); background: var(--ink); }
.socials a svg { width: 20px; height: 20px; fill: var(--ink); transition: fill .2s; }
.socials a:hover svg { fill: var(--amber); }

/* form card */
.qform { background: var(--ink); color: var(--paper); border-radius: var(--radius-lg); padding: clamp(28px,4vw,42px); box-shadow: var(--shadow-lg); align-self: stretch; }
.qform h3 { color: var(--paper); font-size: 1.6rem; }
.qform p.sub { color: var(--muted-dk); font-size:.95rem; margin-top:8px; }
.field { margin-top: 18px; }
.field label { font-family: var(--ff-mono); font-size:.68rem; letter-spacing:.14em; text-transform:uppercase; color: var(--muted-dk); display:block; margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width:100%; font: inherit; font-size: 1rem; color: var(--paper);
  background: var(--ink-2); border: 1px solid var(--ink-3); border-radius: 12px;
  padding: .85em 1em; transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: oklch(0.5 0.01 80); }
.field input:focus, .field textarea:focus, .field select:focus { outline:none; border-color: var(--amber); box-shadow: 0 0 0 3px oklch(0.58 0.146 252 / .28); }
.field textarea { resize: vertical; min-height: 96px; }
.field.row2 { display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.invalid > input, .invalid > textarea { border-color: oklch(0.6 0.2 25); }
.err { color: oklch(0.72 0.17 30); font-size:.78rem; margin-top:6px; display:none; font-family: var(--ff-mono); }
.invalid > .err { display:block; }
.qform .btn { width:100%; justify-content:center; margin-top: 22px; }
.form-ok { display:none; flex-direction:column; align-items:center; text-align:center; gap:14px; padding: 18px 0; }
.form-ok.show { display:flex; }
.form-ok .tick { width:64px; height:64px; border-radius:50%; background: var(--amber); display:grid; place-items:center; }
.form-ok .tick svg { width: 30px; height:30px; }
.form-ok h3 { font-size: 1.5rem; }
.form-ok p { color: var(--muted-dk); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--paper); padding-top: clamp(50px,7vw,84px); padding-bottom: 40px; }
.footer-top { display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap; padding-bottom: 44px; border-bottom: 1px solid var(--ink-3); }
.footer .brand-name b { color: var(--paper); }
.footer-cols { display:flex; gap: clamp(32px,5vw,80px); flex-wrap: wrap; }
.fcol h4 { font-family: var(--ff-mono); font-size:.7rem; letter-spacing:.16em; text-transform:uppercase; color: var(--muted-dk); font-weight:500; margin-bottom: 14px; }
.fcol a, .fcol p { display:block; color: var(--paper); font-size:.96rem; padding: 4px 0; opacity:.85; transition: opacity .2s, color .2s; }
.fcol a:hover { opacity:1; color: var(--amber); }
.footer-bottom { display:flex; justify-content:space-between; gap:18px; flex-wrap:wrap; padding-top: 28px; font-size:.8rem; color: var(--muted-dk); font-family: var(--ff-mono); letter-spacing:.02em; }
.footer-bottom a:hover { color: var(--amber); }

/* ---------- grain texture (rough & tumble) ---------- */
.grain::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .045; mix-blend-mode: overlay;
}
.grain > * { position: relative; z-index: 2; }

/* ---------- downlight glow (lighting-inspired) ---------- */
.lit { position: relative; }
.lit::before {
  content: ""; position: absolute; top: -6%; left: 50%; transform: translateX(-50%);
  width: min(1000px, 90%); height: 60%;
  background: radial-gradient(ellipse at center top, oklch(0.58 0.146 252 / .22), transparent 68%);
  pointer-events: none; z-index: 0;
}
.hero-media::before {
  content: ""; position: absolute; inset: -10% -8% -14% -8%;
  background: radial-gradient(ellipse at 60% 38%, oklch(0.58 0.146 252 / .28), transparent 62%);
  filter: blur(26px); z-index: 0; pointer-events: none;
}
.hero-frame { position: relative; z-index: 1; }
.hero-badge { z-index: 2; }

/* ============================================================
   FEATURED TESTIMONIAL — the centerpiece
   ============================================================ */
.testi { background: var(--ink); color: var(--paper); }
.testi .eyebrow { color: var(--amber); }
.testi-feature { display: grid; grid-template-columns: 1.45fr .85fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.testi-quote { position: relative; }
.testi-quote .mark { font-family: var(--ff-display); font-weight: 800; font-size: 7rem; line-height: .6; color: var(--amber); display: block; height: .5em; }
.testi-quote blockquote {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(1.7rem, 3.6vw, 3rem); line-height: 1.12; letter-spacing: -.025em;
  color: var(--paper); text-wrap: balance; margin-top: 14px; min-height: 3.4em;
  transition: opacity .5s var(--ease);
}
.testi-quote blockquote em { font-style: normal; color: var(--amber); }
.testi-byline { margin-top: 30px; display: flex; align-items: center; gap: 16px; transition: opacity .5s var(--ease); }
.testi-byline .av { width: 52px; height: 52px; border-radius: 50%; background: var(--amber); color: #fff; display: grid; place-items: center; font-family: var(--ff-display); font-weight: 800; font-size: 1.3rem; flex: none; }
.testi-byline .who b { font-size: 1.05rem; }
.testi-byline .who span { display: block; font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .06em; color: var(--muted-dk); margin-top: 3px; }
.testi-nav { display: flex; align-items: center; gap: 14px; margin-top: 36px; }
.testi-nav button { width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid var(--ink-3); color: var(--paper); display: grid; place-items: center; transition: background .2s, color .2s, border-color .2s, transform .2s; }
.testi-nav button:hover { background: var(--amber); color: var(--ink); border-color: var(--amber); }
.testi-nav button:active { transform: scale(.94); }
.testi-nav button svg { width: 20px; height: 20px; }
.testi-dots { display: flex; gap: 8px; margin-left: 8px; }
.testi-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-3); transition: width .3s var(--ease), background .3s; cursor: pointer; }
.testi-dots i.on { width: 26px; background: var(--amber); }

.testi-side { display: flex; flex-direction: column; gap: 18px; }
.testi-score { background: var(--ink-2); border: 1px solid var(--ink-3); border-radius: var(--radius); padding: 26px 28px; }
a.testi-score { display: block; text-decoration: none; transition: border-color .25s var(--ease), transform .25s var(--ease); }
a.testi-score:hover { border-color: var(--amber); transform: translateY(-2px); }
.testi-score .glink { color: var(--amber); margin-left: auto; transition: transform .25s var(--ease); display: inline-block; }
a.testi-score:hover .glink { transform: translateX(3px); }
.testi-score .glabel { display: flex; align-items: center; }
.testi-score .row { display: flex; align-items: center; gap: 14px; }
.testi-score .big { font-family: var(--ff-display); font-weight: 800; font-size: 3.2rem; line-height: 1; letter-spacing: -.04em; color: var(--paper); }
.testi-score .stars svg { width: 19px; height: 19px; }
.testi-score .glabel { font-size: .86rem; color: var(--muted-dk); margin-top: 12px; display: flex; align-items: center; gap: 8px; }
.testi-score .glabel b { color: var(--paper); }
.testi-side image-slot, .testi-side img { width: 100%; aspect-ratio: 4/3; }
.testi-side img { object-fit: cover; border-radius: var(--radius); display: block; }

@media (max-width: 1000px) {
  .testi-feature { grid-template-columns: 1fr; }
  .testi-quote blockquote { min-height: 0; }
}

/* ---------- reveal animation (base = visible; JS hides then reveals) ---------- */
.reveal { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal { opacity: 0; transform: translateY(24px); }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}
@media print {
  html.js .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .nav { display: none; }
  .header-cta .btn-quote { display: none; }
  .menu-btn { display: grid; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { max-width: 460px; }
  .hero-media .hero-frame { min-height: 0; }
  .hero-photo { aspect-ratio: 4/3; height: auto; }
  .hero-badge { left: auto; right: 18px; }
  .about-grid, .areas-grid, .contact-grid { grid-template-columns: 1fr; }
  .areas-grid { gap: 36px; }
}
@media (max-width: 720px) {
  .steps { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 54px 1fr; }
  .svc-tags { display: none; }
  .stats { grid-template-columns: 1fr; }
  .stat { display:flex; align-items:baseline; gap:14px; }
  .field.row2 { grid-template-columns: 1fr; }
  .contact-meta { grid-template-columns: 1fr 1fr; }
  .about-media { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 460px) {
  .phone-link span.no-sm { display:none; }
  .hero-badge { right: 8px; bottom: 14px; padding: 12px 15px; }
}
