/* ============================================================
   EGOR SURUCEANU — International Freight & Logistics
   bariapartners.co
   Design system: tokens, base, components, sections, responsive
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --bg: #f3f0e8;
  --bg-2: #eae6da;
  --surface: #fbf9f4;
  --ink: #141e1c;
  --ink-2: #263330;
  --muted: #5c6b67;
  --line: rgba(20, 30, 28, 0.14);
  --line-strong: rgba(20, 30, 28, 0.3);
  --accent: #e2542e;
  --accent-deep: #c4431f;
  --on-accent: #fff6ee;

  --r-sm: 2px;
  --r: 4px;

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(80px, 11vw, 160px);
  --header-h: 76px;
  --topbar-h: 34px;

  --shadow-panel: 0 24px 64px rgba(20, 30, 28, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 200;
  background: var(--ink);
  color: var(--surface);
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 12px;
}

/* ---------- Typography helpers ---------- */
.mono {
  font-family: var(--font-mono);
}

.display {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--accent);
  flex: none;
}

.outline-text {
  color: transparent;
  -webkit-text-stroke: 1.5px currentColor;
}
body .outline-text {
  color: transparent;
}

.t-accent {
  color: var(--accent);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-y);
  position: relative;
}

.section--alt {
  background: var(--bg-2);
}

.section--ink {
  background: var(--ink);
  color: var(--surface);
}
.section--ink .eyebrow {
  color: var(--accent);
}
.section--ink .t-outline {
  -webkit-text-stroke-color: rgba(251, 249, 244, 0.55);
}
.section--ink .outline-text {
  -webkit-text-stroke-color: rgba(251, 249, 244, 0.55);
}
.section--ink p {
  color: rgba(251, 249, 244, 0.72);
}

.grid {
  display: grid;
  gap: clamp(24px, 3vw, 40px);
}

.section-head {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: clamp(24px, 3vw, 40px);
  row-gap: 24px;
  margin-bottom: clamp(40px, 6vw, 84px);
}
.section-head__label {
  grid-column: 1 / -1;
}
.section-head__title {
  grid-column: 1 / 9;
  font-size: clamp(30px, 4.6vw, 62px);
}
.section-head__aside {
  grid-column: 9 / -1;
  align-self: end;
  color: var(--muted);
  max-width: 420px;
}

.lead {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.65;
  color: var(--muted);
}

@media (max-width: 860px) {
  .section-head__title {
    grid-column: 1 / -1;
  }
  .section-head__aside {
    grid-column: 1 / -1;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 24px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--surface);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn .arrow {
  transition: transform 0.25s var(--ease);
}
.btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn:hover .arrow {
  transform: translateX(4px);
}
.btn:active {
  transform: translateY(1px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--surface);
}

.btn--on-ink {
  background: var(--surface);
  border-color: var(--surface);
  color: var(--ink);
}
.btn--on-ink:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn--ghost-invert {
  background: transparent;
  border-color: rgba(251, 249, 244, 0.45);
  color: var(--surface);
}
.btn--ghost-invert:hover {
  background: var(--surface);
  border-color: var(--surface);
  color: var(--ink);
}

.btn--sm {
  padding: 11px 17px;
  font-size: 11.5px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.link-arrow .arrow {
  transition: transform 0.25s var(--ease);
  color: var(--accent);
}
.link-arrow:hover {
  color: var(--accent-deep);
  border-color: var(--accent);
}
.link-arrow:hover .arrow {
  transform: translateX(5px);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(243, 240, 232, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  height: var(--topbar-h);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}
.topbar__group {
  display: flex;
  align-items: center;
  gap: 22px;
}
.topbar a:hover {
  color: var(--accent);
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}
.topbar__sep {
  width: 1px;
  height: 12px;
  background: var(--line-strong);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: none;
}
.brand__mark {
  width: 44px;
  height: 44px;
  flex: none;
}
.brand__text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 1.05;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
}
.brand__text em {
  font-style: normal;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--muted);
  margin-top: 3px;
}
.brand__line {
  display: block;
}
.brand__dot {
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 36px);
}
.nav-link {
  position: relative;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding-block: 6px;
  transition: color 0.2s;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s var(--ease);
}
.nav-link:hover,
.nav-link.is-active {
  color: var(--ink);
}
.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

@media (max-width: 900px) {
  .topbar {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .hero {
    padding-top: calc(var(--header-h) + clamp(40px, 7vw, 96px));
  }
  .page-hero {
    padding-top: calc(var(--header-h) + clamp(48px, 7vw, 96px));
  }
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .stage {
    min-height: 400px;
    order: 2;
    margin-top: 20px;
  }
  .site-nav {
    position: fixed;
    inset: calc(var(--header-h) + 1px) 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 12px var(--gutter) 24px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s var(--ease), opacity 0.3s, visibility 0.3s;
    box-shadow: var(--shadow-panel);
  }
  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .site-nav .nav-link {
    width: 100%;
    font-size: 15px;
    padding-block: 16px;
    border-bottom: 1px solid var(--line);
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--topbar-h) + var(--header-h) + clamp(40px, 7vw, 96px));
  overflow: hidden;
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse at 20% 10%, #000 0%, transparent 65%);
  mask-image: radial-gradient(ellipse at 20% 10%, #000 0%, transparent 65%);
  opacity: 0.5;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
  min-height: 72vh;
}

.hero__eyebrow {
  margin-bottom: 28px;
}
.hero__title {
  font-size: clamp(44px, 7.6vw, 112px);
  letter-spacing: -0.03em;
}
.hero__title .line {
  display: block;
}
.hero__title .t-accent {
  color: var(--accent);
}
.hero__title .t-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}
.hero__title .t-outline-fire {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
}

.hero__sub {
  margin-top: 30px;
  max-width: 460px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 38px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: transparent;
}
.chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}

/* Hero 3D object */
.stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}
.stage__halo {
  position: absolute;
  width: min(78%, 520px);
  aspect-ratio: 1;
  border: 1px dashed rgba(20, 30, 28, 0.28);
  border-radius: 50%;
  animation: spin 46s linear infinite;
}
.stage__halo--inner {
  width: min(58%, 380px);
  animation-direction: reverse;
  animation-duration: 34s;
  border-style: solid;
  border-color: rgba(226, 84, 46, 0.28);
}

.scene {
  position: relative;
  width: 300px;
  height: 300px;
  perspective: 1400px;
}
.cube {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: rotateX(-16deg) rotateY(38deg);
  animation: floaty 7s ease-in-out infinite;
  will-change: transform;
}
.cube.is-tilting {
  animation: none;
}
.face {
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid rgba(20, 30, 28, 0.5);
  background: var(--ink);
  backface-visibility: hidden;
}
.cube-size {
  --cw: 300px;
  --ch: 172px;
  --cd: 300px;
}
.face-front {
  width: var(--cw);
  height: var(--ch);
  transform: rotateY(0deg) translateZ(calc(var(--cd) / 2));
  background: var(--ink);
  background-image: repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.055) 0 26px,
      transparent 26px 28px
    );
  display: flex;
  align-items: center;
  justify-content: center;
}
.face-back {
  width: var(--cw);
  height: var(--ch);
  transform: rotateY(180deg) translateZ(calc(var(--cd) / 2));
  background: var(--ink-2);
}
.face-left {
  width: var(--cd);
  height: var(--ch);
  left: calc((var(--cw) - var(--cd)) / 2);
  transform: rotateY(-90deg) translateZ(calc(var(--cw) / 2));
  background: var(--ink-2);
  background-image: repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.05) 0 26px,
      transparent 26px 28px
    );
}
.face-right {
  width: var(--cd);
  height: var(--ch);
  left: calc((var(--cw) - var(--cd)) / 2);
  transform: rotateY(90deg) translateZ(calc(var(--cw) / 2));
  background: var(--ink);
  background-image: repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.07) 0 26px,
      transparent 26px 28px
    );
}
.face-top {
  width: var(--cw);
  height: var(--cd);
  top: calc((var(--ch) - var(--cd)) / 2);
  transform: rotateX(90deg) translateZ(calc(var(--ch) / 2));
  background: var(--accent);
}
.face-bottom {
  width: var(--cw);
  height: var(--cd);
  top: calc((var(--ch) - var(--cd)) / 2);
  transform: rotateX(-90deg) translateZ(calc(var(--ch) / 2));
  background: #1a2624;
}

.cube__plate {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: rgba(251, 249, 244, 0.9);
  background: rgba(20, 30, 28, 0.55);
  border: 1px solid rgba(251, 249, 244, 0.35);
  padding: 10px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.cube__plate b {
  color: #fff;
}
.cube__corner {
  position: absolute;
  width: 16px;
  height: 16px;
  background: rgba(251, 249, 244, 0.2);
  border: 1px solid rgba(20, 30, 28, 0.55);
}
.cube__corner.c1 { top: 0; left: 0; }
.cube__corner.c2 { top: 0; right: 0; }
.cube__corner.c3 { bottom: 0; left: 0; }
.cube__corner.c4 { bottom: 0; right: 0; }

.waypoint {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 100px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(20, 30, 28, 0.08);
  animation: floaty 6s ease-in-out infinite;
  z-index: 3;
}
.waypoint::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(226, 84, 46, 0.18);
  flex: none;
}
.waypoint--a { top: 8%; right: 2%; animation-delay: 0.4s; }
.waypoint--b { bottom: 12%; left: -4%; animation-delay: 1.2s; }
.waypoint--c { bottom: -2%; right: 10%; animation-delay: 2s; }

@keyframes floaty {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -16px; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 640px) {
  .header-actions .btn--sm {
    display: none;
  }
  .brand__mark {
    width: 38px;
    height: 38px;
  }
  .brand__text {
    font-size: 14px;
  }
  .brand__text em {
    font-size: 9.5px;
    letter-spacing: 0.24em;
  }
  .header-actions {
    gap: 10px;
  }
  .scene {
    width: 230px;
    height: 230px;
  }
  .cube-size {
    --cw: 230px;
    --ch: 132px;
    --cd: 230px;
  }
  .waypoint--b {
    left: 0;
  }
  .waypoint--c {
    right: 0;
  }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--surface);
  border-block: 1px solid rgba(251, 249, 244, 0.12);
  overflow: hidden;
  padding-block: 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: scroll-x 34s linear infinite;
}
.marquee__track:hover {
  animation-play-state: paused;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 44px;
  padding: 16px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(251, 249, 244, 0.92);
}
.marquee__item::after {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--accent);
  flex: none;
}
.marquee__item em {
  font-style: normal;
  color: var(--accent);
}
@keyframes scroll-x {
  to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .svc-preview {
    display: none;
  }
}

/* ---------- Services index ---------- */
.svc-list {
  position: relative;
  border-bottom: 1px solid var(--line);
}
.svc-row {
  position: relative;
  display: grid;
  grid-template-columns: 84px 1fr;
  column-gap: clamp(24px, 4vw, 60px);
  row-gap: 10px;
  padding-block: 34px;
  border-top: 1px solid var(--line);
  transition: background 0.3s;
}
.svc-row:hover {
  background: rgba(226, 84, 46, 0.05);
}
.svc-row__num {
  grid-row: 1 / 3;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  padding-top: 12px;
}
.svc-row__main {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}
.svc-row__title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: clamp(26px, 3.4vw, 48px);
  line-height: 1;
  transition: color 0.25s, transform 0.35s var(--ease);
}
.svc-row:hover .svc-row__title {
  color: var(--accent);
  transform: translateX(8px);
}
.svc-row__arrow {
  font-size: clamp(22px, 2.4vw, 34px);
  color: var(--line-strong);
  transition: color 0.25s, transform 0.35s var(--ease);
  flex: none;
}
.svc-row:hover .svc-row__arrow {
  color: var(--accent);
  transform: rotate(-45deg);
}
.svc-row__desc {
  max-width: 560px;
  color: var(--muted);
  font-size: 15px;
}
.svc-preview {
  position: absolute;
  right: 0;
  top: 50%;
  width: min(360px, 40vw);
  aspect-ratio: 4 / 3;
  transform: translate(0, -50%);
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.svc-list:hover .svc-preview {
  opacity: 1;
}
.svc-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line-strong);
}

/* ---------- Process ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
  counter-reset: step;
}
.step {
  border-top: 2px solid var(--ink);
  padding-top: 22px;
  position: relative;
}
.step__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
  display: block;
  margin-bottom: 18px;
}
.section--ink .step__num {
  -webkit-text-stroke-color: rgba(251, 249, 244, 0.6);
}
.step__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}
.step__desc {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}
.section--ink .step__desc {
  color: rgba(251, 249, 244, 0.68);
}

@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* ---------- Split / coverage ---------- */
.split {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.split__title {
  font-size: clamp(34px, 5vw, 68px);
  margin-top: 24px;
}
.split__body {
  margin-top: 26px;
  color: var(--muted);
  max-width: 520px;
}
.split__cta {
  margin-top: 36px;
}

.media-frame {
  position: relative;
}
.media-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line-strong);
}
.media-frame--wide img {
  aspect-ratio: 4 / 3;
}
.media-frame__tag {
  position: absolute;
  left: -20px;
  bottom: 28px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  padding: 12px 18px;
  box-shadow: var(--shadow-panel);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.media-frame__tag::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
}
.media-frame__corner {
  position: absolute;
  top: 20px;
  right: -18px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(64px, 9vw, 120px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--line-strong);
  z-index: 2;
  pointer-events: none;
}

.route-map {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.route-map .chip::before {
  display: none;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }
  .media-frame__tag {
    left: 12px;
  }
  .media-frame__corner {
    right: 8px;
  }
}

/* ---------- Statement / quote band ---------- */
.statement {
  text-align: left;
}
.statement__mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 80px);
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
  line-height: 0.7;
}
.statement__text {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.04;
  font-size: clamp(30px, 4.6vw, 62px);
  margin-top: 18px;
}
.statement__text .t-accent {
  color: var(--accent);
}

/* ---------- Feature grid (about) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.feature {
  background: var(--bg);
  padding: clamp(24px, 3vw, 40px);
}
.feature__icon {
  color: var(--accent);
  margin-bottom: 22px;
}
.feature__title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
.feature__desc {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- CTA ---------- */
.cta {
  text-align: center;
  overflow: hidden;
}
.cta__title {
  font-size: clamp(42px, 8vw, 120px);
  letter-spacing: -0.03em;
}
.cta__title .t-accent {
  color: var(--accent);
}
.cta__title .t-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(251, 249, 244, 0.5);
}
.cta__sub {
  margin: 26px auto 0;
  max-width: 480px;
  color: rgba(251, 249, 244, 0.7);
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
}
.cta__contact {
  margin-top: 30px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(251, 249, 244, 0.6);
}
.cta__contact a {
  color: var(--surface);
  border-bottom: 1px solid rgba(251, 249, 244, 0.4);
}
.cta__contact a:hover {
  color: var(--accent);
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding-top: calc(var(--topbar-h) + var(--header-h) + clamp(48px, 7vw, 96px));
  padding-bottom: clamp(40px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.page-hero__label {
  margin-bottom: 22px;
}
.page-hero__title {
  font-size: clamp(40px, 7vw, 96px);
}
.page-hero__sub {
  margin-top: 24px;
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
}
.page-hero__meta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.crumbs {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.crumbs a:hover {
  color: var(--accent);
}
.crumbs .sep {
  color: var(--line-strong);
}

/* ---------- Detail services page ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
  padding-block: clamp(56px, 7vw, 100px);
  border-top: 1px solid var(--line);
}
.service-detail__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 6vw, 84px);
  color: transparent;
  -webkit-text-stroke: 1.5px var(--line-strong);
  line-height: 1;
  margin-bottom: 20px;
}
.service-detail__title {
  font-size: clamp(30px, 3.6vw, 52px);
}
.service-detail__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  margin-bottom: 28px;
}
.service-detail__body p {
  color: var(--muted);
  margin-bottom: 18px;
  max-width: 560px;
}
.service-detail__body h4 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.08em;
  margin: 26px 0 14px;
}
.service-detail__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 15px;
}
.service-detail__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 9px;
  height: 2px;
  background: var(--accent);
}

@media (max-width: 900px) {
  .service-detail {
    grid-template-columns: 1fr;
  }
}

/* ---------- Tracking ---------- */
.track-panel {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  padding: clamp(28px, 4vw, 56px);
  max-width: 760px;
}
.track-form {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.track-form .field {
  flex: 1 1 300px;
}
.track-result {
  margin-top: 24px;
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 20px 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
  display: none;
}
.track-result.is-visible {
  display: block;
}
.track-result b {
  color: var(--accent);
}

/* ---------- Forms ---------- */
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.field input,
.field select,
.field textarea {
  border: 1px solid var(--line-strong);
  background: var(--surface);
  border-radius: var(--r-sm);
  padding: 13px 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(226, 84, 46, 0.16);
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.field .hint {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
  flex: none;
}
.checkbox span {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}
.checkbox a {
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form-grid .span-2 {
  grid-column: 1 / -1;
}
@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-note {
  display: none;
  margin-top: 24px;
  padding: 18px 22px;
  border: 1px solid rgba(62, 123, 95, 0.5);
  background: rgba(62, 123, 95, 0.08);
  color: #2c5a44;
  font-size: 14.5px;
  line-height: 1.6;
}
.form-note.is-visible {
  display: block;
}
.form-note b {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-error {
  margin-top: 16px;
  display: none;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--accent-deep);
}
.form-error.is-visible {
  display: block;
}

/* ---------- Contact info cards ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line-strong);
  background: var(--line);
  gap: 1px;
}
.info-card {
  background: var(--bg);
  padding: clamp(24px, 3vw, 40px);
}
.info-card__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.info-card__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.35;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
.info-card__value a:hover {
  color: var(--accent);
}
.info-card__sub {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}
@media (max-width: 700px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- FAQ ---------- */
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  text-align: left;
}
.faq-item__q .plus {
  font-size: 22px;
  color: var(--accent);
  transition: transform 0.3s var(--ease);
  flex: none;
}
.faq-item.is-open .faq-item__q .plus {
  transform: rotate(45deg);
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-item__a p {
  padding: 0 0 22px;
  color: var(--muted);
  max-width: 640px;
  font-size: 15px;
}

/* ---------- Legal pages ---------- */
.legal-wrap {
  max-width: 820px;
}
.legal h1 {
  font-size: clamp(34px, 5vw, 64px);
  margin-bottom: 12px;
}
.legal .legal-intro {
  color: var(--muted);
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.legal h2 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: 0.01em;
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.legal h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin-top: 28px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.legal p,
.legal li {
  color: var(--ink-2);
  line-height: 1.75;
  font-size: 15.5px;
}
.legal p {
  margin-top: 16px;
}
.legal ul,
.legal ol {
  margin-top: 14px;
  padding-left: 22px;
}
.legal ul li,
.legal ol li {
  margin-bottom: 8px;
  list-style: square;
}
.legal ol li {
  list-style: decimal;
}
.legal a {
  color: var(--accent-deep);
  border-bottom: 1px solid rgba(196, 67, 31, 0.4);
}
.legal a:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.legal .table-block {
  overflow-x: auto;
  margin-top: 20px;
}
.legal table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.legal table th,
.legal table td {
  border: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}
.legal table th {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--bg-2);
}
.legal .meta-box {
  background: var(--bg-2);
  border-left: 3px solid var(--accent);
  padding: 18px 22px;
  margin-top: 24px;
  font-size: 14px;
  color: var(--ink-2);
}
.legal .updated {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(251, 249, 244, 0.72);
  padding-top: clamp(64px, 8vw, 110px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.9fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: clamp(48px, 6vw, 80px);
}
.footer-brand__text {
  margin-top: 22px;
  max-width: 300px;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(251, 249, 244, 0.6);
}
.footer-domain {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.footer-col__title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(251, 249, 244, 0.4);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 11px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(251, 249, 244, 0.78);
  transition: color 0.2s, padding-left 0.25s var(--ease);
}
.footer-col a:hover {
  color: var(--accent);
  padding-left: 4px;
}
.footer-contact .footer-col a {
  display: inline-block;
}
.footer-contact address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(251, 249, 244, 0.78);
}
.footer-contact address strong {
  color: var(--surface);
  font-weight: 600;
}
.footer-bottom {
  border-top: 1px solid rgba(251, 249, 244, 0.14);
  padding-block: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(251, 249, 244, 0.5);
}
.footer-bottom .legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-bottom a:hover {
  color: var(--accent);
}

@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  max-width: 620px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-panel);
  padding: 26px 28px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.4s;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner__title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-banner__title::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--accent);
  flex: none;
}
.cookie-banner p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}
.cookie-banner p a {
  color: var(--accent-deep);
  border-bottom: 1px solid rgba(196, 67, 31, 0.4);
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

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