:root {
  --ink: #050505;
  --coal: #0a0a0a;
  --panel: #141414;
  --soft: #f4f2ef;
  --muted: #6d6d6d;
  --line: rgba(255, 255, 255, 0.18);
  --paper-line: rgba(0, 0, 0, 0.12);
  --orange: #ff6900;
  --orange-dark: #d95700;
  --white: #fff;
  --font-display: "neue-haas-grotesk-display", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.45;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

iframe,
video,
embed,
object {
  max-width: 100%;
}

table {
  max-width: 100%;
}

body {
  max-width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: rgba(255, 255, 255, 0.68);
  transition: background-color 0.35s ease, transform 0.45s ease;
}

.utility-bar {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  padding: 0 60px;
  background: rgba(0, 0, 0, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 14px;
}

.utility-bar a,
.utility-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.35s ease;
}

.utility-bar a:hover {
  color: #fff;
}

.utility-icon {
  color: var(--orange);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.header-main {
  min-height: 72px;
  display: grid;
  grid-template-columns: 360px 1fr 260px;
  align-items: center;
  gap: 28px;
  padding: 0 60px;
  background: rgba(44, 44, 44, 0.68);
  backdrop-filter: blur(2px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-mark {
  width: 48px;
  height: 32px;
  position: relative;
  flex: 0 0 auto;
}

.brand-mark::before {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  left: 0;
  top: -5px;
  border-radius: 50% 50% 4px 50%;
  background: var(--orange);
  transform: skewX(-16deg) rotate(-8deg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: -4px;
  right: 0;
  bottom: -1px;
  height: 5px;
  background: var(--orange);
  transform: skewX(-28deg);
}

.brand-text {
  font-size: 22px;
  text-transform: uppercase;
}

/* brand-logo (added by brand_assets rollout) */
.brand {
  display: inline-flex;
  align-items: center;
}
.brand-logo {
  height: 34px;
  width: auto;
  display: block;
  max-width: 320px;
}
@media (max-width: 900px) {
  .brand-logo {
    height: 22px;
    max-width: 200px;
  }
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  height: 72px;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-link {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.35s ease;
}

.nav-link:hover {
  color: var(--orange);
}

.mega-panel {
  position: fixed;
  left: 60px;
  right: 60px;
  top: 117px;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1.4fr 0.9fr;
  gap: 36px;
  padding: 34px;
  background: rgba(0, 0, 0, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.nav-item:hover .mega-panel,
.nav-item:focus-within .mega-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-kicker,
.overline {
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mega-title {
  margin: 10px 0 16px;
  color: #fff;
  font-size: 32px;
  line-height: 1.05;
  font-weight: 700;
}

.mega-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.mega-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 24px;
  align-content: start;
}

.mega-links a,
.footer-links a,
.quick-list a {
  transition: color 0.3s ease, transform 0.3s ease;
}

.mega-links a:hover,
.footer-links a:hover,
.quick-list a:hover {
  color: var(--orange);
}

.mega-image {
  min-height: 210px;
  background: linear-gradient(rgba(0,0,0,.16), rgba(0,0,0,.58)), var(--mega-image) center/cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.icon-button {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.search-icon,
.menu-icon,
.route-icon {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.search-icon::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  right: -6px;
  bottom: -3px;
  background: currentColor;
  transform: rotate(45deg);
}

.route-icon {
  border-radius: 2px;
  border-top: 0;
}

.route-icon::before,
.route-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.route-icon::before {
  width: 20px;
  height: 2px;
  top: 2px;
  left: -4px;
}

.route-icon::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  bottom: -6px;
  left: 2px;
  box-shadow: 12px 0 0 currentColor;
}

.contact-button,
.outline-button,
.dark-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: border-color 0.35s ease, background-color 0.35s ease, color 0.35s ease;
}

.contact-button:hover,
.outline-button:hover,
.dark-button:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.mobile-toggle {
  display: none;
}

.mobile-drawer {
  display: none;
}

/* Hamburger close (X) + overlay + drawer phone CTA — hidden on desktop */
.drawer-close {
  display: none;
}

.mobile-overlay {
  display: none;
}

.drawer-call {
  display: none;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #111;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-image) center/cover no-repeat;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.66));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(850px, calc(100% - 48px));
  margin-top: 88px;
  text-align: center;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 6.1vw, 86px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 span,
.accent {
  color: var(--orange);
}

.hero p {
  margin: 24px auto 36px;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
}

.hero-corners {
  position: absolute;
  z-index: 1;
  left: 60px;
  right: 60px;
  bottom: 28px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  text-transform: uppercase;
}

.section {
  padding: 90px 60px;
}

.section-light {
  background: #fff;
}

.section-gray {
  background: var(--soft);
}

.section-dark {
  background: #050505;
  color: #fff;
}

.shell {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: 68px;
  align-items: center;
}

.media-frame {
  min-height: 480px;
  background: var(--media-image) center/cover;
}

.copy-block h2,
.section-title,
.detail-copy h1 {
  margin: 12px 0 22px;
  font-size: clamp(38px, 4.4vw, 68px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0;
}

.copy-block p,
.section-lede,
.detail-copy p {
  color: #555;
  font-size: 17px;
  line-height: 1.65;
}

.section-dark .copy-block p,
.section-dark .section-lede,
.section-dark .detail-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.mini-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.mini-stat {
  min-height: 160px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.mini-stat strong {
  display: block;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 15px;
  text-transform: uppercase;
}

.mini-stat span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
}

.spotlight {
  display: grid;
  grid-template-columns: minmax(330px, 0.85fr) minmax(300px, 1.15fr);
  gap: 46px;
  align-items: stretch;
}

.spotlight-card {
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 105, 0, 0.08), rgba(255, 255, 255, 0.02));
}

.spotlight-card h2 {
  margin: 14px 0 22px;
  color: #fff;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.spotlight-media {
  min-height: 560px;
  background: linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.48)), var(--media-image) center/cover;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
}

.card-media {
  aspect-ratio: 16 / 10;
  background: var(--card-image) center/cover;
}

.card-body {
  flex: 1;
  padding: 26px;
}

.card-body h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.1;
}

.card-body p {
  margin: 0 0 24px;
  color: #626262;
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.index-hero,
.detail-hero {
  min-height: 520px;
  padding: 170px 60px 80px;
  display: grid;
  align-items: end;
  color: #fff;
  background: linear-gradient(rgba(0,0,0,.48), rgba(0,0,0,.72)), var(--hero-image) center/cover;
}

.index-hero .shell,
.detail-hero .shell {
  width: min(1180px, 100%);
}

.index-hero h1,
.detail-hero h1 {
  margin: 12px 0 18px;
  font-size: clamp(46px, 6vw, 84px);
  line-height: 0.98;
  font-weight: 700;
}

.index-hero p,
.detail-hero p {
  max-width: 720px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
}

.filter-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 36px;
}

.filter-row p {
  max-width: 640px;
  color: #595959;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: start;
}

.detail-copy {
  max-width: 850px;
}

.detail-copy h2 {
  margin: 48px 0 16px;
  font-size: 34px;
  line-height: 1.12;
}

.detail-copy .detail-lede {
  margin: 0 0 32px;
  padding: 28px 30px;
  border-left: 5px solid var(--orange);
  background: #0a0a0a;
  color: #fff;
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.side-panel {
  position: sticky;
  top: 140px;
  padding: 30px;
  background: #050505;
  color: #fff;
}

.side-panel h2 {
  margin: 10px 0 14px;
  font-size: 30px;
  line-height: 1.05;
}

.side-panel p {
  color: rgba(255,255,255,.72);
}

.quick-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.16);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 58px 60px;
  background: #050505;
  color: #fff;
}

.cta-panel h2 {
  margin: 10px 0 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
}

.site-footer {
  background: #000;
  color: #fff;
}

.footer-main {
  padding: 86px 60px 44px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 34px;
  padding-bottom: 74px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.footer-col h3 {
  margin: 0 0 18px;
  font-size: 15px;
}

.footer-links {
  display: grid;
  gap: 12px;
  color: rgba(255,255,255,.68);
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
  gap: 70px;
  padding: 68px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.footer-bottom p {
  max-width: 560px;
  color: rgba(255,255,255,.72);
}

.footer-bottom iframe {
  margin-top: 22px;
  filter: grayscale(1) contrast(1.05);
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 3px;
  margin-top: 24px;
}

.newsletter-form input,
.newsletter-form button {
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(255,255,255,.2);
  background: #000;
  color: #fff;
  font: inherit;
}

.newsletter-form button {
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Lead / contact form (lives inside dark spotlight-card) */
.lead-form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.footer-contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lead-field.full,
.footer-contact-form .full {
  grid-column: 1 / -1;
}

.lead-field {
  display: grid;
  gap: 7px;
}

.lead-field label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.lead-field input,
.lead-field select,
.lead-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font: inherit;
  font-size: 16px;
  border-radius: 6px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.lead-field textarea {
  min-height: 120px;
  line-height: 1.5;
  resize: vertical;
}

.lead-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--orange) 50%), linear-gradient(135deg, var(--orange) 50%, transparent 50%);
  background-position: calc(100% - 20px) center, calc(100% - 14px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

.lead-field input::placeholder,
.lead-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.lead-field input:focus,
.lead-field select:focus,
.lead-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(0, 0, 0, 0.72);
}

.lead-field select option {
  color: #111;
}

.lead-form .lead-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 4px;
  cursor: pointer;
  border-color: var(--orange);
  background: var(--orange);
}

.lead-form .lead-submit:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.about-grid > div {
  min-height: 245px;
  padding: 30px;
  border: 1px solid var(--paper-line);
  background: #fff;
}

.about-grid h3 {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 24px;
  line-height: 1.05;
}

.about-grid p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

/* Honeypot anti-spam field — visually hidden, off-screen */
.lead-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.legal-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 46px 0 0;
  color: rgba(255,255,255,.66);
}

.legal-links {
  display: grid;
  gap: 8px;
}

.not-found {
  min-height: 100vh;
}

@media (max-width: 1180px) {
  .header-main {
    grid-template-columns: auto 1fr auto;
    padding: 0 24px;
  }

  .brand-text {
    font-size: 18px;
  }

  .main-nav {
    gap: 20px;
  }

  .utility-bar {
    padding: 0 24px;
  }
}

@media (max-width: 900px) {
  .utility-bar,
  .main-nav,
  .header-actions .contact-button,
  .header-actions .route-action {
    display: none;
  }

  .site-header {
    background: rgba(0,0,0,.58);
  }

  .header-main {
    min-height: 46px;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 0 10px;
    background: rgba(0, 0, 0, 0.58);
  }

  .brand-mark {
    width: 16px;
    height: 12px;
  }

  .brand-mark::before {
    width: 14px;
    height: 14px;
    top: -1px;
  }

  .brand-mark::after {
    height: 2px;
  }

  .brand {
    gap: 5px;
  }

  .brand-text {
    font-size: 8px;
    max-width: 90px;
  }

  .header-actions {
    gap: 12px;
  }

  .mobile-toggle {
    display: inline-grid;
  }

  /* Overlay behind the drawer */
  .mobile-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .mobile-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
  }

  /* Lock body scroll while the menu is open */
  body.menu-open {
    overflow: hidden;
  }

  .mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(86vw, 360px);
    max-width: 100%;
    z-index: 70;
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 64px 22px 28px;
    background: #0a0a0a;
    border-left: 2px solid var(--orange);
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.55);
    transform: translateX(100%);
    transition: transform 0.32s ease;
  }

  .mobile-drawer.is-open {
    display: flex;
    transform: translateX(0);
  }

  .mobile-drawer a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 6px;
    color: #fff;
    font-size: 17px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-drawer a:active,
  .mobile-drawer a:hover {
    color: var(--orange);
  }

  /* Visible close (X) button, top-right of the drawer */
  .drawer-close {
    display: inline-grid;
    place-items: center;
    position: absolute;
    top: 12px;
    right: 14px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.25s ease, border-color 0.25s ease;
  }

  .drawer-close:hover,
  .drawer-close:active {
    background: var(--orange);
    border-color: var(--orange);
  }

  .drawer-close span {
    margin-top: -3px;
  }

  /* Tap-to-call CTA pinned at the bottom of the drawer */
  .mobile-drawer .drawer-call {
    display: flex;
    justify-content: center;
    margin-top: 18px;
    min-height: 52px;
    border: 0;
    border-radius: 8px;
    background: var(--orange);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .mobile-drawer .drawer-call:hover,
  .mobile-drawer .drawer-call:active {
    background: var(--orange-dark);
    color: #fff;
  }

  .hero {
    min-height: 680px;
  }

  .hero-inner {
    width: min(360px, calc(100% - 34px));
    margin-top: 32px;
  }

  .hero h1 {
    max-width: calc(100vw - 34px);
    font-size: 24px;
    line-height: 1.05;
    overflow-wrap: break-word;
  }

  .hero h1 span {
    display: block;
  }

  .hero p {
    font-size: 12px;
    margin: 12px auto 22px;
  }

  .hero-corners {
    left: 16px;
    right: 16px;
    bottom: 16px;
    font-size: 9px;
  }

  .section {
    padding: 62px 18px;
  }

  .intro-grid,
  .spotlight,
  .detail-layout,
  .footer-bottom,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .media-frame,
  .spotlight-media {
    min-height: 330px;
  }

  .copy-block h2,
  .section-title,
  .detail-copy h1 {
    max-width: calc(100vw - 36px);
    font-size: 26px;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .copy-block p,
  .section-lede,
  .detail-copy p,
  .index-hero p,
  .detail-hero p {
    width: min(310px, calc(100vw - 70px));
    max-width: min(310px, calc(100vw - 70px));
    font-size: 14px;
    overflow-wrap: break-word;
  }

  .mini-stat-grid,
  .card-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .index-hero,
  .detail-hero {
    min-height: 460px;
    padding: 118px 18px 54px;
  }

  .index-hero h1,
  .detail-hero h1 {
    max-width: calc(100vw - 36px);
    font-size: 32px;
    line-height: 1.06;
    overflow-wrap: break-word;
  }

  .filter-row {
    display: block;
  }

  .side-panel {
    position: static;
  }

  .footer-main {
    padding: 48px 18px 28px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 32px;
  }

  .footer-col {
    border-bottom: 1px solid rgba(255,255,255,.14);
    padding: 16px 0;
  }

  .footer-col h3 {
    margin-bottom: 12px;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .footer-contact-form {
    grid-template-columns: 1fr;
  }

  .legal-row {
    display: grid;
  }

  .spotlight-card {
    padding: 26px 20px;
  }

  .side-panel {
    padding: 24px 20px;
  }

  .lead-field input,
  .lead-field select,
  .lead-field textarea {
    font-size: 16px; /* prevents iOS zoom-on-focus */
  }
}

/* Smaller phones: reinforce single-column stacking + tighter padding.
   The primary breakpoint above is 900px; this 768px block hardens the
   common 375px phone case and keeps dense grids readable. */
@media (max-width: 768px) {
  .header-main {
    grid-template-columns: 1fr auto;
  }

  .utility-bar,
  .main-nav {
    display: none;
  }

  .mobile-toggle {
    display: inline-grid;
  }

  .section,
  .cta-panel {
    padding-left: 16px;
    padding-right: 16px;
  }

  .intro-grid,
  .spotlight,
  .detail-layout,
  .footer-bottom,
  .cta-panel,
  .mini-stat-grid,
  .card-grid,
  .footer-nav,
  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .lead-form {
    gap: 14px;
  }

  .detail-copy .detail-lede {
    padding: 22px 18px;
    font-size: 18px;
  }

  .legal-row {
    display: grid;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .lead-field label {
    font-size: 11px;
  }

  .spotlight-card,
  .side-panel {
    padding: 22px 16px;
  }
}
