/* ============================================================
   FLYER SOCIETY — STYLES v2
   ============================================================ */

/* ── TOKENS ── */
:root {
  --coal:        #080A0C;
  --dark:        #0F1218;
  --dark-2:      #161C24;
  --mid:         #1E2532;
  --paper:       #FFFFFF;
  --gray-50:     #F7F8FA;
  --gray-100:    #EEF0F4;
  --gray-200:    #DDE1E8;
  --ink:         #0D0F12;
  --ink-muted:   #5A6070;

  --cyan:        #048EAC;
  --cyan-soft:   rgba(4, 142, 172, 0.14);
  --amber:       #C97A08;
  --amber-soft:  rgba(201, 122, 8, 0.14);
  --white:       #FFFFFF;
  --w10:         rgba(255,255,255,0.10);
  --w20:         rgba(255,255,255,0.20);
  --w40:         rgba(255,255,255,0.40);
  --w60:         rgba(255,255,255,0.60);
  --w80:         rgba(255,255,255,0.80);

  --container:   min(1440px, calc(100vw - clamp(2rem, 5vw, 6rem)));
  --r:           0.75rem;
  --r-lg:        1.25rem;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io:     cubic-bezier(0.65, 0, 0.35, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--coal); }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
::selection { background: rgba(4,142,172,0.2); }

/* ── PAGE SHELL ── */
.page {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.page.is-ready { opacity: 1; transform: translateY(0); }

/* ── CONTAINER ── */
.container { width: var(--container); margin: 0 auto; }

/* ── SECTION ── */
.section { padding: clamp(5rem, 10vw, 9rem) 0; }
.section--dark  { background: var(--dark);  color: var(--white); }
.section--light { background: var(--paper); color: var(--ink);   }

/* ── SECTION TAG ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
}
.section-tag::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--cyan);
  flex-shrink: 0;
}
.section-tag--light { color: var(--w60); }

/* ── SECTION HEADER ── */
.section-header { margin-bottom: clamp(3rem, 6vw, 5.5rem); }
.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-top: 0.4rem;
}
.section--dark .section-header h2 { color: var(--white); }

.section-header--split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: flex-end;
}
.section-header--split > p {
  max-width: 36rem;
  line-height: 1.8;
  padding-bottom: 0.5rem;
  color: var(--ink-muted);
}
.section--dark .section-header--split > p { color: var(--w60); }

/* ── PHOTO SLOTS ── */
.photo-slot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #14181F;
  border: 2px dashed rgba(255,255,255,0.12);
}
.photo-slot::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
/* light variant */
.photo-slot--light {
  background: var(--gray-100);
  border-color: rgba(0,0,0,0.1);
}
.photo-slot--light::before {
  background:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
}
/* cyan tint */
.photo-slot--cyan {
  background: rgba(4,142,172,0.06);
  border-color: rgba(4,142,172,0.25);
}
/* amber tint */
.photo-slot--amber {
  background: rgba(201,122,8,0.06);
  border-color: rgba(201,122,8,0.25);
}
/* dark always-dark */
.photo-slot--dark {
  background: #0D1017;
  border-color: rgba(255,255,255,0.08);
}

.photo-slot__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem;
  text-align: center;
  color: rgba(255,255,255,0.28);
  pointer-events: none;
}
.photo-slot--light .photo-slot__body,
.photo-slot--process .photo-slot__body  { color: rgba(0,0,0,0.22); }
.photo-slot--cyan .photo-slot__body     { color: rgba(4,142,172,0.55); }
.photo-slot--amber .photo-slot__body    { color: rgba(201,122,8,0.55); }

.photo-slot__body p {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.4;
}
.photo-slot__body span {
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  opacity: 0.65;
}

/* slot sizes */
.photo-slot--hero   { position: absolute; inset: 0; border: none; }
.photo-slot--hero .photo-slot__body {
  position: absolute; inset: 0;
  align-items: center; justify-content: center;
}
.photo-slot--wide   { width: 100%; height: clamp(280px, 38vw, 520px); }
.photo-slot--card   { height: clamp(200px, 26vw, 320px); border: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
.photo-slot--card.photo-slot--light { border-bottom-color: rgba(0,0,0,0.06); }
.photo-slot--gallery { width: 100%; border-radius: var(--r); border: 1.5px dashed rgba(0,0,0,0.1); background: var(--gray-100); }
.photo-slot--gallery.photo-slot--dark { background: #0D1017; border-color: rgba(255,255,255,0.08); }
.photo-slot--gallery.photo-slot--cyan { background: rgba(4,142,172,0.06); border-color: rgba(4,142,172,0.22); }
.photo-slot--gallery.photo-slot--amber { background: rgba(201,122,8,0.06); border-color: rgba(201,122,8,0.22); }
.photo-slot--adbath { width: 100%; height: clamp(380px, 52vw, 640px); border-radius: var(--r-lg); }
.photo-slot--map    { width: 100%; height: clamp(300px, 40vw, 500px); border-radius: var(--r-lg); }
.photo-slot--process { width: 100%; height: clamp(160px, 20vw, 260px); border-radius: var(--r); }

/* hover lift on gallery tiles */
.gtile:hover .photo-slot--gallery {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 1.5rem;
  height: 3.25rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.3s var(--ease), background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--cyan);
  color: var(--white);
  border-color: var(--cyan);
  box-shadow: 0 8px 24px rgba(4,142,172,0.28);
}
.btn--primary:hover {
  background: #059BBB;
  box-shadow: 0 14px 36px rgba(4,142,172,0.38);
}
.btn--outline-light {
  border-color: rgba(255,255,255,0.22);
  color: var(--white);
  background: rgba(255,255,255,0.04);
}
.btn--outline-light:hover { border-color: rgba(255,255,255,0.46); background: rgba(255,255,255,0.08); }
.btn--ghost-white {
  border-color: rgba(255,255,255,0.18);
  color: var(--white);
  background: transparent;
}
.btn--ghost-white:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.36); }
.btn--full { width: 100%; }

/* ── LOADER ── */
.loader {
  position: fixed; inset: 0; z-index: 300;
  background: var(--coal);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.75rem;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}
.loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  letter-spacing: 0.32em;
  color: var(--white);
  text-align: center;
  line-height: 1.05;
}
.loader__bar {
  width: min(200px, 45vw);
  height: 1.5px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}
.loader__bar span {
  display: block; width: 100%; height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--amber));
  transform: translateX(-100%);
  animation: bar-fill 1.5s var(--ease-io) forwards;
}
.loader__city {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--w40);
}

/* ── NAV ── */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 100;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: var(--container);
  margin: 0.75rem auto 0;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--r);
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    backdrop-filter 0.4s ease,
    box-shadow 0.4s ease,
    margin-top 0.4s ease,
    border-radius 0.4s ease;
}
.nav__inner.is-scrolled {
  background: rgba(8,10,12,0.9);
  border-color: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
  margin-top: 0;
  border-radius: 0;
}
.nav__logo { display: flex; align-items: center; }
.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  line-height: 1.05;
  color: var(--white);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--w60);
  position: relative;
  transition: color 0.25s ease;
}
.nav__links a:hover { color: var(--white); }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -0.3rem;
  width: 100%; height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__actions { display: flex; align-items: center; gap: 1rem; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 0.35rem;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { transform: translateY(-6.5px) rotate(-45deg); }
.nav__drawer {
  display: none;
  flex-direction: column;
  width: var(--container);
  margin: 0.5rem auto 0;
  background: rgba(8,10,12,0.96);
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}
.nav__drawer.is-open { max-height: 380px; }
.nav__drawer a {
  display: block;
  padding: 1rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--w70, rgba(255,255,255,0.7));
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.22s ease, background 0.22s ease;
}
.nav__drawer a:hover { color: var(--white); background: rgba(255,255,255,0.04); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--coal);
  overflow: hidden;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(8,10,12,0.97) 0%,
    rgba(8,10,12,0.62) 38%,
    rgba(8,10,12,0.15) 100%
  );
  pointer-events: none;
}
.hero__content {
  position: relative; z-index: 2;
  padding-top: 9rem;
  padding-bottom: 0;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--w60);
  margin-bottom: 1.75rem;
}
.pulse-dot {
  display: block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2.5s ease infinite;
  flex-shrink: 0;
}
.hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5.5rem, 17vw, 15rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 2rem;
  max-width: 11ch;
}
.hero__title em {
  color: var(--cyan);
  font-style: normal;
}
.hero__sub {
  max-width: 46rem;
  color: var(--w60);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-bottom: 5rem;
}

/* hero stats bar */
.hero__stats {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.hero__stat {
  padding: 1.75rem 1.5rem;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.hero__stat:first-child { border-left: none; }
.hero__stat strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  color: var(--white);
}
.hero__stat span {
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--w40);
  margin-top: 0.5rem;
}

/* hero scroll hint */
.hero__scroll-hint {
  position: absolute;
  right: clamp(1.5rem, 4vw, 4rem);
  bottom: 3.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--w40);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  display: block;
  width: 1px; height: 50px;
  background: linear-gradient(var(--cyan), transparent);
  animation: scroll-line 2.2s ease-in-out infinite;
}

/* ── TICKER ── */
.ticker {
  overflow: hidden;
  background: var(--cyan);
  padding: 0.85rem 0;
  white-space: nowrap;
}
.ticker__track {
  display: inline-flex;
  gap: 2rem;
  animation: ticker-roll 28s linear infinite;
  padding-right: 2rem;
}
.ticker__track span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}
.ticker__sep { opacity: 0.45; }
.ticker:hover .ticker__track { animation-play-state: paused; }

/* ── MANIFESTO ── */
.manifesto__grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: flex-start;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.manifesto__display {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 11vw, 11rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--ink);
  position: sticky;
  top: 8rem;
}
.manifesto__body {
  display: grid;
  gap: 1.4rem;
  padding-top: 0.5rem;
}
.manifesto__lead {
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.5;
  color: var(--ink);
}
.manifesto__body > p {
  color: var(--ink-muted);
  line-height: 1.9;
  font-size: 1.02rem;
}
.manifesto__quote {
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--cyan);
  background: var(--gray-100);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.75;
}

/* ── ECOSYSTEM ── */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.sol-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  transition: transform 0.38s var(--ease), box-shadow 0.38s var(--ease);
}
.sol-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 72px rgba(0,0,0,0.45);
}
.sol-card--accent {
  border-color: rgba(4,142,172,0.18);
  background: linear-gradient(180deg, rgba(4,142,172,0.04) 0%, var(--dark-2) 40%);
}
.sol-card--amber {
  border-color: rgba(201,122,8,0.18);
  background: linear-gradient(180deg, rgba(201,122,8,0.04) 0%, var(--dark-2) 40%);
}
.sol-card__body {
  padding: 1.75rem 1.75rem 2.1rem;
  display: grid;
  gap: 0.9rem;
}
.sol-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.sol-card__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  color: var(--cyan);
}
.sol-card--amber .sol-card__num { color: var(--amber); }
.sol-card__type {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--w40);
}
.sol-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  color: var(--white);
}
.sol-card p {
  font-size: 0.88rem;
  color: var(--w60);
  line-height: 1.75;
}
.sol-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.35rem;
}
.sol-card__tags span {
  padding: 0.42rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.09);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--w50, rgba(255,255,255,0.5));
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.gtile { margin: 0; }
.gtile--a { grid-column: span 7; }
.gtile--b { grid-column: span 5; }
.gtile--c { grid-column: span 4; }
.gtile--d { grid-column: span 3; }
.gtile--e { grid-column: span 5; }
.gtile--f { grid-column: span 4; }

/* tile heights */
.gtile--a .photo-slot--gallery { height: clamp(240px, 28vw, 400px); }
.gtile--b .photo-slot--gallery { height: clamp(300px, 38vw, 500px); }
.gtile--c .photo-slot--gallery { height: clamp(200px, 22vw, 320px); }
.gtile--d .photo-slot--gallery { height: clamp(260px, 32vw, 440px); }
.gtile--e .photo-slot--gallery { height: clamp(180px, 20vw, 290px); }
.gtile--f .photo-slot--gallery { height: clamp(200px, 22vw, 320px); }

.gtile figcaption {
  display: grid; gap: 0.35rem;
  padding-top: 0.8rem;
}
.gtile figcaption strong {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gtile figcaption p {
  font-size: 0.83rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

/* ── WHY ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}
.why-card {
  padding: 2.25rem 1.75rem;
  background: var(--dark);
  transition: background 0.28s ease;
}
.why-card:hover { background: var(--dark-2); }
.why-card__num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  color: var(--cyan);
  margin-bottom: 1.25rem;
}
.why-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  letter-spacing: 0.04em;
  line-height: 0.94;
  color: var(--white);
  margin-bottom: 1rem;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--w60);
  line-height: 1.75;
}

/* ── ADBATH ── */
.adbath-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: flex-start;
}
.adbath__media { position: relative; }
.adbath__badge {
  position: absolute;
  right: -1.25rem;
  bottom: 2rem;
  max-width: 210px;
  padding: 1.2rem 1.4rem;
  background: var(--cyan);
  color: var(--white);
  box-shadow: 0 20px 50px rgba(4,142,172,0.32);
}
.adbath__badge span {
  display: block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.5rem;
}
.adbath__badge p { font-size: 0.82rem; line-height: 1.6; opacity: 0.9; }
.adbath__copy { padding-top: 2rem; display: grid; gap: 1.4rem; }
.adbath__copy h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.adbath__copy p { color: var(--ink-muted); line-height: 1.85; font-size: 1rem; }
.adbath-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0.25rem 0;
}
.adbath-fact {
  padding: 1.15rem;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
}
.adbath-fact strong {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  color: var(--ink);
}
.adbath-fact span { font-size: 0.7rem; color: var(--ink-muted); line-height: 1.5; }

/* ── COVERAGE ── */
.coverage-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2.5rem, 5vw, 5rem);
}
.coverage__map-area { display: grid; gap: 1.5rem; }
.coverage__zones { display: grid; gap: 0.75rem; }
.zone-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.025);
  transition: background 0.22s ease;
}
.zone-point:hover { background: rgba(255,255,255,0.05); }
.zone-point__dot {
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  margin-top: 0.44rem;
  box-shadow: 0 0 0 3px rgba(4,142,172,0.2);
}
.zone-point strong {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.zone-point p { font-size: 0.78rem; color: var(--w60); line-height: 1.5; }
.coverage__notes { display: grid; gap: 1.25rem; align-content: start; }
.coverage-note {
  padding: 1.35rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.025);
}
.coverage-note span {
  display: block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.7rem;
}
.coverage-note p { font-size: 0.88rem; color: var(--w60); line-height: 1.75; }

/* ── PROCESS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
}
.process-step { display: grid; gap: 1.1rem; }
.process-step__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--cyan);
  opacity: 0.22;
}
.process-step h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  line-height: 0.94;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.process-step p { font-size: 0.88rem; color: var(--ink-muted); line-height: 1.75; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: flex-start;
}
.contact__copy { display: grid; gap: 1.5rem; }
.contact__copy h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 7.5vw, 8rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--white);
}
.contact__copy > p { color: var(--w60); line-height: 1.85; font-size: 1rem; }
.contact__channels { display: grid; gap: 0.7rem; }
.contact-channel {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--w80);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.22s ease;
}
.contact-channel:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.18); }
.contact-channel__arrow { margin-left: auto; opacity: 0.4; }
.contact__closing {
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid; gap: 0.25rem;
}
.contact__closing p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--w60);
}

/* contact form */
.contact-form {
  display: grid;
  gap: 1.1rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field {
  display: grid;
  gap: 0.55rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--w40);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  transition: border-color 0.25s ease, background 0.25s ease;
  resize: vertical;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(4,142,172,0.06);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.22); }
.form-field select option { background: var(--dark-2); color: var(--white); }
.form-status {
  font-size: 0.7rem;
  color: var(--w40);
  line-height: 1.6;
  text-align: center;
  transition: color 0.3s ease;
}

/* ── FOOTER ── */
.footer {
  background: var(--coal);
  color: var(--white);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2.5rem, 5vw, 6rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}
.footer__brand { display: grid; gap: 1rem; align-content: start; }
.footer__logo { font-size: 1rem; letter-spacing: 0.32em; color: var(--white); }
.footer__brand > p {
  font-size: 0.84rem;
  color: var(--w60);
  line-height: 1.7;
}
.footer__ecosystem { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.25rem; }
.footer__ecosystem span {
  padding: 0.38rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--w60);
}
.footer__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer__col { display: grid; gap: 0.85rem; align-content: start; }
.footer__col strong {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--w40);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__col a { font-size: 0.8rem; color: var(--w60); transition: color 0.22s ease; }
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: 0.7rem; color: rgba(255,255,255,0.28); }

/* ── REVEAL ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ── ANIMATIONS ── */
@keyframes bar-fill {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.78); }
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  48%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  52%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
@keyframes ticker-roll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1140px) {
  .solutions-grid      { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .adbath-grid         { grid-template-columns: 1fr; }
  .adbath__badge       { position: static; max-width: 100%; margin-top: 1rem; }
  .coverage-layout     { grid-template-columns: 1fr; }
  .contact-grid        { grid-template-columns: 1fr; }
  .manifesto__grid     { grid-template-columns: 1fr; }
  .manifesto__display  { position: static; font-size: clamp(4rem, 13vw, 9rem); }
  .footer__top         { grid-template-columns: 1fr; }
  .section-header--split { grid-template-columns: 1fr; }
  .hero__stats         { grid-template-columns: repeat(2, 1fr); }
  .hero__stat:nth-child(3) { border-left: none; }
}

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle, .nav__drawer { display: flex; }

  .why-grid            { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid        { grid-template-columns: repeat(2, 1fr); }
  .gtile--a, .gtile--b, .gtile--c,
  .gtile--d, .gtile--e, .gtile--f { grid-column: span 1; }
  .gtile--a .photo-slot--gallery,
  .gtile--b .photo-slot--gallery,
  .gtile--d .photo-slot--gallery  { height: 260px; }
  .gtile--c .photo-slot--gallery,
  .gtile--e .photo-slot--gallery,
  .gtile--f .photo-slot--gallery  { height: 220px; }

  .process-steps       { grid-template-columns: 1fr; max-width: 480px; }
  .footer__nav         { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 680px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .why-grid    { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gtile--a, .gtile--b, .gtile--c,
  .gtile--d, .gtile--e, .gtile--f { grid-column: span 1; }
  .gtile--a .photo-slot--gallery,
  .gtile--b .photo-slot--gallery,
  .gtile--d .photo-slot--gallery  { height: 240px; }
  .adbath-facts  { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .footer__nav   { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__scroll-hint { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal], .page { opacity: 1 !important; transform: none !important; }
}
