/* ============================================================
   Premier Roofing Inc — Design System
   Style: Trust & Authority, industrial | Fonts: Barlow Condensed + Barlow
   Tokens from design-system/premiere-roofing/MASTER.md
   (accent adapted to the company logo: orange #E8671B;
    #c2410c is the text-safe orange — 4.5:1 on white)
   ============================================================ */

:root {
  /* Color tokens */
  --color-primary: #0f172a;
  --color-on-primary: #ffffff;
  --color-secondary: #334155;
  --color-brand: #e8671b;   /* logo orange — mark & dark-bg highlights only */
  --color-accent: #c2410c;
  --color-accent-hover: #9a3412;
  --color-background: #f8fafc;
  --color-surface: #ffffff;
  --color-foreground: #020617;
  --color-muted: #e8ecf1;
  --color-muted-text: #475569;
  --color-border: #e2e8f0;
  --color-destructive: #b91c1c; /* red-700: keeps 4.5:1 on white and on the error banner */
  --color-success: #15803d;
  --color-ring: #c2410c;

  /* Typography — display: big condensed headlines; heading: semibold UI text */
  --font-display: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  --font-heading: "Barlow", system-ui, sans-serif;
  --font-body: "Barlow", system-ui, sans-serif;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;

  /* Misc */
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --shadow-sm: 0 1px 2px rgb(2 6 23 / 0.06);
  --shadow-md: 0 4px 12px rgb(2 6 23 / 0.08);
  --shadow-lg: 0 12px 32px rgb(2 6 23 / 0.14);
  --container: 72rem;
  --transition: 200ms ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-foreground);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
a { color: var(--color-accent); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  color: var(--color-primary);
  font-weight: 700;
  text-wrap: balance;
}
h1, h2 { text-transform: uppercase; letter-spacing: 0.01em; }
h3 { font-weight: 600; }

:focus-visible {
  outline: 3px solid var(--color-ring);
  outline-offset: 2px;
  border-radius: 2px;
}

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

/* ---------- Utilities ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-4);
}
.section { padding-block: var(--space-16); }
.section--alt { background: var(--color-surface); }
.section-head { max-width: 42rem; margin-bottom: var(--space-12); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: var(--color-brand);
  flex-shrink: 0;
}
.section-head h2 { font-size: clamp(2rem, 4vw, 2.875rem); margin-bottom: var(--space-3); }
.section-head p { color: var(--color-muted-text); font-size: 1.125rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 48px;
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition), translate var(--transition);
}
.btn--primary {
  background: linear-gradient(135deg, #c2410c, #9a3412);
  color: var(--color-on-primary);
  box-shadow: 0 2px 10px rgb(194 65 12 / 0.35);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #b13a0b, #7c2d12);
  box-shadow: 0 8px 22px rgb(194 65 12 / 0.4);
  translate: 0 -2px;
}
.btn--ghost { border-color: var(--color-border); color: var(--color-primary); background: transparent; }
.btn--ghost:hover { border-color: var(--color-accent); color: var(--color-accent); }
.btn--light { background: var(--color-on-primary); color: var(--color-primary); }
.btn--light:hover { background: var(--color-muted); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--color-primary);
  color: #cbd5e1;
  font-size: 0.875rem;
}
.topbar .container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-6);
  justify-content: space-between;
  padding-block: var(--space-2);
}
.topbar span { display: inline-flex; align-items: center; gap: var(--space-2); }
.topbar svg { width: 14px; height: 14px; flex-shrink: 0; }
.topbar a { color: #e2e8f0; text-decoration: none; }
.topbar a:hover { color: #ffffff; text-decoration: underline; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}
.site-header.is-scrolled { box-shadow: var(--shadow-md); }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 2px;
  overflow: hidden;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 40px; height: 40px; }
.brand-text { line-height: 1.2; }
.brand-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #111111;
}
.brand-text small {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted-text);
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  width: 48px; height: 48px;
  cursor: pointer;
  color: var(--color-primary);
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }
.site-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
  padding: 0;
}
.site-nav a:not(.btn) {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-secondary);
  text-decoration: none;
  padding-block: var(--space-2);
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.site-nav a:not(.btn):hover { color: var(--color-accent); }
.site-nav a[aria-current="page"] {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(70rem 30rem at 85% -10%, rgb(232 103 27 / 0.25), transparent 60%),
    linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  color: #e2e8f0;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::before {
  /* scrim: keeps headline contrast over the drone footage */
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg,
    rgb(15 23 42 / 0.95) 0%,
    rgb(15 23 42 / 0.85) 48%,
    rgb(15 23 42 / 0.45) 100%);
}
.hero::after {
  /* subtle roofline silhouette */
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -1px;
  height: 100px;
  background: var(--color-background);
  clip-path: polygon(0 100%, 100% 100%, 100% 45%, 78% 78%, 55% 30%, 32% 70%, 0 40%);
  opacity: 0.06;
  pointer-events: none;
  z-index: 2;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  gap: var(--space-12);
  padding-block: var(--space-16) var(--space-24);
  align-items: center;
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}
.hero h1 {
  color: #ffffff;
  font-size: clamp(2.75rem, 6.5vw, 4.5rem);
  font-weight: 700;
  line-height: 0.96;
  margin-bottom: var(--space-6);
}
.hero h1 em { font-style: italic; color: #fdba74; }
.hero-lede {
  font-size: 1.25rem;
  max-width: 36rem;
  color: #cbd5e1;
  margin-bottom: var(--space-8);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-bottom: var(--space-8); }
.hero-chips { display: flex; flex-wrap: wrap; gap: var(--space-3); list-style: none; padding: 0; }
.hero-chips li {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border: 1px solid rgb(148 163 184 / 0.35);
  border-radius: 999px;
  font-size: 0.875rem;
  color: #e2e8f0;
  background: rgb(15 23 42 / 0.5);
}
.hero-chips svg { width: 16px; height: 16px; color: #fdba74; }
.hero-art { display: none; }

/* ---------- Stats band ---------- */
.stats {
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
}
.stats .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-6);
  padding-block: var(--space-8);
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1.05;
  color: var(--color-primary);
}
.stat span {
  color: var(--color-muted-text);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
}
.card {
  position: relative;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition), translate var(--transition);
}
.card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-brand), #fdba74);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms ease;
}
.card:hover { box-shadow: var(--shadow-lg); border-color: #fed7aa; translate: 0 -3px; }
.card:hover::after { transform: scaleX(1); }
.card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: #ffedd5;
  color: var(--color-accent);
  display: grid;
  place-items: center;
  margin-bottom: var(--space-4);
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.4375rem; margin-bottom: var(--space-2); }
.card .tagline {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}
.card p { color: var(--color-muted-text); margin-bottom: var(--space-4); }
.card ul { color: var(--color-muted-text); padding-left: 0; list-style: none; display: grid; gap: var(--space-2); }
.card ul li { display: flex; gap: var(--space-2); align-items: flex-start; }
.card ul svg { width: 18px; height: 18px; color: var(--color-success); flex-shrink: 0; margin-top: 3px; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-weight: 600;
  text-decoration: none;
  margin-top: var(--space-4);
}
.card-link svg { width: 16px; height: 16px; transition: translate var(--transition); }
.card-link:hover svg { translate: 3px 0; }

/* ---------- Testimonials ---------- */
.quote-card { margin: 0; display: flex; flex-direction: column; }
.quote-stars { display: flex; gap: 2px; color: #d97706; margin-bottom: var(--space-4); }
.quote-stars svg { width: 18px; height: 18px; }
.quote-card > p { flex: 1; }
.quote-card footer strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
}
.quote-card footer span { font-size: 0.875rem; color: var(--color-muted-text); }

/* ---------- Process ---------- */
.process {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6) var(--space-6);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--color-on-primary);
  background: var(--color-accent);
  border-radius: 999px;
  padding: var(--space-1) var(--space-3);
  position: absolute;
  top: calc(-1 * var(--space-3));
  left: var(--space-6);
}
.step h3 { font-size: 1.25rem; margin-bottom: var(--space-2); }
.step p { color: var(--color-muted-text); font-size: 0.9375rem; }

/* ---------- Work showcase ---------- */
.section--dark {
  background:
    radial-gradient(60rem 24rem at 90% 0%, rgb(232 103 27 / 0.16), transparent 60%),
    linear-gradient(180deg, #0f172a, #1e293b);
  color: #cbd5e1;
}
.section--dark .section-head h2 { color: #ffffff; }
.section--dark .section-head p { color: #94a3b8; }
.work-grid { display: grid; gap: var(--space-4); }
.work-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgb(148 163 184 / 0.25);
  box-shadow: var(--shadow-lg);
  background: #0b1120;
}
.work-item video,
.work-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: scale 400ms ease;
}
.work-item--photo:hover img { scale: 1.04; }
.work-item figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: var(--space-8) var(--space-4) var(--space-3);
  background: linear-gradient(transparent, rgb(2 6 23 / 0.85));
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  pointer-events: none;
}
.work-item--video figcaption {
  /* keep clear of the native video controls */
  bottom: auto;
  top: 0;
  padding: var(--space-3) var(--space-4) var(--space-8);
  background: linear-gradient(rgb(2 6 23 / 0.8), transparent);
}
@media (min-width: 48rem) {
  .work-grid { grid-template-columns: repeat(6, 1fr); }
  .work-item--video { grid-column: span 3; }
  .work-item--photo { grid-column: span 2; }
}

/* Aerial banner (services page) — wide, slim cinematic strip */
.work-banner {
  position: relative;
  margin: 0 0 var(--space-8);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.work-banner img {
  width: 100%;
  height: auto; /* beat the width/height HTML attributes so aspect-ratio wins */
  aspect-ratio: 21 / 6;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
@media (max-width: 47.9375rem) {
  /* on phones a 3.5:1 strip gets too thin — relax it */
  .work-banner img { aspect-ratio: 16 / 7; }
}
.work-banner figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: var(--space-8) var(--space-6) var(--space-4);
  background: linear-gradient(transparent, rgb(2 6 23 / 0.8));
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
}

/* ---------- Areas ---------- */
.areas { display: flex; flex-wrap: wrap; gap: var(--space-3); list-style: none; padding: 0; }
.areas li {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: var(--space-2) var(--space-4);
  font-size: 0.9375rem;
  color: var(--color-secondary);
}
.areas svg { width: 15px; height: 15px; color: var(--color-accent); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--color-primary), #7c2d12);
  color: #e2e8f0;
  border-radius: var(--radius-lg);
  padding: var(--space-12) var(--space-8);
  display: grid;
  gap: var(--space-6);
  align-items: center;
}
.cta-band::before {
  /* oversized logo gable as a watermark */
  content: "";
  position: absolute;
  right: -30px;
  bottom: -40px;
  width: 240px;
  height: 240px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23ffffff' d='M14 100 L52 12 L90 100 L68 100 L52 62 L36 100 Z'/%3E%3C/svg%3E") no-repeat center / contain;
  opacity: 0.07;
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #ffffff; font-size: clamp(1.875rem, 3.5vw, 2.625rem); margin-bottom: var(--space-2); }
.cta-band p { color: #cbd5e1; }
.cta-band .hero-ctas { margin: 0; }

/* ---------- Forms ---------- */
.quote-layout {
  display: grid;
  gap: var(--space-12);
  align-items: start;
}
.form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; gap: var(--space-4); }
.field label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: var(--space-1);
  color: var(--color-primary);
}
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-foreground);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgb(194 65 12 / 0.18);
}
.field .hint { font-size: 0.8125rem; color: var(--color-muted-text); margin-top: var(--space-1); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--color-destructive); }
.field .error {
  display: none;
  font-size: 0.875rem;
  color: var(--color-destructive);
  margin-top: var(--space-1);
}
.field.has-error .error { display: block; }
.form-status {
  display: none;
  margin-top: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius);
  font-weight: 600;
}
.form-status.success { display: block; background: #dcfce7; color: var(--color-success); }
.form-status.error { display: block; background: #fee2e2; color: var(--color-destructive); }

/* ---------- Contact info panel ---------- */
.info-list { list-style: none; padding: 0; display: grid; gap: var(--space-6); }
.info-list li { display: flex; gap: var(--space-4); align-items: flex-start; }
.info-list .card-icon { margin: 0; flex-shrink: 0; }
.info-list strong { font-family: var(--font-heading); display: block; color: var(--color-primary); }
.info-list span, .info-list a { color: var(--color-muted-text); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-primary);
  color: #94a3b8;
  margin-top: var(--space-16);
}
.site-footer .container {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  padding-block: var(--space-16) var(--space-8);
}
.site-footer h4 {
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.footer-brand h4 { margin-bottom: 0; }
.footer-mark { width: 34px; height: 34px; border-radius: 3px; flex-shrink: 0; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: var(--space-2); }
.site-footer a { color: #cbd5e1; text-decoration: none; }
.site-footer a:hover { color: #ffffff; text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgb(148 163 184 / 0.2);
}
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-6);
  justify-content: space-between;
  padding-block: var(--space-4);
  font-size: 0.875rem;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(180deg, #0f172a, #1e293b);
  color: #cbd5e1;
  padding-block: var(--space-16);
}
.page-hero h1 { color: #ffffff; font-size: clamp(2.375rem, 5vw, 3.5rem); line-height: 1; margin-bottom: var(--space-3); }
.page-hero p { max-width: 40rem; font-size: 1.1875rem; }
.page-hero-mark {
  display: none;
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 48rem) {
  .page-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
  }
  .page-hero-mark { display: block; }
}

/* ---------- About: story + logo panel ---------- */
.about-layout {
  display: grid;
  gap: var(--space-12);
  align-items: center;
}
.about-logo-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-12) var(--space-8) var(--space-8);
  box-shadow: var(--shadow-md);
  display: grid;
  justify-items: center;
  gap: var(--space-6);
}
.about-logo-card svg { width: 100%; max-width: 380px; height: auto; }
.about-logo-card p {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted-text);
}
@media (min-width: 48rem) {
  .about-layout { grid-template-columns: 1.15fr 0.85fr; }
}

/* ---------- Lightbox ---------- */
.is-zoomable img { cursor: zoom-in; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgb(2 6 23 / 0.93);
  display: grid;
  place-items: center;
  align-content: center;
  gap: var(--space-4);
  padding: 4vh 4vw;
}
.lightbox img {
  max-width: min(92vw, 72rem);
  max-height: 78vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.lightbox p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 48px;
  height: 48px;
  border: 1px solid rgb(148 163 184 / 0.4);
  border-radius: 999px;
  background: rgb(15 23 42 / 0.8);
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-close:hover { background: var(--color-accent); border-color: var(--color-accent); }

/* ---------- Sticky mobile call bar ---------- */
.mobile-cta { display: none; }
@media (max-width: 47.9375rem) {
  body { padding-bottom: 88px; }
  .mobile-cta {
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 60;
    display: flex;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4) calc(var(--space-3) + env(safe-area-inset-bottom, 0px));
    background: rgb(255 255 255 / 0.96);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 16px rgb(2 6 23 / 0.1);
  }
  .mobile-cta .btn { flex: 1; padding-inline: var(--space-3); font-size: 1.0625rem; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; translate: 0 24px; transition: opacity 400ms ease, translate 400ms ease; }
.reveal.is-visible { opacity: 1; translate: 0 0; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; translate: 0 0; }
}

/* ---------- Responsive ---------- */
@media (min-width: 48rem) {
  /* right column stays empty so the drone footage shows through the scrim */
  .hero .container { grid-template-columns: 1.15fr 0.85fr; }
  .cta-band { grid-template-columns: 1fr auto; padding: var(--space-12); }
  .quote-layout { grid-template-columns: 1.1fr 0.9fr; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .field--full { grid-column: 1 / -1; }
}

@media (max-width: 47.9375rem) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    display: none;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-4);
  }
  .site-nav li { border-bottom: 1px solid var(--color-border); }
  .site-nav li:last-child { border-bottom: none; padding-top: var(--space-4); }
  .site-nav a:not(.btn) { display: block; padding: var(--space-4) var(--space-2); }
  .topbar .u-desktop { display: none; }
}
