/* =====================================================================
   Broadband Tower Services - "Steel & Signal"
   Industrial-vertical. Graphite base, hi-vis safety-orange accent.
   ===================================================================== */

:root {
  --ink:        #0e1116;   /* near-black graphite base        */
  --ink-2:      #151b24;   /* raised panel                    */
  --ink-3:      #1d2530;   /* card                            */
  --steel:      #5b7a99;   /* muted steel blue                */
  --steel-2:    #8aa6bf;
  --line:       #2a3340;   /* hairline borders                */
  --paper:      #f3f1ea;   /* warm off-white text             */
  --paper-dim:  #aeb6c0;   /* secondary text                  */
  --paper-mute: #6b7785;   /* tertiary                        */
  --hi:         #c95f33;   /* muted burnt-copper orange (accent) */
  --hi-2:       #db7f54;   /* lighter warm hover                 */
  --hi-deep:    #97431d;
  --beacon:     #e0473c;

  --font-display: "Oswald", "Barlow Semi Condensed", Impact, sans-serif;
  --font-cond:    "Barlow Semi Condensed", "Oswald", sans-serif;
  --font-body:    "Barlow", system-ui, sans-serif;

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 80px);
  --r: 4px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 17px;
  letter-spacing: .005em;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: .01em;
  text-transform: uppercase;
}

::selection { background: var(--hi); color: #1a0c05; }

/* ---------- layout helpers ---------- */
.section { padding: clamp(64px, 9vw, 130px) var(--pad); position: relative; }
.section__head { max-width: 860px; margin-bottom: clamp(36px, 5vw, 64px); }
.section__sub { font-size: 1.1rem; color: var(--paper-dim); max-width: 60ch; margin-top: 18px; }

.kicker {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--hi);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.kicker span {
  font-family: var(--font-display);
  background: var(--hi);
  color: #fff;
  padding: 2px 9px 1px;
  border-radius: 2px;
  letter-spacing: .05em;
}
.kicker--light { color: #1a0c05; }
.kicker--light span { background: #1a0c05; color: var(--hi); }

h2 { font-size: clamp(1.75rem, 3.6vw, 2.9rem); }
.hl { color: var(--hi); }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--hi);
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .95rem;
  padding: 13px 26px;
  border-radius: var(--r);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .2s;
  white-space: nowrap;
}
.btn--accent { background: var(--hi); color: #fff; box-shadow: none; }
.btn--accent:hover { background: var(--hi-2); color: #1a0c05; transform: translateY(-2px); box-shadow: 0 8px 20px -12px rgba(201,95,51,.5); }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--paper); }
.btn--ghost:hover { border-color: var(--hi); color: var(--hi); transform: translateY(-2px); }
.btn--lg { padding: 16px 34px; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; gap: 28px;
  padding: 14px var(--pad);
  background: rgba(14,17,22,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { flex-shrink: 0; }
.brand__logo { height: 34px; width: auto; }
.nav { display: flex; gap: 30px; margin-left: 12px; }
.nav a {
  font-family: var(--font-cond);
  text-transform: uppercase; letter-spacing: .1em;
  font-weight: 600; font-size: .92rem; color: var(--paper-dim);
  position: relative; padding: 4px 0;
  transition: color .2s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--hi); transition: width .25s var(--ease);
}
.nav a:hover { color: var(--paper); }
.nav a:hover::after { width: 100%; }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.header-phone {
  font-family: var(--font-display); font-size: 1.15rem; letter-spacing: .03em;
  display: flex; align-items: center; gap: 8px; color: var(--paper);
  transition: color .2s;
}
.header-phone:hover { color: var(--hi); }
.header-phone__icon { color: var(--hi); font-size: 1.1rem; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--paper); transition: .3s var(--ease); }

.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); z-index: 55;
  background: var(--ink-2); border-left: 1px solid var(--line);
  padding: 96px 30px 30px; display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%); transition: transform .35s var(--ease);
  box-shadow: -30px 0 60px -20px rgba(0,0,0,.7);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .08em;
  font-weight: 600; font-size: 1.15rem; padding: 14px 0; border-bottom: 1px solid var(--line);
}
.mobile-nav__phone { color: var(--hi) !important; }
.mobile-nav .btn { margin-top: 18px; border-bottom: 0; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; overflow: hidden; padding: clamp(40px, 7vw, 90px) var(--pad) clamp(60px, 8vw, 110px); min-height: 80vh; display: flex; align-items: center; }
.hero__grid-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 90% at 78% 12%, rgba(201,95,51,.10), transparent 55%),
    radial-gradient(90% 80% at 10% 100%, rgba(91,122,153,.12), transparent 60%),
    linear-gradient(180deg, #0c0f14, #0e1116 60%, #0b0e13);
}
.hero__grid-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(110% 80% at 70% 30%, #000 0%, transparent 75%);
  opacity: .35;
}
.hero__noise {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .05;
  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.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.elev-ruler {
  position: absolute; left: var(--pad); top: 0; bottom: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: space-around;
  border-left: 1px solid var(--line); padding-left: 10px;
}
.elev-ruler span {
  font-family: var(--font-cond); font-weight: 700; font-size: .72rem;
  letter-spacing: .18em; color: var(--paper-mute); position: relative;
}
.elev-ruler span::before {
  content: ""; position: absolute; left: -10px; top: 50%; width: 7px; height: 1px; background: var(--hi);
}

.hero__inner {
  position: relative; z-index: 3; width: 100%; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr .7fr; gap: 40px; align-items: center;
}
.hero__copy { padding-left: clamp(28px, 4vw, 56px); }
.eyebrow {
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .26em;
  font-weight: 700; font-size: .82rem; color: var(--hi); margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); font-weight: 600; letter-spacing: .005em; }
.hero__lede { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--paper-dim); max-width: 54ch; margin: 26px 0 34px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero__trust {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px;
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .06em;
  font-size: .82rem; font-weight: 600; color: var(--paper-mute);
}
.hero__trust li { display: flex; align-items: center; gap: 9px; }
.hero__trust li::before { content: "\25B8"; color: var(--hi); }

/* tower art */
.hero__art { position: relative; display: flex; justify-content: center; align-items: flex-start; }
.tower { width: clamp(180px, 22vw, 280px); height: auto; overflow: visible; filter: drop-shadow(0 30px 50px rgba(0,0,0,.55)); }
.tower__leg, .tower__spine { stroke: var(--steel-2); stroke-width: 3; }
.tower__spine { stroke: var(--steel); stroke-width: 1.5; stroke-dasharray: 4 6; opacity: .6; }
.tower__brace path { stroke: var(--steel); stroke-width: 1.6; }
.tower__antenna rect { fill: var(--paper-dim); }
.tower__beacon { fill: var(--beacon); animation: beacon 1.8s steps(1) infinite; }
@keyframes beacon { 0%, 50% { opacity: 1; filter: drop-shadow(0 0 8px var(--beacon)); } 51%, 100% { opacity: .15; filter: none; } }

.signal { position: absolute; top: -6px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; }
.signal__ring {
  position: absolute; left: 50%; top: 50%; border: 2px solid var(--hi);
  border-radius: 50%; transform: translate(-50%, -50%);
  width: 20px; height: 20px; opacity: 0; animation: ping 3.4s var(--ease) infinite;
}
.signal__ring:nth-child(2) { animation-delay: 1.1s; }
.signal__ring:nth-child(3) { animation-delay: 2.2s; }
@keyframes ping {
  0% { width: 16px; height: 16px; opacity: .8; }
  100% { width: 240px; height: 240px; opacity: 0; }
}

.hero__scroll { position: absolute; left: 50%; bottom: 22px; z-index: 4; transform: translateX(-50%); width: 26px; height: 42px; border: 1.5px solid var(--line); border-radius: 16px; }
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; background: var(--hi); border-radius: 2px; transform: translateX(-50%); animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 16px); } }

/* =====================================================================
   TICKER
   ===================================================================== */
.ticker { background: var(--hi); color: #1a0c05; overflow: hidden; border-top: 2px solid #1a0c05; border-bottom: 2px solid #1a0c05; }
.ticker__track {
  display: flex; align-items: center; gap: 26px; white-space: nowrap;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em;
  font-size: .9rem; padding: 9px 0; width: max-content;
  animation: ticker 40s linear infinite;
}
.ticker__track b { color: var(--hi-deep); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* =====================================================================
   SERVICES
   ===================================================================== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.svc {
  background: var(--ink); padding: 32px 28px 36px; position: relative;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.svc__no {
  font-family: var(--font-display); font-size: .82rem; letter-spacing: .15em;
  color: var(--hi); border: 1px solid var(--line); padding: 2px 8px; border-radius: 2px;
  display: inline-block; margin-bottom: 18px;
}
.svc h3 { font-size: 1.32rem; margin-bottom: 12px; line-height: 1.05; }
.svc p { color: var(--paper-dim); font-size: .98rem; }
.svc::before { content: ""; position: absolute; left: 0; top: 0; width: 0; height: 3px; background: var(--hi); transition: width .35s var(--ease); }
.svc:hover { background: var(--ink-3); transform: translateY(-3px); }
.svc:hover::before { width: 100%; }
.svc:hover h3 { color: var(--hi); }

/* =====================================================================
   STATS
   ===================================================================== */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stat { padding: clamp(34px, 5vw, 56px) var(--pad); text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat__num { font-family: var(--font-display); font-size: clamp(2.1rem, 4vw, 3.2rem); font-weight: 600; color: var(--paper); display: block; line-height: 1; }
.stat__num i { font-style: normal; font-size: .4em; color: var(--hi); margin-left: 4px; }
.stat__label { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .12em; font-weight: 600; font-size: .82rem; color: var(--paper-mute); margin-top: 12px; display: block; }

/* =====================================================================
   WHY
   ===================================================================== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card {
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line); border-radius: var(--r); padding: 32px 28px;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.why-card:hover { transform: translateY(-4px); border-color: var(--hi); }
.why-card__ic {
  width: 48px; height: 48px; border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,95,51,.12); color: var(--hi); font-size: 1.4rem; margin-bottom: 20px;
}
.why-card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.why-card p { color: var(--paper-dim); font-size: .98rem; }

/* =====================================================================
   COVERAGE
   ===================================================================== */
.coverage { background: var(--ink-2); }
.coverage__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr .9fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.coverage__list { list-style: none; margin: 26px 0 32px; display: grid; gap: 12px; }
.coverage__list li { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .05em; font-weight: 600; font-size: 1rem; display: flex; align-items: center; gap: 12px; }
.coverage__list li::before { content: ""; width: 8px; height: 8px; background: var(--hi); transform: rotate(45deg); flex-shrink: 0; }

.coverage__map { position: relative; aspect-ratio: 1.1/1; }
.on-map path { fill: rgba(91,122,153,.10); stroke: var(--steel); stroke-width: 1.5; }
.map-pin { position: absolute; z-index: 2; display: flex; align-items: center; gap: 8px; }
.map-pin b { width: 14px; height: 14px; border-radius: 50%; background: var(--hi); box-shadow: 0 0 0 0 rgba(201,95,51,.6); animation: pin 2.4s var(--ease) infinite; }
.map-pin span { font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: .8rem; background: var(--ink); border: 1px solid var(--line); padding: 4px 9px; border-radius: 2px; }
.map-pin--london { left: 30%; top: 62%; }
.map-pin--gta { left: 55%; top: 50%; }
@keyframes pin { 0% { box-shadow: 0 0 0 0 rgba(201,95,51,.5); } 70% { box-shadow: 0 0 0 16px rgba(201,95,51,0); } 100% { box-shadow: 0 0 0 0 rgba(201,95,51,0); } }

/* =====================================================================
   ABOUT
   ===================================================================== */
.about__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.4fr .8fr; gap: clamp(34px, 5vw, 70px); align-items: start; }
.about__copy p { color: var(--paper-dim); margin-top: 18px; font-size: 1.06rem; max-width: 60ch; }
.about__sign { margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); }
.about__sign strong { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; font-size: 1.2rem; display: block; }
.about__sign span { color: var(--paper-mute); font-size: .9rem; }

.about__facts { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r); padding: 8px 28px; }
.about__facts dl div { display: flex; justify-content: space-between; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.about__facts dl div:last-child { border-bottom: 0; }
.about__facts dt { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; font-size: .82rem; color: var(--paper-mute); }
.about__facts dd { text-align: right; font-weight: 600; font-size: .95rem; max-width: 60%; }

/* =====================================================================
   QUOTE
   ===================================================================== */
.quote { background: var(--hi); color: #1a0c05; position: relative; overflow: hidden; }
.quote::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(26,12,5,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(26,12,5,.06) 1px, transparent 1px);
  background-size: 48px 48px; opacity: .6;
}
.quote__inner { position: relative; max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 5vw, 70px); align-items: start; }
.quote__pitch h2 { color: #1a0c05; }
.quote__sub { color: #311708; font-size: 1.08rem; margin: 16px 0 30px; max-width: 42ch; }
.quote__phone { font-family: var(--font-display); font-size: clamp(1.5rem, 2.8vw, 2.15rem); color: #1a0c05; display: inline-flex; align-items: center; gap: 12px; }
.quote__phone span { color: #1a0c05; }
.quote__addr { font-family: var(--font-cond); font-weight: 600; letter-spacing: .03em; margin-top: 18px; color: #3a1c0c; line-height: 1.7; }
.quote__email { color: #1a0c05; font-weight: 700; text-decoration: underline; }
.quote__email:hover { color: var(--hi-deep); }

.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; background: var(--ink); padding: clamp(24px, 3vw, 36px); border-radius: var(--r); box-shadow: 0 40px 80px -30px rgba(0,0,0,.5); }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; font-size: .78rem; color: var(--paper-dim); }
.field label span { color: var(--hi); }
.field input, .field select, .field textarea {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r);
  padding: 12px 14px; color: var(--paper); font-family: var(--font-body); font-size: 1rem;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--hi); box-shadow: 0 0 0 3px rgba(201,95,51,.18);
}
.field select { appearance: none; cursor: pointer; }
.quote-form__status { font-family: var(--font-cond); font-weight: 600; letter-spacing: .04em; margin-top: 12px; min-height: 1.2em; }
.quote-form__status.ok { color: #46d17f; }
.quote-form__status.err { color: var(--hi-2); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: #0a0d12; border-top: 1px solid var(--line); padding-top: clamp(50px, 6vw, 80px); }
.site-footer__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad) 50px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer__brand img { height: 36px; width: auto; margin-bottom: 18px; }
.site-footer__brand p { color: var(--paper-mute); max-width: 32ch; font-size: .95rem; }
.site-footer__col h4 { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .12em; font-size: .82rem; color: var(--hi); margin-bottom: 16px; }
.site-footer__col a, .site-footer__col span { display: block; color: var(--paper-dim); font-size: .95rem; padding: 5px 0; transition: color .2s; }
.site-footer__col a:hover { color: var(--hi); }
.site-footer__bar { border-top: 1px solid var(--line); padding: 22px var(--pad); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-family: var(--font-cond); font-size: .82rem; letter-spacing: .05em; color: var(--paper-mute); text-transform: uppercase; }

/* honeypot (anti-spam) - visually removed, off-screen */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* FAB */
.fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 50; display: none;
  background: var(--hi); color: #1a0c05; font-family: var(--font-cond); font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; padding: 14px 20px; border-radius: 40px;
  box-shadow: 0 14px 34px -10px rgba(201,95,51,.7);
}

/* =====================================================================
   FEATURE PHOTO BAND
   ===================================================================== */
.feature { position: relative; overflow: hidden; padding: clamp(72px, 12vw, 150px) var(--pad); display: flex; }
.feature__bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center 25%; transform: scale(1.02); }
.feature::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(9,12,17,.94) 0%, rgba(9,12,17,.8) 44%, rgba(9,12,17,.4) 100%); }
.feature__inner { position: relative; z-index: 2; max-width: 600px; }
.feature__inner .eyebrow { margin-bottom: 14px; }
.feature__inner h2 { font-size: clamp(2rem, 4.6vw, 3.5rem); margin-bottom: 18px; }
.feature__inner p { color: var(--paper-dim); font-size: 1.12rem; margin-bottom: 28px; max-width: 46ch; }

/* =====================================================================
   GALLERY
   ===================================================================== */
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.shot { position: relative; overflow: hidden; border-radius: var(--r); aspect-ratio: 3 / 4; background: var(--ink-2); }
.shot--wide { grid-column: span 2; aspect-ratio: 3 / 2; }
.shot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .65s var(--ease); }
.shot:hover img { transform: scale(1.06); }
.shot::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; border: 1px solid rgba(255,255,255,.07); border-radius: var(--r); }
.shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 36px 16px 14px; color: #fff;
  font-family: var(--font-cond); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: .88rem;
  background: linear-gradient(transparent, rgba(7,9,13,.92));
}
.shot figcaption::before { content: ""; display: inline-block; width: 14px; height: 2px; background: var(--hi); margin-right: 9px; vertical-align: middle; }

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

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1080px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1.2fr .6fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .shot--wide { aspect-ratio: 16 / 9; }
}
@media (max-width: 860px) {
  .nav, .header-actions { display: none; }
  .nav-toggle { display: flex; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { display: none; }
  .hero__copy { padding-left: 24px; }
  .elev-ruler { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .coverage__inner, .about__inner, .quote__inner { grid-template-columns: 1fr; }
  .about__facts { order: -1; }
  .quote-form { grid-template-columns: 1fr; }
  .field--half { grid-column: 1 / -1; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .feature::after { background: linear-gradient(rgba(9,12,17,.55), rgba(9,12,17,.93)); }
  .feature__bg { background-position: center 20%; }
  .fab { display: inline-flex; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .svc-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .shot, .shot--wide { grid-column: auto; aspect-ratio: 4 / 3; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__bar { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
