/* =============================================
   Adelsen Lojistik — main stylesheet
   Aesthetic: ink-black + warm paper + copper accent
   Type: Space Grotesk (display) / Inter (body)
   ============================================= */

:root {
  /* palette */
  --ink: #0B0B0C;
  --ink-2: #141417;
  --ink-3: #1F1F23;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.22);
  --paper: #F4F2EC;
  --paper-2: #E9E5DA;
  --muted: #8A8A90;
  --muted-2: #B5B3AC;

  /* accent: warm copper (oklch tuned) */
  --accent: oklch(0.72 0.16 50);
  --accent-2: oklch(0.62 0.18 40);
  --accent-soft: oklch(0.72 0.16 50 / 0.14);

  /* type */
  --font-display: "Archivo", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* rhythm */
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 4px;
  --radius-lg: 8px;

  /* motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color .2s var(--ease), opacity .2s var(--ease);
}

button { font: inherit; cursor: pointer; }

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

/* =================== Layout shell =================== */

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

.section {
  position: relative;
  padding: clamp(80px, 11vw, 160px) 0;
  border-top: 1px solid var(--line);
}

.section--paper { background: var(--paper); color: var(--ink); border-top-color: rgba(0,0,0,.08); }
.section--paper .eyebrow span { color: rgba(0,0,0,.55); }
.section--paper .rule { background: rgba(0,0,0,.12); }
.section--paper .muted { color: rgba(0,0,0,.6); }

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: clamp(48px, 6vw, 88px);
}
@media (min-width: 880px) {
  .section-head { grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: end; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 16px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.h-display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(38px, 5.6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
.h-section {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.h-card {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
}

.lead {
  font-size: clamp(16px, 1.25vw, 19px);
  color: var(--muted-2);
  max-width: 56ch;
  line-height: 1.55;
}
.section--paper .lead { color: rgba(0,0,0,.65); }

/* =================== Header =================== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(11, 11, 12, 0.78);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: var(--line);
}
.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 18px;
}
.brand__mark {
  width: 28px; height: 28px;
  border-radius: 4px;
  background: var(--accent);
  display: grid;
  place-items: center;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.brand__wordmark { line-height: 1; }
.brand__wordmark small {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 4px;
}

.nav {
  display: none;
  align-items: center;
  gap: 30px;
}
@media (min-width: 980px) { .nav { display: flex; } }
.nav a {
  font-size: 14px;
  color: var(--paper);
  opacity: 0.78;
  position: relative;
  padding: 4px 0;
}
.nav a:hover { opacity: 1; }
.nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -4px;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* language switcher */
.lang {
  position: relative;
}
.lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 12px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.lang__btn:hover { border-color: var(--accent); }
.lang__btn svg { width: 10px; height: 10px; opacity: .7; transition: transform .2s var(--ease); }
.lang.is-open .lang__btn svg { transform: rotate(180deg); }
.lang__menu {
  position: absolute;
  right: 0; top: calc(100% + 8px);
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  min-width: 160px;
  padding: 6px;
  display: none;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,.6);
}
.lang.is-open .lang__menu { display: block; }
.lang__menu button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  color: var(--paper);
  border-radius: 4px;
  font-size: 13px;
  text-align: left;
}
.lang__menu button:hover { background: rgba(255,255,255,.05); }
.lang__menu button[aria-current="true"] { color: var(--accent); }
.lang__menu small {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.005em;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn--sm { height: 38px; padding: 0 16px; font-size: 13px; }
.btn--primary { background: var(--accent); color: var(--ink); }
.btn--primary:hover { background: oklch(0.78 0.16 50); }
.btn--ghost { background: transparent; color: var(--paper); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--invert { background: var(--ink); color: var(--paper); }
.btn--invert:hover { background: var(--ink-3); }
.btn--paper-ghost { background: transparent; color: var(--ink); border-color: rgba(0,0,0,.2); }
.btn--paper-ghost:hover { border-color: var(--ink); }
.btn .arrow {
  width: 18px; height: 10px;
  display: inline-block;
  flex: 0 0 18px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 10'><path d='M0 5h16M11 1l5 4-5 4' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='square'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 10'><path d='M0 5h16M11 1l5 4-5 4' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='square'/></svg>") center/contain no-repeat;
  transition: transform .25s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

/* mobile menu trigger */
.menu-trigger {
  display: inline-flex;
  width: 40px; height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--paper);
  align-items: center;
  justify-content: center;
  padding: 0;
}
@media (min-width: 980px) { .menu-trigger { display: none; } }
.menu-trigger svg { width: 16px; height: 16px; }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--ink);
  padding: 88px var(--gutter) 32px;
  transform: translateY(-100%);
  transition: transform .45s var(--ease);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  padding: 0; margin: 0;
}
.mobile-nav__list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--line);
}
.mobile-nav__list a::after {
  content: attr(data-n);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.16em;
}
.mobile-nav__close {
  position: absolute;
  top: 22px; right: var(--gutter);
  width: 40px; height: 40px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--paper);
  display: grid; place-items: center;
}

/* =================== Hero =================== */

.hero {
  position: relative;
  padding-top: 152px;
  padding-bottom: clamp(72px, 9vw, 132px);
  overflow: hidden;
  border-top: 0;
  background: var(--ink);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 100%);
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(closest-side, var(--accent-soft), transparent 70%);
  top: -200px; right: -200px;
  filter: blur(20px);
  pointer-events: none;
  animation: float 18s ease-in-out infinite alternate;
}
@keyframes float {
  0% { transform: translate(0,0); }
  100% { transform: translate(-40px, 30px); }
}

.hero__inner {
  position: relative;
  display: grid;
  gap: clamp(48px, 6vw, 80px);
  grid-template-columns: 1fr;
}
@media (min-width: 1080px) {
  .hero__inner { grid-template-columns: 1.4fr 1fr; align-items: end; }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px, 6.4vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 12px 0 28px;
  text-wrap: balance;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
}
.hero__sub {
  font-size: clamp(16px, 1.3vw, 20px);
  color: var(--muted-2);
  max-width: 56ch;
  line-height: 1.55;
  margin: 0 0 36px;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__sidekick {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  overflow: hidden;
}
.hero__sidekick::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(135deg, transparent 0 49%, rgba(255,255,255,.04) 49% 51%, transparent 51% 100%);
  background-size: 16px 16px;
  opacity: .8;
  pointer-events: none;
}
.hero__sidekick-head {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 24px;
}
.hero__sidekick-head .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); animation: pulse 2s var(--ease) infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-soft); }
  50% { box-shadow: 0 0 0 8px transparent; }
}

.lane-list { list-style: none; padding: 0; margin: 0; }
.lane-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.lane-list li:last-child { border-bottom: 0; }
.lane-list .from, .lane-list .to { color: var(--paper); }
.lane-list .dash { color: var(--muted); }
.lane-list .eta { color: var(--accent); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }

.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 56px;
  color: var(--muted-2);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
}
.hero__scroll .line {
  width: 40px; height: 1px; background: var(--accent);
  position: relative; overflow: hidden;
}
.hero__scroll .line::after {
  content: ""; position: absolute; inset: 0;
  background: var(--ink);
  animation: scroll-line 2s var(--ease) infinite;
}
@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* =================== Marquee =================== */

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  background: var(--ink);
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 56px;
  animation: marquee 38s linear infinite;
  padding-right: 56px;
}
.marquee__track span {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 36px);
  letter-spacing: -0.01em;
  color: var(--paper);
}
.marquee__track .sep {
  width: 10px; height: 10px;
  margin-top: 14px;
  background: var(--accent);
  transform: rotate(45deg);
  flex: 0 0 10px;
  font-size: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =================== Stats =================== */

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 880px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: var(--ink);
  padding: 32px 24px;
}
.stat__k {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--paper);
  margin-bottom: 16px;
}
.stat__v {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* =================== Services =================== */

.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(0,0,0,.1);
  border: 1px solid rgba(0,0,0,.1);
}
@media (min-width: 1080px) {
  .services { grid-template-columns: repeat(3, 1fr); }
}
.service {
  background: var(--paper);
  padding: clamp(32px, 3.5vw, 48px);
  position: relative;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.service__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0,0,0,.45);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.service__tag::after {
  content: "";
  flex: 1; height: 1px;
  background: rgba(0,0,0,.15);
  margin-left: 8px;
}

.service__icon {
  width: 64px; height: 64px;
  margin-bottom: 24px;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 6px;
  display: grid; place-items: center;
  color: var(--ink);
  background: transparent;
  transition: border-color .35s var(--ease), color .35s var(--ease);
}
.service__icon svg { width: 32px; height: 32px; }

.service__name { margin-bottom: 12px; color: var(--ink); }
.service__short { color: rgba(0,0,0,.6); margin: 0 0 24px; }
.service__list {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.service__list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--ink);
  line-height: 1.55;
}
.service__list li::before {
  content: ""; width: 14px; height: 14px;
  flex: 0 0 14px;
  margin-top: 4px;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M2 7l3.5 3.5L12 4' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='square' stroke-linejoin='miter'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M2 7l3.5 3.5L12 4' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='square' stroke-linejoin='miter'/></svg>") center/contain no-repeat;
}
.service:hover { background: var(--ink); color: var(--paper); }
.service:hover .service__tag { color: var(--muted-2); }
.service:hover .service__tag::after { background: var(--line); }
.service:hover .service__name { color: var(--paper); }
.service:hover .service__short { color: var(--muted-2); }
.service:hover .service__list li { color: var(--paper); }
.service:hover .service__icon { border-color: var(--line-strong); color: var(--paper); }

.services-foot {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* =================== About / Pillars =================== */

.about-body {
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.4;
  color: var(--paper);
  max-width: 36ch;
  letter-spacing: -0.005em;
  margin: 0 0 48px;
  text-wrap: pretty;
}
.about-body em { font-style: normal; color: var(--accent); }

.pillars {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .pillars { grid-template-columns: repeat(4, 1fr); } }
.pillar {
  background: var(--ink);
  padding: 36px 28px;
}
.pillar__n {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.pillar__t {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.pillar__d {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted-2);
  margin: 0;
}

/* =================== Coverage =================== */

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1080px) {
  .coverage-grid { grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: stretch; }
}

.regions {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.region {
  background: var(--ink);
  padding: 26px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: background .25s var(--ease);
}
.region:hover { background: var(--ink-2); }
.region__code {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--accent);
  min-width: 56px;
}
.region__body { flex: 1; }
.region__name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}
.region__desc {
  font-size: 13px;
  color: var(--muted-2);
  margin: 0;
}

/* Map */
.map-wrap {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent);
  min-height: 360px;
  display: grid; place-items: center;
  overflow: hidden;
}
.map-wrap::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 14px 14px;
  background-position: 0 0;
  opacity: .9;
  mask-image: radial-gradient(ellipse at 55% 50%, #000 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at 55% 50%, #000 50%, transparent 100%);
  pointer-events: none;
}
.map-wrap svg { position: relative; max-width: 100%; height: auto; }
.map-label {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 4px 10px;
}
.map-label--accent { color: var(--accent); border-color: var(--accent); }

/* =================== Process =================== */

.process {
  display: grid;
  gap: 1px;
  background: rgba(0,0,0,.1);
  border: 1px solid rgba(0,0,0,.1);
}
@media (min-width: 720px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .process { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: var(--paper);
  padding: 36px 32px;
  position: relative;
  min-height: 220px;
  display: flex; flex-direction: column;
}
.step__n {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 24px;
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.step__n::after {
  content: "";
  width: 8px; height: 8px;
  background: var(--accent);
  display: inline-block;
  border-radius: 50%;
  margin-bottom: 12px;
}
.step__t {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 10px;
}
.step__d {
  font-size: 14px;
  color: rgba(0,0,0,.6);
  margin: 0;
  line-height: 1.6;
}

/* =================== Contact =================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 980px) {
  .contact-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; }
}

.contact-info {
  display: flex; flex-direction: column; gap: 28px;
}
.info-block {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.info-block__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 10px;
}
.info-block__value {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.info-block__value a:hover { color: var(--accent); }

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--paper);
  padding: 12px 0;
  font: inherit;
  font-size: 15px;
  border-radius: 0;
  transition: border-color .2s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-bottom-color: var(--accent);
}
.field textarea {
  min-height: 110px;
  resize: vertical;
  font-family: inherit;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%23F4F2EC' stroke-width='1.4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 12px 8px;
  padding-right: 24px;
}
.field select option { background: var(--ink-2); color: var(--paper); }

.form-foot {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.form-status {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.form-status.is-ok { color: var(--accent); }
.form-status.is-err { color: #E5685A; }

/* =================== Footer =================== */

.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
}
@media (min-width: 1080px) {
  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 48px 32px;
  }
  /* Brand column gets a touch more breathing room */
  .footer-col:first-child { padding-right: 16px; }
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14px; }
.footer-col li a:hover { color: var(--accent); }
.footer-tagline {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--paper);
  max-width: 32ch;
  margin: 18px 0 0;
  line-height: 1.3;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =================== Reveal animations =================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: transform, opacity;
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="100"] { transition-delay: .1s; }
.reveal[data-d="200"] { transition-delay: .2s; }
.reveal[data-d="300"] { transition-delay: .3s; }
.reveal[data-d="400"] { transition-delay: .4s; }
.reveal[data-d="500"] { transition-delay: .5s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =================== Small fixes =================== */

.muted { color: var(--muted-2); }
.rule {
  height: 1px;
  background: var(--line);
  width: 100%;
  margin: 0;
}

/* container truck silhouette — pure CSS placeholder (used in hero) */
.truck-svg { width: 100%; height: auto; opacity: .9; }
.truck-svg .line { stroke: var(--paper); fill: none; stroke-width: 1.2; }
.truck-svg .accent { stroke: var(--accent); }
.truck-svg .fill { fill: var(--ink-2); stroke: var(--paper); stroke-width: 1.2; }

/* =================== Accessibility =================== */

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--ink-3); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #2a2a30; }


/* =================================================
   v2 additions — logo slot, image slots, polished
   coverage, richer animations
   ================================================= */

/* When real image loads in, fade the placeholder decorations */
.img-slot.has-image .img-slot__caption { display: none; }
.img-slot.has-image .img-slot__corner { opacity: 0.85; }

/* Brand / logo --------------------------------------------- */
.brand {
  gap: 14px;
  display: inline-flex;
  align-items: center;
}
img.brand__logo {
  display: block;
  height: 52px;
  width: auto;
  max-width: 64px;
  object-fit: contain;
  /* Logo is black on transparent; invert it to white for dark backgrounds (header + footer) */
  filter: invert(1) brightness(1.05);
  transition: filter .2s var(--ease);
}
.brand--footer img.brand__logo { height: 64px; max-width: 84px; }
@media (max-width: 720px) {
  img.brand__logo { height: 44px; max-width: 56px; }
}

/* Image slot (placeholder until user drops a real image) -----
   Image lives behind. When image fails to load (opacity:0 via onerror),
   the striped placeholder + caption show through. When it loads,
   image covers the placeholder. */
.img-slot {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: #161618;
  background-image:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,0.02) 0 12px,
      rgba(255,255,255,0.05) 12px 13px);
  border: 1px solid var(--line);
  isolation: isolate;
}
.img-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  transition: opacity .4s var(--ease), transform 1.2s var(--ease);
}
.img-slot__corner {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted-2);
  background: rgba(11,11,12,0.6);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
}
.img-slot__corner span:last-child { color: var(--accent); }
.img-slot__caption {
  position: absolute;
  left: 0; right: 0; bottom: 22px;
  z-index: 1; /* below img, only visible when img is missing */
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--muted-2);
  text-transform: uppercase;
  line-height: 1.6;
}
.img-slot__caption small {
  font-size: 9px;
  opacity: 0.7;
  letter-spacing: 0.2em;
}

/* hero variant */
.img-slot--hero {
  aspect-ratio: 4 / 5;
  min-height: 480px;
}
.img-slot--hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(11,11,12,0.55));
  pointer-events: none;
}
@media (max-width: 1079px) {
  .img-slot--hero { aspect-ratio: 16 / 11; min-height: 360px; }
}

/* services variant — dark thumb inside light card */
.img-slot--service {
  aspect-ratio: 5 / 3;
  margin-bottom: 32px;
}
.img-slot--service .img-slot__corner {
  background: rgba(11,11,12,0.85);
  color: var(--paper);
}

/* about variant */
.img-slot--about {
  aspect-ratio: 5 / 4;
}

/* Hero refinements --------------------------------------- */
.hero__copy { position: relative; }
.hero__media {
  margin: 0;
  position: relative;
  transition: transform .15s linear;
  will-change: transform;
}
@media (min-width: 1080px) {
  .hero__inner { grid-template-columns: 1.25fr 1fr; align-items: stretch; }
}

/* Subtle motion on the hero title — line-by-line settle */
.hero__title { overflow: hidden; }

/* Drop the now-unused sidekick chrome (keep selectors safe if leftover markup ever returns) */
.hero__sidekick, .lane-list { display: none !important; }

/* Coverage refinements ----------------------------------- */
.region {
  position: relative;
  cursor: pointer;
  transition: background .25s var(--ease), padding .25s var(--ease);
}
.region:hover {
  background: var(--ink-3);
}
.region__arrow {
  width: 18px; height: 10px;
  flex: 0 0 18px;
  background: currentColor;
  color: var(--muted);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 10'><path d='M0 5h16M11 1l5 4-5 4' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='square'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 10'><path d='M0 5h16M11 1l5 4-5 4' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='square'/></svg>") center/contain no-repeat;
  opacity: 0.4;
  transition: opacity .25s var(--ease), transform .25s var(--ease), color .25s var(--ease);
}
.region:hover .region__arrow {
  opacity: 1;
  color: var(--accent);
  transform: translateX(6px);
}

.map-wrap { min-height: 400px; }
.globe-svg { width: 100%; height: 100%; max-width: 540px; }
.globe-ring { animation: ringSpin 28s linear infinite; transform-origin: 260px 180px; transform-box: fill-box; }
@keyframes ringSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.map-badge {
  position: absolute;
  bottom: 18px; left: 18px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: rgba(11,11,12,0.6);
  backdrop-filter: blur(6px);
}
.map-badge__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px oklch(0.72 0.16 50 / 0.18);
  animation: pulseDot 2s var(--ease) infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 oklch(0.72 0.16 50 / 0.35); }
  50% { box-shadow: 0 0 0 8px oklch(0.72 0.16 50 / 0); }
}

/* Service hover refinement — soft lift on cards ----------- */
.service {
  transition: background .35s var(--ease), color .35s var(--ease), transform .4s var(--ease);
}
.service:hover { transform: translateY(-2px); }
.service:hover .img-slot--service img { transform: scale(1.04); }

/* Stagger hero CTA buttons ------------------------------- */
.hero__cta .btn {
  opacity: 0;
  transform: translateY(8px);
  animation: btnIn .8s var(--ease) forwards;
}
.hero__cta .btn:nth-child(1) { animation-delay: .55s; }
.hero__cta .btn:nth-child(2) { animation-delay: .7s; }
@keyframes btnIn {
  to { opacity: 1; transform: none; }
}

/* Mouse-track hero glow ---------------------------------- */
.hero {
  --mx: 50%;
  --my: 30%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 600px at var(--mx) var(--my), oklch(0.72 0.16 50 / 0.10), transparent 70%);
  pointer-events: none;
  z-index: 0;
  transition: background .6s var(--ease);
}

/* Counter animations ------------------------------------- */
.stat { position: relative; overflow: hidden; }
.stat::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 1.2s var(--ease);
}
.stat.is-in::after { width: 30%; }

/* Smoother section reveals ------------------------------- */
.reveal {
  transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease);
  filter: blur(0);
}
.reveal:not(.is-in) {
  filter: blur(2px);
}

/* Hero glow original (the existing .hero__glow) gets extra anim ----- */
.hero__glow {
  filter: blur(40px);
  animation: float 22s ease-in-out infinite alternate, glowFade 9s ease-in-out infinite alternate;
}
@keyframes glowFade {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

/* Marquee — make seam invisible by fading edges ---------- */
.marquee {
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { will-change: transform; }

/* Process step — accent line grows on view ---------------- */
.step {
  position: relative;
  overflow: hidden;
}
.step::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .7s var(--ease) .15s;
}
.step.is-in::before { transform: scaleY(1); }

/* Type detail — Archivo wants slightly tighter tracking on big sizes */
.h-display, .hero__title, .h-section { letter-spacing: -0.03em; }

/* responsive tweaks -------------------------------------- */
@media (max-width: 720px) {
  .hero { padding-top: 120px; }
  .hero__title { font-size: clamp(40px, 9vw, 60px); }
  .map-wrap { min-height: 340px; }
}


/* =================================================
   v3 — flag switcher, cookie banner, modal, consent,
   global mouse glow
   ================================================= */

/* Flag-based language switcher -------------------- */
.lang { display: none !important; } /* hide old dropdown remnant if used */

.lang-flags {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(11,11,12,0.5);
  backdrop-filter: blur(8px);
}
.lang-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 30px;
  padding: 0 10px 0 4px;
  border-radius: 999px;
  background: transparent;
  border: 0;
  color: var(--muted-2);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.lang-flag .flag {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12) inset;
  display: block;
  flex: 0 0 22px;
}
.lang-flag:hover { color: var(--paper); }
.lang-flag.is-active {
  background: var(--accent);
  color: var(--ink);
}
.lang-flag.is-active .flag { box-shadow: 0 0 0 1px rgba(0,0,0,0.25) inset; }

@media (max-width: 720px) {
  .lang-flag__code { display: none; }
  .lang-flag { padding: 4px; }
  .lang-flags { gap: 4px; padding: 3px; }
}

/* Consent checkbox in form ------------------------ */
.field--consent { margin-top: 16px; }
.consent {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  font-size: 13px;
  color: var(--muted-2);
}
.consent input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0; height: 0;
}
.consent__box {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  margin-top: 2px;
  display: grid;
  place-items: center;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  background: transparent;
}
.consent__box::after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M2 7l3.5 3.5L12 4' fill='none' stroke='black' stroke-width='2' stroke-linecap='square'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M2 7l3.5 3.5L12 4' fill='none' stroke='black' stroke-width='2' stroke-linecap='square'/></svg>") center/contain no-repeat;
  background-color: var(--ink);
  opacity: 0;
  transform: scale(.6);
  transition: opacity .15s var(--ease), transform .15s var(--ease);
}
.consent input:checked + .consent__box {
  background: var(--accent);
  border-color: var(--accent);
}
.consent input:checked + .consent__box::after { opacity: 1; transform: scale(1); }
.consent input:focus-visible + .consent__box {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.consent__text a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.consent__text a:hover { color: var(--paper); }

/* Cookie banner ----------------------------------- */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 70;
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
  transform: translateY(120%);
  transition: transform .55s var(--ease);
  max-width: 980px;
  margin-left: auto; margin-right: auto;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 24px;
}
.cookie-banner__copy h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.cookie-banner__copy p {
  margin: 0;
  font-size: 13px;
  color: var(--muted-2);
  line-height: 1.55;
  max-width: 60ch;
}
.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .cookie-banner__inner { grid-template-columns: 1fr; padding: 20px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; justify-content: center; }
}

/* Modal (Privacy) --------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,8,9,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeIn .25s var(--ease);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal__panel {
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 760px;
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  animation: modalIn .35s var(--ease);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(.98); }
  to { opacity: 1; transform: none; }
}
.modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.modal__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
}
.modal__close {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--paper);
  display: grid; place-items: center;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.modal__close:hover { border-color: var(--accent); color: var(--accent); }
.modal__body {
  padding: 28px;
  overflow-y: auto;
  flex: 1;
}
.modal__intro {
  font-size: 15px;
  color: var(--muted-2);
  line-height: 1.65;
  margin: 0 0 28px;
}
.modal__sections h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0 0 8px;
  color: var(--accent);
}
.modal__sections > div {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.modal__sections > div:first-child { border-top: 0; padding-top: 0; }
.modal__sections p {
  font-size: 13.5px;
  color: var(--muted-2);
  line-height: 1.65;
  margin: 0;
}
.modal__contact {
  margin-top: 32px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--muted-2);
  line-height: 1.6;
}
.modal__contact strong { color: var(--paper); font-weight: 600; }
.modal__contact a { color: var(--accent); }

body.modal-open { overflow: hidden; }

/* Global mouse glow ------------------------------- */
/* the hero-only ::after rule remains; ALSO add a body-level layer */
body {
  position: relative;
}
.glow-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(540px 540px at var(--gmx, 50%) var(--gmy, 50%),
      oklch(0.72 0.16 50 / 0.10),
      oklch(0.72 0.16 50 / 0.04) 35%,
      transparent 65%);
  transition: background .4s var(--ease);
  mix-blend-mode: screen;
}
/* Reduce glow on light sections so it doesn't wash them out */
.section--paper { isolation: isolate; }
.section--paper::after {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  pointer-events: none;
}

main, header, footer { position: relative; z-index: 2; }
.cookie-banner, .modal { z-index: 100; }

@media (prefers-reduced-motion: reduce) {
  .glow-layer { display: none; }
}

/* Powered by line --------------------------------- */
.powered-by {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.powered-by a {
  color: var(--accent);
  letter-spacing: 0.16em;
  position: relative;
  transition: opacity .2s var(--ease);
}
.powered-by a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}
.powered-by a:hover { opacity: 0.85; }

/* Brand small fixes (now superseded by main .brand__logo rules) */


/* =================================================
   v4 additions — slideshow, FAQ, social, scroll-up,
   SVG hover animation
   ================================================= */

/* Hide leftover img-slot corner/caption (we removed the markup) */
.img-slot__corner, .img-slot__caption { display: none !important; }

/* Hero slideshow ---------------------------------- */
.hero-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: #161618;
  border: 1px solid var(--line);
  isolation: isolate;
}
@media (max-width: 1079px) {
  .hero-slideshow { aspect-ratio: 16 / 11; min-height: 360px; }
}
.hero-slideshow .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s var(--ease), transform 8s linear;
  pointer-events: none;
}
.hero-slideshow .slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
/* Ken Burns on active slide */
.hero-slideshow .slide.is-active.is-animating {
  transform: scale(1.06);
}
.hero-slideshow__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,11,12,0.55));
  pointer-events: none;
  z-index: 2;
}
.hero-slideshow__nav {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(11,11,12,0.55);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.slide-dot {
  width: 22px;
  height: 4px;
  border-radius: 2px;
  border: 0;
  background: rgba(244,242,236,0.25);
  cursor: pointer;
  padding: 0;
  transition: background .25s var(--ease), width .35s var(--ease);
}
.slide-dot:hover { background: rgba(244,242,236,0.45); }
.slide-dot.is-active {
  background: var(--accent);
  width: 32px;
}

/* SVG-as-bg hover lift (subtle motion when hovering hero or service cards) */
.hero-slideshow:hover .slide.is-active { transform: scale(1.02); transition: transform .8s var(--ease); }
.service .img-slot--service { overflow: hidden; }
.service .img-slot--service::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at var(--hx,50%) var(--hy,50%), oklch(0.72 0.16 50 / 0.18), transparent 60%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.service:hover .img-slot--service::before { opacity: 1; }

/* Make the service img-slot's <img> animate on hover */
.service .img-slot img { transition: transform 1s var(--ease), filter .5s var(--ease); }
.service:hover .img-slot img {
  transform: scale(1.05) translateY(-2px);
  filter: brightness(1.1);
}

/* FAQ -------------------------------------------- */
.faq {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item details summary {
  padding: 28px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  list-style: none;
  transition: padding .3s var(--ease);
}
.faq__item details summary::-webkit-details-marker { display: none; }
.faq__q {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--paper);
  flex: 1;
  text-wrap: balance;
}
.faq__plus {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.faq__plus::before, .faq__plus::after {
  content: "";
  position: absolute;
  background: currentColor;
  top: 50%; left: 50%;
  transition: transform .3s var(--ease);
}
.faq__plus::before { width: 10px; height: 1px; transform: translate(-50%, -50%); }
.faq__plus::after  { width: 1px; height: 10px; transform: translate(-50%, -50%); }
.faq__item details[open] .faq__plus { border-color: var(--accent); color: var(--accent); transform: rotate(45deg); }
.faq__item details[open] summary { padding-bottom: 12px; }
.faq__a {
  padding: 0 0 28px 0;
  max-width: 70ch;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted-2);
  text-wrap: pretty;
}

/* Social row ------------------------------------- */
.social-row {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  padding-top: 8px;
}
.social-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted-2);
  transition: color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.social-icon:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.social-icon svg { display: block; }

/* Scroll-up button ------------------------------- */
.scroll-up {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 65;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(20,20,23,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--paper);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.scroll-up.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.scroll-up:hover {
  border-color: var(--accent);
  background: rgba(20,20,23,0.95);
  color: var(--accent);
}
@media (max-width: 720px) {
  .scroll-up { right: 14px; bottom: 14px; }
}
/* shift scroll-up up when cookie banner visible */
.cookie-banner.is-visible ~ .scroll-up { bottom: 130px; }
@media (max-width: 720px) {
  .cookie-banner.is-visible ~ .scroll-up { bottom: 240px; }
}

/* Hide old lang dropdown styles fully (already class hidden, double-safe) */
.lang__menu { display: none !important; }


/* =================================================
   v5 — "live" feel: sweep, scanlines, hover motion
   ================================================= */

/* Sweep animation on hero slideshow + service images */
.hero-slideshow,
.service .img-slot--service {
  position: relative;
}
.hero-slideshow::after,
.service .img-slot--service::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(110deg,
      transparent 0%,
      transparent 40%,
      oklch(0.72 0.16 50 / 0.08) 50%,
      transparent 60%,
      transparent 100%);
  background-size: 250% 100%;
  background-position: 250% 0;
  animation: sweep 6s linear infinite;
}
.service .img-slot--service::after { animation-duration: 4s; }
@keyframes sweep {
  0%   { background-position: 250% 0; }
  100% { background-position: -250% 0; }
}

/* Faint scanline texture (subtle) */
.hero-slideshow::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0.025) 0,
    rgba(255,255,255,0.025) 1px,
    transparent 1px,
    transparent 3px
  );
  opacity: 0.5;
  mix-blend-mode: overlay;
}

/* Hover: pause sweep + tilt slightly */
.hero-slideshow:hover::after,
.service:hover .img-slot--service::after { animation-duration: 2.5s; }

/* Hover tilt for service cards */
.service .img-slot--service {
  transition: transform .6s var(--ease);
}
.service:hover .img-slot--service {
  transform: perspective(800px) rotateX(2deg) rotateY(-2deg) scale(1.02);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slideshow::after,
  .service .img-slot--service::after { animation: none; }
  .service:hover .img-slot--service { transform: none; }
}


/* =================================================
   v6 — Full-bleed photo banner slideshow
   ================================================= */

.banner {
  position: relative;
  width: 100%;
  height: clamp(560px, 92vh, 880px);
  min-height: 560px;
  overflow: hidden;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.banner__slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.banner__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.6s var(--ease), transform 8s linear;
  will-change: transform, opacity;
}
.banner__slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.banner__slide.is-active.is-animating {
  transform: scale(1.08);
}

/* Dark gradient overlay for text contrast */
.banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(11,11,12,0.85) 0%, rgba(11,11,12,0.55) 38%, rgba(11,11,12,0.30) 60%, rgba(11,11,12,0.55) 100%),
    linear-gradient(180deg, rgba(11,11,12,0.55) 0%, transparent 28%, transparent 70%, rgba(11,11,12,0.85) 100%);
}

/* Scanline + sweep on top */
.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0.02) 0,
    rgba(255,255,255,0.02) 1px,
    transparent 1px,
    transparent 4px
  );
  mix-blend-mode: overlay;
}
.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(110deg,
    transparent 40%,
    oklch(0.72 0.16 50 / 0.10) 50%,
    transparent 60%);
  background-size: 250% 100%;
  background-position: 250% 0;
  animation: sweep 7s linear infinite;
}

/* Content */
.banner__content {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 96px;
}
.banner__copy { max-width: 760px; }

.banner__copy .eyebrow {
  margin-bottom: 28px;
  color: var(--paper);
}
.banner__copy .eyebrow::before { background: var(--accent); width: 40px; }

.banner__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
  color: var(--paper);
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.banner__sub {
  font-size: clamp(16px, 1.35vw, 22px);
  color: rgba(244,242,236,0.85);
  margin: 0 0 36px;
  max-width: 56ch;
  line-height: 1.5;
  text-shadow: 0 1px 16px rgba(0,0,0,0.4);
}
.banner__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Text crossfade on slide change */
.banner__copy [data-banner-eyebrow],
.banner__copy [data-banner-title],
.banner__copy [data-banner-sub] {
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.banner__copy.is-changing [data-banner-eyebrow],
.banner__copy.is-changing [data-banner-title],
.banner__copy.is-changing [data-banner-sub] {
  opacity: 0;
  transform: translateY(8px);
}

/* Dots positioned over banner */
.banner__nav {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: inline-flex;
  gap: 10px;
  padding: 7px 12px;
  background: rgba(11,11,12,0.55);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.banner__scroll {
  position: absolute;
  bottom: 32px;
  right: var(--gutter);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(244,242,236,0.7);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
}
.banner__scroll .line {
  width: 40px; height: 1px; background: var(--accent);
  position: relative; overflow: hidden;
}
.banner__scroll .line::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(11,11,12,0.95);
  animation: scroll-line 2s var(--ease) infinite;
}

@media (max-width: 720px) {
  .banner { height: clamp(520px, 88vh, 720px); }
  .banner__scroll { display: none; }
  .banner__title { font-size: clamp(36px, 9vw, 56px); }
  .banner__overlay {
    background:
      linear-gradient(180deg, rgba(11,11,12,0.45) 0%, rgba(11,11,12,0.65) 60%, rgba(11,11,12,0.9) 100%);
  }
}

/* The OLD hero is gone but its CSS rules remain in earlier blocks — neutralise them */
.hero { display: none !important; }
