/* ──────────────────────────────────────────────────────
   SWS DESIGN SYSTEM — extracted from
   SWS-Homepage-Combined-2026-04-23.html
   Light nav · Bebas / Oswald / DM Sans · Blueprint grid
──────────────────────────────────────────────────────── */

:root {
  --blue-light: #8bc9fa;
  --blue-mid: #2b8dcc;
  --blue-deep: #1a4f82;
  --navy: #071520;
  --navy-2: #0e2233;
  --navy-3: #0a1c2b;
  --grid-line: rgba(43,141,204,0.10);
  --pewter: #6b8198;
  --white: #ffffff;
  --off-white: #edf2f7;
  --light-bg: #f0f4f8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

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

/* ─────────────────────────────────────
   NAV — light bar (2026-04-23)
───────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px;
  background: #ffffff;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26,79,130,0.12);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 52px;
  gap: 24px;
}

.nav-brand { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-brand img { height: 68px; display: block; }

.nav-links {
  display: flex; align-items: center; justify-content: center;
  gap: 36px;
  list-style: none;
}

.nav-links > li { position: relative; }

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3a5068;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-block;
  padding: 26px 0;
}

.nav-links a:hover,
.nav-links a.active { color: var(--blue-mid); }

/* Dropdown caret on parent nav items */
.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 7px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.7;
  transition: transform 0.2s ease, opacity 0.2s;
}

.has-dropdown:hover > a::after,
.has-dropdown:focus-within > a::after {
  transform: rotate(-180deg);
  opacity: 1;
}

/* Dropdowns */
.has-dropdown > .nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: #ffffff;
  border: 1px solid rgba(26,79,130,0.10);
  border-top: 2px solid var(--blue-mid);
  padding: 14px 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  box-shadow: 0 18px 40px rgba(7,21,32,0.10);
  z-index: 50;
}

.has-dropdown:hover > .nav-dropdown,
.has-dropdown:focus-within > .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.has-dropdown > .nav-dropdown a {
  padding: 10px 22px;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #3a5068;
  white-space: nowrap;
  text-align: left;
}

.has-dropdown > .nav-dropdown a:hover {
  color: var(--blue-mid);
  background: rgba(43,141,204,0.06);
}

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* ─────────────────────────────────────
   HAMBURGER MENU + MOBILE NAV
───────────────────────────────────── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 4px;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  transition: transform 0.25s ease, opacity 0.2s ease;
  border-radius: 1px;
}
body.menu-open .nav-hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.menu-open .nav-hamburger span:nth-child(2) {
  opacity: 0;
}
body.menu-open .nav-hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: #ffffff;
  z-index: 999;
  overflow-y: auto;
  padding: 24px 28px 48px;
}
body.menu-open .mobile-menu { display: block; }
body.menu-open { overflow: hidden; }

.mobile-menu ul {
  list-style: none;
  padding: 0; margin: 0;
}
.mobile-menu > ul > li {
  border-bottom: 1px solid rgba(26,79,130,0.08);
}
.mobile-menu > ul > li > a {
  display: block;
  padding: 18px 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
}
.mobile-menu .mobile-sub {
  padding: 0 0 18px 4px;
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-menu .mobile-sub a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #3a5068;
  padding: 8px 0 8px 18px;
  text-decoration: none;
  display: block;
  border-left: 2px solid rgba(43,141,204,0.25);
}
.mobile-menu .mobile-sub a:hover { color: var(--blue-mid); border-left-color: var(--blue-mid); }
.mobile-menu-cta {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 28px;
}
.mobile-menu-cta a { width: 100%; text-align: center; padding: 14px 18px; }

.btn-nav-outline {
  border: 1px solid rgba(43,141,204,0.55);
  color: var(--blue-mid);
  padding: 9px 18px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-nav-outline:hover { background: rgba(43,141,204,0.12); border-color: var(--blue-light); }

.btn-nav-solid {
  background: var(--blue-mid);
  color: white;
  padding: 9px 18px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-nav-solid:hover { background: var(--blue-deep); }

/* ─────────────────────────────────────
   PAGE HERO (subpages)
───────────────────────────────────── */
.page-hero {
  margin-top: 72px;
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  padding: 96px 88px 72px;
  overflow: hidden;
  background: var(--navy-2);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  z-index: 0;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(7,21,32,0.95) 0%, rgba(7,21,32,0.55) 60%, rgba(7,21,32,0.35) 100%);
  z-index: 1;
}

.page-hero-inner { position: relative; z-index: 2; max-width: 980px; }

/* ─── Split variant: photo right, content left (no overlay) ─── */
.page-hero.split {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: stretch;
  padding: 0;
  min-height: 520px;
  background: var(--navy-2);
}
.page-hero.split::before { display: none; }
.page-hero.split .page-hero-inner {
  max-width: none;
  padding: 88px 56px 72px 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}
.page-hero-photo {
  position: relative;
  overflow: hidden;
  background: var(--navy-3);
}
.page-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.page-hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy-2) 0%, transparent 22%);
  z-index: 1;
}
.page-hero-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 30%;
  background: linear-gradient(to top, var(--navy-2) 0%, transparent 100%);
  z-index: 1;
}
@media (max-width: 1100px) {
  .page-hero.split { grid-template-columns: 1fr; min-height: 0; }
  .page-hero.split .page-hero-inner { padding: 96px 28px 40px; }
  .page-hero-photo { min-height: 320px; }
  .page-hero-photo::before { display: none; }
}

.page-hero-kicker {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 18px;
}

.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 6.5vw, 104px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: white;
  margin-bottom: 22px;
}
.page-hero-title .accent { color: var(--blue-mid); }

.page-hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--pewter);
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 36px;
}

/* ─────────────────────────────────────
   MARQUEE
───────────────────────────────────── */
.marquee-strip {
  background: var(--blue-mid);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.marquee-track { display: flex; animation: marquee 32s linear infinite; white-space: nowrap; }
.marquee-item {
  display: flex; align-items: center; gap: 20px;
  padding: 0 36px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: white;
  flex-shrink: 0;
}
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.45); flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─────────────────────────────────────
   SECTION COMMON
───────────────────────────────────── */
.section-label-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.section-label-line { width: 36px; height: 1px; background: var(--blue-mid); }
.section-label-text {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--blue-mid);
}

.section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: white;
  margin-bottom: 40px;
}
.section-heading .accent { color: var(--blue-mid); }

.section-dark  { background: var(--navy);   color: white; }
.section-dark2 { background: var(--navy-2); color: white; }
.section-dark3 { background: var(--navy-3); color: white; }

.section-light { background: var(--light-bg); color: var(--navy); }
.section-light .section-heading { color: var(--navy); }

.section-pad { padding: 100px 88px; position: relative; z-index: 1; }

/* ─────────────────────────────────────
   BUTTONS (shared)
───────────────────────────────────── */
.btn-cta-solid {
  background: var(--blue-mid);
  color: white;
  padding: 16px 36px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.btn-cta-solid:hover { background: var(--blue-deep); }

.btn-cta-outline {
  border: 1px solid rgba(43,141,204,0.4);
  color: var(--blue-light);
  padding: 16px 36px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-cta-outline:hover { border-color: var(--blue-light); background: rgba(43,141,204,0.08); }

.btn-cta-light {
  background: white;
  color: var(--blue-mid);
  padding: 16px 36px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-cta-light:hover { background: var(--off-white); }

.btn-learn-more {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  text-decoration: none;
  align-self: flex-start;
  margin-top: 8px;
  transition: color 0.2s;
  display: inline-block;
}
.btn-learn-more:hover { color: white; }

.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─────────────────────────────────────
   MINI CTA STRIP (blue band)
───────────────────────────────────── */
.mini-cta-strip {
  background: var(--blue-mid);
  padding: 64px 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative; z-index: 1;
  gap: 32px;
}
.mini-cta-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 3.6vw, 56px);
  color: white;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-align: center;
}

/* ─────────────────────────────────────
   FINAL CTA (dark, large)
───────────────────────────────────── */
.cta-section {
  background: var(--navy-3);
  padding: 100px 88px;
  position: relative; z-index: 1;
  text-align: center;
  border-top: 1px solid var(--grid-line);
}
.cta-kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 20px;
}
.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6vw, 80px);
  letter-spacing: 0.02em;
  color: white;
  line-height: 0.9;
  margin-bottom: 24px;
}
.cta-title .accent { color: var(--blue-mid); }
.cta-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--pewter);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.75;
}

.btn-cta-commercial { background: var(--blue-deep) !important; }
.btn-cta-commercial:hover { background: var(--navy) !important; }

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
footer {
  background: #040d14;
  border-top: 1px solid var(--grid-line);
  padding: 64px 88px 32px;
  position: relative; z-index: 1;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer-brand img {
  height: 69px;
  display: block;
  margin-bottom: 20px;
  opacity: 0.95;
}
.footer-brand p {
  font-size: 16px;
  font-weight: 300;
  color: var(--pewter);
  line-height: 1.75;
  max-width: 270px;
}
.footer-col h5 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 16px;
  font-weight: 300;
  color: var(--pewter);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--blue-light); }
.footer-bottom {
  border-top: 1px solid var(--grid-line);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: rgba(255,255,255,0.2);
}
.footer-phone {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.05em;
  color: rgba(139,201,250,0.7);
  text-decoration: none;
}

/* ─────────────────────────────────────
   HUB GRID (used on About / Services / Products hubs)
───────────────────────────────────── */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.hub-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--grid-line);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}
.hub-card:hover {
  border-color: rgba(43,141,204,0.45);
  background: rgba(43,141,204,0.05);
  transform: translateY(-3px);
}
.hub-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--navy-3);
}
.hub-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.hub-card:hover .hub-card-img img { transform: scale(1.05); }
.hub-card-body { padding: 32px; display: flex; flex-direction: column; flex: 1; }
.hub-card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: rgba(139,201,250,0.5);
  line-height: 1;
  margin-bottom: 14px;
}
.hub-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 14px;
}
.hub-card-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--pewter);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 22px;
}
.hub-card-link {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
}

/* Light variant of hub cards */
.section-light .hub-card {
  background: #ffffff;
  border: 1px solid rgba(26,79,130,0.10);
}
.section-light .hub-card:hover {
  background: #ffffff;
  border-color: rgba(43,141,204,0.45);
}
.section-light .hub-card-title { color: var(--navy); }
.section-light .hub-card-desc { color: #3a5068; }
.section-light .hub-card-link { color: var(--blue-mid); }

/* ─────────────────────────────────────
   FEATURE SPLIT (image + content)
───────────────────────────────────── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  position: relative; z-index: 1;
}
.feature-split.reverse { grid-template-columns: 1fr 1fr; }
.feature-split.reverse .feature-photo { order: 2; }
.feature-split.reverse .feature-content { order: 1; }

.feature-photo { position: relative; overflow: hidden; }
.feature-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 75%, rgba(7,21,32,0.45) 100%);
}

.feature-content {
  background: var(--navy-3);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-content .section-heading { font-size: clamp(38px, 4vw, 56px); margin-bottom: 24px; }
.feature-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--pewter);
  line-height: 1.85;
  margin-bottom: 18px;
}
.feature-body strong { color: white; font-weight: 500; }

.feature-bullets { list-style: none; margin: 22px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.feature-bullets li {
  display: flex; gap: 12px;
  font-size: 14px;
  color: var(--pewter);
  line-height: 1.6;
}
.feature-bullets li::before {
  content: '';
  width: 14px; height: 14px;
  border: 1px solid var(--blue-mid);
  background: rgba(43,141,204,0.15);
  flex-shrink: 0;
  margin-top: 4px;
  transform: rotate(45deg);
}

/* Light variant of feature content */
.feature-split.light .feature-content {
  background: var(--light-bg);
}
.feature-split.light .feature-content .section-heading { color: var(--navy); }
.feature-split.light .feature-body { color: #3a5068; }
.feature-split.light .feature-body strong { color: var(--navy); }
.feature-split.light .feature-bullets li { color: #3a5068; }

/* ─────────────────────────────────────
   ICON CARDS (4-up benefit row)
───────────────────────────────────── */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.icon-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--grid-line);
  padding: 40px 32px;
  transition: border-color 0.25s, background 0.25s;
}
.icon-card:hover {
  border-color: rgba(43,141,204,0.35);
  background: rgba(43,141,204,0.04);
}
.icon-card svg, .icon-card .icon { width: 32px; height: 32px; fill: var(--blue-mid); margin-bottom: 24px; }
.icon-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 12px;
}
.icon-card-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--pewter);
  line-height: 1.8;
}

.section-light .icon-card { background: white; border-color: rgba(26,79,130,0.10); }
.section-light .icon-card:hover { background: white; border-color: rgba(43,141,204,0.35); }
.section-light .icon-card-title { color: var(--navy); }
.section-light .icon-card-desc { color: #3a5068; }

/* ─────────────────────────────────────
   STAT BAND (3-up)
───────────────────────────────────── */
.stats-band {
  background: var(--blue-deep);
  padding: 80px 88px;
  position: relative; z-index: 1;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; z-index: 1; }
.stat-item { padding: 0 40px; border-right: 1px solid rgba(255,255,255,0.12); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 6vw, 96px);
  line-height: 1;
  color: white;
  letter-spacing: 0.02em;
}
.stat-number .suffix { color: rgba(255,255,255,0.55); }
.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
}

/* ─────────────────────────────────────
   CONTENT BLOCK (article body)
───────────────────────────────────── */
.content-block { max-width: 760px; margin: 0 auto; }
.content-block p {
  font-size: 17px;
  font-weight: 300;
  color: var(--pewter);
  line-height: 1.85;
  margin-bottom: 20px;
}
.content-block p strong { color: white; font-weight: 500; }
.content-block h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: white;
  margin: 40px 0 16px;
}

.section-light .content-block p { color: #3a5068; }
.section-light .content-block p strong { color: var(--navy); }
.section-light .content-block h3 { color: var(--navy); }

/* ─────────────────────────────────────
   FORM
───────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-row-full { grid-column: 1 / -1; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-light);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(43,141,204,0.25);
  color: white;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue-mid);
  background: rgba(43,141,204,0.08);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(139,129,152,0.5); }

/* ─────────────────────────────────────
   GALLERY GRID
───────────────────────────────────── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 6px;
}
.photo-grid-item { position: relative; overflow: hidden; background: var(--navy-3); }
.photo-grid-item.tall { grid-row: span 2; }
.photo-grid-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.photo-grid-item:hover img { transform: scale(1.04); }

/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  nav { padding: 0 16px; height: 88px; grid-template-columns: auto 1fr; gap: 12px; }
  .mobile-menu { top: 88px; }
  /* Push CTAs + hamburger to the right edge */
  .nav-actions { gap: 6px; justify-self: end; grid-column: 2; }
  .nav-actions .btn-nav-outline,
  .nav-actions .btn-nav-solid {
    padding: 7px 10px;
    font-size: 10px;
    letter-spacing: 0.06em;
  }
  .page-hero, .section-pad, .stats-band, .mini-cta-strip, .cta-section, footer { padding-left: 28px; padding-right: 28px; }
  .feature-content { padding: 56px 32px; }
  .hub-grid, .icon-grid, .photo-grid { grid-template-columns: 1fr 1fr !important; grid-template-rows: auto; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 80px 28px 56px; min-height: 380px; }

  /* Swap nav logo to ICON on mobile */
  .nav-brand img.logo-full { display: none; }
  .nav-brand img.logo-icon { display: block; height: 69px; }
}
@media (min-width: 1101px) {
  .nav-brand img.logo-icon { display: none; }
}

@media (max-width: 560px) {
  /* Very small screens — keep both CTAs visible, just smaller */
  .nav-actions .btn-nav-outline,
  .nav-actions .btn-nav-solid {
    padding: 6px 8px;
    font-size: 9px;
    letter-spacing: 0.05em;
  }
}

@media (max-width: 700px) {
  .hub-grid, .icon-grid, .photo-grid, .stats-grid, .form-grid, .footer-main { grid-template-columns: 1fr !important; }
  .feature-split { grid-template-columns: 1fr; min-height: 0; }
  .feature-split.reverse .feature-photo { order: 1; }
  .feature-split.reverse .feature-content { order: 2; }
  .feature-photo { aspect-ratio: 4/3; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 24px 0; }
  .page-hero-title { font-size: 44px !important; line-height: 0.95; }
  .page-hero { padding: 80px 24px 48px; min-height: 320px; }
  .page-hero-sub { font-size: 15px; }
  .section-heading { font-size: 40px !important; line-height: 0.92; }
  .mini-cta-strip { padding: 48px 24px; gap: 24px; }
  .mini-cta-text { font-size: 32px; }
  .cta-section { padding: 72px 24px; }
  .cta-title { font-size: 44px; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons a { width: 100%; text-align: center; padding: 14px 18px; }
  .stats-band { padding: 56px 24px; }
  .stat-number { font-size: 56px; }
  footer { padding: 48px 24px 24px; }
  .footer-main { gap: 32px; margin-bottom: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Page-hero split → stack on mobile */
  .page-hero.split { grid-template-columns: 1fr !important; min-height: 0; }
  .page-hero.split .page-hero-inner { padding: 88px 24px 36px; }
  .page-hero-photo { min-height: 260px; }
}
