/* ============================================================
   NORSE GROUP LLC — Design System v2.0
   Direction: Established Aerospace & Defense Contractor
   Inspired by: Lockheed Martin, Boeing, Leidos
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  /* Brand Colors */
  --color-dark-olive:  #494f41;
  --color-moss:        #7a856d;
  --color-lichen:      #aebdbe;
  --color-white:       #fef9f2;
  --color-black:       #000000;

  /* Extended Neutral Palette */
  --bg-color:          #080a07; /* Darker, richer black-olive background */
  --border-light:      rgba(122, 133, 109, 0.12);
  --border-mid:        rgba(122, 133, 109, 0.25);
  --border-glow:       rgba(201, 169, 110, 0.15);

  --text-primary:      #f5f2eb; /* Warm off-white */
  --text-secondary:    #a3b098; /* Muted olive-green */
  --text-muted:        #68755d;  /* Muted dark olive */

  /* Gold Accent */
  --color-gold:        #c9a96e;
  --color-gold-dim:    rgba(201, 169, 110, 0.1);

  /* Typography */
  --font-display:      'Cinzel', Georgia, 'Times New Roman', serif;
  --font-body:         'Raleway', Arial, sans-serif;

  /* Layout */
  --nav-height: 48px;
}

/* ── RESET ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}

/* ── BACKGROUND DETAILS ── */
.bg-grain {
  position: fixed; inset: 0; z-index: -3; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.015;
}
.bg-mesh {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background-image:
    linear-gradient(rgba(122, 133, 109, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 133, 109, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}
.ambient-glow {
  position: fixed; border-radius: 50%;
  filter: blur(160px); z-index: -1; pointer-events: none;
}
.glow-1 {
  width: 60vw; height: 50vw;
  background: radial-gradient(circle, rgba(73, 79, 65, 0.15) 0%, transparent 70%);
  top: -10%; left: -10%; opacity: 0.7;
}
.glow-2 {
  width: 45vw; height: 45vw;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.03) 0%, transparent 70%);
  bottom: -5%; right: -5%; opacity: 0.6;
}

/* ── NAVIGATION ── */
.site-nav {
  position: fixed; top: 0; width: 100%; height: var(--nav-height);
  z-index: 200; transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
  overflow: visible;
}
.site-nav.scrolled {
  background: rgba(8, 10, 7, 0.94);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 0 40px; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  overflow: visible;
}
.nav-brand {
  display: flex; align-items: flex-start;
  height: 100%;
  overflow: visible;
  padding-top: 4px;
  position: relative;
}
.nav-logo-seal {
  height: 92px;
  width: auto;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.45));
  transition: opacity 0.25s ease;
}
.nav-logo-wordmark {
  height: 34px;
  width: auto;
  display: none;
  align-self: center;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}
.site-nav.scrolled .nav-logo-seal { display: none; }
.site-nav.scrolled .nav-logo-wordmark { display: block; }
.site-nav.scrolled .nav-brand { align-items: center; padding-top: 0; }
.nav-links {
  display: flex; align-items: center; gap: 40px;
}
.nav-links a:not(.btn-nav) {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-secondary);
  transition: color 0.25s, transform 0.2s;
  padding: 8px 0;
  position: relative;
}
.nav-links a:not(.btn-nav)::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  background-color: var(--color-gold); transition: width 0.25s ease;
}
.nav-links a:not(.btn-nav):hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a:not(.btn-nav):hover,
.nav-links a.active {
  color: var(--text-primary);
}
.btn-nav {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; font-family: var(--font-body);
  padding: 8px 20px; border-radius: 0;
  background: transparent; color: var(--color-gold) !important;
  border: 1px solid rgba(201, 169, 110, 0.4);
  transition: all 0.3s;
}
.btn-nav:hover {
  background: var(--color-gold-dim);
  border-color: var(--color-gold);
}

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 6px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1px;
  background: var(--text-primary);
  transition: all 0.2s;
}
.nav-mobile {
  display: none; position: fixed; top: var(--nav-height); left: 0; right: 0;
  background: rgba(8, 10, 7, 0.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  flex-direction: column; padding: 32px 40px; gap: 24px; z-index: 199;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-secondary);
  padding: 12px 0; border-bottom: 1px solid var(--border-light);
  transition: color 0.2s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--text-primary); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 0; cursor: pointer; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none; border: none; padding: 14px 32px;
}
.btn-primary {
  background: var(--color-dark-olive); color: var(--color-white);
  border: 1px solid var(--color-moss);
}
.btn-primary:hover {
  background: var(--color-moss);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--text-primary);
  border: 1px solid var(--border-mid);
}
.btn-outline:hover {
  border-color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}
.btn-gold {
  background: transparent; color: var(--color-gold);
  border: 1px solid rgba(201, 169, 110, 0.4);
}
.btn-gold:hover {
  background: var(--color-gold-dim); border-color: var(--color-gold);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 40px; font-size: 0.82rem; }
.btn-sm { padding: 10px 20px; font-size: 0.7rem; }
.btn svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── LAYOUT ── */
.page-main { padding-top: var(--nav-height); }

/* Tighten the gap between the final content section and the footer */
.page-main > section:last-of-type,
main > section:last-of-type {
  padding-bottom: 0;
}
.page-main > section:last-of-type .section-wrap,
main > section:last-of-type .section-wrap {
  padding-bottom: 60px;
}
.section-wrap { max-width: 1240px; margin: 0 auto; padding: 120px 40px; }
.section-wrap.sm { padding: 80px 40px; }
.section-wrap.lg { padding: 160px 40px; }

/* ── TYPOGRAPHY & HEADERS ── */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--color-moss);
  margin-bottom: 24px;
}
.section-eyebrow::before {
  content: ''; display: block;
  width: 24px; height: 1px; background: var(--color-moss);
}
.section-title {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 500;
  letter-spacing: 0.02em; line-height: 1.2;
  color: var(--color-white); margin-bottom: 28px;
}
.section-title .accent { color: var(--color-moss); }
.section-title .gold-accent { color: var(--color-gold); }
.section-desc {
  font-size: 1.05rem; color: var(--text-secondary);
  max-width: 680px; line-height: 1.8;
  font-weight: 300;
}
.section-divider {
  width: 40px; height: 1px; background: var(--color-gold);
  margin: 32px 0;
}

/* ── HERO ── */
.hero-section {
  position: relative; min-height: 88vh;
  display: flex; align-items: center;
  overflow: visible;
}
.hero-seal-watermark {
  position: absolute;
  top: 50%; left: -120px;
  width: 420px; height: 420px;
  transform: translateY(-50%);
  color: var(--color-moss);
  opacity: 0.05;
  z-index: 1;
  pointer-events: none;
}

/* Section divider — institutional seal mark, used sparingly between major sections */
.section-seal-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto;
  width: fit-content;
  color: var(--text-muted);
  opacity: 0.55;
}
.section-seal-divider .seal-line {
  width: 64px; height: 1px;
  background: var(--border-mid);
}
.section-seal-divider svg {
  width: 28px; height: 28px;
  color: var(--color-gold);
  opacity: 0.7;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.hero-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(8, 10, 7, 0.85) 0%,
    rgba(8, 10, 7, 0.95) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1240px; margin: 0 auto;
  padding: 60px 40px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: 4rem; font-weight: 500;
  line-height: 1.15; letter-spacing: 0.02em;
  color: var(--color-white); margin-bottom: 32px;
  max-width: 800px;
}
.hero-title .line-accent { color: var(--color-moss); }
.hero-subtitle {
  font-size: 1.15rem; color: var(--text-secondary);
  max-width: 600px; line-height: 1.8; margin-bottom: 48px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 64px; }

/* ── SUBTITLE STRIP ── */
.hero-focus-strip {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 40px; border-top: 1px solid var(--border-light);
}
.focus-item {
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--color-gold);
  display: flex; align-items: center; gap: 12px;
}
.focus-item::after {
  content: '·'; color: var(--text-muted); font-size: 1.2rem; margin-left: 12px;
}
.focus-item:last-child::after { display: none; }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--color-moss), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}

/* ── INNER PAGE HERO ── */
.page-hero {
  padding: 120px 40px 80px;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  background-size: cover;
  background-position: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8, 10, 7, 0.7), rgba(8, 10, 7, 0.98));
  z-index: 1;
}
.page-hero-inner { max-width: 1240px; margin: 0 auto; position: relative; z-index: 2; }
.page-hero-eyebrow {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--color-moss);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.page-hero-eyebrow::before {
  content: ''; width: 20px; height: 1px; background: var(--color-moss);
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: 3.2rem; font-weight: 500; line-height: 1.2;
  letter-spacing: 0.02em; color: var(--color-white);
  max-width: 800px; margin-bottom: 24px;
}
.page-hero-desc {
  font-size: 1.08rem; color: var(--text-secondary);
  max-width: 640px; line-height: 1.8; font-weight: 300;
}

/* ── TWO-COLUMN STRUCT ── */
.two-col {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px;
  align-items: start;
}
.two-col.align-center { align-items: center; }

/* ── PHOTO CONTAINER (Cardless) ── */
.editorial-photo-wrap {
  position: relative;
  background: var(--bg-color);
}
.editorial-photo-wrap img {
  width: 100%;
  height: auto;
  border-radius: 0;
  border: 1px solid var(--border-light);
  filter: grayscale(15%) contrast(105%);
}
.editorial-photo-caption {
  margin-top: 16px;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
}
.editorial-photo-caption strong {
  color: var(--color-white);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

/* ── EDITORIAL DIRECTORY / TYPOGRAPHIC LIST ── */
.editorial-grid-2 {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px 48px;
  margin-top: 60px;
}
.editorial-grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
  margin-top: 60px;
}
.editorial-list {
  display: flex; flex-direction: column; gap: 48px;
  margin-top: 60px;
}
.editorial-item {
  display: grid; grid-template-columns: 80px 1fr; gap: 24px;
  align-items: start;
}
.editorial-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 500; color: var(--color-moss);
  line-height: 1;
}
.editorial-item-body h4 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 600;
  color: var(--color-white); margin-bottom: 12px; letter-spacing: 0.04em;
}
.editorial-item-body p {
  font-size: 0.92rem; color: var(--text-secondary); line-height: 1.75;
}
.editorial-bullets {
  list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 8px;
}
.editorial-bullets li {
  font-size: 0.88rem; color: var(--text-secondary);
  padding-left: 20px; position: relative;
}
.editorial-bullets li::before {
  content: '—'; position: absolute; left: 0; color: var(--color-gold);
}

/* ── TRUST SECTION (Sentence-based replacement for badgewall) ── */
.trust-statement-section {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 64px 40px;
  background: rgba(73, 79, 65, 0.05);
}
.trust-statement-inner {
  max-width: 960px; margin: 0 auto;
}
.trust-statement-horizontal {
  display: flex;
  align-items: center;
  gap: 56px;
}
.trust-statement-logo-col {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 56px;
  border-right: 1px solid var(--border-light);
}
.trust-statement-logo {
  height: 200px; width: auto; object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.3));
}
.trust-statement-content-col {
  flex: 1;
}
.trust-statement-text {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 400; line-height: 1.6;
  color: var(--text-primary); letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.trust-credentials-line {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.trust-credentials-line span {
  position: relative;
  padding-right: 18px;
}
.trust-credentials-line span:last-child { padding-right: 0; }
.trust-credentials-line span::after {
  content: '';
  position: absolute;
  right: -10px; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--border-mid);
}
.trust-credentials-line span:last-child::after { display: none; }

/* Footer logo mark */
.footer-logo-mark {
  display: block;
  height: 160px; width: auto;
  object-fit: contain;
  margin-top: 8px;
  margin-bottom: -24px;
  opacity: 0.45;
  filter: brightness(0.85);
  max-width: 100%;
}
.footer-logo-mark:hover { opacity: 0.65; transition: opacity 0.3s; }

/* Footer USA flag */
.footer-usa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-flag {
  display: inline-block;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
  vertical-align: middle;
}

.site-footer { position: relative; overflow: hidden; }

/* ── TIMELINE (EDITORIAL) ── */
.editorial-timeline {
  display: flex; flex-direction: column; gap: 40px;
  margin-top: 48px;
  padding-left: 20px;
  border-left: 1px solid var(--border-light);
}
.timeline-block {
  position: relative;
  padding-left: 32px;
}
.timeline-block::before {
  content: ''; position: absolute; left: -25px; top: 8px;
  width: 9px; height: 9px; border-radius: 50%;
  background-color: var(--color-moss);
  border: 2px solid var(--bg-color);
}
.timeline-block.active::before {
  background-color: var(--color-gold);
}
.timeline-date {
  font-family: var(--font-display);
  font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--color-gold);
  margin-bottom: 8px;
}
.timeline-title {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 600;
  color: var(--color-white); margin-bottom: 8px;
}
.timeline-desc {
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px;
  align-items: start;
}
.contact-info-list { display: flex; flex-direction: column; gap: 32px; margin-top: 48px; }
.contact-info-item { display: flex; gap: 20px; align-items: flex-start; }
.ci-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ci-icon svg { width: 18px; height: 18px; color: var(--color-moss); stroke: currentColor; fill: none; stroke-width: 1.5; }
.ci-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.ci-value { font-size: 1rem; color: var(--text-primary); font-weight: 400; }
.ci-value a { color: var(--text-primary); transition: color 0.2s; border-bottom: 1px solid var(--border-light); }
.ci-value a:hover { color: var(--color-gold); border-bottom-color: var(--color-gold); }

/* ── FORM ── */
.contact-form {
  border-left: 1px solid var(--border-light);
  padding-left: 60px;
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 500; color: var(--color-white);
  margin-bottom: 40px; letter-spacing: 0.05em;
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 10px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid var(--border-mid);
  color: var(--text-primary); border-radius: 0;
  padding: 12px 0; font-family: var(--font-body);
  font-size: 0.95rem; transition: border-color 0.25s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--color-gold);
}
.form-group textarea { resize: vertical; min-height: 120px; line-height: 1.7; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(163, 176, 152, 0.3); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* ── FOOTER ── */
.site-footer {
  background: #040504; border-top: 1px solid var(--border-light);
  padding: 48px 40px 40px;
}
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 80px; margin-bottom: 60px;
}
.footer-brand {}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--color-white); line-height: 1.2;
}
.footer-tagline {
  font-size: 0.78rem; color: var(--text-secondary);
  letter-spacing: 0.05em; margin-top: 12px;
  max-width: 320px;
}
.footer-col h5 {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 24px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.82rem; color: var(--text-secondary); transition: color 0.2s;
}
.footer-links a:hover { color: var(--color-gold); }

.footer-bottom {
  padding-top: 40px; border-top: 1px solid var(--border-light);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
  font-size: 0.72rem; color: var(--text-muted);
}
.footer-meta {
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-title { font-size: 3rem; }
  .editorial-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .two-col { gap: 48px; }
}
@media (max-width: 768px) {
  :root { --nav-height: 48px; }
  .nav-inner { padding: 0 24px; }
  .nav-logo-seal { height: 52px; }
  .nav-logo-wordmark { height: 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-title { font-size: 2.2rem; }
  .hero-seal-watermark { width: 240px; height: 240px; left: -80px; opacity: 0.04; }
  .section-title { font-size: 2.0rem; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .editorial-grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .editorial-grid-3 { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-form { border-left: none; padding-left: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .section-wrap { padding: 80px 24px; }
  .hero-content { padding: 40px 24px; }
  .hero-focus-strip { gap: 16px; }
  .focus-item::after { display: none; }
  .trust-statement-horizontal {
    flex-direction: column;
    gap: 36px;
    align-items: flex-start;
  }
  .trust-statement-logo-col {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding-right: 0;
    padding-bottom: 28px;
    width: 100%;
  }
  .trust-statement-logo { height: 120px; }
  .trust-credentials-line { gap: 10px 14px; font-size: 0.66rem; }
  .trust-statement-text { font-size: 1.1rem; }
  .footer-logo-mark { height: 100px; margin-bottom: -14px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; }
}
