/* =========================================================
   JD's Collision Repair — spec preview
   Design system + editorial layout
   ========================================================= */

:root {
  /* Brand */
  --brand:        #14a9e2;   /* JDs cyan */
  --brand-deep:   #0a7bab;
  --brand-darker: #06557a;
  --ink:          #12161c;   /* near-black charcoal */
  --ink-2:        #1c232c;
  --ink-3:        #2a333d;
  --gold:         #e7b23a;   /* award gold */
  --gold-deep:    #c9922a;
  --paper:        #f4f7f9;
  --paper-2:      #e8eef2;
  --line:         #d3dde3;
  --white:        #ffffff;

  --text:         #171c22;
  --text-soft:    #4a5560;
  --text-invert:  #eef5f9;
  --text-invert-soft: #aebcc7;

  /* Type */
  --display: "Helvetica Neue", Helvetica, Arial, "Segoe UI", sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Fluid scale */
  --step--1: clamp(0.82rem, 0.78rem + 0.2vw, 0.92rem);
  --step-0:  clamp(1rem, 0.95rem + 0.25vw, 1.13rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 2.1rem);
  --step-3:  clamp(2rem, 1.6rem + 2vw, 3.2rem);
  --step-4:  clamp(2.6rem, 1.9rem + 3.4vw, 4.6rem);
  --step-5:  clamp(3.2rem, 2.1rem + 5.4vw, 6.6rem);

  /* Space */
  --gutter: clamp(1.5rem, 5vw, 5rem);
  --sec-y: clamp(4rem, 3rem + 5vw, 7rem);
  --maxw: 1240px;

  --radius: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(18,22,28,.08);
  --shadow: 0 18px 50px -20px rgba(10,40,60,.35);
  --shadow-lg: 0 40px 90px -40px rgba(6,40,60,.55);
  --ease: cubic-bezier(.2, .7, .2, 1);

  /* Fine film grain — self-contained SVG data URI, adds tooth to dark panels */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

::selection { background: var(--brand); color: #fff; }

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--sec-y); }

.eyebrow {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--step--1);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 2px;
  background: var(--brand);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--brand); }
.eyebrow.on-dark::before { background: var(--brand); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--brand);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--step-0);
  letter-spacing: 0.01em;
  padding: 0.95em 1.5em;
  background: var(--bg);
  color: var(--fg);
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s var(--ease);
  box-shadow: 0 12px 26px -12px rgba(20,169,226,.7);
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 20px 36px -14px rgba(20,169,226,.85); }
.btn:active { transform: translateY(-1px); }

.btn--ghost {
  --bg: transparent;
  --fg: var(--text-invert);
  border-color: rgba(255,255,255,.4);
  box-shadow: none;
}
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); box-shadow: none; }

.btn--dark {
  --bg: var(--ink);
  --fg: #fff;
  box-shadow: 0 12px 26px -14px rgba(18,22,28,.6);
}
.btn--dark:hover { box-shadow: 0 20px 36px -16px rgba(18,22,28,.7); }

.btn--gold { --bg: var(--gold); --fg: var(--ink); box-shadow: 0 12px 26px -14px rgba(231,178,58,.7); }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.9rem;
}
.brand-logo { display: flex; align-items: center; gap: 0.7rem; }
.brand-logo img {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
}
.site-header.scrolled {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -22px rgba(0,0,0,.5);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}
.nav a {
  font-family: var(--display);
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-invert);
  position: relative;
  padding: 0.3rem 0;
  transition: color .25s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }
.site-header.scrolled .nav a { color: var(--text); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: var(--step-0);
  color: #fff;
  background: var(--brand);
  padding: 0.55em 1.05em;
  border-radius: 100px;
  transition: transform .3s var(--ease), box-shadow .3s;
  box-shadow: 0 10px 24px -14px rgba(20,169,226,.9);
}
.header-cta svg { width: 1.05em; height: 1.05em; }
.header-cta:hover { transform: translateY(-2px); }

.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }

.menu-toggle { display: none; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: min(100svh, 860px);
  display: flex;
  align-items: flex-end;
  color: var(--text-invert);
  isolation: isolate;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% 40%;
  /* Duotone-ish grade so the soft-focus source reads as deliberate atmosphere, not a low-res photo */
  filter: grayscale(.44) saturate(1.2) contrast(1.24) brightness(.74);
  transform: scale(1.08);
  animation: heroZoom 14s ease-out forwards;
}
/* Brand wash so the soft-focus source reads as intentional atmosphere */
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, rgba(6,20,34,.62), rgba(20,169,226,.4) 66%, rgba(231,178,58,.14));
  mix-blend-mode: soft-light;
}
@keyframes heroZoom { to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .hero__media img { animation: none; transform: none; }
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(5,14,22,.95) 0%, rgba(7,24,38,.78) 40%, rgba(9,52,80,.34) 72%, rgba(20,169,226,.14) 100%),
    linear-gradient(0deg, rgba(5,13,20,.92) 0%, rgba(5,13,20,0) 46%),
    radial-gradient(90% 70% at 82% 8%, rgba(20,169,226,.18), transparent 60%);
}
.hero__scrim::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  background-size: 140px 140px;
  opacity: .07;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__inner {
  width: 100%;
  padding-block: clamp(7rem, 12vh, 9rem) clamp(3rem, 7vh, 5.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(300px, 0.86fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.hero__content { max-width: 20ch; max-width: min(680px, 100%); }

/* Hero value card — frosted focal element that fills the composition */
.hero__aside { justify-self: end; width: 100%; max-width: 400px; }
.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.7rem 1.5rem;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.14);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 100% 0%, rgba(20,169,226,.22), transparent 60%);
  pointer-events: none;
}
.hero-card__label {
  position: relative;
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--step--1);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  display: block;
  margin-bottom: 1.1rem;
}
.hero-card__list { list-style: none; padding: 0; display: grid; gap: 0.85rem; margin-bottom: 1.4rem; }
.hero-card__list li {
  position: relative;
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: var(--step-0);
  line-height: 1.35;
  color: #fff;
}
.hero-card__list svg {
  width: 1.15rem; height: 1.15rem;
  flex: none;
  margin-top: 3px;
  color: var(--brand);
  background: rgba(20,169,226,.16);
  border-radius: 6px;
  padding: 3px;
  box-sizing: content-box;
}
.hero-card__cta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--brand);
  color: #fff;
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: 0 14px 28px -14px rgba(20,169,226,.85);
}
.hero-card__cta:hover { transform: translateY(-2px); box-shadow: 0 20px 34px -16px rgba(20,169,226,.95); }
.hero-card__cta svg { width: 1.4rem; height: 1.4rem; flex: none; }
.hero-card__cta span {
  display: flex;
  flex-direction: column;
  font-family: var(--display);
  font-weight: 800;
  font-size: var(--step-1);
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.hero-card__cta small {
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 2px;
}
.hero-card__note {
  position: relative;
  display: block;
  margin-top: 0.95rem;
  font-size: var(--step--1);
  color: var(--text-invert-soft);
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(231,178,58,.14);
  border: 1px solid rgba(231,178,58,.45);
  color: #f6dfa2;
  padding: 0.4em 0.9em;
  border-radius: 100px;
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--step--1);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.hero__badge svg { width: 1.05em; height: 1.05em; color: var(--gold); }

.hero h1 {
  font-size: var(--step-5);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 0.98;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero h1 .line { display: block; }

.hero__lede {
  font-size: var(--step-1);
  color: var(--text-invert);
  max-width: 46ch;
  line-height: 1.5;
  margin-bottom: 2.2rem;
  text-wrap: pretty;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.hero__meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem 1.05rem;
  margin-top: clamp(2.4rem, 5vh, 3.4rem);
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255,255,255,.16);
}
.hero__meta div {
  min-width: 0;
  line-height: 1.15;
  padding-left: 1.05rem;
  border-left: 1px solid rgba(20,169,226,.4);
}
.hero__meta div:first-child { padding-left: 0; border-left: 0; }
.hero__meta b {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.35rem, 1rem + 0.85vw, 1.9rem);
  color: #fff;
  letter-spacing: -0.03em;
  white-space: nowrap;
  margin-bottom: 0.15rem;
}
.hero__meta span {
  display: block;
  font-size: var(--step--1);
  color: var(--text-invert-soft);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.25;
}

.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(3rem, 7vh, 5.5rem);
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-invert-soft);
  writing-mode: vertical-rl;
}
@media (max-width: 720px) { .scroll-cue { display: none; } }

/* =========================================================
   Marquee trust strip
   ========================================================= */
.trust-strip {
  background: var(--ink);
  color: var(--text-invert);
  border-top: 3px solid var(--brand);
  overflow: hidden;
}
.trust-strip__inner {
  display: flex;
  gap: 3.5rem;
  padding-block: 1.1rem;
  animation: marquee 32s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@media (prefers-reduced-motion: reduce) { .trust-strip__inner { animation: none; } }
.trust-strip:hover .trust-strip__inner { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.trust-strip span {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--step-0);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--text-invert);
}
.trust-strip span::before {
  content: "";
  width: 9px; height: 9px;
  border-radius: 2px;
  background: var(--brand);
  transform: rotate(45deg);
  flex: none;
}

/* =========================================================
   About / intro (asymmetric split)
   ========================================================= */
.about {
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(20,169,226,.06), transparent 55%),
    var(--paper);
  position: relative;
}
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about__body h2 {
  font-size: var(--step-3);
  margin: 1.2rem 0 1.4rem;
  color: var(--ink);
}
.about__body p { color: var(--text-soft); margin-bottom: 1.1rem; max-width: 56ch; }
.about__body p strong { color: var(--text); font-weight: 700; }
.about__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.about__pillar { display: flex; gap: 0.9rem; align-items: flex-start; }
.about__pillar svg { width: 1.6rem; height: 1.6rem; color: var(--brand-deep); flex: none; margin-top: 2px; }
.about__pillar b { font-family: var(--display); display: block; font-size: var(--step-0); color: var(--ink); }
.about__pillar span { font-size: var(--step--1); color: var(--text-soft); line-height: 1.5; }

.about__media {
  position: relative;
}
.about__media .frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255,255,255,.07);
  aspect-ratio: 4 / 5;
}
.about__media .frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 30% 50%;
  transform: scale(1.06);
  /* Deeper, cooler duotone grade so this soft-focus crop reads as a deliberate editorial frame, not a low-res repeat of the hero */
  filter: grayscale(.55) saturate(1.24) contrast(1.24) brightness(.8);
}
/* Duotone brand tint + inner vignette so the crop reads distinct from the hero, not a repeat */
.about__media .frame__tone {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(150deg, rgba(6,85,122,.58), transparent 55%),
    linear-gradient(0deg, rgba(5,14,22,.78), transparent 46%),
    linear-gradient(0deg, rgba(20,169,226,.16), rgba(20,169,226,.16));
  mix-blend-mode: normal;
  box-shadow: inset 0 0 110px rgba(5,14,22,.6);
  pointer-events: none;
}
.about__media .tag {
  position: absolute;
  left: -1.4rem;
  bottom: 2.2rem;
  background: var(--ink);
  color: #fff;
  padding: 1.1rem 1.4rem;
  border-radius: 14px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--brand);
  max-width: 260px;
}
.about__media .tag b {
  font-family: var(--display);
  font-size: 2.2rem;
  display: block;
  line-height: 1;
  color: var(--brand);
}
.about__media .tag span { font-size: var(--step--1); color: var(--text-invert-soft); text-transform: uppercase; letter-spacing: 0.08em; }

/* =========================================================
   Services
   ========================================================= */
.services {
  background: var(--ink);
  color: var(--text-invert);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 8% -10%, rgba(20,169,226,.16), transparent 60%),
    radial-gradient(60% 60% at 100% 100%, rgba(20,169,226,.08), transparent 60%);
  pointer-events: none;
}
.services::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  background-size: 140px 140px;
  opacity: .05;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.services > .wrap { position: relative; z-index: 1; }
.services__head {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: end;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  position: relative;
}
.services__head h2 {
  font-size: var(--step-3);
  text-transform: uppercase;
  color: #fff;
  margin-top: 1rem;
  max-width: 15ch;
}
.services__head p {
  color: var(--text-invert);
  opacity: .82;
  font-size: var(--step-1);
  line-height: 1.5;
  max-width: 42ch;
  padding-bottom: 0.4rem;
  border-left: 2px solid rgba(20,169,226,.5);
  padding-left: 1.2rem;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.2rem;
  position: relative;
}
.svc {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.8rem 1.7rem 1.9rem;
  grid-column: span 4;
  transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.svc::after {
  content: "";
  position: absolute;
  left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--brand), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.svc:hover { transform: translateY(-6px); border-color: rgba(20,169,226,.5); background: linear-gradient(180deg, rgba(20,169,226,.1), rgba(255,255,255,.02)); }
.svc:hover::after { transform: scaleX(1); }
.svc__num { font-family: var(--display); font-size: var(--step--1); color: var(--brand); letter-spacing: 0.1em; font-weight: 700; }
.svc__icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(20,169,226,.15);
  color: var(--brand);
  margin: 1rem 0 1.2rem;
}
.svc__icon svg { width: 24px; height: 24px; }
.svc h3 { font-size: var(--step-1); color: #fff; margin-bottom: 0.55rem; letter-spacing: -0.01em; }
.svc p { font-size: var(--step--1); color: var(--text-invert-soft); line-height: 1.6; }

/* feature (wide) cards */
.svc--wide { grid-column: span 6; }
.svc--tall { grid-column: span 4; }

/* =========================================================
   Awards (real social proof)
   ========================================================= */
.awards { background: var(--paper); position: relative; }
.awards__head { text-align: center; max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 3.6rem); }
.awards__head h2 { font-size: var(--step-3); color: var(--ink); margin: 1rem 0 1rem; }
.awards__head p { color: var(--text-soft); }
.awards__quote {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--step-1);
  color: var(--brand-deep);
  letter-spacing: -0.01em;
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(0.8rem, 2vw, 1.5rem);
  align-items: end;
}
.award {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  text-align: center;
}
.award:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: var(--shadow); }
.award img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  border-radius: 8px;
  background: #fbfcfd;
}
.award figcaption {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--step--1);
  color: var(--ink);
  margin-top: 0.7rem;
  letter-spacing: 0.02em;
}
.award figcaption span { display: block; color: var(--brand-deep); font-weight: 800; font-size: 1.05rem; }

.awards-band {
  margin-top: clamp(2.5rem, 5vw, 3.6rem);
  background: linear-gradient(120deg, var(--brand-darker), var(--brand-deep));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.8rem) clamp(1.8rem, 4vw, 3.2rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 2rem;
  box-shadow: var(--shadow);
}
.awards-band .stat b {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.2rem);
  display: block;
  line-height: 1;
  letter-spacing: -0.02em;
}
.awards-band .stat span { font-size: var(--step--1); color: rgba(255,255,255,.85); text-transform: uppercase; letter-spacing: 0.08em; }

/* =========================================================
   CTA banner
   ========================================================= */
.cta-banner {
  background: var(--ink);
  color: var(--text-invert);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(70% 120% at 85% 20%, rgba(20,169,226,.22), transparent 55%);
}
.cta-banner__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  gap: 2.5rem;
}
.cta-banner h2 { font-size: var(--step-3); color: #fff; text-transform: uppercase; }
.cta-banner p { color: var(--text-invert-soft); margin-top: 0.8rem; max-width: 48ch; }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* =========================================================
   Contact
   ========================================================= */
.contact { background: var(--paper); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.contact__intro h2 { font-size: var(--step-4); color: var(--ink); text-transform: uppercase; margin: 1rem 0 1.2rem; }
.contact__intro p { color: var(--text-soft); max-width: 46ch; margin-bottom: 2rem; }

.contact-list { display: grid; gap: 1rem; }
.contact-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  box-shadow: var(--shadow-sm);
}
a.contact-card:hover { transform: translateY(-4px); border-color: var(--brand); box-shadow: var(--shadow); }
.contact-card__icon {
  width: 48px; height: 48px; flex: none;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--ink);
  color: var(--brand);
}
.contact-card__icon svg { width: 24px; height: 24px; }
.contact-card b { font-family: var(--display); font-size: var(--step--1); text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-soft); font-weight: 700; display: block; }
.contact-card .value { font-family: var(--display); font-size: var(--step-1); color: var(--ink); font-weight: 800; letter-spacing: -0.01em; line-height: 1.2; }
.contact-card .sub { font-size: var(--step--1); color: var(--text-soft); }

.hours-card {
  background: var(--ink);
  color: var(--text-invert);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hours-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 100% 0%, rgba(20,169,226,.18), transparent 60%);
}
.hours-card h3 { position: relative; font-size: var(--step-2); color: #fff; margin-bottom: 1.4rem; text-transform: uppercase; }
.hours-row {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.hours-row:last-of-type { border-bottom: 0; }
.hours-row span:first-child { color: var(--text-invert-soft); }
.hours-row span:last-child { font-family: var(--display); font-weight: 700; color: #fff; text-align: right; }
.hours-note {
  position: relative;
  margin-top: 1.4rem;
  padding: 1rem 1.1rem;
  background: rgba(20,169,226,.12);
  border: 1px solid rgba(20,169,226,.3);
  border-radius: 12px;
  font-size: var(--step--1);
  color: var(--text-invert);
}
.hours-note b { color: var(--brand); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: #0b0f14;
  color: var(--text-invert-soft);
  padding-block: clamp(3.5rem, 6vw, 5rem) 2rem;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-footer img { height: 44px; width: auto; margin-bottom: 1.2rem; }
.site-footer__col h4 { font-family: var(--display); color: #fff; font-size: var(--step--1); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1.1rem; }
.site-footer__col a, .site-footer__col p { display: block; color: var(--text-invert-soft); margin-bottom: 0.6rem; font-size: var(--step-0); transition: color .25s; }
.site-footer__col a:hover { color: var(--brand); }
.site-footer__blurb { max-width: 34ch; font-size: var(--step--1); line-height: 1.7; }
.site-footer__bottom {
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
  font-size: var(--step--1);
  color: #6a7783;
}

/* Spec footer (mandatory) */
.spec-footer {
  background: #05080b;
  color: #7c8a96;
  text-align: center;
  padding: 2.2rem var(--gutter);
  font-size: 0.85rem;
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,.06);
}
.spec-footer a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================
   Reveal animation
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
.no-js .reveal { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
  .hero { align-items: center; }
  .hero__inner { grid-template-columns: 1fr; gap: 2.4rem; }
  .hero__content { max-width: min(620px, 100%); }
  .hero__aside { justify-self: start; max-width: 460px; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { order: -1; max-width: 460px; }
  .about__media .frame { aspect-ratio: 16 / 11; }
  .cta-banner__inner { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .awards-band { grid-template-columns: 1fr 1fr; }
  .svc--wide, .svc--tall { grid-column: span 6; }
  .services__head { grid-template-columns: 1fr; }
  .services__head p { border-left: 0; padding-left: 0; }
}

@media (max-width: 820px) {
  .nav-links { gap: 1rem; }
  .nav { display: none; }
  .site-header__inner { padding-block: 0.7rem; }
  .awards-grid { grid-template-columns: repeat(3, 1fr); }
  .award:nth-child(4) { grid-column: 1 / 2; }
}

@media (max-width: 640px) {
  .svc { grid-column: span 12 !important; }
  .about__pillars { grid-template-columns: 1fr; }
  .hero__meta { grid-template-columns: 1fr 1fr; gap: 1.2rem 1.1rem; }
  .hero__meta div { padding-left: 1rem; }
  .hero__meta div:nth-child(3) { padding-left: 0; border-left: 0; }
  .hero__meta span { letter-spacing: 0.05em; }
  .hero__aside { max-width: none; }
  .site-footer__top { grid-template-columns: 1fr; gap: 1.8rem; }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .award:nth-child(5) { grid-column: 1 / -1; max-width: 60%; margin-inline: auto; }
  .awards-band { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .about__media .tag { left: 1rem; right: 1rem; max-width: none; }
}

@media (max-width: 480px) {
  .header-cta { font-size: var(--step--1); padding: 0.55em 0.9em; gap: 0.45rem; }
  .header-cta svg { width: 1em; height: 1em; }
  .brand-logo img { height: 40px; }
  .site-header__inner { gap: 0.8rem; }
}

@media (max-width: 400px) {
  .awards-band { grid-template-columns: 1fr; }
  .hero__meta b { font-size: 1.5rem; }
}
