/* ============================================
   GML Transconect — Stylesheet
   Aesthetic: Cold-chain logistics. Refined.
   Navy + Ice + Frost. Bricolage + DM Sans.
   ============================================ */

/* —— Reset & Base —— */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }

/* —— Tokens —— */
:root {
  /* Color */
  --ink:        #0a1929;
  --ink-soft:   #475569;
  --ink-mute:   #94a3b8;
  --paper:      #ffffff;
  --frost:      #f0f9ff;
  --frost-deep: #e0f2fe;
  --line:       #e2e8f0;
  --line-soft:  #f1f5f9;
  --ice:        #38bdf8;
  --ice-bright: #7dd3fc;
  --ice-deep:   #0284c7;
  --night:      #061625;
  --night-2:    #0a1929;
  --signal:     #10b981;

  /* Type */
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Spacing */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --section: clamp(64px, 10vw, 128px);

  /* Radii / Shadows */
  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(10, 25, 41, 0.04), 0 2px 8px rgba(10, 25, 41, 0.04);
  --shadow:    0 4px 12px rgba(10, 25, 41, 0.06), 0 12px 40px rgba(10, 25, 41, 0.08);
  --shadow-lg: 0 20px 60px rgba(10, 25, 41, 0.14);

  /* Motion */
  --ease: cubic-bezier(0.25, 1, 0.4, 1);
  --t-fast: 180ms;
  --t-base: 320ms;
  --t-slow: 600ms;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* —— Typography —— */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--ink);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 4.2vw, 3.25rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.0625rem; }

p { color: var(--ink-soft); }
.lead { font-size: clamp(1.0625rem, 1.4vw, 1.25rem); color: var(--ink-soft); line-height: 1.55; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ice-deep);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
}

/* —— Layout —— */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
section { padding-block: var(--section); }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head p { margin-top: 16px; }

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  transition: all var(--t-base) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--ink);
  color: var(--paper);
}
.btn--primary:hover {
  background: var(--ice-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(2, 132, 199, 0.5);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.btn--sm { padding: 10px 18px; font-size: 0.875rem; }
.btn .icon { width: 16px; height: 16px; transition: transform var(--t-base) var(--ease); }
.btn:hover .icon--arrow { transform: translateX(4px); }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base) var(--ease), background var(--t-base) var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
}
.brand { display: flex; align-items: center; gap: 8px; color: var(--ink); }
.brand svg { width: 210px; height: auto; }

.nav { display: none; gap: 4px; }
.nav a {
  padding: 10px 14px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 8px;
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.nav a:hover { color: var(--ink); background: var(--frost); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.lang-switch {
  display: flex;
  align-items: center;
  background: var(--frost);
  border-radius: 100px;
  padding: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
}
.lang-switch a {
  padding: 6px 12px;
  border-radius: 100px;
  color: var(--ink-soft);
  transition: all var(--t-fast) var(--ease);
}
.lang-switch a.is-active { background: var(--ink); color: var(--paper); }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.menu-toggle:hover { background: var(--frost); }
.menu-toggle svg { width: 20px; height: 20px; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 70;
  padding: 24px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateY(-100%);
  transition: transform var(--t-base) var(--ease);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu .mm-head {
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; margin-top: 16px; }
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu .mm-actions { margin-top: auto; padding-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }

@media (min-width: 960px) {
  .nav { display: flex; }
  .menu-toggle { display: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(64px, 8vw, 120px);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 80% -10%, rgba(56, 189, 248, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 0% 10%, rgba(125, 211, 252, 0.12), transparent 60%),
    var(--paper);
}

/* frost grain overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(56, 189, 248, 0.08), transparent 35%),
    radial-gradient(circle at 70% 80%, rgba(56, 189, 248, 0.06), transparent 40%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.hero-text { position: relative; z-index: 2; }
.hero h1 { margin-block: 20px 24px; }
.hero h1 .accent {
  background: linear-gradient(135deg, var(--ice) 0%, var(--ice-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 700;
  padding-right: 10px;
}
.hero .lead { max-width: 56ch; }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-trust .item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--ink-soft);
}
.hero-trust .item svg { width: 18px; height: 18px; color: var(--signal); flex-shrink: 0; }

/* Hero visual */
.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: var(--frost);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease);
}
.hero-visual:hover img { transform: scale(1.06); }

/* Telemetry overlay - decorative chip showing temperature monitoring */
.telemetry {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(10, 25, 41, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--paper);
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.telemetry .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 0 var(--signal);
  animation: pulse 1.6s var(--ease) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.telemetry .label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}
.telemetry .value {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 2px;
}

.temp-gauge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
}
.temp-gauge .label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.temp-gauge .value {
  font-family: var(--font-mono);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--ice-deep);
  line-height: 1;
  margin-top: 4px;
}

@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; }
}

/* ============================================
   SECTION: ABOUT + STATS
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.about-text h2 .accent { color: var(--ice-deep); }
.about-text p + p { margin-top: 16px; }

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  background: var(--paper);
  padding: 28px 24px;
}
.stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat .num .suffix {
  font-size: 0.5em;
  color: var(--ice-deep);
  font-weight: 600;
}
.stat .label {
  margin-top: 10px;
  font-size: 0.875rem;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}

@media (min-width: 720px) {
  .about-grid { grid-template-columns: 1.1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   SECTION: SERVICES
   ============================================ */
.services {
  background: var(--frost);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
}
.service::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ice), var(--ice-deep));
  transition: width var(--t-base) var(--ease);
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service:hover::after { width: 100%; }

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--frost-deep), var(--frost));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ice-deep);
  border: 1px solid var(--line);
}
.service-icon svg { width: 26px; height: 26px; }
.service h3 { font-size: 1.1875rem; }
.service p { font-size: 0.9375rem; }
.service ul { list-style: none; margin-top: auto; padding-top: 8px; display: flex; flex-direction: column; gap: 6px; }
.service ul li {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service ul li::before {
  content: '';
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--ice);
  flex-shrink: 0;
}

/* ============================================
   SECTION: FLEET
   ============================================ */
.fleet {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.fleet h2, .fleet h3 { color: var(--paper); }
.fleet p { color: rgba(255, 255, 255, 0.72); }
.fleet .eyebrow { color: var(--ice-bright); }
.fleet::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 60%; height: 120%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15), transparent 60%);
  pointer-events: none;
}

.fleet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  position: relative;
}
.fleet-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.fleet-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.fleet-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}
@media (min-width: 540px) { .fleet-features { grid-template-columns: repeat(2, 1fr); } }

.fleet-feat {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}
.fleet-feat h4 {
  color: var(--paper);
  font-size: 1rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fleet-feat h4 svg { width: 16px; height: 16px; color: var(--ice-bright); }
.fleet-feat p { font-size: 0.875rem; line-height: 1.55; }

@media (min-width: 960px) {
  .fleet-grid { grid-template-columns: 1.1fr 1fr; }
}

/* ============================================
   SECTION: WHY US
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px 40px;
}
@media (min-width: 720px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  position: relative;
}
.why-item .num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ice-deep);
  letter-spacing: 0.1em;
}
.why-item h3 { font-size: 1.125rem; line-height: 1.3; }
.why-item p { font-size: 0.9375rem; }

/* ============================================
   SECTION: CTA STRIP
   ============================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--night) 0%, var(--ink) 60%, #0c2342 100%);
  color: var(--paper);
  padding: clamp(48px, 8vw, 96px) var(--gutter);
  border-radius: var(--radius-lg);
  display: grid;
  gap: 24px;
  align-items: center;
  grid-template-columns: 1fr;
  position: relative;
  overflow: hidden;
  margin-block: 0;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 70%; height: 200%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.16), transparent 50%);
  pointer-events: none;
}
.cta-strip h2 { color: var(--paper); position: relative; z-index: 1; }
.cta-strip p { color: rgba(255, 255, 255, 0.72); margin-top: 12px; position: relative; z-index: 1; }
.cta-strip .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.cta-strip .btn--primary {
  background: var(--paper);
  color: var(--ink);
}
.cta-strip .btn--primary:hover { background: var(--ice-bright); color: var(--ink); }
.cta-strip .btn--ghost { color: var(--paper); border-color: rgba(255, 255, 255, 0.25); }
.cta-strip .btn--ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

@media (min-width: 880px) {
  .cta-strip { grid-template-columns: 1.4fr auto; gap: 48px; }
  .cta-strip .actions { justify-content: flex-end; }
}

.cta-wrap { padding-block: var(--section); }

/* ============================================
   SECTION: CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (min-width: 880px) { .contact-grid { grid-template-columns: 1fr 1.1fr; } }

.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-list { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item .ico {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--frost);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ice-deep);
  border: 1px solid var(--line);
}
.contact-item .ico svg { width: 20px; height: 20px; }
.contact-item .label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.contact-item .value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--ink);
  margin-top: 2px;
}
.contact-item .value a:hover { color: var(--ice-deep); }

/* Form */
.contact-form {
  display: none;
  background: var(--paper);
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 540px) { .form-row { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.9375rem;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--ice);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.18);
}
.field textarea { min-height: 120px; resize: vertical; font-family: inherit; }
.field--check { flex-direction: row; align-items: flex-start; gap: 10px; font-size: 0.8125rem; color: var(--ink-soft); }
.field--check input { width: auto; margin-top: 2px; }
.contact-form .btn { width: 100%; margin-top: 8px; }
.form-status { margin-top: 14px; font-size: 0.875rem; min-height: 20px; }
.form-status.ok { color: var(--signal); }
.form-status.err { color: #dc2626; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--night);
  color: rgba(255, 255, 255, 0.7);
  padding-block: clamp(56px, 7vw, 96px) 32px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; } }

.footer-brand { color: var(--paper); }
.footer-brand svg { width: 200px; height: auto; }
.footer-brand p { color: rgba(255, 255, 255, 0.6); margin-top: 16px; max-width: 36ch; font-size: 0.9375rem; }

.footer-col h5 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  transition: color var(--t-fast) var(--ease);
}
.footer-col a:hover { color: var(--ice-bright); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom .legal { display: flex; gap: 20px; }
.footer-bottom .legal a:hover { color: var(--paper); }

/* ============================================
   ANIMATIONS — entrance reveals
   ============================================ */
/* Reveals only hide once JS confirms it's running (.js-on on <html>),
   so users with JS disabled see everything immediately. */
.js-on .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
.js-on .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 80ms; }
.reveal.delay-2 { transition-delay: 160ms; }
.reveal.delay-3 { transition-delay: 240ms; }
.reveal.delay-4 { transition-delay: 320ms; }

/* Floating snowflakes (subtle decorative) */
.snowfield {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.snowfield .flake {
  position: absolute;
  top: -20px;
  color: var(--ice);
  opacity: 0;
  animation: drift linear infinite;
}
@keyframes drift {
  0%   { transform: translateY(0) rotate(0deg);   opacity: 0; }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}

/* Skip link for a11y */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 100;
}
.skip-link:focus { left: 12px; }

/* Selection */
::selection { background: var(--ice); color: var(--ink); }
