/* ================================================================
   West Shore Dynamics · style.css
   ================================================================ */

/* ----- 1. Design Tokens --------------------------------------- */
:root {
  /* Backgrounds */
  --bg:       #07080f;
  --surface:  #0c0e18;
  --raised:   #111420;

  /* Borders */
  --border:   rgba(255, 255, 255, 0.08);
  --border-s: rgba(255, 255, 255, 0.15);

  /* Text — three clear levels */
  --heading:  #f0f4fc;
  --text:     #a0aabb;
  --text-dim: #546070;
  --text-low: #2e3d4e;

  /* Brand palette — logo yellow and blue used directly */
  --gold:     #ffd84d;
  --sky:      #38bfef;
  --gold-dim: rgba(255, 216, 77, 0.12);
  --sky-dim:  rgba(56, 191, 239, 0.12);
  --gold-dim2: rgba(255, 216, 77, 0.06);
  --sky-dim2:  rgba(56, 191, 239, 0.06);

  /* Caution — reserved for caution tape */
  --caution:  #d4aa38;

  /* Legacy aliases — keep HTML stable */
  --c-bg:       var(--bg);
  --c-surface:  var(--surface);
  --c-raised:   var(--raised);
  --c-border:   var(--border);
  --c-border-y: var(--border-s);
  --c-text:     var(--heading);
  --c-dim:      var(--text-dim);
  --c-muted:    var(--text-low);
  --accent:     var(--sky);
  --accent-hi:  #55d0ff;
  --accent-dim: var(--sky-dim);
  --accent-dim2: var(--sky-dim2);
  --steel:      var(--sky);
  --steel-hi:   #55d0ff;
  --steel-t:    var(--sky-dim);
  --steel-t2:   var(--sky-dim2);
  --yellow:     var(--gold);
  --blue:       var(--sky);
  --yellow-a:   var(--gold-dim);
  --blue-a:     var(--sky-dim);
  --yellow-a2:  var(--gold-dim2);
  --blue-a2:    var(--sky-dim2);

  --sans:  'Inter', system-ui, -apple-system, sans-serif;
  --mono:  'JetBrains Mono', 'Fira Code', ui-monospace, monospace;

  --nav-h: 68px;
  --max:   1160px;
  --r:     6px;
  --r-lg:  10px;
  --r-xl:  14px;
}

/* ----- 2. Reset ----------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html                   { scroll-behavior: smooth; }
img, svg               { display: block; max-width: 100%; }
a                      { color: inherit; text-decoration: none; }
ul, ol                 { list-style: none; }
button                 { cursor: pointer; border: none; background: none; font: inherit; }

/* ----- 3. Base ------------------------------------------------ */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ----- 4. Layout ---------------------------------------------- */
.container {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 32px;
}
.section    { padding-block: 96px; }
.section-sm { padding-block: 64px; }

/* ----- 5. Navigation ------------------------------------------ */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(7, 8, 15, 0.82);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  height: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.nav-logo img { height: 32px; width: auto; }
.nav-wordmark {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--heading);
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  display: inline-block;
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  border-radius: var(--r);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover  { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-links a.active { color: var(--heading); }
.nav-links a.nav-cta {
  color: var(--gold);
  border: 1px solid rgba(255,216,77,0.2);
  padding: 6px 14px;
}
.nav-links a.nav-cta:hover { background: rgba(255,216,77,0.08); border-color: rgba(255,216,77,0.35); color: var(--gold); }
.nav-links a.nav-cta.active { color: var(--gold); }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 8px;
  color: var(--text-dim);
  border-radius: var(--r);
  transition: color 0.15s;
}
.nav-toggle:hover { color: var(--text); }
.nav-toggle svg   { pointer-events: none; }

/* ----- 6. Hero ------------------------------------------------ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero-bg-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding-block: 72px;
}

/* Home hero — both brand colors, balanced glow */
.hero-home {
  background:
    radial-gradient(ellipse 55% 65% at 75% 35%, rgba(56,191,239,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 45% 50% at 18% 78%, rgba(255,216,77,0.06) 0%, transparent 58%),
    var(--bg);
}

/* Inner page hero — shorter, subtle top glow */
.hero-page {
  min-height: 48vh;
  background:
    radial-gradient(ellipse 60% 55% at 65% 0%, rgba(56,191,239,0.07) 0%, transparent 65%),
    var(--bg);
}
.hero-page .hero-content { padding-block: 56px; }

/* Per-page hero tints */
.hero-robotics {
  background:
    radial-gradient(ellipse 55% 60% at 70% 10%, rgba(255,216,77,0.07) 0%, transparent 62%),
    var(--bg);
}
.hero-nuclear {
  background:
    radial-gradient(ellipse 60% 65% at 68% 5%, rgba(56,191,239,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 30% 40% at 10% 80%, rgba(56,191,239,0.04) 0%, transparent 50%),
    var(--bg);
}
.hero-about {
  background:
    radial-gradient(ellipse 50% 55% at 65% 10%, rgba(255,216,77,0.055) 0%, transparent 60%),
    var(--bg);
}

/* Facilities hero — uses satellite photo */
.facilities-hero {
  min-height: 48vh;
  background:
    linear-gradient(170deg, rgba(7,8,15,0.88) 0%, rgba(7,8,15,0.68) 55%, rgba(7,8,15,0.90) 100%),
    url('../assets/satellite-bg.jpg') center / cover no-repeat,
    var(--bg);
}

.hero-title {
  font-size: clamp(52px, 8vw, 88px);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.0;
  color: var(--heading);
  margin-bottom: 24px;
}
.hero-page .hero-title { font-size: clamp(36px, 5vw, 56px); }

/* Gradient accent on hero accent words */
.hero-title .y {
  background: linear-gradient(105deg, var(--gold) 0%, #ffb020 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .b {
  background: linear-gradient(105deg, var(--sky) 0%, #1aa8e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ----- 7. Eyebrow labels -------------------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 20px;
}
.eyebrow-y { color: var(--gold); }

/* ----- 8. Section Headers ------------------------------------- */
.section-header { margin-bottom: 52px; }
.section-title {
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 700;
  letter-spacing: -0.028em;
  color: var(--heading);
  margin-bottom: 14px;
  line-height: 1.12;
}
.section-sub {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 540px;
  line-height: 1.72;
}

/* ----- 9. Buttons --------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.15s;
  white-space: nowrap;
  border: 1px solid transparent;
}

/* Gold CTA — warm, inviting, stands out */
.btn-primary {
  background: var(--gold);
  color: #1a1000;
  font-weight: 700;
}
.btn-primary:hover {
  background: #ffe168;
  transform: translateY(-1px);
}

.btn-blue {
  background: var(--sky);
  color: #041020;
  font-weight: 700;
}
.btn-blue:hover {
  background: #55d0ff;
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover { color: var(--heading); }

.btn-outline {
  border: 1px solid var(--border-s);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.24);
  color: var(--heading);
}

/* ----- 10. Stats Bar ------------------------------------------ */
.stats-bar {
  border-block: 1px solid var(--border);
  background: var(--surface);
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding-block: 28px;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding-inline: 52px;
}
.stat-number {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--gold);
  font-family: var(--mono);
}
.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-dim);
  font-weight: 500;
}
.stat-div { width: 1px; height: 36px; background: var(--border); }

/* ----- 11. Division Cards ------------------------------------- */
.division-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.division-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.division-card:hover {
  background: var(--raised);
  transform: translateY(-2px);
}

/* Robotics (1st) and Facilities (3rd) — gold accent */
.division-grid > a:nth-child(1) .division-icon,
.division-grid > a:nth-child(3) .division-icon {
  color: var(--gold);
  background: var(--gold-dim2);
  border-color: rgba(255,216,77,0.22);
}
.division-grid > a:nth-child(1):hover,
.division-grid > a:nth-child(3):hover { border-color: rgba(255,216,77,0.35); }
.division-grid > a:nth-child(1):hover .card-arrow,
.division-grid > a:nth-child(3):hover .card-arrow { color: var(--gold); }

/* Nuclear (2nd / featured) — sky accent */
.division-grid > a:nth-child(2) {
  border-color: rgba(56,191,239,0.2);
  background: linear-gradient(160deg, rgba(56,191,239,0.05) 0%, var(--surface) 60%);
}
.division-grid > a:nth-child(2) .division-icon {
  color: var(--sky);
  background: var(--sky-dim2);
  border-color: rgba(56,191,239,0.25);
}
.division-grid > a:nth-child(2):hover {
  border-color: rgba(56,191,239,0.42);
  background: linear-gradient(160deg, rgba(56,191,239,0.08) 0%, var(--raised) 60%);
}
.division-grid > a:nth-child(2):hover .card-arrow { color: var(--sky); }

.division-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-s);
  border-radius: var(--r);
  color: var(--text-dim);
}
.division-card h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--heading);
}
.division-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  flex: 1;
}
.card-arrow {
  font-size: 18px;
  color: var(--text-low);
  transition: color 0.15s, transform 0.15s;
  display: inline-block;
}

/* ----- 12. Generic Content Cards ------------------------------ */
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.content-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.18s, background 0.18s;
}
.content-card:hover {
  background: var(--raised);
  border-color: var(--border-s);
}
.card-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--sky);
  text-transform: uppercase;
}
.content-card h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--heading);
}
.content-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.72;
}
.feat-icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--sky-dim2);
  border: 1px solid rgba(56,191,239,0.18);
  border-radius: var(--r);
  color: var(--sky);
  margin-bottom: 4px;
}
.feat-icon-y {
  background: var(--gold-dim2);
  border-color: rgba(255,216,77,0.18);
  color: var(--gold);
}

/* ----- 13. IFR Banner ----------------------------------------- */
.ifr-banner {
  background: linear-gradient(150deg, rgba(56,191,239,0.07) 0%, rgba(56,191,239,0.02) 100%);
  border: 1px solid rgba(56,191,239,0.2);
  border-left: 3px solid var(--sky);
  border-radius: var(--r-lg);
  padding: 40px 44px;
  margin-bottom: 48px;
}
.ifr-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.13em;
  color: var(--sky);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ifr-banner h2 {
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  color: var(--heading);
  line-height: 1.15;
}
.ifr-banner p {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 600px;
}

/* ----- 14. Caution Tape & Facility Cards ---------------------- */
@keyframes caution-march {
  from { background-position: 0 0; }
  to   { background-position: 56px 0; }
}
.caution-tape {
  display: block;
  width: 100%;
  height: 7px;
  flex-shrink: 0;
  background: repeating-linear-gradient(
    -45deg,
    var(--caution) 0px, var(--caution) 9px,
    #0c0900       9px, #0c0900      18px
  );
  background-size: 56px 56px;
  animation: caution-march 0.65s linear infinite;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.facility-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, background 0.2s;
}
.facility-card:hover {
  background: var(--raised);
  border-color: rgba(255,216,77,0.25);
}
.facility-card-body {
  padding: 28px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.facility-id {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--sky);
  text-transform: uppercase;
}
.facility-card h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.018em;
  color: var(--heading);
}
.facility-card .facility-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.72;
  flex: 1;
}
.facility-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(212,170,56,0.09);
  border: 1px solid rgba(212,170,56,0.28);
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c9a040;
  width: fit-content;
}
.facility-status::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--caution);
}

.facilities-notice {
  background: rgba(255,216,77,0.06);
  border: 1px solid rgba(255,216,77,0.2);
  border-radius: var(--r);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 44px;
  font-size: 14px;
  color: var(--text-dim);
}
.facilities-notice svg { color: var(--caution); }
.facilities-notice strong { color: var(--heading); }

/* ----- 15. About Page ----------------------------------------- */
.about-lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-lead-text { display: flex; flex-direction: column; gap: 16px; }
.prose { font-size: 15px; color: var(--text-dim); line-height: 1.8; }

.timeline {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border-s);
  padding-left: 28px;
  margin-left: 6px;
}
.timeline-item { position: relative; padding-bottom: 30px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px; top: 6px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sky);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 1px rgba(56,191,239,0.4);
}
.tl-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--sky);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.timeline-item h4 { font-size: 15px; font-weight: 600; color: var(--heading); margin-bottom: 5px; }
.timeline-item p  { font-size: 13px; color: var(--text-dim); line-height: 1.68; }

/* ----- 16. Contact -------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-block: 20px;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 36px; height: 36px;
  background: var(--sky-dim2);
  border: 1px solid rgba(56,191,239,0.2);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--sky);
  flex-shrink: 0;
}
.detail-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; color: var(--text-low); text-transform: uppercase; margin-bottom: 4px; }
.detail-val   { font-size: 15px; color: var(--heading); }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: var(--text-dim); }
.form-control {
  width: 100%;
  padding: 11px 15px;
  background: var(--surface);
  border: 1px solid var(--border-s);
  border-radius: var(--r);
  color: var(--heading);
  font-family: var(--sans);
  font-size: 15px;
  outline: none;
  transition: border-color 0.15s;
}
.form-control:focus { border-color: rgba(56,191,239,0.5); }
.form-control::placeholder { color: var(--text-low); }
textarea.form-control { resize: vertical; min-height: 130px; }

/* ----- 17. Footer --------------------------------------------- */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-block-start: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  padding-bottom: 52px;
}
.footer-brand { display: flex; flex-direction: column; gap: 18px; }
.footer-brand p { font-size: 14px; color: var(--text-dim); max-width: 300px; line-height: 1.72; }
.footer-links  { display: flex; gap: 56px; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.footer-col li { margin-bottom: 11px; }
.footer-col a  { font-size: 14px; color: var(--text-dim); transition: color 0.15s; }
.footer-col a:hover { color: var(--heading); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 20px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-low);
}
.footer-mono { font-family: var(--mono); font-size: 12px; }

/* ----- 18. 404 ------------------------------------------------ */
.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--nav-h) 32px 32px;
}
.not-found-code {
  font-family: var(--mono);
  font-size: clamp(80px, 18vw, 160px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(120deg, var(--gold), var(--sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  opacity: 0.35;
}

/* ----- 19. Nuclear diagram ------------------------------------ */
.ifr-diagram {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--raised);
  border: 1px solid var(--border-s);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ifr-diagram svg { width: 100%; height: 100%; }

/* ----- 20. Responsive ----------------------------------------- */
@media (max-width: 900px) {
  .division-grid   { grid-template-columns: 1fr; }
  .about-lead      { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid    { grid-template-columns: 1fr; gap: 48px; }
  .card-grid-3     { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav-wordmark  { display: none; }
  .nav-links     { display: none; flex-direction: column; gap: 0; position: absolute; top: 100%; inset-inline: 0; background: rgba(7,8,15,0.97); border-bottom: 1px solid var(--border); padding: 8px 16px 14px; }
  .nav-links.open { display: flex; }
  .nav-links a   { padding: 12px 16px; width: 100%; }
  .nav-toggle    { display: flex; }

  .hero-title    { font-size: 46px; }
  .hero-desc     { font-size: 16px; }
  .section       { padding-block: 64px; }

  .stats-inner   { flex-direction: column; }
  .stat-div      { width: 64px; height: 1px; }
  .stat          { padding: 18px 0; }

  .footer-inner  { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; }

  .facilities-grid { grid-template-columns: 1fr; }
  .card-grid-2   { grid-template-columns: 1fr; }
  .card-grid-3   { grid-template-columns: 1fr; }
  .footer-links  { gap: 32px; }

  .ifr-banner    { padding: 28px 24px; border-left-width: 2px; }
  .facility-card-body { padding: 22px 24px; }
  .content-card  { padding: 22px 24px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .division-card { padding: 22px; }
  .container { padding-inline: 20px; }
}
