/* ============================================================
   BDunn & Company — style.css
   Dark navy brand, bronze accents, thin-stroke SVG icons
   ============================================================ */

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --navy:       #0b1d3a;
  --navy-dark:  #071328;
  --navy-mid:   #122a50;
  --bronze:     #c8952a;
  --bronze-lt:  #e0ab45;
  --white:      #ffffff;
  --off-white:  #f4f6f9;
  --gray:       #e8ecf0;
  --text:       #1a2740;
  --text-muted: #5a6a80;
  --border:     rgba(255,255,255,0.12);
  --shadow:     0 4px 24px rgba(11,29,58,0.14);
  --shadow-lg:  0 12px 48px rgba(11,29,58,0.22);

  --radius:     6px;
  --radius-lg:  12px;
  --transition: 0.28s ease;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Montserrat', 'Inter', sans-serif;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@600;700;800&display=swap');

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; font-weight: 600; }

p { max-width: 68ch; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.75rem;
}

/* ── Layout Helpers ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 90px 0;
}

.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section--darker {
  background: var(--navy-dark);
  color: var(--white);
}

.section--gray {
  background: var(--off-white);
}

.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--bronze);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--bronze-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,149,42,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow var(--transition), background var(--transition);
}

.nav.scrolled {
  background: rgba(7,19,40,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 2rem;
  max-width: 1180px;
  margin: 0 auto;
}

.nav__logo img {
  height: 38px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--bronze);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav__links a:hover,
.nav__links a:focus { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  padding: 0.55rem 1.4rem;
  font-size: 0.88rem;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 768px) {
  .nav__hamburger { display: flex; }

  .nav__links {
    position: absolute;
    top: 70px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--navy-dark);
    border-top: 1px solid rgba(255,255,255,0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav__links.open { max-height: 400px; }
  .nav__links a {
    width: 100%;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav__links a::after { display: none; }
  .nav__cta { margin: 1rem 2rem; width: calc(100% - 4rem); text-align: center; }
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 70px;
}

.hero__content {
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  padding: 80px 4rem 80px 0;
}

.hero__content-inner {
  max-width: 540px;
  margin-left: auto;
  padding-right: 2rem;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero__tagline span {
  color: var(--bronze);
  display: block;
}

.hero__sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 46ch;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__photo {
  position: relative;
  overflow: hidden;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.25) brightness(0.65);
  mix-blend-mode: normal;
}

.hero__photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,29,58,0.6) 0%, rgba(18,42,80,0.3) 100%);
  z-index: 1;
}

.hero__photo-badge {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  z-index: 2;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__photo-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--bronze);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__photo-badge-icon svg { stroke: var(--white); }

.hero__photo-badge-text {
  color: var(--white);
}
.hero__photo-badge-text strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}
.hero__photo-badge-text span {
  font-size: 0.78rem;
  opacity: 0.75;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__photo {
    height: 340px;
    order: -1;
  }
  .hero__photo-badge { display: none; }
  .hero__content {
    padding: 60px 0;
  }
  .hero__content-inner {
    margin: 0 auto;
    padding: 0 2rem;
    max-width: 600px;
  }
}

/* ── Stats Strip ──────────────────────────────────────────── */
.stats {
  background: var(--bronze);
  padding: 0;
}

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

.stats__item {
  padding: 2.2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.25);
}
.stats__item:last-child { border-right: none; }

.stats__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: block;
}

.stats__label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.35rem;
  display: block;
}

@media (max-width: 640px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2) { border-right: none; }
  .stats__item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.25); }
  .stats__item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.25); border-right: none; }
}

/* ── About ────────────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__text h2 {
  margin-bottom: 1.25rem;
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.02rem;
  line-height: 1.75;
}

.about__text p:last-of-type { margin-bottom: 1.75rem; }

.about__feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.about__feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
}

.about__feature-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--bronze);
}

.about__visual {
  position: relative;
}

.about__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about__badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--bronze);
  line-height: 1;
}

.about__badge-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
  max-width: 10ch;
}

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__visual { display: none; }
}

/* ── Services ─────────────────────────────────────────────── */
.services .section-label,
.services h2,
.services .section__intro {
  color: var(--white);
}

.section__intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin: 0.75rem auto 3rem;
  max-width: 58ch;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.service-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(200,149,42,0.4);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 1.5px solid rgba(200,149,42,0.5);
  border-radius: var(--radius);
}

.service-card__icon svg {
  stroke: var(--bronze);
  stroke-width: 1.5;
}

.service-card h3 {
  color: var(--white);
  margin-bottom: 0.65rem;
  font-size: 1.08rem;
}

.service-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .services__grid { grid-template-columns: 1fr; }
}

/* ── Platforms Strip ──────────────────────────────────────── */
.platforms {
  background: var(--off-white);
  padding: 52px 0;
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}

.platforms__label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.platforms__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.platform-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.platform-item:hover { opacity: 1; }

.platform-item__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-item__icon svg { stroke: var(--navy); stroke-width: 1.5; }

.platform-item__name {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ── Why Different ────────────────────────────────────────── */
.why__intro {
  max-width: 58ch;
  margin: 0.75rem auto 3.5rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-top: 3px solid var(--bronze);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.why-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(200,149,42,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.why-card__icon svg {
  stroke: var(--bronze);
  stroke-width: 1.6;
}

.why-card h3 {
  color: var(--navy);
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .why__grid { grid-template-columns: 1fr; }
}

/* ── Hero canvas animation ────────────────────────────────── */
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.hero__content { position: relative; z-index: 1; }

/* ── Industries ───────────────────────────────────────────── */
.industries__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.industry-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.industry-card:hover {
  border-color: var(--bronze);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.industry-card__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-card__icon svg {
  stroke: var(--bronze);
  stroke-width: 1.5;
}

.industry-card__text h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.industry-card__text p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

@media (max-width: 720px) {
  .industries__grid { grid-template-columns: 1fr; }
}

/* ── AI Security Callout ──────────────────────────────────── */
.ai-security {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

.ai-security::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(200,149,42,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.ai-security::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(18,42,80,0.8) 0%, transparent 70%);
  pointer-events: none;
}

.ai-security .container { position: relative; z-index: 1; }

.ai-security__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.ai-security__text h2 { color: var(--white); margin-bottom: 1rem; }
.ai-security__text p {
  color: rgba(255,255,255,0.65);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.ai-security__text p:last-of-type { margin-bottom: 2rem; }

.ai-security__points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ai-security__point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
}

.ai-security__point-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(200,149,42,0.15);
  border: 1px solid rgba(200,149,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ai-security__point-icon svg { stroke: var(--bronze); stroke-width: 1.6; }

.ai-security__point-body strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.ai-security__point-body span {
  color: rgba(255,255,255,0.55);
  font-size: 0.87rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .ai-security__grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ── Community ────────────────────────────────────────────── */
.community {
  text-align: center;
  padding: 48px 0;
}

.community__note {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 auto 1.5rem;
  max-width: 58ch;
}

.community__link {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.community__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--off-white);
  border: 1px solid var(--gray);
  border-radius: 100px;
  padding: 0.6rem 1.4rem 0.6rem 0.6rem;
}

.community__badge-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bronze);
  display: flex;
  align-items: center;
  justify-content: center;
}
.community__badge-dot svg { stroke: var(--white); }

.community__badge span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

/* ── Contact ──────────────────────────────────────────────── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact__info h2 { margin-bottom: 0.85rem; }

.contact__info p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
}

.contact__detail-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__detail-icon svg { stroke: var(--bronze); stroke-width: 1.6; }

.contact__detail-text strong { display: block; font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.contact__detail-text span { color: var(--text); }

/* ── Form ─────────────────────────────────────────────────── */
.form {
  background: var(--off-white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.form__group.full { grid-column: 1 / -1; }

label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.03em;
}

input, textarea, select {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border: 1.5px solid var(--gray);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,29,58,0.1);
}

textarea { resize: vertical; min-height: 120px; }

.form__submit {
  width: 100%;
  padding: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.form__msg {
  display: none;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.75rem;
}
.form__msg--success {
  background: rgba(22,163,74,0.1);
  border: 1px solid rgba(22,163,74,0.3);
  color: #15803d;
  display: block;
}
.form__msg--error {
  background: rgba(220,38,38,0.08);
  border: 1px solid rgba(220,38,38,0.3);
  color: #b91c1c;
  display: block;
}

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .form__row { grid-template-columns: 1fr; }
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.55);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__logo img { height: 32px; opacity: 0.85; }

.footer__copy {
  font-size: 0.83rem;
  text-align: center;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__links a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }

/* ── Scroll Reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Utility ──────────────────────────────────────────────── */
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
