/* USA Radio Rentals — Mockup styles
   Vibe: clean / professional / corporate
   Primary: deep navy. Accent: signal red. Background: off-white. */

:root {
  --navy-900: #0B2545;
  --navy-800: #13315C;
  --navy-700: #1B3B6F;
  --navy-100: #E6ECF5;
  --accent: #A8342B;          /* muted brick red — grounded, no flag-red saturation */
  --accent-dark: #8A2A22;     /* hover */
  --accent-soft: #E8A095;     /* used on dark backgrounds for eyebrow text */
  --ink: #111827;
  --body: #3A3F4B;
  --muted: #6B7280;
  --line: #E7E2D8;            /* warmer line color to match cream bg */
  --bg: #FAF7F2;              /* warm off-white — softens whole site */
  --white: #FFFFFF;
  --max: 1180px;
  --radius: 10px;
  --shadow-sm: 0 1px 2px rgba(11,37,69,0.06), 0 2px 6px rgba(11,37,69,0.04);
  --shadow-md: 0 4px 12px rgba(11,37,69,0.08), 0 10px 24px rgba(11,37,69,0.06);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--body);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-700); text-decoration: none; }
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
  font-family: 'Manrope', 'Inter', sans-serif;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.header-top {
  background: var(--navy-900);
  color: #BFD3E6;
  font-size: 0.82rem;
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
}
.header-top a { color: #BFD3E6; }
.header-top a:hover { color: #fff; }
.header-top strong { color: #fff; }
.header-top .pill { background: var(--accent); color:#fff; padding: 2px 10px; border-radius: 999px; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; }

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo { height: 42px; width: auto; display: block; }
@media (max-width: 920px) { .brand-logo { height: 34px; } }
.brand-mark {
  width: 42px; height: 42px;
  background: var(--navy-900);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.brand-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand-tag {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.nav { display: flex; align-items: center; gap: 22px; }
.nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
}
.nav a.active { color: var(--accent); }
/* CSS-only active-nav state — no JS required */
body[data-page="home"]       .nav a[data-page="home"],
body[data-page="rentals"]    .nav a[data-page="rentals"],
body[data-page="onsite"]     .nav a[data-page="onsite"],
body[data-page="industries"] .nav a[data-page="industries"],
body[data-page="faq"]        .nav a[data-page="faq"],
body[data-page="locations"]  .nav a[data-page="locations"] { color: var(--accent); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
/* Phone already lives in the top bar — hide the redundant header button to declutter */
.nav-cta .btn-ghost { display: none; }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.08s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }
.btn-ghost { background: transparent; color: var(--navy-900); border-color: var(--navy-900); }
.btn-ghost:hover { background: var(--navy-900); color: #fff; }
.btn-light { background: #fff; color: var(--navy-900); }
.btn-light:hover { background: var(--navy-100); color: var(--navy-900); }
.btn-lg { padding: 16px 28px; font-size: 1.05rem; }

/* === Hero — full-bleed boutique treatment === */
.hero {
  position: relative;
  background: var(--navy-900);
  color: #fff;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
}
/* The actual photograph — full bleed, slightly cooled */
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;          /* keeps the guard + radio in frame */
  display: block;
  filter: saturate(0.85) contrast(1.04);
}
/* Navy-to-transparent fade — heavier on the left where text sits, fades to clear over the subject */
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      rgba(11,37,69,0.96) 0%,
      rgba(11,37,69,0.88) 28%,
      rgba(11,37,69,0.55) 50%,
      rgba(11,37,69,0.18) 72%,
      rgba(11,37,69,0.05) 100%),
    linear-gradient(180deg,
      rgba(11,37,69,0.20) 0%,
      transparent 40%,
      rgba(11,37,69,0.30) 100%);
  pointer-events: none;
}
/* Subtle blue color cast across the whole photo */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(19,49,92,0.22), rgba(11,37,69,0.10));
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 96px;
  padding-bottom: 96px;
  width: 100%;
}
.hero-text { max-width: 540px; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  font-weight: 700;            /* a touch lighter than 800 — more editorial */
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  opacity: 0.82;
}
.hero .eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--accent);
}
.hero .lede { color: #D6E0EE; font-size: 1.12rem; max-width: 480px; line-height: 1.55; }
.hero .hero-cta {
  display: flex; gap: 18px; margin-top: 32px; align-items: center; flex-wrap: wrap;
}
.hero .hero-cta .text-link {
  color: #fff; font-weight: 600; font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
}
.hero .hero-cta .text-link:hover { border-color: var(--accent); color: var(--accent-soft); }
/* small caption tucked at bottom of hero — replaces stat strip */
.hero-caption {
  position: absolute;
  left: 0; right: 0; bottom: 28px;
  z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero-caption .container {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 0; padding-bottom: 0;
}
.hero-caption .meta-line { display: flex; gap: 28px; }
.hero-caption .meta-line span::before { content: "·"; margin-right: 28px; color: rgba(255,255,255,0.3); }
.hero-caption .meta-line span:first-child::before { content: ""; margin: 0; }

/* === Sections === */
section { padding: 80px 0; }
section.alt { background: var(--bg); }
section.dark { background: var(--navy-900); color: #BFD3E6; }
section.dark h2, section.dark h3 { color: #fff; }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
section.dark .section-head p { color: #BFD3E6; }

/* === Feature row === */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature .icon {
  width: 44px; height: 44px;
  background: var(--navy-100);
  color: var(--navy-900);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature h3 { color: var(--ink); margin-bottom: 8px; }
.feature p { color: var(--body); margin: 0; font-size: 0.96rem; }

/* === Steps === */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -16px; left: 24px;
  width: 36px; height: 36px;
  background: var(--accent); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-family: 'Manrope', sans-serif;
}

/* === Equipment grid === */
.equip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.equip-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.equip-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.equip-card .img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #f1f4f9, #e5ebf3);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-700);
}
.equip-card .img svg { width: 50%; height: 50%; opacity: 0.7; }
.equip-card .body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.equip-card .tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 6px;
}
.equip-card h3 { margin-bottom: 8px; }
.equip-card ul {
  list-style: none; padding: 0; margin: 0 0 16px;
  font-size: 0.9rem; color: var(--body);
}
.equip-card ul li { padding: 2px 0; }
.equip-card ul li::before { content: "•"; color: var(--accent); margin-right: 8px; }
.equip-card .price {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.equip-card .price .amount {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--ink);
}
.equip-card .price .amount small { font-weight: 500; color: var(--muted); font-size: 0.75rem; }
.equip-card .price a { font-weight: 700; font-size: 0.9rem; color: var(--accent); }

/* === Onsite callout === */
.callout {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: #fff;
  border-radius: 16px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.callout h2 { color: #fff; }
.callout p { color: #BFD3E6; }
.callout ul { list-style: none; padding: 0; margin: 0; }
.callout ul li { padding: 8px 0; padding-left: 28px; position: relative; }
.callout ul li::before {
  content: "✓"; position: absolute; left: 0;
  width: 20px; height: 20px; background: var(--accent);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800;
  top: 12px;
}

/* === Industries === */
.industries {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.industry {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.industry:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.industry .badge {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  background: var(--navy-100);
  color: var(--navy-900);
  border-radius: 999px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.industry h3 { font-size: 1.5rem; }
.industry .tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.industry .tags span {
  font-size: 0.78rem; color: var(--muted);
  background: var(--bg); padding: 4px 10px; border-radius: 6px;
}

/* === Trust / logos === */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.logo-tile {
  aspect-ratio: 2/1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.logo-tile.placeholder {
  background: repeating-linear-gradient(45deg, #f4f6f9, #f4f6f9 6px, #fff 6px, #fff 12px);
}

/* === Stat strip === */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat { padding: 24px; }
.stat .num { font-family: 'Manrope', sans-serif; font-size: 2.4rem; font-weight: 800; color: #fff; line-height: 1; }
.stat .label { color: #BFD3E6; font-size: 0.9rem; margin-top: 8px; }

/* === CTA strip === */
.cta-strip {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 60px 24px;
}
.cta-strip h2 { color: #fff; }
.cta-strip p { color: rgba(255,255,255,0.92); max-width: 600px; margin: 0 auto 24px; }

/* === Quote form === */
.quote-page {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
form.quote-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(27,59,111,0.12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-row.three { grid-template-columns: 1fr 1fr 1fr; }
.toggle {
  display: flex; align-items: center; gap: 12px;
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}
.toggle input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--accent); }
.toggle .label { font-weight: 600; color: var(--ink); display: block; }
.toggle .desc { font-size: 0.85rem; color: var(--muted); margin-top: 2px; }

.quote-side .info-block {
  background: var(--navy-900);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}
.quote-side .info-block h3 { color: #fff; margin-bottom: 14px; }
.quote-side .info-block p { color: #BFD3E6; font-size: 0.95rem; }
.quote-side .info-block .phone {
  font-family: 'Manrope', sans-serif; font-size: 1.6rem; font-weight: 800; color: #fff;
  display: block; margin-bottom: 4px;
}

/* === Footer === */
footer {
  background: var(--navy-900);
  color: #BFD3E6;
  padding: 56px 0 24px;
}
footer .container { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
footer h4 { color: #fff; font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
footer a { color: #BFD3E6; display: block; padding: 4px 0; font-size: 0.92rem; }
footer a:hover { color: #fff; }
footer .brand-mark { background: #fff; color: var(--navy-900); }
footer .brand-name { color: #fff; }
footer .legal {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 36px; padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap;
  font-size: 0.82rem; color: #8AA0BD;
}

/* === Page hero (interior pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: #fff;
  padding: 72px 0 56px;
  text-align: center;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: #BFD3E6; max-width: 640px; margin: 0 auto; font-size: 1.1rem; }

/* === Accessories === */
.accessory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.acc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex; gap: 16px;
  align-items: flex-start;
}
.acc-card .acc-icon {
  width: 48px; height: 48px;
  background: var(--navy-100); color: var(--navy-900);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.acc-card h3 { font-size: 1rem; margin-bottom: 4px; }
.acc-card p { font-size: 0.88rem; color: var(--muted); margin: 0; }

/* === Service grid === */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.svc-card .icon {
  width: 52px; height: 52px;
  background: var(--accent); color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.svc-card h3 { font-size: 1.25rem; }

/* === Hero quote-starter === */
.hero-quickquote {
  margin-top: 30px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-end;
  flex-wrap: wrap;
  max-width: 560px;
}
.qq-field { display: flex; flex-direction: column; gap: 6px; flex: 1 1 120px; min-width: 0; }
.qq-field label {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: #D6E0EE; font-weight: 600;
}
.qq-field input {
  padding: 11px 12px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.96); color: var(--ink);
  font-family: inherit; font-size: 0.92rem; width: 100%;
}
.qq-field input:focus { outline: none; box-shadow: 0 0 0 3px rgba(255,255,255,0.25); }
.hero-quickquote .btn { white-space: nowrap; flex: 0 0 auto; }
.hero-quickquote-note { margin-top: 12px; font-size: 0.8rem; color: #AFC1DA; }

/* === FAQ accordion (no JS) === */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer; padding: 22px 0; font-weight: 600; font-size: 1.06rem;
  color: var(--ink); list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.5rem; color: var(--accent); font-weight: 400;
  line-height: 1; flex-shrink: 0; transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-body { padding: 0 0 22px; color: var(--body); max-width: 680px; }
.faq-body p { margin: 0; }

/* === Mobile hamburger button === */
.nav-burger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 42px; height: 42px; align-items: center; justify-content: center;
  color: var(--ink); border-radius: 8px;
}
.nav-burger:hover { background: var(--navy-100); }

/* === Mobile === */
@media (max-width: 920px) {
  .callout,
  .quote-page { grid-template-columns: 1fr; }
  .features, .steps, .equip-grid, .accessory-grid, .svc-grid, .industries {
    grid-template-columns: 1fr;
  }
  .logo-wall { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  footer .container { grid-template-columns: 1fr 1fr; }

  /* Mobile nav: hidden by default, toggled open by the burger */
  .nav-burger { display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 8px 24px 16px;
  }
  .header-main { position: relative; }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav a:last-child { border-bottom: none; }
  .nav-cta .btn-ghost { display: none; }   /* hide phone btn on mobile; quote stays */

  .header-top .container { flex-direction: column; gap: 4px; padding: 6px 24px; font-size: 0.74rem; }
  section { padding: 56px 0; }
  .callout { padding: 32px; }
  .field-row, .field-row.three { grid-template-columns: 1fr; }

  /* Hero — mobile */
  .hero { min-height: 560px; }
  .hero .container { padding-top: 64px; padding-bottom: 80px; }
  .hero-photo img { object-position: 70% center; }
  .hero-photo::after {
    background:
      linear-gradient(180deg,
        rgba(11,37,69,0.92) 0%,
        rgba(11,37,69,0.78) 30%,
        rgba(11,37,69,0.55) 55%,
        rgba(11,37,69,0.30) 80%,
        rgba(11,37,69,0.10) 100%);
  }
  .hero-caption .container { flex-direction: column; gap: 8px; align-items: flex-start; }
  .hero-caption .meta-line { flex-wrap: wrap; gap: 16px; }
  .hero-caption .meta-line span::before { display: none; }
}
