/* ============================================================
   God's Armour Security — Stylesheet
   Brand: Midnight Navy (#0B1F3A) · Gold (#C9A961) · White
   ============================================================ */

/* ============================================================
   Design tokens — single source of truth for color, type, motion
   ============================================================ */
:root {
  --navy: #0B1F3A;          /* primary brand color */
  --navy-deep: #07152A;     /* darker shade for backgrounds */
  --navy-soft: #14305A;     /* lighter shade for borders/hovers */
  --gold: #C9A961;          /* accent — luxury / authority */
  --gold-bright: #E0C079;   /* hover state for gold */
  --white: #FFFFFF;
  --offwhite: #F7F6F2;      /* subtle warm off-white */
  --mute: #6B7280;          /* muted body text */
  --line: rgba(11, 31, 58, 0.10);

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm: 0 2px 8px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 12px 32px rgba(11, 31, 58, 0.12);
  --shadow-lg: 0 24px 60px rgba(11, 31, 58, 0.18);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 4px;
}

/* ============================================================
   Reset + base
   ============================================================ */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s var(--ease);
}

button { font-family: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
  color: var(--navy);
}

p { margin: 0 0 1em; color: var(--mute); }

::selection { background: var(--gold); color: var(--navy); }

/* Skip-to-content link for keyboard users */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--gold); color: var(--navy);
  padding: .75rem 1.25rem; font-weight: 600; z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ============================================================
   Layout primitives
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(64px, 9vw, 120px) 0;
}

.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 6vw, 72px); }
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 12px;
}
h2.section-title {
  font-size: clamp(30px, 4.2vw, 46px);
}
.section-sub {
  font-size: 17px;
  color: var(--mute);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all .3s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201, 169, 97, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-ghost {
  color: var(--navy);
  border: 1px solid var(--navy);
  background: transparent;
}
.btn-ghost:hover { background: var(--navy); color: var(--white); }

.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: transparent;
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}
.nav.scrolled {
  background: rgba(11, 31, 58, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--white);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
}
.logo-mark {
  width: 32px; height: 32px;
  flex-shrink: 0;
}
.logo small {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-top: 2px;
}

.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  position: relative;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  color: var(--white);
  font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.nav-phone svg { color: var(--gold); }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  color: var(--white);
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; display: block;
  width: 22px; height: 2px; background: var(--white);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -7px; left: 0; }
.nav-toggle span::after  { position: absolute; top:  7px; left: 0; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero
   Note: hero background image is loaded from /images/hero.jpg
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  color: var(--white);
  background: var(--navy-deep);
  overflow: hidden;
  padding-top: 100px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(135deg, rgba(7,21,42,0.92) 0%, rgba(11,31,58,0.78) 60%, rgba(11,31,58,0.92) 100%),
    url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  will-change: transform;
}
/* subtle gold gradient glow accent */
.hero-bg::after {
  content: "";
  position: absolute; right: -10%; top: -10%;
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(201,169,97,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 780px;
  padding: 40px 0 80px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(38px, 6.4vw, 76px);
  margin-bottom: 24px;
}
.hero h1 .accent {
  color: var(--gold);
  font-style: italic;
}
.hero-sub {
  font-size: clamp(16px, 1.7vw, 19px);
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }

.trust-row {
  display: flex; flex-wrap: wrap; gap: 28px 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

.scroll-hint {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-hint::after {
  content: "";
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   Value Proposition / Features
   ============================================================ */
.features { background: var(--offwhite); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.feature {
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.feature-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: var(--radius);
  margin-bottom: 22px;
  transition: background .35s var(--ease);
}
.feature:hover .feature-icon { background: var(--gold); color: var(--navy); }
.feature h3 { font-size: 20px; margin-bottom: 10px; }
.feature p { font-size: 15px; margin: 0; }

/* ============================================================
   Services Section
   ============================================================ */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  padding: 40px 32px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.service-card:hover { transform: translateY(-4px); }
.service-card:hover::before { opacity: 0.08; }
.service-num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 12px;
  position: relative;
}
.service-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  margin: 0;
  position: relative;
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: "";
  position: absolute; top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.testimonials .section-title { color: var(--white); }
.testimonials .section-sub { color: rgba(255, 255, 255, 0.7); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  position: relative;
}
.testimonial {
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.testimonial:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 97, 0.35);
}
.stars {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 16px;
  letter-spacing: 2px;
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--white);
  margin: 0 0 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
}
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: var(--serif);
  font-size: 18px;
  flex-shrink: 0;
}
.author-name { font-weight: 600; color: var(--white); font-size: 15px; }
.author-role { font-size: 13px; color: rgba(255, 255, 255, 0.6); }

/* ============================================================
   FAQ Accordion
   ============================================================ */
.faq { background: var(--offwhite); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 26px 4px;
  font-family: var(--serif);
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: color .25s var(--ease);
}
.faq-q:hover { color: var(--gold); }
.faq-q[aria-expanded="true"] { color: var(--gold); }
.faq-toggle {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .3s var(--ease);
  position: relative;
}
.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background: var(--navy);
  transition: transform .3s var(--ease), background .25s var(--ease);
}
.faq-toggle::before { width: 12px; height: 2px; }
.faq-toggle::after  { width: 2px; height: 12px; }
.faq-q[aria-expanded="true"] .faq-toggle {
  background: var(--gold);
  border-color: var(--gold);
}
.faq-q[aria-expanded="true"] .faq-toggle::before,
.faq-q[aria-expanded="true"] .faq-toggle::after { background: var(--navy); }
.faq-q[aria-expanded="true"] .faq-toggle::after { transform: scaleY(0); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-a-inner {
  padding: 0 4px 28px;
  font-size: 16px;
  color: var(--mute);
  max-width: 92%;
  line-height: 1.7;
}

/* ============================================================
   Contact + Footer
   ============================================================ */
.contact { background: var(--white); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-info h2 { font-size: clamp(28px, 3.8vw, 42px); }
.contact-info p { font-size: 17px; color: var(--mute); margin-bottom: 32px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-detail:last-child { border-bottom: 0; }
.contact-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  background: var(--navy);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
}
.contact-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--mute);
  margin-bottom: 2px;
}
.contact-value { font-size: 16px; font-weight: 500; color: var(--navy); }
.contact-value a:hover { color: var(--gold); }

/* Form */
.form-card {
  background: var(--navy);
  color: var(--white);
  padding: clamp(32px, 4vw, 48px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.form-card h3 { color: var(--white); font-size: 26px; margin-bottom: 8px; }
.form-card .lead {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { margin-bottom: 16px; position: relative; }
.form-group label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-control {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 15px;
  font-family: var(--sans);
  border-radius: var(--radius);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}
.form-control::placeholder { color: rgba(255, 255, 255, 0.35); }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='%23C9A961'><path d='M6 8 0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 10px;
  padding-right: 40px;
}
select.form-control option { background: var(--navy); color: var(--white); }
textarea.form-control { resize: vertical; min-height: 120px; }

.form-error {
  display: none;
  color: #FFB4B4;
  font-size: 12px;
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.form-group.invalid .form-control { border-color: #FF8A8A; }
.form-group.invalid .form-error { display: block; }

.form-submit { width: 100%; justify-content: center; margin-top: 8px; }

.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: rgba(201, 169, 97, 0.15);
  color: var(--gold);
  font-size: 14px;
  text-align: center;
}
.form-status.show { display: block; }

/* Footer */
footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.6);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
footer h4 {
  color: var(--white);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-about p { font-size: 14px; margin-bottom: 20px; color: rgba(255, 255, 255, 0.55); }
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 10px; }
footer ul a { font-size: 14px; color: rgba(255, 255, 255, 0.6); }
footer ul a:hover { color: var(--gold); }
.socials { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all .3s var(--ease);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-tagline { margin-top: 18px; color: rgba(255,255,255,0.85); }

/* ============================================================
   Officers / About — split layout with framed photo
   ============================================================ */
.officers { background: var(--white); }
.officers-wrap {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.officer-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
/* Gold corner frame — adds a premium "framed" feel without heavy borders */
.officer-media::before,
.officer-media::after {
  content: "";
  position: absolute;
  width: 64px; height: 64px;
  border: 2px solid var(--gold);
  z-index: 2;
  pointer-events: none;
}
.officer-media::before { top: 16px; left: 16px; border-right: 0; border-bottom: 0; }
.officer-media::after  { bottom: 16px; right: 16px; border-left: 0; border-top: 0; }
.officer-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  /* Subtle warmth + contrast bump to lift an older photo */
  filter: contrast(1.06) saturate(1.05) brightness(1.02);
  transition: transform .8s var(--ease);
}
.officer-media:hover img { transform: scale(1.03); }
/* Soft navy gradient overlay anchors the photo to the brand palette */
.officer-media .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,31,58,0) 50%, rgba(11,31,58,0.55) 100%);
  pointer-events: none;
}
.officer-media .badge {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  z-index: 3;
  color: var(--white);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.3;
  font-style: italic;
}
.officer-media .badge::before {
  content: "";
  display: block;
  width: 36px; height: 2px;
  background: var(--gold);
  margin-bottom: 12px;
}

.officer-body h2 { font-size: clamp(28px, 3.6vw, 40px); }
.officer-points {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}
.officer-points li {
  display: flex; gap: 14px;
  align-items: flex-start;
  font-size: 16px;
  color: var(--navy);
}
.officer-points li svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
}
.officer-points strong { display: block; font-weight: 600; margin-bottom: 2px; }
.officer-points span { color: var(--mute); font-weight: 400; font-size: 15px; }

/* ============================================================
   Careers — Apply CTA strip on a gold-bordered navy band
   ============================================================ */
.careers {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 96px) 0;
}
.careers::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 30%, rgba(201,169,97,0.12), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(201,169,97,0.08), transparent 50%);
  pointer-events: none;
}
.careers-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 40px;
}
.careers h2 { color: var(--white); font-size: clamp(28px, 3.8vw, 42px); margin-bottom: 14px; }
.careers p { color: rgba(255,255,255,0.78); font-size: 17px; max-width: 540px; margin: 0; }
.careers .eyebrow { color: var(--gold); }
.careers-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.careers-cta small {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   Licensing strip — thin gold-accented band under hero
   ============================================================ */
.licensing-bar {
  background: var(--navy-deep);
  color: var(--white);
  padding: 18px 0;
  border-top: 1px solid rgba(201, 169, 97, 0.25);
  border-bottom: 1px solid rgba(201, 169, 97, 0.25);
}
.licensing-bar .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  flex-wrap: wrap;
}
.licensing-bar .inner svg { color: var(--gold); flex-shrink: 0; }
.licensing-bar strong { color: var(--gold); font-weight: 600; letter-spacing: 0.22em; }

/* ============================================================
   Brand tagline (logo subline used in hero + footer)
   ============================================================ */
.brand-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.5vw, 17px);
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.01em;
  margin: 0 0 28px;
  line-height: 1.5;
  max-width: 560px;
}
.brand-tagline .sep {
  display: inline-block;
  margin: 0 8px;
  color: var(--gold);
}

/* ============================================================
   Scroll-reveal animation
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .officers-wrap { grid-template-columns: 1fr; }
  .officer-media { max-width: 520px; margin: 0 auto; }
  .careers-inner { grid-template-columns: 1fr; text-align: left; }
  .careers-cta { align-items: flex-start; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 64px 0 0 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    background: var(--navy-deep);
    padding: 24px;
    transform: translateY(-110%);
    transition: transform .35s var(--ease);
    pointer-events: none;
  }
  .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-links a {
    display: block;
    padding: 18px 0;
    font-size: 16px;
  }
  .nav-links a::after { display: none; }
  .nav.open .nav-links {
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav.open { background: var(--navy-deep); }
  .nav-toggle { display: flex; }
  .nav-phone { display: none; }
  .hero { padding-top: 110px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-bottom { justify-content: center; text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .trust-row { gap: 18px; }
}
