/* =============================================
   KGS — Kosovo-German-Swiss Business Community
   ============================================= */

/* === 1. BRAND TOKENS === */
:root {
  --red:        #DC2626;
  --gold:       #E0A819;
  --gold-2:     #C68F12;
  --cobalt:     #1E4DB7;
  --ember:      #EA580C;
  --silver:     #C5CDD5;
  --silver-2:   #8A93A0;
  --amethyst:   #A78BFA;
  --amethyst-2: #7C3AED;
  --ink:        #0A0A0A;
  --ink-2:      #2A2A2A;
  --ink-3:      #5B5B5B;
  --paper:      #FFFFFF;
  --paper-2:    #FAFAFA;
  --paper-3:    #F0F0F0;
  --line:       rgba(0,0,0,0.10);
  --line-soft:  rgba(0,0,0,0.06);

  --radius: 2px;
  --max-w:  1280px;
  --gutter: 40px;
  --check-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");

  --font-display: 'Manrope', system-ui, sans-serif;
  --font-mono:    'IBM Plex Mono', 'Courier New', monospace;
}

/* === 2. RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-display); cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* === 3. TYPOGRAPHY === */
.h1 {
  font-size: clamp(44px, 5.4vw, 76px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
}

/* === 4. LAYOUT === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section         { padding: 96px 0; }
.section--tight  { padding: 64px 0; }
.section--dark   { background: var(--ink); color: var(--paper); }

.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
  align-items: end;
}
.section-header__eyebrow { margin-bottom: 12px; }
.section-header__lede {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 44ch;
  line-height: 1.5;
}
.section--dark .section-header__lede { color: rgba(255,255,255,0.55); }

/* === 5. BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  padding: 13px 22px;
  border-radius: var(--radius);
  letter-spacing: -0.005em;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
}
.btn--primary:hover { background: var(--red); border-color: var(--red); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost:hover { background: var(--paper-3); }
.btn--ghost-light {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(255,255,255,0.28);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.08); }
.btn--full { width: 100%; justify-content: center; }

:focus-visible { outline: 2px solid var(--cobalt); outline-offset: 2px; }

/* Skip-to-content link — visually hidden until keyboard focus, then a
   pinned high-contrast pill at the top-left so keyboard users can bypass
   the marquee + nav and jump straight to the hero. */
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transform: translateY(-200%);
  transition: transform .15s ease;
}
.skip-link:focus { transform: translateY(0); outline: 2px solid var(--cobalt); outline-offset: 2px; }
#hero:focus { outline: none; }

/* === 6. BRAND BAND === */
.brand-band {
  height: 3px;
  background: linear-gradient(
    to right,
    var(--red)   0%  25%,
    var(--gold)  25% 50%,
    var(--cobalt)50% 75%,
    var(--ember) 75% 100%
  );
}

/* === 7. TOP UTILITY STRIP === */
.top-strip {
  height: 40px;
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.top-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Ticker */
.ticker { overflow: hidden; flex: 1; min-width: 0; }
.ticker__track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
}
.ticker__track:hover { animation-play-state: paused; }
.ticker__item {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  padding-right: 64px;
  flex-shrink: 0;
}
.ticker__item::before { content: '— '; color: var(--cobalt); }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Language switcher */
.lang-switcher {
  display: flex;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}
.lang-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  padding: 4px 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background .12s ease, color .12s ease;
}
.lang-btn--active,
.lang-btn:hover { background: var(--ink); color: var(--paper); }

/* === 8. PRIMARY NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 80px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .2s ease;
}
.nav--scrolled { box-shadow: 0 1px 16px rgba(0,0,0,0.07); }
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 84px;
  border-radius: 6px;
}
.nav__logo:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 4px;
}
.nav__logo-img {
  width: 84px;
  height: 84px;
  display: block;
  object-fit: contain;
}

/* Menu */
.nav__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color .12s ease;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 2px;
  background: var(--cobalt);
  transform: scaleX(0);
  transition: transform .15s ease;
}
.nav__link:hover { color: var(--ink); }
.nav__link.active::after,
.nav__link:hover::after { transform: scaleX(1); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 32px;
  padding: 4px 0;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.nav--open .nav__hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav--open .nav__hamburger span:nth-child(2) { opacity: 0; }
.nav--open .nav__hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu — slide-down drawer.
   Uses position: fixed with a JS-controlled top offset (set on open
   so the drawer sits flush against the bottom of the nav whether
   the page is scrolled or not). Position: absolute inside .nav was
   unreliable on iOS Safari because backdrop-filter on .nav creates
   a containing-block trap. */
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--mobile-menu-top, 64px);
  left: 0; right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 16px var(--gutter) 20px;
  flex-direction: column;
  gap: 2px;
  z-index: 99;
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
  transform: translateY(-8px);
  opacity: 0;
  transition: transform .2s ease, opacity .2s ease;
  pointer-events: none;
}
.nav--open .nav__mobile-menu {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav__mobile-link {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  padding: 14px 4px;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__mobile-link::after {
  content: '→';
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-3);
  transition: transform .15s ease;
}
.nav__mobile-link:hover::after { transform: translateX(3px); color: var(--cobalt); }

/* === 9. HERO === */
.hero {
  padding: 56px var(--gutter) 36px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero__grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 28px;
  align-items: start;
}
.hero__eyebrow { margin-bottom: 16px; }
.hero__eyebrow::before { content: '— '; color: var(--cobalt); }
.hero__h1 { margin-bottom: 20px; }
.hero__country--de { color: var(--gold); }
.hero__country--ch { color: var(--red); }
.hero__country--xk { color: var(--cobalt); }
.hero__subhead {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 48ch;
  line-height: 1.55;
  margin-bottom: 32px;
}
.hero__buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__buttons .btn { font-size: 12.5px; padding: 11px 18px; }

/* Stats */
.hero__stats { display: flex; gap: 40px; }
.hero__stat  { display: flex; flex-direction: column; gap: 4px; }
.hero__stat-num {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}
.hero__stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
}

/* Corridor diagram */
.corridor-diagram {
  width: 100%;
  max-width: 820px;
  display: block;
  margin: 0;
  justify-self: end;
  align-self: start;
  height: auto;
}
.corridor-frame {
  fill: transparent;
  stroke: var(--line-soft);
  stroke-width: 1;
}
.corridor-country {
  color: var(--ink);
}
.corridor-country--de { color: var(--gold); }
.corridor-country--ch { color: var(--red); }
.corridor-country--xk { color: var(--cobalt); }
.corridor-map-glow {
  fill: transparent;
  stroke: currentColor;
  stroke-width: 9;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.08;
  vector-effect: non-scaling-stroke;
}
.corridor-map-outline {
  fill: transparent;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.corridor-line {
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-dasharray: 8 5;
  animation: dash-flow 3s linear infinite;
}
.corridor-line--main {
  stroke-width: 1.9;
  stroke-opacity: 0.45;
}
.corridor-line--secondary {
  stroke-width: 1.35;
  stroke-opacity: 0.3;
}
@keyframes dash-flow {
  to { stroke-dashoffset: -52; }
}
.corridor-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  fill: var(--ink);
  paint-order: stroke;
  stroke: var(--paper);
  stroke-width: 4;
  stroke-linejoin: round;
}
.corridor-country-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  fill: var(--ink);
}
.corridor-city--de { color: var(--gold); }
.corridor-city--ch { color: var(--red); }
.corridor-city--xk { color: var(--cobalt); }
.corridor-city__halo {
  fill: currentColor;
  fill-opacity: 0.16;
}
.corridor-city__dot {
  fill: currentColor;
  stroke: var(--paper);
  stroke-width: 2;
}
.corridor-city-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  fill: currentColor;
}

/* === 10. CREDENTIALS STRIP === */
.credentials {
  background: var(--paper-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.credentials__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 28px var(--gutter);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
}
.credentials__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: start;
}
.credentials__partner-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.3;
  margin-bottom: 3px;
}
.credentials__partner-code {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}
.credentials__hint { display: none; }

/* === 11. ABOUT === */
.about__body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about__story { display: flex; flex-direction: column; }
.about__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0;
}

/* Inline stat strip — surfaces the numbers buried in the prose so
   "30 unanimous votes / 100% / 45 in 4 days" become scannable facts
   instead of mid-sentence parentheticals. */
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 32px 0 0;
  padding: 22px 0 24px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.about-stat { display: flex; flex-direction: column; gap: 4px; margin: 0; }
.about-stat__num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  margin: 0;
}
.about-stat__label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin: 0;
}

/* Values chips — promote "transparencë / profesionalizëm / integritet"
   from the tail of the prose to a visible row of pills under the stats. */
.about__values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.about-value {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  padding: 7px 13px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
}

/* Section-end CTA carries the reader into the Leadership section
   directly below — section was previously a dead-end. */
.about__cta {
  align-self: flex-start;
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cobalt);
  text-decoration: none;
  transition: color .15s ease, transform .15s ease;
}
.about__cta:hover { color: var(--ink); transform: translateX(2px); }

/* Timeline */
.timeline { display: flex; flex-direction: column; }
.timeline__row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.timeline__row:first-child { border-top: 1px solid var(--line-soft); }
.timeline__year {
  position: relative;
  padding-left: 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--cobalt);
  letter-spacing: -0.01em;
}
/* Status dot anchored to the left of the year label — filled cobalt for
   past events that actually happened, dashed gray ring for future plans. */
.timeline__year::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--cobalt);
}
.timeline__row--past .timeline__year::before { background: var(--cobalt); }
.timeline__row--future .timeline__year { color: var(--ink-3); }
.timeline__row--future .timeline__year::before {
  border-style: dashed;
  border-color: var(--ink-3);
}
.timeline__event { font-size: 15px; color: var(--ink-2); line-height: 1.4; }
.timeline__row--future .timeline__event { color: var(--ink-3); }
.timeline__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: right;
  white-space: nowrap;
}
.timeline__tag--past {
  color: var(--cobalt);
  font-weight: 600;
}
.timeline__tag--future {
  color: var(--ink-3);
  padding: 3px 8px;
  border: 1px dashed var(--line);
  border-radius: 999px;
  font-size: 9px;
}

/* === 12. LEADERSHIP === */
.leadership__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Photo placeholder */
.photo-placeholder {
  border: 1px dashed var(--line);
  background: var(--paper-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.photo-placeholder--portrait  { aspect-ratio: 3/4; }
.president-card__photo { width:100%; aspect-ratio:16/9; object-fit:cover; object-position:center 25%; display:block; }
.photo-placeholder--landscape { aspect-ratio: 16/10; }
.photo-placeholder__caption {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  text-align: center;
  padding: 0 12px;
}

/* President card */
.president-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: var(--radius);
}
.president-card__eyebrow { color: var(--ember); margin-bottom: 8px; }
.president-card__name {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.president-card__title { font-size: 14px; color: var(--ink-3); margin-bottom: 20px; }
.president-card__bio {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 20px;
}
.president-card__meta { display: flex; flex-direction: column; gap: 5px; }
.president-card__meta-item {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}

/* Board list */
.board-list__header {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.board-list__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.board-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  flex-shrink: 0;
}
.board-member__name { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
.board-member__position {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}

/* === 13. PRESENCE === */
.presence__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}
.presence-cell {
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.presence-cell:last-child { border-right: none; }
.presence-cell__status-pill { display: none; }

/* Audit §7: planned (DE/CH) cells must not pretend to be operational.
   Dim the whole cell uniformly so card heights stay even with Kosovo,
   grayscale the flag for an unmistakable "future state" cue, and pin
   a high-contrast status badge to the top-right on desktop. Mobile
   media query (~line 1609) replaces the stats block with the pill
   inline, so this desktop pinning doesn't apply there. */
.presence-cell--planned { position: relative; }
.presence-cell--planned > *:not(.presence-cell__status-pill) { opacity: 0.62; }
.presence-cell--planned .presence-cell__flag { filter: grayscale(0.7); }
.presence-cell__band { height: 3px; }
.presence-cell__band--xk { background: #1E4DB7; }
.presence-cell__band--de { background: #FFCE00; }
.presence-cell__band--ch { background: #DA291C; }
.presence-cell__header { padding: 20px 24px 14px; }
.presence-cell__iso {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.presence-cell__name { font-size: 22px; font-weight: 500; letter-spacing: -0.02em; }
.presence-cell__flag {
  height: 170px;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.presence-cell__flag svg { width: 100%; height: 100%; display: block; }
.presence-cell__flag img { display: block; max-width: 100%; max-height: 100%; }
.presence-cell__stats { padding: 20px 24px; display: flex; flex-direction: column; gap: 14px; }
.presence-stat { display: flex; flex-direction: column; gap: 2px; }
.presence-stat__num { font-size: 22px; font-weight: 500; letter-spacing: -0.03em; }
.presence-stat__label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}

/* Desktop "Coming 2026" badge (paired with the global dim above) */
@media (min-width: 880px) {
  .presence-cell--planned .presence-cell__status-pill {
    display: inline-flex;
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 12px;
    font-family: var(--font-mono);
    font-size: 9.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--paper);
    background: var(--ink);
    border-radius: 999px;
    z-index: 2;
    white-space: nowrap;
  }
}

/* === 14. MISSION === */
.mission__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}
.mission__hint { display: none; }
.mission-card {
  padding: 32px;
  border-right: 1px solid var(--line);
}
.mission-card:last-child { border-right: none; }
.mission-card__icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: var(--paper);
}
.mission-card__icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.7;
}
.mission-card__icon--red {
  color: var(--red);
  background: rgba(220,38,38,0.06);
  border-color: rgba(220,38,38,0.18);
}
.mission-card__icon--blue {
  color: var(--cobalt);
  background: rgba(30,77,183,0.06);
  border-color: rgba(30,77,183,0.18);
}
.mission-card__icon--orange {
  color: var(--ember);
  background: rgba(234,88,12,0.06);
  border-color: rgba(234,88,12,0.18);
}
.mission-card__index {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.mission-card__title { margin-bottom: 12px; }
.mission-card__body { font-size: 14.5px; color: var(--ink-2); line-height: 1.6; }

/* === 15. SERVICES (dark) === */
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.service-row {
  display: grid;
  grid-template-columns: 68px 44px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-display);
  color: inherit;
  cursor: default;
}
.service-row__chevron { display: none; }
.service-row:nth-child(odd)  { padding-right: 48px; border-right: 1px solid rgba(255,255,255,0.07); }
.service-row:nth-child(even) { padding-left: 48px; }
.service-row:nth-last-child(-n+2) { border-bottom: none; }
.service-row__code {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
}
.service-row__title { font-size: 16px; font-weight: 500; color: var(--paper); margin-bottom: 4px; }
.service-row__body  { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.service-row__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.46);
  background: rgba(255,255,255,0.035);
  flex-shrink: 0;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.service-row__icon svg {
  width: 19px;
  height: 19px;
  stroke-width: 1.75;
}
.service-row__icon--red { --service-accent: var(--red); color: #F87171; }
.service-row__icon--blue { --service-accent: var(--cobalt); color: #7EA2FF; }
.service-row__icon--gold { --service-accent: var(--gold); color: #FACC4C; }
.service-row__icon--orange { --service-accent: var(--ember); color: #FB923C; }
.service-row:hover .service-row__icon {
  background: var(--service-accent);
  border-color: var(--service-accent);
  color: var(--paper);
}
.service-row:hover .service-row__icon--gold { color: var(--ink); }

/* === 16. MEMBERS === */
.members__tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
  overflow-x: auto;
  gap: 0;
  scrollbar-width: none;
}
.members__tabs::-webkit-scrollbar { display: none; }
.members__tab {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  padding: 10px 18px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  margin-bottom: -1px;
  transition: color .12s ease, background .12s ease, border-color .12s ease;
}
.members__tab:hover { color: var(--ink); }
.members__tab--active {
  background: var(--ink);
  color: var(--paper);
  border-bottom-color: var(--ink);
}

.members__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
}
.member-cell {
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  background: var(--paper);
  transition: background .12s ease;
  min-height: 72px;
}
.member-cell:nth-child(5n)       { border-right: none; }
.member-cell:nth-last-child(-n+5) { border-bottom: none; }
.member-cell:hover { background: var(--paper-2); }
.member-cell--hidden { display: none; }

.member-cell__flag { position: absolute; top: 10px; right: 10px; width: 14px; height: 10px; }
.member-cell__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  padding-right: 22px;
  line-height: 1.3;
}
.member-cell__meta {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}

/* === 17. MEMBERSHIP TIERS (dark) === */
.tiers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,0.10);
}
.tier {
  position: relative;
  padding: 44px 40px 40px;
  border-right: 1px solid rgba(255,255,255,0.10);
  display: flex;
  flex-direction: column;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

/* Tier head/collapsible — invisible wrappers on desktop, accordion on mobile */
.tier__head {
  display: block;
  width: 100%;
  padding: 0;
  background: transparent;
  border: none;
  cursor: default;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  text-align: left;
}
.tier__head-left,
.tier__head-right { display: block; }
.tier__collapsible { display: flex; flex-direction: column; flex: 1; }
.tier__chevron { display: none; }
.tier__tag,
.tier__name { display: block; }
.tier:last-child { border-right: none; }
.tier--featured  { background: var(--paper); color: var(--ink); z-index: 1; }

/* Top accent bar — identity color per tier */
.tier::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--tier-accent, transparent);
}
.tier--silver   { --tier-accent: var(--silver); }
.tier--featured { --tier-accent: var(--gold); }
.tier--premium::before {
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--gold)   0%,
    var(--gold)   33.33%,
    var(--red)    33.33%,
    var(--red)    66.66%,
    var(--cobalt) 66.66%,
    var(--cobalt) 100%
  );
}

/* Hover lift + colored glow (desktop only — applied via media query below) */

.tier__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.tier--silver   .tier__tag { color: var(--silver); }
.tier--featured .tier__tag { color: var(--gold-2); }
.tier--premium  .tier__tag { color: var(--amethyst); }

.tier__name {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--paper);
  margin-bottom: 8px;
}
.tier--featured .tier__name { color: var(--ink); }

.tier__price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.tier__price-amount {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--paper);
  line-height: 1;
}
.tier--featured .tier__price-amount { color: var(--ink); }
.tier__price-unit {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}
.tier--silver   .tier__price-unit { color: var(--silver-2); }
.tier--featured .tier__price-unit { color: var(--ink-3); }
.tier--premium  .tier__price-unit { color: var(--silver-2); }

.tier__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.10);
  margin: 24px 0;
}
.tier--featured .tier__divider { border-top-color: var(--line); }

.tier__benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 32px;
}
.tier__benefit {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
  padding-left: 22px;
  position: relative;
}
.tier__benefit::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 14px;
  height: 14px;
  background: rgba(255,255,255,0.38);
  -webkit-mask: var(--check-icon) center / contain no-repeat;
  mask: var(--check-icon) center / contain no-repeat;
}
.tier--silver   .tier__benefit::before { background: var(--silver); }
.tier--featured .tier__benefit { color: var(--ink-2); }
.tier--featured .tier__benefit::before { background: var(--gold-2); }
.tier--featured .btn--primary:hover { background: var(--gold-2); border-color: var(--gold-2); }
.tier--premium  .tier__benefit::before { background: var(--amethyst); }

/* "Most popular" badge — top-right of the featured (Gold) card */
.tier__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  background: var(--gold);
  padding: 5px 9px;
  border-radius: 2px;
  line-height: 1;
}

.tier__custom-note {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  flex: 1;
  margin-bottom: 32px;
  line-height: 1.6;
}

@media (min-width: 881px) {
  .tier:hover { transform: translateY(-3px); }
  .tier--silver:hover   { box-shadow: 0 12px 32px -16px rgba(197, 205, 213, 0.45); }
  .tier--featured:hover { box-shadow: 0 16px 40px -16px rgba(224, 168, 25, 0.55); }
  .tier--premium:hover  { box-shadow: 0 12px 32px -16px rgba(167, 139, 250, 0.55); }
}

.tier__custom-note {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  flex: 1;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* === 18. CONTACT / FOOTER (dark) === */
.contact-footer { background: var(--ink); color: var(--paper); }

.contact-top {
  padding: 96px 0 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-top__tagline {
  font-size: 60px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--paper);
}
.contact-top__lede {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
  max-width: 44ch;
}

/* Contact channels (cards replacing the old form) */
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-channel {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  color: var(--paper);
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
  -webkit-tap-highlight-color: rgba(255,255,255,0.08);
}
.contact-channel:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.38);
  transform: translateY(-1px);
}
.contact-channel__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
}
.contact-channel__icon svg { width: 20px; height: 20px; stroke-width: 1.75; }
.contact-channel__body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.contact-channel__label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
}
.contact-channel__value {
  font-size: 16px;
  font-weight: 500;
  color: var(--paper);
  letter-spacing: -0.005em;
  word-break: break-word;
}
.contact-channel__arrow {
  font-family: var(--font-mono);
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  transition: transform .15s ease, color .15s ease;
}
.contact-channel:hover .contact-channel__arrow {
  transform: translateX(3px);
  color: var(--paper);
}
.contact-channel--coming { cursor: default; opacity: 0.62; }
.contact-channel--coming:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.22);
  transform: none;
}
.contact-channel--coming .contact-channel__value { color: rgba(255,255,255,0.7); font-style: italic; }
.footer-contact__item--coming { color: rgba(255,255,255,0.55); font-style: italic; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
}
.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--paper);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding: 10px 0;
  outline: none;
  transition: border-color .15s ease;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.22); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus  { border-bottom-color: var(--gold); }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.35)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 24px;
  cursor: pointer;
}
.form-select option { background: #1a1a1a; color: var(--paper); }
.form-textarea { resize: vertical; min-height: 80px; line-height: 1.5; }
.form-honeypot { display: none !important; }

.form-submit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(37, 211, 102, 0.95);
  padding: 12px 18px;
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: var(--radius);
  background: rgba(37, 211, 102, 0.06);
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease;
}
.contact-whatsapp:hover {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.55);
}

/* Footer grid */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand__lockup {
  display: block;
  width: 100%;
  max-width: 440px;
  height: auto;
  margin-bottom: 14px;
  filter: invert(1);
}
.footer-brand__wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--paper);
  margin-bottom: 10px;
}
.footer-brand__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 30ch;
}
.footer-col__label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.28);
  margin-bottom: 16px;
}
.footer-col__links { display: flex; flex-direction: column; gap: 10px; }
.footer-col__link {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color .12s ease;
}
.footer-col__link:hover { color: var(--paper); }
.footer-col__link--coming { cursor: default; color: rgba(255,255,255,0.4); }
.footer-col__link--coming:hover { color: rgba(255,255,255,0.4); }
.footer-col__link-tag {
  font-family: var(--font-mono);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.32);
  margin-left: 4px;
}
.footer-contact__item { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-contact__item a { transition: color .12s ease; }
.footer-contact__item a:hover { color: var(--paper); }

.footer-copyright {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-copyright__copy,
.footer-copyright__reg,
.footer-copyright__legal {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.02em;
}
.footer-copyright__legal a {
  color: rgba(255,255,255,0.45);
  transition: color .12s ease;
}
.footer-copyright__legal a:hover { color: var(--paper); }

/* === 19. NEWS GRID === */
.news__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
.news-photo {
  border: none;
  background: var(--paper-2);
  padding: 0;
  overflow: hidden;
  border-radius: 2px;
}
.news-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Near-square / portrait source images cropped into the 16:10 landscape
   frame: pull the visible window upward so faces stay above the crop line. */
.news-photo--portrait img { object-position: center 22%; }

/* === 20. RESPONSIVE === */
@media (max-width: 1099px) {
  :root { --gutter: 28px; }

  .hero__grid { grid-template-columns: 1fr; }
  .corridor-diagram {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    justify-self: center;
    height: auto;
  }

  .section-header { grid-template-columns: 1fr; gap: 16px; margin-bottom: 48px; }

  .credentials__grid { grid-template-columns: repeat(3, 1fr); }

  /* Members stay a single 5-across row down to the mobile breakpoint
     (≤879px switches to a static vertical list). */
}

@media (max-width: 879px) {
  :root { --gutter: 20px; }

  /* Padding compression */
  .section         { padding: 56px 0; }
  .section--tight  { padding: 40px 0; }
  .section-header  { grid-template-columns: 1fr; gap: 12px; margin-bottom: 28px; }
  .section-header__lede { font-size: 14px; }

  /* Nav — slimmer on mobile, hamburger pinned right */
  .nav { height: 64px; }
  .nav__menu, .nav__cta { display: none; }
  .nav__hamburger { display: flex; justify-self: end; grid-column: -2; }
  .nav__inner { grid-template-columns: auto 1fr auto; gap: 16px; }
  .nav__logo { min-width: 56px; }
  .nav__logo-img { width: 56px; height: 56px; }

  /* Hero — drop the corridor map; it doesn't carry well at this width */
  .hero { padding: 32px var(--gutter) 48px; }
  .hero__buttons { margin-bottom: 32px; }
  .corridor-diagram { display: none; }

  /* About */
  .about__body { grid-template-columns: 1fr; gap: 28px; }
  .about__text { font-size: 13.5px; line-height: 1.5; }
  .about__stats { gap: 16px; padding: 18px 0; margin-top: 24px; }
  .about-stat__num { font-size: 24px; }
  .about-stat__label { font-size: 9px; }
  .about__values { margin-top: 18px; }
  .about-value { font-size: 10px; padding: 6px 11px; }
  .about__cta { margin-top: 22px; font-size: 10px; }

  /* Leadership — stack with full-width hero photo */
  .leadership__grid { grid-template-columns: 1fr; gap: 22px; }
  .president-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
    border: 1px solid var(--line);
    overflow: hidden;
  }
  .president-card__photo {
    width: 100%;
    aspect-ratio: auto;
    height: 220px;
    object-position: center 18%;
  }
  .president-card > div:last-child { padding: 0 20px 22px; }
  .president-card__bio { margin-bottom: 10px; }
  .president-card__meta { display: none; }

  /* Timeline */
  .timeline__row { padding: 6px 0; gap: 12px; grid-template-columns: 46px 1fr auto; }
  .timeline__event { font-size: 13px; }
  .timeline__tag   { font-size: 9px; }

  /* Board list */
  .board-list__item {
    padding: 14px;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 8px;
  }
  .board-list__item:last-child { margin-bottom: 0; }
  .board-avatar     { width: 36px; height: 36px; font-size: 11px; }
  .board-member__name { font-size: 14px; }
  .board-member__position { font-size: 9px; }

  /* ---------- Mobile carousel pattern (Mission only now) ---------- */
  .mission__grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 4px var(--gutter) 12px;
    margin: 0 calc(var(--gutter) * -1);
    scroll-padding-left: var(--gutter);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    border: none;
  }
  .mission__grid::-webkit-scrollbar { display: none; }

  /* News — vertical mini-cards (thumb left, text right) */
  .news__grid {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 10px;
    padding: 0;
    margin: 0;
    border: none;
    overflow: visible;
  }
  .news__grid > article {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 14px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 10px;
    background: var(--paper);
    overflow: hidden;
  }
  .news__grid > article > .photo-placeholder {
    aspect-ratio: 1 / 1 !important;
    width: 84px;
    height: 84px;
    margin: 0 !important;
    padding: 0;
  }
  .news__grid > article .photo-placeholder__caption {
    font-size: 8px;
    letter-spacing: 0.08em;
    padding: 0 6px;
  }
  .news__grid > article > div:not(.photo-placeholder) {
    padding: 0 !important;
    min-width: 0;
  }
  .news__grid > article .eyebrow {
    margin-bottom: 4px !important;
    font-size: 9px;
    letter-spacing: 0.08em;
  }
  .news__grid > article h3 {
    font-size: 14px !important;
    line-height: 1.3 !important;
    margin-bottom: 0 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .news__grid > article > div > p:not(.eyebrow),
  .news__grid > article > div > a {
    display: none !important;
  }

  /* Presence — 3 compact horizontal rows, no scroll */
  .presence__grid {
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
  }
  .presence-cell {
    display: grid;
    grid-template-columns: 28px auto 1fr;
    grid-template-areas: "flag header stats";
    align-items: center;
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 8px 10px 8px 12px;
    column-gap: 10px;
    position: relative;
  }
  .presence-cell:last-child { border-bottom: none; }
  .presence-cell__band {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    height: auto;
  }
  .presence-cell__header {
    grid-area: header;
    padding: 0;
  }
  .presence-cell__iso { font-size: 7px; margin-bottom: 0; letter-spacing: 0.1em; }
  .presence-cell__name { font-size: 13px; line-height: 1.05; white-space: nowrap; }
  .presence-cell__flag {
    grid-area: flag;
    height: 20px;
    width: 28px;
    border-bottom: none;
    border: none;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    background: var(--paper);
  }
  .presence-cell__flag img {
    padding: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  .presence-cell__stats {
    grid-area: stats;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    padding: 0;
    gap: 10px;
    min-width: 0;
  }
  .presence-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    min-width: 0;
    flex: 0 1 auto;
  }
  .presence-stat__num {
    font-size: 11.5px;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
  .presence-stat__label {
    font-size: 6.5px;
    letter-spacing: 0.04em;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  /* Presence — planned (DE/CH) cells show pill, not empty stats (audit §7) */
  .presence-cell--planned .presence-cell__stats { display: none; }
  .presence-cell--planned .presence-cell__status-pill {
    display: inline-flex;
    grid-area: stats;
    justify-self: end;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    font-family: var(--font-mono);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-3);
    border: 1px dashed var(--line);
    border-radius: var(--radius);
    margin-top: 0;
    white-space: nowrap;
  }

  /* Mission carousel children */
  .mission-card {
    flex: 0 0 86%;
    scroll-snap-align: start;
    border: 1px solid var(--line);
    padding: 20px 18px;
  }
  .mission-card:last-child { border-right: 1px solid var(--line); }
  .mission-card__index { margin-bottom: 8px; }
  .mission-card__title { margin-bottom: 8px; }

  /* Mission carousel — swipe hint dots */
  .mission__hint {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
  }
  .mission__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0,0,0,0.18);
    transition: background .2s ease, transform .2s ease, width .2s ease;
  }
  .mission__dot--active {
    background: var(--ink);
    width: 18px;
    border-radius: 3px;
  }

  /* (News carousel children replaced by mini-card layout above) */

  /* Tiers — vertical stack, ALL cards expanded by default (audit §10) */
  .tiers__grid {
    grid-template-columns: 1fr;
    border: none;
    gap: 12px;
  }
  .tier {
    border: 1px solid rgba(255,255,255,0.12);
    padding: 44px 20px 24px;
    border-radius: 4px;
    cursor: default;
  }
  .tier--featured {
    border-color: var(--gold);
    box-shadow: 0 8px 28px -12px rgba(224, 168, 25, 0.45);
    transform: none;
    padding: 48px 20px 24px;
  }
  .tier__head {
    display: block;
    cursor: default;
  }
  .tier__head-left  { display: block; }
  .tier__head-right { display: block; margin-top: 6px; }
  .tier__tag    { margin-bottom: 8px; font-size: 9px; }
  .tier__name   { font-size: 24px; margin-bottom: 6px; }
  .tier__price  { margin-bottom: 0; }
  .tier__price-amount { font-size: 28px; }
  .tier--featured .tier__price-amount { font-size: 32px; }
  .tier__chevron { display: none !important; }
  .tier__collapsible {
    max-height: none !important;
    opacity: 1 !important;
    overflow: visible;
    margin-top: 16px;
    transition: none;
  }
  .tier__divider   { margin: 0 0 14px; }
  .tier__benefits  { gap: 8px; margin-bottom: 18px; }
  .tier__benefit   { font-size: 13px; line-height: 1.4; padding-left: 22px; }
  .tier__benefit::before { width: 14px; height: 14px; top: 2px; }
  .tier__badge     { top: 14px; right: 14px; font-size: 9px; padding: 5px 9px; }

  /* Tiers notice — left-aligned and readable on dark mobile */
  .tiers__notice {
    text-align: left;
    line-height: 1.6;
    padding: 14px 16px;
  }

  /* Services — accordion on mobile */
  .services__grid { grid-template-columns: 1fr; }
  .service-row {
    padding: 12px 0;
    grid-template-columns: 32px minmax(0, 1fr) auto;
    gap: 12px;
    cursor: pointer;
    transition: padding .15s ease;
  }
  .service-row:nth-child(odd)  { padding-right: 0; border-right: none; }
  .service-row:nth-child(even) { padding-left: 0; }
  .service-row:last-child      { border-bottom: none; }
  .service-row__code           { display: none; }
  .service-row__icon           { width: 32px; height: 32px; }
  .service-row__icon svg       { width: 16px; height: 16px; }
  .service-row__content        { padding: 0; }
  .service-row__title          { font-size: 15px; margin-bottom: 0; }
  .service-row__body {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height .25s ease, opacity .2s ease, margin-top .2s ease;
  }
  .service-row__chevron {
    display: flex;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 18px;
    color: rgba(255,255,255,0.55);
    transition: transform .2s ease, background .15s ease, color .15s ease, border-color .15s ease;
    flex-shrink: 0;
  }
  .service-row[aria-expanded="true"] .service-row__body {
    max-height: 200px;
    opacity: 1;
    margin-top: 8px;
  }
  .service-row[aria-expanded="true"] .service-row__chevron {
    transform: rotate(45deg);
    background: var(--paper);
    color: var(--ink);
    border-color: var(--paper);
  }

  /* Hide "Shiko të gjitha" news CTA on mobile */
  /* News header: keep "Shiko të gjitha" visible on mobile, pin it right */
  #news .section-header {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
  }
  #news .section-header > .btn {
    font-size: 11px;
    padding: 7px 12px;
    align-self: center;
    white-space: nowrap;
  }

  /* Members — static vertical list on mobile (audit §9) */
  .members__tabs { display: none; }
  .members__viewport {
    overflow: visible;
    margin: 0;
    padding: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .members__grid {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    border: none;
    width: auto;
    gap: 8px;
    padding: 0;
    animation: none;
  }
  .member-cell {
    flex: 0 0 auto;
    width: 100%;
    border: 1px solid var(--line) !important;
    border-radius: 2px;
    min-height: 64px;
    padding: 14px 16px;
  }
  .member-cell--hidden { display: block; }
  @keyframes members-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* Contact */
  .contact-top { grid-template-columns: 1fr; gap: 24px; padding: 40px 0 28px; }
  .contact-top__tagline { font-size: 36px; }
  .contact-top__lede { font-size: 14px; margin-top: 12px; }
  .contact-channel { padding: 16px 18px; grid-template-columns: 38px 1fr auto; gap: 14px; }
  .contact-channel__icon { width: 38px; height: 38px; }
  .contact-channel__icon svg { width: 17px; height: 17px; }
  .contact-channel__value { font-size: 15px; }
  .contact-form { gap: 12px; }
  .form-row     { grid-template-columns: 1fr; }
  .form-textarea { min-height: 120px; resize: none; }
  .form-select { padding-right: 32px; background-size: 14px 9px; }
  .form-submit-row { flex-direction: column; align-items: stretch; }
  .form-submit-row .btn,
  .form-submit-row .contact-whatsapp { width: 100%; justify-content: center; }
  /* iOS Safari zooms on focus when inputs are <16px — bump to 16px on mobile */
  .form-input, .form-select, .form-textarea { font-size: 16px; }

  /* Larger hamburger tap target. Wider bars on mobile for visibility,
     framed with a thin border so it reads clearly against the nav. */
  .nav__hamburger {
    width: 48px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    margin-right: -6px;
  }
  .nav--open .nav__hamburger { background: var(--ink); border-color: var(--ink); }
  .nav--open .nav__hamburger span { background: var(--paper); }

  /* Footer — brand-top, Explore + Contact side-by-side (Angazhohuni hidden) */
  .footer-bottom { padding-top: 24px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand brand"
      "explore contact";
    gap: 20px 14px;
    padding-bottom: 20px;
  }
  .footer-grid > div:nth-child(1) { grid-area: brand; }
  .footer-grid > div:nth-child(2) { grid-area: explore; }
  .footer-grid > div:nth-child(3) { display: none; }
  .footer-grid > div:nth-child(4) {
    grid-area: contact;
    padding-top: 0;
    border-top: none;
  }
  .footer-brand__lockup { max-width: 370px; margin-bottom: 10px; }
  .footer-brand__desc { display: none; }
  .footer-col__links { gap: 7px; }
  .footer-grid > div:nth-child(3) .footer-col__links li:nth-child(n+3) { display: none; }
  .footer-copyright__reg { display: none; }
  .footer-contact__item a {
    color: rgba(255,255,255,0.7);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255,255,255,0.15);
  }

  /* Credentials */
  .credentials__inner { grid-template-columns: 1fr; gap: 14px; padding: 16px var(--gutter); }
  .credentials__grid  { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Footer breathing room (audit §13) */
  .footer-bottom { padding-top: 56px; }
  .footer-col__links li { padding: 4px 0; }
  .footer-copyright { padding: 20px 0; }

  /* Dark-section contrast bump (audit cross-cutting) */
  .tier__price-unit { color: rgba(255,255,255,0.55); }
  .tier__benefit { color: rgba(255,255,255,0.75); }
}

/* Top ticker — clipped under lang switcher on phones; hide it. (audit §1) */
@media (max-width: 640px) {
  .top-strip .ticker { display: none; }
  .top-strip__inner { justify-content: flex-end; }
}

@media (max-width: 599px) {
  /* Section padding — tighter still */
  .section         { padding: 32px 0; }
  .section--tight  { padding: 24px 0; }
  .section-header  { margin-bottom: 18px; }

  /* Hero compression */
  .hero { padding: 18px var(--gutter) 36px; }
  .hero__h1 { font-size: 40px; line-height: 1.12; margin-bottom: 16px; }
  .hero__h1 .hero__country { white-space: nowrap; }
  .hero__subhead { font-size: 15px; line-height: 1.5; margin-bottom: 18px; }
  .hero__buttons { gap: 10px; margin-bottom: 16px; }
  .hero__buttons .btn { font-size: 14px; padding: 14px 20px; min-height: 48px; }
  .hero__stats   {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .hero__stat {
    flex-direction: row;
    align-items: baseline;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .hero__stat:last-child { border-bottom: none; }
  .hero__stat-num { font-size: 30px; min-width: 60px; }
  .hero__stat-label { letter-spacing: 0.08em; font-size: 10px; line-height: 1.3; }
  .hero__stat-sublabel {
    display: block;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.04em;
    color: var(--ink-3);
    margin-top: 2px;
    text-transform: none;
  }

  /* Eyebrow tracking — uppercase walls are heavy on phones (audit §11) */
  .eyebrow,
  .section-header__eyebrow,
  .president-card__meta-item {
    letter-spacing: 0.08em;
    font-size: 10px;
  }

  /* (corridor diagram already hidden at the 879px breakpoint) */

  /* President card — keep large photo at top, tighter text below */
  .president-card { gap: 14px; }
  .president-card__photo { aspect-ratio: auto; height: 180px; }
  .president-card > div:last-child { padding: 0 16px 18px; }
  .president-card__name { font-size: 24px; }
  .president-card__bio  { font-size: 13px; line-height: 1.5; margin-bottom: 10px; }
  .president-card__title { margin-bottom: 14px; }

  /* Members — tighter cells */
  .member-cell      { padding: 12px; min-height: 60px; }
  .member-cell__name { font-size: 12px; }

  /* Credentials horizontal scroller (1-row swipe) */
  .credentials__grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 0 var(--gutter) 6px;
    margin: 0 calc(var(--gutter) * -1);
    scroll-padding-left: var(--gutter);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .credentials__grid::-webkit-scrollbar { display: none; }
  .credentials__partner {
    flex: 0 0 52%;
    scroll-snap-align: start;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: var(--paper);
  }
  .credentials__partner-name { font-size: 14px; }
  .credentials__hint {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
  }
  .credentials__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0,0,0,0.18);
    transition: background .2s, transform .2s, width .2s;
  }
  .credentials__dot--active {
    background: var(--ink);
    width: 18px;
    border-radius: 3px;
  }

  /* Contact + footer */
  .contact-top { padding: 32px 0 24px; gap: 18px; }
  .contact-top__tagline { font-size: 28px; }
  .contact-top__lede { font-size: 13.5px; }
  .footer-bottom { padding-top: 20px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand brand"
      "explore contact";
    gap: 18px 14px;
    padding-bottom: 18px;
  }
  .footer-brand__lockup { max-width: 300px; margin-bottom: 8px; }
  .footer-copyright { flex-direction: column; align-items: flex-start; gap: 4px; padding: 12px 0; }
  .footer-copyright__copy,
  .footer-copyright__reg,
  .footer-copyright__legal { font-size: 10px; }

  /* Carousel card sizing — let cards lean into mobile width more */
  .mission-card { flex-basis: 88%; }

  /* News mini-cards — smaller thumb on smallest screens */
  .news__grid > article { grid-template-columns: 72px 1fr; gap: 12px; padding: 8px; }
  .news__grid > article > .photo-placeholder { width: 72px; height: 72px; }
  .news__grid > article h3 { font-size: 13px !important; }

  /* Tier — even tighter on smallest screens */
  .tier { padding: 14px 14px; }
  .tier--featured { padding: 36px 14px 16px; }
  .tier__name { font-size: 20px; }
  .tier__price-amount { font-size: 20px; }
  .tier--featured .tier__price-amount { font-size: 26px; }
}

/* === 21. LEGAL PAGES (Impressum, Privacy) === */
.legal-page {
  padding: 64px 0 96px;
}
.legal-page__container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.legal-page__eyebrow { margin-bottom: 12px; }
.legal-page__h1 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 32px;
}
.legal-page__lede {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 48px;
}
.legal-page h2 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 40px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line-soft);
}
.legal-page h2:first-of-type { margin-top: 0; }
.legal-page p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 14px;
}
.legal-page__meta {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 8px 24px;
  margin: 12px 0 24px;
  padding: 16px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.legal-page__meta dt {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}
.legal-page__meta dd { font-size: 14px; color: var(--ink-2); }
.legal-page ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 14px;
}
.legal-page ul li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.legal-page a {
  color: var(--cobalt);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-page__placeholder {
  display: inline-block;
  padding: 1px 6px;
  background: #FFF3CD;
  color: #6C4A00;
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.9em;
}
.legal-page__back {
  display: inline-block;
  margin-top: 48px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cobalt);
}
@media (max-width: 599px) {
  .legal-page__meta { grid-template-columns: 1fr; gap: 2px 0; }
  .legal-page__meta dd { margin-bottom: 10px; }
}

/* Hero CTAs full-width on narrowest screens (audit §4) */
@media (max-width: 420px) {
  .hero__buttons { flex-direction: column; gap: 10px; }
  .hero__buttons .btn { width: 100%; justify-content: center; }
  .hero__buttons .btn--ghost {
    background: var(--paper);
    border-color: var(--ink-3);
  }
}

/* === 20. REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
  .corridor-line { animation: none !important; }
  html { scroll-behavior: auto; }
}
