/* =============================================================================
   DARKSIDE ENTERPRISES BK LLC — shared.css
   dsebkllc.com
   ============================================================================= */

/* =============================================================================
   DESIGN TOKENS
   ============================================================================= */

:root {
  --bg-void: #050508;
  --bg-base: #09090d;
  --bg-raised: #0f0f14;
  --bg-surface: #161620;
  --bg-elevated: #1d1d28;
  --bg-footer: #030305;
  --gold: #c8a44a;
  --gold-dim: #9a7a32;
  --gold-bright: #e8c87a;
  --gold-subtle: rgba(200, 164, 74, 0.08);
  --blood: #7a1515;
  --blood-light: #a01e1e;
  --steel: #4a5568;
  --steel-light: #718096;
  --text-primary: #f0ede8;
  --text-secondary: #a8a49e;
  --text-muted: #5a5652;
  --text-faint: #333030;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-mono: 'Courier New', monospace;
  --nav-height: 72px;
  --container-max: 1200px;
  --container-pad: clamp(1.5rem, 4vw, 3rem);
}

/* =============================================================================
   FONTS
   ============================================================================= */

@font-face {
  font-family: 'Oswald';
  src: url('fonts/oswald.woff2') format('woff2');
  font-weight: 200 700;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-400-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-600-italic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

/* =============================================================================
   RESET + BASE
   ============================================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-void);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-void);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dim);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

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

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

/* =============================================================================
   NAVIGATION
   ============================================================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.nav.scrolled {
  background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 164, 74, 0.12);
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  text-decoration: none;
}

.nav__logo-dse {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.nav__logo-bk {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--steel-light);
  letter-spacing: 0.15em;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

.nav__link {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.25s ease;
}

.nav__link:hover,
.nav__link--active {
  color: var(--text-primary);
}

.nav__link:hover::after,
.nav__link--active::after {
  right: 0;
}

.nav__cta {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  border: 1px solid rgba(200, 164, 74, 0.3);
  color: var(--gold-dim);
  padding: 0.5rem 1.25rem;
  transition: all 0.2s;
}

.nav__cta:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  height: 1px;
  background: var(--text-secondary);
  transition: all 0.3s;
}

.nav__hamburger span:nth-child(1) {
  width: 26px;
}

.nav__hamburger span:nth-child(2) {
  width: 18px;
}

.nav__hamburger span:nth-child(3) {
  width: 22px;
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  width: 24px;
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  width: 24px;
}

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-void);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile-links {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav__mobile-links .nav__link {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 600;
  padding: 0.75rem 0;
}

.nav__mobile-cta {
  margin-top: 2.5rem;
}

@media (max-width: 1024px) {
  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }
}

/* =============================================================================
   HOME HERO
   ============================================================================= */

.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-void);
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(20, 16, 8, 0.8) 0%, transparent 70%);
  pointer-events: none;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.home-hero__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4rem, 18vw, 16rem);
  letter-spacing: 0.2em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200, 164, 74, 0.04);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
}

.home-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--container-pad);
  max-width: 960px;
  margin: 0 auto;
}

.home-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 2rem;
  display: block;
}

.home-hero__headline {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
}

.home-hero__headline-line1,
.home-hero__headline-line2 {
  font-size: clamp(4.5rem, 14vw, 11rem);
  color: var(--text-primary);
}

.home-hero__gold {
  color: var(--gold);
}

.home-hero__subline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.9rem);
  color: var(--text-secondary);
  margin: 0 auto 2.5rem;
  max-width: 480px;
}

.home-hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.home-hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 1.5rem var(--container-pad);
  background: linear-gradient(to top, rgba(5, 5, 8, 0.9) 0%, transparent 100%);
  border-top: 1px solid rgba(200, 164, 74, 0.08);
}

.home-hero__stat {
  text-align: center;
  padding: 0 2.5rem;
}

.home-hero__stat-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.home-hero__stat-divider {
  width: 1px;
  height: 24px;
  background: rgba(200, 164, 74, 0.2);
  flex-shrink: 0;
}

/* =============================================================================
   POSITIONING STRIP
   ============================================================================= */

.positioning-strip {
  background: var(--bg-void);
  padding: 0.875rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(200, 164, 74, 0.06);
  border-bottom: 1px solid rgba(200, 164, 74, 0.06);
}

.positioning-strip__track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: scroll-strip 25s linear infinite;
}

.positioning-strip__text {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.positioning-strip__dot {
  color: var(--gold-dim);
  opacity: 0.4;
}

@keyframes scroll-strip {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =============================================================================
   SECTION UTILITIES
   ============================================================================= */

.section {
  padding: 7rem 0;
}

.section--alt {
  background: var(--bg-raised);
}

.section--void {
  background: var(--bg-void);
}

.section--surface {
  background: var(--bg-surface);
}

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

.section-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1rem;
}

.section-eyebrow--light {
  color: var(--steel-light);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin: 0 0 1.5rem;
  line-height: 0.95;
}

.section-subhead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--text-secondary);
  margin: 0 0 3rem;
}

.dossier-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--gold-dim) 0%, transparent 100%);
  margin: 2rem 0;
  border: none;
}

/* =============================================================================
   SERVICES SECTION
   ============================================================================= */

.services-section {
  padding: 7rem 0;
  background: var(--bg-base);
}

.services-section__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.services-section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(200, 164, 74, 0.08);
}

.service-card {
  background: var(--bg-raised);
  transition: background 0.3s;
}

.service-card:hover {
  background: var(--bg-surface);
}

.service-card__inner {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card__number {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  margin-bottom: 2rem;
  opacity: 0.6;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.service-card__body {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
  flex: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.service-card__link:hover {
  color: var(--gold);
}

.service-card__link--red {
  color: var(--blood-light);
}

.service-card__link--red:hover {
  color: #c0392b;
}

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

/* =============================================================================
   PHILOSOPHY SECTION
   ============================================================================= */

.philosophy-section {
  padding: 7rem 0;
  background: var(--bg-void);
}

.philosophy-section__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.philosophy-section__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--text-primary);
  line-height: 1.5;
  margin: 0;
  padding-left: 2rem;
  border-left: 2px solid var(--gold);
}

.philosophy-principle + .philosophy-principle {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(240, 237, 232, 0.05);
}

.philosophy-principle__rule {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 0.75rem;
}

.philosophy-principle__title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.philosophy-principle__body {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .philosophy-section__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* =============================================================================
   INTELLIGENCE STRIP
   ============================================================================= */

.intelligence-strip {
  padding: 7rem 0;
  background: var(--bg-raised);
  border-top: 1px solid rgba(200, 164, 74, 0.06);
}

.intelligence-strip__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
  text-align: center;
}

.intelligence-strip__heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.intelligence-strip__body {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.intelligence-strip__disclaimer {
  font-size: 0.73rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 2.5rem;
}

/* =============================================================================
   PAGE HERO
   ============================================================================= */

.page-hero {
  position: relative;
  min-height: 44vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  background: var(--bg-void);
  overflow: hidden;
  margin-top: var(--nav-height);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(5, 5, 8, 0.3) 0%, var(--bg-void) 100%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  width: 100%;
}

.page-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-dim);
  display: block;
  margin-bottom: 1.25rem;
}

.page-hero__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin: 0 0 1.25rem;
}

.page-hero__headline--blood {
  color: var(--blood-light);
}

.page-hero__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--text-secondary);
  margin: 0;
}

.page-hero__rule {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2rem;
}

/* =============================================================================
   BUTTONS
   ============================================================================= */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 2.25rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
}

.btn--gold {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn--gold:hover {
  background: var(--gold);
  color: var(--bg-void);
}

.btn--red {
  border-color: var(--blood-light);
  color: var(--blood-light);
  background: transparent;
}

.btn--red:hover {
  background: var(--blood);
  color: var(--text-primary);
  border-color: var(--blood);
}

.btn--ghost {
  border-color: rgba(240, 237, 232, 0.2);
  color: var(--text-secondary);
  background: transparent;
}

.btn--ghost:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
}

.btn--classified {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  border-color: rgba(200, 164, 74, 0.25);
  color: var(--text-muted);
  background: transparent;
}

.btn--classified:hover {
  border-color: var(--gold-dim);
  color: var(--gold-dim);
}

.btn--outline-gold {
  border-color: rgba(200, 164, 74, 0.35);
  color: var(--gold-dim);
  background: transparent;
}

.btn--outline-gold:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--full {
  width: 100%;
  text-align: center;
  display: block;
}

/* =============================================================================
   FORMS
   ============================================================================= */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input,
.form-select,
.form-textarea {
  background: var(--bg-surface);
  border: 1px solid rgba(240, 237, 232, 0.08);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.form-checkbox-label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.form-checkbox-label input {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  accent-color: var(--gold);
  margin-top: 3px;
}

.field-error {
  font-size: 0.72rem;
  color: #e07070;
  margin-top: 0.25rem;
}

.form-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: center;
  margin-top: 1rem;
}

/* =============================================================================
   CALLOUT BOX
   ============================================================================= */

.callout {
  padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--gold-dim);
  background: rgba(200, 164, 74, 0.04);
  margin: 1.5rem 0;
}

.callout--blood {
  border-left-color: var(--blood-light);
  background: rgba(122, 21, 21, 0.06);
}

.callout p {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.callout-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.5rem;
  display: block;
}

/* =============================================================================
   SCROLL REVEAL
   ============================================================================= */

.reveal,
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal {
  transform: translateY(24px);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-30px);
}

.reveal-right {
  transform: translateX(30px);
}

.reveal.is-visible,
.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: none;
}

/* =============================================================================
   FOOTER
   ============================================================================= */

.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid rgba(200, 164, 74, 0.15);
  padding-top: 4rem;
}

.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad) 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(240, 237, 232, 0.03);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
  text-decoration: none;
}

.footer__logo span {
  color: var(--text-muted);
  font-weight: 300;
  font-size: 1.1rem;
}

.footer__brand p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin: 0;
}

.footer__nav {
  display: flex;
  flex-direction: column;
}

.footer__nav h4 {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1rem;
}

.footer__nav a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  line-height: 2;
  transition: color 0.2s;
}

.footer__nav a:hover {
  color: var(--gold);
}

.footer__legal h4 {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.75rem;
}

.footer__legal p {
  font-size: 0.77rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.footer__bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.5rem var(--container-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-size: 0.72rem;
  color: var(--text-faint);
}

.footer__domain {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* =============================================================================
   UTILITIES
   ============================================================================= */

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--gold);
}

.text-muted {
  color: var(--text-muted);
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 2rem;
}

.mt-4 {
  margin-top: 3rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 2rem;
}

.mb-4 {
  margin-bottom: 3rem;
}

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

/* =============================================================================
   RESPONSIVE — MAX 768px
   ============================================================================= */

@media (max-width: 768px) {
  body {
    padding-top: var(--nav-height);
  }

  .section {
    padding: 4rem 0;
  }

  .services-section {
    padding: 4rem 0;
  }

  .philosophy-section {
    padding: 4rem 0;
  }

  .intelligence-strip {
    padding: 4rem 0;
  }

  .home-hero__stats {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .home-hero__stat {
    padding: 0 1.25rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}
