/* ============================================================
   Hi-Sky Enterprises Ltd - marketing site (DARK / RED variant)
   Brand: black + red + white, blackletter wordmark
   Mirrors styles.css layout exactly; only the palette changes.
   ============================================================ */

:root {
  /* Dark surfaces */
  --bg: #0a0a0a;          /* page background */
  --bg-alt: #121212;      /* alternating sections */
  --surface: #181818;     /* cards, inputs, chips */
  --surface-2: #1f1f1f;   /* raised / hover */

  /* Borders (light hairlines on dark) */
  --border: rgba(255, 255, 255, 0.12);
  --border-soft: rgba(255, 255, 255, 0.07);

  /* Red brand accent */
  --red: #d62330;
  --red-600: #b81d28;
  --red-light: #ee4b59;

  /* Text */
  --text: #f1f1f1;        /* body */
  --text-soft: #bdbdbd;   /* secondary */
  --text-mute: #8f8f8f;   /* eyebrows / labels */
  --white: #ffffff;

  --max: 1400px;
  --radius: 10px;
  --shadow: 0 14px 38px rgba(0, 0, 0, 0.6);
  /* Old-school black & white wash for the baked-in poster graphics */
  --red-wash: grayscale(1) contrast(1.16) brightness(1.04);
  --font-head: "Oswald", "Arial Narrow", Arial, sans-serif;
  --font-body: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-script: "Grenze Gotisch", "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--red-light); }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 30px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--red);
  color: #fff;
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- Headings ---------- */
h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: #fff;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: saturate(140%) blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 132px;
  padding: 10px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}
.brand-logo {
  height: 104px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 9px rgba(0, 0, 0, 0.6));
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #fff;
  font-size: 1.05rem;
}
.brand-tag {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mute);
}

.primary-nav { display: flex; align-items: center; gap: 6px; }
.primary-nav a {
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.primary-nav a:hover { color: #fff; background: rgba(214, 35, 48, 0.20); }
.nav-cta {
  background: var(--red);
  color: #fff !important;
  margin-left: 6px;
}
.nav-cta:hover { background: var(--red-light) !important; }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 11px;
  padding: 11px 18px;
  background: rgba(214, 35, 48, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle-bars { display: flex; flex-direction: column; gap: 6px; }
.nav-toggle-bars span { display: block; width: 30px; height: 3px; border-radius: 2px; background: #fff; }
.nav-toggle-text {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
}

/* ============================================================
   DEMO THEME SWITCHER (top banner)
   ============================================================ */
.theme-switch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 9px;
  z-index: 6;
}
.theme-switch-label {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}
.swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
  transition: transform 0.12s, border-color 0.12s, box-shadow 0.12s;
}
.swatch:hover { transform: scale(1.15); }
.swatch.is-active { border-color: #fff; box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4); }
.swatch-blue { background: #2f4f93; }
.swatch-red { background: #d62330; }
.swatch-chrome { background: linear-gradient(135deg, #eef2f6 0%, #aab2bd 50%, #767e8a 100%); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 132px);
  background-color: #000;
  background-image: url("hiskyhero.jpg");
  background-size: cover;
  background-position: center 15%;
  overflow: hidden;
  padding-bottom: 58px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(52% 46% at 17% 22%, rgba(214, 35, 48, 0.30), transparent 70%),
    radial-gradient(78% 78% at 50% 62%, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.30) 68%, transparent 86%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 42%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 54px 22px 56px;
  max-width: 880px;
  text-align: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-mute);
  margin: 0 0 18px;
}
.hero h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.7rem);
  margin: 0 auto 22px;
  max-width: 18ch;
}
.hero-sub {
  font-size: 1.18rem;
  color: var(--text-soft);
  max-width: 56ch;
  margin: 0 auto 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 44px; }

.btn {
  display: inline-block;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 8px;
  transition: transform 0.12s, background 0.15s, box-shadow 0.15s;
  border: 2px solid transparent;
}
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 10px 24px rgba(214, 35, 48, 0.4); }
.btn-primary:hover { background: var(--red-light); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: #fff; transform: translateY(-2px); }

.hero-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 48px;
  margin: 0;
  padding: 26px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-stats li { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
}
.stat-label { font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase; color: var(--text-mute); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); }
.section-navy {
  background:
    radial-gradient(900px 400px at 85% 0%, rgba(214, 35, 48, 0.22), transparent 60%),
    linear-gradient(160deg, #110709, #050505);
  color: #fff;
}
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red-light);
  margin: 0 0 12px;
}
.section-eyebrow.light { color: var(--text-mute); }
.section-title {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  color: #fff;
  max-width: 22ch;
}
.section-title.light { color: #fff; }
.section-lead {
  font-size: 1.12rem;
  color: var(--text-soft);
  max-width: 64ch;
  margin: 0 0 40px;
}
.section-lead.light { color: var(--text-soft); }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
  transition: transform 0.15s, box-shadow 0.15s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { font-size: 1.18rem; color: #fff; }
.card p { margin: 0; color: var(--text-soft); font-size: 1rem; }
.card-dark {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-soft);
  border-top: 4px solid var(--red-light);
}
.card-dark h3 { color: #fff; }
.card-dark p { color: var(--text-soft); }

/* Scroll reveal (progressive enhancement, JS adds .reveal) */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.in { opacity: 1; transform: none; }

/* Accessible focus */
a:focus-visible, button:focus-visible, .btn:focus-visible, .apply-banner:focus-visible {
  outline: 3px solid var(--red-light);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-copy p { color: var(--text-soft); }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; }
.check-list li {
  position: relative;
  padding: 8px 0 8px 34px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 18px; height: 10px;
  border-left: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  transform: rotate(-45deg);
}
.about-aside { display: flex; flex-direction: column; gap: 20px; }
.aside-card {
  background: linear-gradient(160deg, #1c1c1c, #0d0d0d);
  color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
}
.aside-year {
  font-family: var(--font-head);
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
  color: #fff;
}
.aside-text { color: var(--text-soft); margin: 10px 0 0; }
.aside-region {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 26px;
  background: var(--surface);
}
.aside-region h3 { font-size: 1.05rem; color: #fff; }
.aside-region p { margin: 0; color: var(--text-soft); }

/* About banner + story text */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.section-banner { width: 100%; height: auto; display: block; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border); filter: var(--red-wash); }
.about-text { display: none; max-width: 760px; margin: 0 auto; }
.safety-text { display: none; }
.about-text p { color: var(--text-soft); }
.about-checks { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0 30px; margin-top: 18px; }

/* About poster now shown in old-school B&W on desktop (text on mobile), same as the other sections */

/* ---------- Partners ---------- */
.partner-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.partner-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  padding: 20px 22px;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
}
.partner-note { font-size: 0.92rem; color: var(--text-soft); font-style: italic; max-width: 70ch; }
.section-navy .partner-note { color: var(--text-mute); }

/* ---------- Careers ---------- */
.apply-banner {
  display: block;
  max-width: 860px;
  margin: 0 auto 30px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.15s, box-shadow 0.15s;
}
.apply-banner:hover { transform: translateY(-3px); box-shadow: 0 22px 50px rgba(0, 0, 0, 0.6); }
.apply-banner img { width: 100%; height: auto; filter: var(--red-wash); }
.roles { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 36px; }
.role-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
.careers-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  background: linear-gradient(160deg, #2b0b10, #0c0c0c);
  color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 34px;
  box-shadow: var(--shadow);
}
.careers-cta h3 { color: #fff; font-size: 1.4rem; margin-bottom: 6px; }
.careers-cta p { margin: 0; color: var(--text-soft); max-width: 52ch; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 30px;
}
.contact-list { margin: 0; }
.contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-row:last-child { border-bottom: none; }
.contact-row dt {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: #fff;
  width: 90px;
  flex-shrink: 0;
}
.contact-row dd { margin: 0; font-size: 1.08rem; font-weight: 600; color: var(--text); }
.contact-row dd a { text-decoration: none; color: var(--red-light); }
.ph {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffcf6b;
  background: rgba(255, 180, 60, 0.12);
  border: 1px solid rgba(255, 180, 60, 0.4);
  border-radius: 999px;
  padding: 2px 9px;
  vertical-align: middle;
}

/* Careers extras */
.careers-sub { margin: 32px 0 14px; color: #fff; font-size: 1.3rem; }
.careers-perks { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 0 36px; }

/* Contact form */
.contact-form .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field-row { display: flex; gap: 14px; }
.field-row .field { flex: 1; }
.contact-form label { font-weight: 600; font-size: 0.92rem; color: var(--text); }
.contact-form input, .contact-form select, .contact-form textarea {
  font: inherit;
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #161616;
  color: var(--text);
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(214, 35, 48, 0.22);
}
.contact-form button { margin-top: 6px; border: none; cursor: pointer; }
.contact-form input[type="file"] { padding: 9px 11px; background: #161616; cursor: pointer; }
.hidden-field { position: absolute; left: -5000px; }

.vcard-btn {
  display: inline-block;
  margin: 18px 0 6px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--text);
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 10px 18px;
  transition: border-color 0.15s, color 0.15s;
}
.vcard-btn:hover { border-color: var(--red); color: var(--red-light); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.contact-actions .vcard-btn { margin: 0; }
.vcard-btn--solid { background: var(--red); color: #fff; border-color: var(--red); }
.vcard-btn--solid:hover { background: var(--red-light); border-color: var(--red-light); color: #fff; }
.contact-note { font-size: 0.85rem; color: var(--text-soft); margin: 12px 0 0; }
.contact-map { margin-top: 34px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }
.contact-map iframe { display: block; width: 100%; }

/* Live conditions band, pinned to the bottom of the hero */
.hero-conditions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(3px);
}
.conditions-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 18px; padding: 13px 22px; }
.cond-live { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1.6px; font-size: 0.72rem; color: var(--text-mute); }
.cond-dot { width: 9px; height: 9px; border-radius: 50%; background: #46d27f; flex-shrink: 0; animation: condpulse 2.2s infinite; }
@keyframes condpulse {
  0% { box-shadow: 0 0 0 0 rgba(70, 210, 127, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(70, 210, 127, 0); }
  100% { box-shadow: 0 0 0 0 rgba(70, 210, 127, 0); }
}
.cond-data { color: #fff; font-weight: 600; font-size: 0.95rem; }
.cond-fire { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 600; font-size: 0.95rem; }
.cond-fire[hidden] { display: none; }
.cond-fire strong { font-weight: 700; }
.fire-dot { width: 11px; height: 11px; border-radius: 3px; background: #46d27f; flex-shrink: 0; }

/* Sticky mobile action bar */
.mobile-bar { display: none; }
.mobile-bar a {
  flex: 1;
  text-align: center;
  padding: 15px 8px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  text-decoration: none;
}
.mb-call { background: #1a1a1a; color: #fff; }
.mb-apply { background: var(--red); color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: #050505;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='140'%3E%3Cg fill='none' stroke='%23d62330' stroke-opacity='0.08' stroke-width='1.4'%3E%3Cpath d='M0 30 C 60 8 180 52 240 24'/%3E%3Cpath d='M0 72 C 60 50 180 94 240 66'/%3E%3Cpath d='M0 114 C 60 92 180 134 240 108'/%3E%3C/g%3E%3C/svg%3E");
  color: var(--text-soft);
  padding: 50px 0 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px 40px;
  align-items: center;
}
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { height: 60px; width: auto; filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5)); }
.footer-name { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.5px; color: #fff; margin: 0; font-size: 1.05rem; }
.footer-tag { margin: 2px 0 0; font-size: 0.85rem; color: var(--text-mute); letter-spacing: 0.5px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 6px 18px; justify-content: flex-end; }
.footer-nav a { color: var(--text-soft); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.footer-nav a:hover { color: #fff; }
.footer-legal {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border);
  padding-top: 22px;
  margin: 14px 0 0;
  font-size: 0.85rem;
  color: var(--text-mute);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Medium screens (small laptops, tablets in landscape): keep the full desktop nav, just tighten it */
@media (min-width: 769px) and (max-width: 1040px) {
  .header-inner { min-height: 98px; }
  .brand-logo { height: 66px; }
  .brand-name { font-size: 0.95rem; }
  .brand-tag { font-size: 0.66rem; letter-spacing: 1.2px; }
  .primary-nav { gap: 2px; }
  .primary-nav a { padding: 8px 9px; font-size: 0.86rem; }
  .nav-cta { margin-left: 4px; }
  .hero { min-height: calc(100vh - 98px); }
}

@media (max-width: 768px), (hover: none) and (pointer: coarse) and (max-width: 1024px) {
  body { font-size: 18.5px; }
  .section-lead { font-size: 1.22rem; }
  .card p { font-size: 1.08rem; }
  .contact-row dd { font-size: 1.14rem; }
  .nav-toggle { display: flex; }
  .brand-logo { height: 80px; }
  .header-inner { min-height: 100px; }
  .theme-switch-label { display: none; }
  .theme-switch { gap: 12px; }
  .swatch { width: 26px; height: 26px; }
  .primary-nav {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #0d0d0d;
    border-bottom: 1px solid var(--border);
    padding: 10px 16px 18px;
    display: none;
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 18px 14px; border-radius: 8px; font-size: 1.26rem; }
  .nav-cta { margin: 10px 0 0; text-align: center; font-size: 1.26rem; }

  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .field-row { flex-direction: column; gap: 0; }
  .section-banner { display: none; }
  .about-text, .safety-text { display: block; }
  body { padding-bottom: 54px; }
  .mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 95;
    box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.45);
  }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { justify-content: flex-start; }
  .section { padding: 62px 0; }
  .hero { min-height: calc(100vh - 100px); }
  .hero-content { padding: 70px 22px 60px; }
}

@media (max-width: 480px) {
  .brand-name { font-size: 0.92rem; }
  .brand-logo { height: 66px; }
  .hero-stats { gap: 18px 28px; }
  .btn { width: 100%; text-align: center; }
  .careers-cta { padding: 26px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .cond-dot { animation: none; }
}
