/* ==========================================================================
   Galaxy Haulage Solutions — main stylesheet
   ========================================================================== */

:root {
  /* Brand palette, matched to the Galaxy Haulage Solutions logo (red-to-orange gradient horse mark) */
  --navy: #241713;        /* warm near-black — headings, dark sections */
  --navy-dark: #170e0b;   /* darkest — topbar, footer, gradients */
  --navy-light: #4a2a1f;  /* lighter dark — hover states on dark buttons */
  --red: #c1272d;         /* logo red */
  --red-dark: #931d22;
  --orange: #f47b20;      /* logo orange */
  --orange-dark: #d75f13;
  --orange-light: #f7941d;
  --amber: #f47b20;       /* primary CTA colour (kept name for compatibility) */
  --amber-dark: #c1272d;  /* accent/hover colour (kept name for compatibility) */
  --grey-50: #fbf5f0;
  --grey-100: #efe5df;
  --page-bg: #fffaf6;
  --grey-300: #d9cfc9;
  --grey-600: #6b5c55;
  --grey-800: #2b211d;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 10px 30px rgba(36, 23, 19, 0.14);
  --max-width: 1180px;
  --font: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  --logo-gradient: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--grey-800);
  background: var(--page-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1, h2, h3, h4 { line-height: 1.25; margin: 0 0 16px; color: var(--navy); }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 16px; color: var(--grey-600); }

.eyebrow {
  display: inline-block;
  color: var(--amber-dark);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}
.btn-primary { background: var(--orange); color: var(--navy-dark); }
.btn-primary:hover { background: var(--orange-light); }
.btn-outline { border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); }
.btn-block { width: 100%; text-align: center; }
.btn-outline-dark {
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-dark:hover { background: var(--grey-100); }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--navy-dark);
  color: var(--grey-300);
  font-size: 0.85rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 8px;
}
.topbar-info { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-info a { color: var(--grey-300); }
.topbar-info a:hover { color: var(--amber); }
.topbar-note {
  color: var(--orange-light);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(36,23,19,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1360px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.1;
}
.logo img { height: 42px; width: auto; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; }
.logo span { color: var(--red); }
.logo small {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--grey-600);
  text-transform: uppercase;
  margin-top: 2px;
}

.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { height: 36px; width: auto; }

.nav-toggle { display: none; }

.main-nav {
  flex: 1;
  min-width: 0;
}
.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  display: block;
  padding: 9px 9px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  border-radius: var(--radius);
  white-space: nowrap;
}
.main-nav a:hover, .main-nav li.active > a { color: var(--amber-dark); }

.has-dropdown { position: relative; }
.has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 6px;
  margin-bottom: 2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.6;
  transition: transform 0.2s ease;
}
.has-dropdown:hover > a::after { transform: rotate(225deg); }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  pointer-events: none;
}
/* invisible bridge so the pointer never leaves a hoverable element while
   moving from the nav link down into the dropdown */
.dropdown::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown li a { padding: 10px 14px; border-radius: 6px; }
.dropdown li a:hover { background: var(--grey-100); }

.nav-cta {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 8px;
  justify-content: flex-end;
}
.nav-dispatch-btn {
  background: var(--navy);
  color: var(--white) !important;
  min-width: 0;
  padding: 9px 14px !important;
  border-radius: var(--radius);
  text-align: center;
  white-space: nowrap;
}
.nav-dispatch-btn:hover { background: var(--navy-light); }
.nav-quote-btn {
  background: var(--orange);
  color: var(--navy-dark) !important;
  border-color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
}
.nav-quote-btn:hover,
.nav-quote-btn:focus,
.nav-quote-btn:active,
.nav-quote-btn:visited {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white) !important;
  opacity: 1;
  visibility: visible;
}

/* ---------- Recruitment (careers page) ---------- */
.recruit-banner {
  background: linear-gradient(120deg, rgba(23,14,11,0.95), rgba(36,23,19,0.9)),
              repeating-linear-gradient(45deg, #2a1a14 0 40px, #1c110d 40px 80px);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.recruit-banner .eyebrow { color: var(--amber); }
.recruit-banner h1 { color: var(--white); margin-bottom: 6px; }
.recruit-banner .base-tag {
  display: inline-block;
  background: var(--amber);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-top: 10px;
}
.pay-callout {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: 20px 40px;
  margin: 28px auto 8px;
}
.pay-callout strong { font-size: 2.4rem; color: var(--amber); line-height: 1; }
.pay-callout span { color: var(--grey-300); font-size: 0.9rem; margin-top: 6px; }
.pay-note { font-size: 0.78rem; color: var(--grey-300); opacity: 0.8; }

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 12px;
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--grey-50);
  border: 1px solid var(--grey-100);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
}
.badge-link {
  border-color: rgba(244,123,32,0.28);
  box-shadow: 0 6px 18px rgba(36, 23, 19, 0.07);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.badge-link::after {
  content: "›";
  color: var(--orange);
  font-size: 1.1rem;
  line-height: 1;
}
.badge-link:hover,
.badge-link:focus-visible {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(244,123,32,0.22);
  outline: none;
}
.badge-link:hover::after,
.badge-link:focus-visible::after {
  color: var(--navy-dark);
}
.badge .badge-icon { font-size: 1rem; }

.client-logo-badge {
  width: 168px;
  height: 78px;
  justify-content: center;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(36, 23, 19, 0.08);
}
.client-logo-badge img {
  display: block;
  width: auto;
  height: auto;
  max-width: 140px;
  max-height: 46px;
  margin: 0 auto;
  object-fit: contain;
}
.client-logo-badge.logo-wide img { max-width: 148px; }
.client-logo-badge.logo-fedex img { max-height: 48px; max-width: 138px; }
.client-logo-badge.logo-startrack img { max-height: 58px; max-width: 154px; transform: scale(1.52); }
.client-logo-badge.logo-border img { max-height: 55px; max-width: 146px; transform: scale(1.06); }
.client-logo-badge.logo-northline img { max-height: 50px; max-width: 154px; transform: scale(1.06); }
.client-logo-badge.logo-linfox img { max-height: 56px; max-width: 146px; transform: scale(1.42); }
.client-logo-badge.logo-dhl img { max-height: 46px; max-width: 148px; }
.client-logo-badge.logo-bevchain img { max-height: 50px; max-width: 142px; }
.client-logo-badge.logo-cocacola img { max-height: 54px; max-width: 148px; transform: scale(1.72); }
.client-logo-badge.logo-mrl img { max-height: 52px; max-width: 150px; transform: scale(1.08); }
.client-logo-badge.logo-capital img { max-height: 56px; max-width: 142px; transform: scale(1.04); }
.client-logo-badge.logo-dark {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}
.client-logo-badge:hover {
  transform: translateY(-2px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 28px rgba(36, 23, 19, 0.14);
}

.section-note {
  text-align: center;
  max-width: 720px;
  margin: 24px auto 0;
}
.section-note.spaced { margin-bottom: 36px; }
.content-narrow {
  max-width: 760px;
  margin: 0 auto;
}
.section-label {
  color: var(--navy);
  display: block;
  margin-bottom: 16px;
  text-align: center;
}
.section-divider {
  border: none;
  border-top: 1px solid var(--grey-100);
  margin: 0;
}
.brand-line {
  color: var(--amber);
  font-weight: 700;
  font-size: 0.9rem;
}
.brand-line.large {
  font-size: 1.1rem;
  margin-top: 18px;
}
.form-narrow {
  max-width: 760px;
  margin: 0 auto;
}
.form-help-card {
  box-shadow: none;
  margin-bottom: 18px;
}
.split-spaced { margin-bottom: 56px; }
.banner-spaced { margin-bottom: 56px; }
.contact-info-spaced { margin-bottom: 56px; }
.single-column-banner {
  grid-template-columns: 1fr;
  text-align: center;
}
.centered-copy {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Banner photo (full-width facility shots) ---------- */
.banner-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.banner-photo img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.banner-photo .banner-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 28px;
  background: linear-gradient(to top, rgba(23,14,11,0.85), rgba(23,14,11,0));
  color: var(--white);
}
.banner-photo .banner-caption h3 { color: var(--white); margin: 0; }
.banner-photo .banner-caption p { color: var(--grey-300); margin: 4px 0 0; }

/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(120deg, rgba(23,14,11,0.96) 0%, rgba(36,23,19,0.9) 52%, rgba(36,23,19,0.58) 100%),
    url("../assets/truck-6.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 90px 0;
}
.hero-inner { max-width: 680px; }
.hero .eyebrow { color: var(--amber); }
.hero h1 { color: var(--white); }
.hero p.lead { color: var(--grey-300); font-size: 1.1rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 30px;
}
.hero-stats div strong {
  display: block;
  font-size: 1.8rem;
  color: var(--amber);
}
.hero-stats div span { color: var(--grey-300); font-size: 0.85rem; }

/* ---------- Page header (inner pages) ---------- */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}
.page-header h1 { color: var(--white); margin-bottom: 8px; }
.page-header p { color: var(--grey-300); }
/* ---------- Sections ---------- */
section { padding: 72px 0; }
.section-alt { background: linear-gradient(180deg, #fff7f1 0%, var(--grey-50) 100%); }
.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.card {
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.card .icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: rgba(245,166,35,0.12);
  color: var(--amber-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  font-weight: 800;
}

.service-card { text-align: left; }
.service-card h3 a { color: var(--navy); }
.service-card .learn { color: var(--amber-dark); font-weight: 700; font-size: 0.9rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-media {
  background: var(--navy);
  border-radius: var(--radius);
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  color: var(--amber);
  font-weight: 800;
  font-size: 1.1rem;
  text-align: center;
  padding: 24px;
  background-image: repeating-linear-gradient(135deg, #2a1a14 0 24px, #1c110d 24px 48px);
  overflow: hidden;
}
.split-media.has-photo {
  padding: 0;
  min-height: 380px;
}
.split-media.has-photo img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ---------- Photo galleries (fleet / team) ---------- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.photo-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--grey-100);
}
.photo-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.photo-grid figure:hover img { transform: scale(1.05); }
.driver-grid {
  align-items: start;
}
.driver-grid figure {
  background: var(--white);
}
.driver-grid img {
  height: auto;
  aspect-ratio: 5 / 6;
  object-fit: contain;
  background: var(--grey-50);
}
.driver-grid figure:hover img {
  transform: none;
}
.photo-grid figcaption {
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
}

.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
  color: var(--grey-800);
  font-weight: 500;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--white);
  background: var(--amber);
  width: 20px; height: 20px;
  border-radius: 50%;
  font-size: 0.75rem;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Dispatch feature banner ---------- */
.dispatch-banner {
  background: linear-gradient(120deg, var(--navy-dark), var(--navy));
  color: var(--white);
  border-radius: 16px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: center;
}
.dispatch-banner h2, .dispatch-banner p { color: var(--white); }
.dispatch-banner p { color: var(--grey-300); }
.dispatch-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 26px;
}
.dispatch-panel ul { list-style: none; padding: 0; margin: 0 0 20px; }
.dispatch-panel li { padding: 8px 0; border-bottom: 1px dashed rgba(255,255,255,0.15); color: var(--grey-300); font-size: 0.92rem; }
.dispatch-panel li:last-child { border-bottom: none; }

/* ---------- Form ---------- */
.form-card {
  background: rgba(255,255,255,0.98);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-weight: 600; font-size: 0.85rem; color: var(--navy); margin-bottom: 6px; }
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--grey-300);
  border-radius: 6px;
  font-family: var(--font);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--amber); border-color: var(--amber); }
.form-honeypot { left: -10000px; position: absolute; top: auto; }
.privacy-consent {
  align-items: flex-start;
  display: flex;
  gap: 10px;
  line-height: 1.5;
  margin: 2px 0 16px;
}
.privacy-consent input { flex: 0 0 auto; margin: 4px 0 0; width: auto; }
.privacy-consent a { color: var(--amber-dark); text-decoration: underline; }
.form-status { margin: 12px 0 0; min-height: 24px; }
.form-status-success { color: #176b3a; font-weight: 700; }
.form-status-error { color: #a51f2d; font-weight: 700; }
button:disabled { cursor: wait; opacity: 0.65; }
.legal-content { margin: 0 auto; max-width: 860px; }
.legal-content h2 { margin-top: 32px; }
.legal-content ul { padding-left: 22px; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Contact info blocks ---------- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-info-grid .card { text-align: center; }
.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 32px;
  align-items: start;
}
.contact-aside {
  background: var(--navy-dark);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  color: var(--grey-300);
}
.contact-aside h2 {
  color: var(--white);
}
.contact-aside p {
  color: var(--grey-300);
}
.contact-method {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 18px;
  margin-top: 18px;
}
.contact-method strong,
.response-panel strong {
  display: block;
  color: var(--orange-light);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.contact-method a,
.contact-method span,
.response-panel span {
  display: block;
  color: var(--grey-300);
  margin-bottom: 4px;
}
.contact-method a:hover {
  color: var(--orange-light);
}
.response-panel {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius);
  margin-top: 24px;
  padding: 18px;
}
.contact-form-head {
  margin-bottom: 22px;
}
.contact-form-head h2 {
  margin-bottom: 10px;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--amber);
  color: var(--navy-dark);
  text-align: center;
  padding: 56px 0;
}
.cta-band h2 { color: var(--navy-dark); }
.cta-band p { color: var(--navy-dark); opacity: 0.85; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: var(--grey-300);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-grid h4 { color: var(--white); font-size: 1rem; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a:hover { color: var(--amber); }
.footer-logo { font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.footer-logo span { color: var(--amber); }
.footer-tagline {
  color: var(--amber);
  font-weight: 700;
  font-size: 0.9rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3, .grid-2, .split, .dispatch-banner, .footer-grid, .contact-info-grid, .contact-layout, .form-row { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .topbar-info { display: none; }
  .topbar .container { justify-content: center; }
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--navy);
    cursor: pointer;
  }
  .main-nav {
    display: none;
    flex: 0 0 100%;
    min-width: 100%;
    order: 3;
    width: 100%;
  }
  .main-nav.open { display: block; }
  .site-header .container { flex-wrap: wrap; }
  .main-nav ul { align-items: stretch; flex-direction: column; width: 100%; }
  .main-nav a { white-space: normal; }
  .dropdown {
    position: static;
    box-shadow: none;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    padding: 0 8px;
    overflow: hidden;
    pointer-events: none;
    transform: none;
    transition: opacity 0.18s ease, max-height 0.18s ease;
  }
  .dropdown::before { display: none; }
  .has-dropdown:hover .dropdown { opacity: 0; visibility: hidden; max-height: 0; pointer-events: none; }
  .has-dropdown.open .dropdown {
    opacity: 1;
    visibility: visible;
    max-height: 200px;
    padding: 8px;
    pointer-events: auto;
  }
  .has-dropdown > a::after { display: none; }
  .nav-cta {
    justify-content: stretch;
    order: 4;
    width: 100%;
  }
  .nav-cta .btn { flex: 1; }
}
