/* ═══════════════════════════════════════════════════
   OAKUMA — Static Site Styles
   ═══════════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; padding: 0; }
address { font-style: normal; }

/* ── Custom Properties ── */
:root {
  --bg: #FAF6F1;
  --fg: #3d2b1f;
  --primary: #3d2b1f;
  --accent: #C4956A;
  --secondary: #7d5630;
  --surface: #FAF6F1;
  --dark: #1A1512;
  --dark-text: #F6F2E8;

  --font-headline: 'Newsreader', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  --shadow-neo: 12px 12px 24px rgba(61,43,31,0.08), -12px -12px 24px rgba(255,255,255,0.9);
  --shadow-neo-sm: 6px 6px 12px rgba(61,43,31,0.06), -6px -6px 12px rgba(255,255,255,0.8);
  --shadow-neo-inset: inset 4px 4px 8px rgba(61,43,31,0.06), inset -4px -4px 8px rgba(255,255,255,0.9);
  --shadow-neo-hover: 14px 14px 28px rgba(61,43,31,0.12), -14px -14px 28px rgba(255,255,255,0.95);

  --radius-card: 32px;
  --radius-btn: 12px;
}

/* ── Base ── */
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-headline); }

::selection { background: var(--accent); color: #fff; }

/* ── Container ── */
.container      { max-width: 80rem; margin-left: auto; margin-right: auto; padding-left: 1.25rem; padding-right: 1.25rem; }
.container--lg  { max-width: 72rem; }
.container--md  { max-width: 56rem; }
.container--sm  { max-width: 48rem; }

@media (min-width: 640px) {
  .container, .container--lg, .container--md, .container--sm { padding-left: 2rem; padding-right: 2rem; }
}

/* ══════════════════════════════════════
   COMPONENTS
   ══════════════════════════════════════ */

/* ── Neo Card ── */
.neo-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-neo);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}
.neo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-neo-hover);
}

/* ── Neo Button ── */
.neo-btn {
  display: inline-block;
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-neo-sm);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  will-change: transform;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.neo-btn:hover  { transform: scale(1.02); box-shadow: var(--shadow-neo-inset); }
.neo-btn:active { transform: scale(0.97); }

.neo-btn--primary {
  background: var(--primary);
  color: var(--bg);
  padding: 0.75rem 1.5rem;
}
.neo-btn--outline {
  background: transparent;
  border: 2px solid rgba(61,43,31,0.15);
  color: var(--primary);
  padding: 0.75rem 1.5rem;
}

@media (min-width: 640px) {
  .neo-btn--primary, .neo-btn--outline { padding: 0.75rem 2rem; }
  .neo-btn--primary-lg { padding: 0.875rem 2.5rem; }
}

/* ── Stat Card ── */
.stat-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 1.5rem;
  overflow: hidden;
  transition: transform 0.25s ease, background-color 0.25s ease;
  will-change: transform;
}
.stat-card:hover { transform: translateY(-4px); background-color: rgba(255,255,255,0.07); }

@media (min-width: 640px) { .stat-card { padding: 1.75rem; } }

/* ── Citation Badge ── */
.citation-badge {
  position: absolute;
  top: 16px; right: -8px;
  background: #2d6a4f;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 12px 4px 10px;
  border-radius: 4px 0 0 4px;
  line-height: 1;
  z-index: 2;
}
.citation-badge::after {
  content: "";
  position: absolute;
  right: 0; bottom: -8px;
  border-width: 4px;
  border-style: solid;
  border-color: #1b4332 #1b4332 transparent transparent;
}

/* ══════════════════════════════════════
   GLASS NAVBAR
   ══════════════════════════════════════ */
.glass-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(250,246,241,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(61,43,31,0.05);
  animation: navFadeIn 0.4s ease-out both;
}
@keyframes navFadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
@media (min-width: 640px) { .nav-inner { height: 5rem; } }

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.nav-logo__shield { height: 1.75rem; width: auto; }
.nav-logo__wordmark { height: 1.25rem; width: auto; }
@media (min-width: 640px) {
  .nav-logo__shield { height: 2rem; }
  .nav-logo__wordmark { height: 1.5rem; }
}

/* Desktop nav */
.nav-desktop { display: none; align-items: center; gap: 2rem; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }

.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(61,43,31,0.7);
  transition: color 0.2s;
}
.nav-link:hover, .nav-link--active { color: var(--accent); }

/* Language switcher */
.lang-switcher { display: flex; align-items: center; gap: 0.25rem; font-size: 10px; font-weight: 500; letter-spacing: 0.05em; color: rgba(61,43,31,0.4); }
.lang-switcher__sep { margin: 0 0.25rem; color: rgba(61,43,31,0.2); }
.lang-btn { transition: color 0.2s; position: relative; padding-bottom: 0.25rem; }
.lang-btn:hover { color: var(--primary); }
.lang-btn--active { color: var(--primary); font-weight: 700; }
.lang-btn--active::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1.5px;
  background: var(--accent);
  border-radius: 999px;
}

/* Nav CTA */
.nav-cta {
  background: var(--primary);
  color: var(--bg);
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background-color 0.2s;
}
.nav-cta:hover { background: var(--secondary); }

/* Hamburger */
.hamburger { display: flex; flex-direction: column; gap: 6px; padding: 0.5rem; }
.hamburger__line {
  display: block;
  width: 24px; height: 2px;
  background: var(--primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger--open .hamburger__line:nth-child(1) { transform: rotate(45deg) translate(2.8px, 2.8px); }
.hamburger--open .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger--open .hamburger__line:nth-child(3) { transform: rotate(-45deg) translate(2.8px, -2.8px); }

@media (min-width: 1024px) { .hamburger { display: none; } }

/* Mobile menu */
.mobile-menu {
  display: none;
  border-top: 1px solid rgba(61,43,31,0.05);
  background: rgba(250,246,241,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  max-height: 0;
  opacity: 0;
}
.mobile-menu--open { display: block; max-height: 400px; opacity: 1; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }

.mobile-menu__inner { padding: 1.5rem 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.mobile-link { font-size: 0.875rem; font-weight: 600; letter-spacing: 0.1em; color: rgba(61,43,31,0.7); }
.mobile-link--active { color: var(--accent); }

.mobile-lang { display: flex; align-items: center; gap: 0.5rem; padding-top: 0.5rem; font-size: 0.75rem; font-weight: 500; color: rgba(61,43,31,0.4); }

.mobile-cta {
  display: block;
  background: var(--primary);
  color: var(--bg);
  text-align: center;
  padding: 0.75rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

/* ══════════════════════════════════════
   MAIN CONTENT
   ══════════════════════════════════════ */
.main-content { flex: 1; padding-top: 4rem; }
@media (min-width: 640px) { .main-content { padding-top: 5rem; } }

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 640px) { .hero { min-height: 85vh; } }

.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero__content { position: relative; z-index: 10; width: 100%; padding: 5rem 0; }
@media (min-width: 640px) { .hero__content { padding: 8rem 0; } }

.hero__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .hero__label { margin-bottom: 1.5rem; } }

.hero__headline {
  font-family: var(--font-headline);
  font-size: 3rem;
  font-weight: 300;
  color: var(--primary);
  line-height: 1.05;
  margin-bottom: 2rem;
  max-width: 48rem;
}
.hero__headline .word {
  display: inline-block;
  margin-right: 0.3em;
  opacity: 0;
  transform: translateY(20px);
  animation: wordIn 0.4s ease-out forwards;
}
@keyframes wordIn { to { opacity: 1; transform: translateY(0); } }

@media (min-width: 640px) { .hero__headline { font-size: 4.5rem; margin-bottom: 2.5rem; } }
@media (min-width: 1024px) { .hero__headline { font-size: 6rem; } }

.hero__buttons { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ══════════════════════════════════════
   NARRATIVE
   ══════════════════════════════════════ */
.narrative { padding: 4rem 0; }
@media (min-width: 640px) { .narrative { padding: 6rem 0; } }
@media (min-width: 1024px) { .narrative { padding: 8rem 0; } }

.narrative__text {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.625;
  color: rgba(61,43,31,0.8);
}
@media (min-width: 640px) { .narrative__text { font-size: 1.5rem; } }
@media (min-width: 1024px) { .narrative__text { font-size: 1.875rem; } }

/* ══════════════════════════════════════
   STATS BLOCK
   ══════════════════════════════════════ */
.stats-block {
  padding: 4rem 0;
  background: var(--dark);
  color: var(--dark-text);
  border-radius: 40px;
  margin: 0 0.75rem;
}
@media (min-width: 640px) { .stats-block { padding: 6rem 0; border-radius: 60px; margin: 0 1.5rem; } }
@media (min-width: 1024px) { .stats-block { margin: 0 2.5rem; } }

.stats-block__heading {
  font-family: var(--font-headline);
  font-size: 1.875rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .stats-block__heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .stats-block__heading { font-size: 3rem; } }

.stats-block__intro {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 48rem;
  line-height: 1.625;
  margin-bottom: 1rem;
}
.stats-block__intro:last-of-type { margin-bottom: 3rem; }
@media (min-width: 640px) {
  .stats-block__intro { font-size: 1.125rem; }
  .stats-block__intro:last-of-type { margin-bottom: 4rem; }
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: 4rem; } }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-card__number {
  font-family: var(--font-headline);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
@media (min-width: 640px) { .stat-card__number { font-size: 3rem; } }

.stat-card__label { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.625; }

.stats-block__closing {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 48rem;
  line-height: 1.625;
}
@media (min-width: 640px) { .stats-block__closing { font-size: 1.125rem; } }

/* ══════════════════════════════════════
   PILLARS
   ══════════════════════════════════════ */
.pillars { padding: 5rem 0; }
@media (min-width: 640px) { .pillars { padding: 8rem 0; } }

.pillars__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .pillars__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }

.pillar-card { padding: 2rem; }
@media (min-width: 640px) { .pillar-card { padding: 2.5rem; } }
@media (min-width: 1024px) { .pillar-card { padding: 3rem; } }

.pillar-card__title {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}
@media (min-width: 640px) { .pillar-card__title { font-size: 1.875rem; } }

a:hover .pillar-card__title { color: var(--secondary); }

.pillar-card__text { color: rgba(61,43,31,0.6); font-size: 1rem; }
@media (min-width: 640px) { .pillar-card__text { font-size: 1.125rem; } }

/* ══════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════ */
.cta-section { padding-bottom: 4rem; text-align: center; }
@media (min-width: 640px) { .cta-section { padding-bottom: 6rem; } }

.cta-section__heading {
  font-family: var(--font-headline);
  font-size: 1.875rem;
  font-weight: 300;
  color: var(--primary);
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .cta-section__heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .cta-section__heading { font-size: 3rem; } }

.cta-section__buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

.neo-btn--primary-lg {
  background: var(--primary);
  color: var(--bg);
  padding: 0.875rem 2rem;
}
@media (min-width: 640px) { .neo-btn--primary-lg { padding: 1rem 2.5rem; } }

/* ══════════════════════════════════════
   PAGE HEADER
   ══════════════════════════════════════ */
.page-header { padding-top: 3rem; padding-bottom: 2.5rem; }
@media (min-width: 640px) { .page-header { padding-top: 5rem; padding-bottom: 3.5rem; } }

.page-header__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.page-header__title {
  font-family: var(--font-headline);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--primary);
}
@media (min-width: 640px) { .page-header__title { font-size: 3rem; } }
@media (min-width: 1024px) { .page-header__title { font-size: 3.75rem; } }

.page-header__sub { font-size: 1.125rem; color: rgba(61,43,31,0.6); margin-top: 0.75rem; }

/* ══════════════════════════════════════
   PROJECTS PAGE
   ══════════════════════════════════════ */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) { .projects-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
@media (min-width: 640px) { .projects-grid { padding-bottom: 6rem; } }

.project-card { padding: 1.75rem; display: flex; flex-direction: column; height: 100%; }
@media (min-width: 640px) { .project-card { padding: 2rem; } }

.project-card__header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.25rem; }

.project-card__name {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
}
@media (min-width: 640px) { .project-card__name { font-size: 1.875rem; } }

.project-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  flex-shrink: 0;
  margin-left: 0.75rem;
}
.project-tag--active  { background: #15803d; }
.project-tag--soon    { background: var(--accent); }

.project-card__tagline {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-style: italic;
  color: rgba(61,43,31,0.8);
  line-height: 1.625;
  margin-bottom: 0.75rem;
}
@media (min-width: 640px) { .project-card__tagline { font-size: 1.125rem; } }

.project-card__desc { font-size: 0.875rem; color: rgba(61,43,31,0.5); flex: 1; }

.project-card__link {
  margin-top: auto;
  padding-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  transition: color 0.2s;
}
.project-card__link:hover { color: var(--secondary); }

/* ══════════════════════════════════════
   SERVICES PAGE
   ══════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-bottom: 4rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; padding-bottom: 6rem; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card { padding: 1.75rem; display: flex; flex-direction: column; height: 100%; }
@media (min-width: 640px) { .service-card { padding: 2rem; } }

.service-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.service-card__title {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--primary);
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .service-card__title { font-size: 1.5rem; } }

.service-card__text { font-size: 0.875rem; color: rgba(61,43,31,0.6); line-height: 1.625; }

/* ══════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-bottom: 5rem;
}
@media (min-width: 640px) { .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; padding-bottom: 8rem; } }

.contact-card { padding: 1.75rem; }
@media (min-width: 640px) { .contact-card { padding: 2rem; } }

.contact-card__title {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) { .contact-card__title { font-size: 1.5rem; } }

.contact-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.contact-row:last-child { margin-bottom: 0; }

.contact-label { font-size: 10px; font-weight: 700; letter-spacing: 0.05em; color: var(--accent); width: 1.5rem; }
.contact-label--wide { width: auto; }

.contact-value { font-size: 0.875rem; color: rgba(61,43,31,0.7); transition: color 0.2s; }
a.contact-value:hover { color: var(--accent); }
.contact-value--dim { color: rgba(61,43,31,0.4); font-style: italic; }

.contact-link { display: block; font-size: 0.875rem; color: rgba(61,43,31,0.7); transition: color 0.2s; margin-bottom: 0.75rem; }
.contact-link:last-child { margin-bottom: 0; }
.contact-link:hover { color: var(--accent); }

.contact-address { font-size: 0.875rem; color: rgba(61,43,31,0.7); line-height: 1.625; }

/* ══════════════════════════════════════
   LEGAL PAGES (Privacy, Terms, Impressum)
   ══════════════════════════════════════ */
.legal-page { padding-top: 3rem; padding-bottom: 5rem; }
@media (min-width: 640px) { .legal-page { padding-top: 5rem; padding-bottom: 8rem; } }

.legal-page__title {
  font-family: var(--font-headline);
  font-size: 1.875rem;
  font-weight: 300;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
@media (min-width: 640px) { .legal-page__title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .legal-page__title { font-size: 3rem; } }

.legal-page__title--mb { margin-bottom: 2.5rem; }

.legal-page__date { font-size: 0.875rem; color: rgba(61,43,31,0.4); margin-bottom: 2.5rem; }

.legal-page__body { display: flex; flex-direction: column; gap: 1.5rem; font-size: 1rem; color: rgba(61,43,31,0.7); line-height: 1.625; }
.legal-page__body p { margin: 0; }

.legal-footer {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(61,43,31,0.1);
  font-size: 0.875rem;
  color: rgba(61,43,31,0.5);
}
.legal-footer p { margin-bottom: 0; }

.impressum-section { display: flex; flex-direction: column; gap: 0.25rem; }
.impressum-section + .impressum-section { padding-top: 1.5rem; border-top: 1px solid rgba(61,43,31,0.1); margin-top: 0.5rem; }

.impressum-section strong { color: var(--primary); }
.impressum-section a { color: var(--accent); transition: color 0.2s; }
.impressum-section a:hover { color: var(--secondary); }

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  color: var(--dark-text);
  border-radius: 40px 40px 0 0;
  margin-top: 5rem;
}
@media (min-width: 640px) { .site-footer { border-radius: 60px 60px 0 0; margin-top: 8rem; } }

.footer-inner { padding: 3rem 0; }
@media (min-width: 640px) { .footer-inner { padding: 4rem 0; } }

.footer-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 640px) {
  .footer-row { flex-direction: row; align-items: center; justify-content: space-between; }
}

.footer-nav { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
@media (min-width: 640px) { .footer-nav { gap: 1.5rem; } }
.footer-nav a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-nav a:hover { color: #fff; }

.footer-lang { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 500; color: rgba(255,255,255,0.3); }
.footer-lang a { transition: color 0.2s; }
.footer-lang a:hover { color: rgba(255,255,255,0.6); }
.footer-lang a.active { color: rgba(255,255,255,0.6); }

.footer-channels {
  display: flex; flex-wrap: wrap; gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}
@media (min-width: 640px) { .footer-channels { gap: 1.5rem; } }
.footer-channels a { transition: color 0.2s; }
.footer-channels a:hover { color: #fff; }

.footer-social {
  display: flex; flex-wrap: wrap; gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}
@media (min-width: 640px) { .footer-social { gap: 1.5rem; } }
.footer-social a { transition: color 0.2s; }
.footer-social a:hover { color: #fff; }

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}
@media (min-width: 640px) { .footer-legal { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-legal-links a { transition: color 0.2s; }
.footer-legal-links a:hover { color: rgba(255,255,255,0.6); }

/* Footer logo */
.footer-logo { display: flex; align-items: center; gap: 0.5rem; }
.footer-logo__shield { height: 1.5rem; width: auto; }
.footer-logo__wordmark { height: 1rem; width: auto; }

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}
