:root {
  --ink: #111111;
  --muted: #5f6267;
  --soft: #f5f3ef;
  --paper: #fffdfa;
  --line: rgba(17, 17, 17, 0.12);
  --red: #e51d2a;
  --gold: #d8bf71;
  --steel: #4d5963;
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 30px 90px rgba(17, 17, 17, 0.16);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #fffdfa 0%, #f7f5f0 52%, #fffdfa 100%);
}

section {
  scroll-margin-top: 108px;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: 58px;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(245, 243, 239, 0.72);
  box-shadow: 0 20px 70px rgba(32, 31, 28, 0.12);
  backdrop-filter: blur(22px) saturate(160%);
  transform: translateX(-50%);
}

.brand,
.header-actions,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
}

.brand-mark circle {
  fill: #fff;
  stroke: rgba(17, 17, 17, 0.22);
}

.brand-mark path {
  fill: var(--red);
}

.nav-links {
  justify-content: center;
  gap: 26px;
  font-size: 14px;
  color: rgba(17, 17, 17, 0.66);
}

.nav-links a,
.header-cta,
.secondary-button,
.primary-button,
.language-toggle {
  cursor: pointer;
  transition: transform 220ms ease, color 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.header-actions {
  gap: 8px;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font-weight: 700;
}

.toggle-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(229, 29, 42, 0.12);
}

.header-cta,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 750;
  box-shadow: 0 14px 38px rgba(17, 17, 17, 0.18);
}

.header-cta {
  padding: 0 18px;
  font-size: 14px;
}

.primary-button {
  padding: 0 24px;
}

.header-cta:hover,
.primary-button:hover,
.language-toggle:hover {
  transform: translateY(-1px);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  backdrop-filter: blur(14px);
}

.secondary-button:hover {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.28);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 122px max(24px, calc((100vw - 1180px) / 2)) 36px;
  overflow: hidden;
  background: #1a1b1c;
}

.hero-image,
.image-vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  transform: scale(1.04);
  transform-origin: 52% 44%;
}

.image-vignette {
  background:
    linear-gradient(90deg, rgba(9, 10, 10, 0.76) 0%, rgba(9, 10, 10, 0.2) 47%, rgba(9, 10, 10, 0.18) 100%),
    linear-gradient(180deg, rgba(9, 10, 10, 0.15) 0%, rgba(9, 10, 10, 0.12) 48%, rgba(9, 10, 10, 0.7) 100%);
}

.wall-sign {
  position: absolute;
  left: 37%;
  top: 92px;
  width: min(300px, 22vw);
  opacity: 0.74;
  filter: drop-shadow(0 24px 24px rgba(0, 0, 0, 0.18));
  transform: perspective(900px) rotateX(1deg) rotateY(-5deg);
}

.wall-sign rect {
  fill: rgba(18, 18, 18, 0.72);
}

.wall-sign circle {
  fill: rgba(255, 255, 255, 0.95);
}

.wall-sign path {
  fill: var(--red);
}

.wall-sign text {
  fill: #fff;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 82px;
  font-weight: 900;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(56px, 9vw, 126px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 640px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(780px, 100%);
  margin-top: 66px;
  color: #fff;
}

.hero-metrics div {
  min-height: 116px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(22px);
}

.hero-metrics strong,
.hero-metrics span {
  font-size: 48px;
  line-height: 1;
}

.hero-metrics p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.section-pad {
  padding: 120px max(24px, calc((100vw - 1180px) / 2));
}

.intro {
  text-align: center;
}

.intro .section-title,
.intro .section-lede {
  margin-inline: auto;
}

.section-shell {
  width: 100%;
}

.section-title {
  max-width: 900px;
  margin: 0;
  font-size: clamp(36px, 5vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-lede,
.body-copy {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.expertise {
  background: #111;
  color: #fff;
}

.expertise .section-kicker,
.logistics .section-kicker,
.markets .section-kicker,
.trust .section-kicker,
.contact .section-kicker {
  color: var(--red);
}

.expertise .section-shell,
.markets-layout,
.logistics-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 62px;
  align-items: center;
}

.floating-grid {
  display: grid;
  gap: 16px;
  perspective: 1000px;
}

.float-card,
.trust-item {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

.float-card {
  min-height: 190px;
  padding: 28px;
  transform-style: preserve-3d;
}

.float-card:nth-child(2) {
  margin-left: 54px;
}

.float-card:nth-child(3) {
  margin-left: 108px;
}

.card-number {
  color: var(--gold);
  font-weight: 800;
}

.float-card h3,
.trust-item h3,
.process-step h3 {
  margin: 18px 0 10px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: 0;
}

.float-card p,
.trust-item p,
.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.62;
}

.logistics {
  background: var(--soft);
}

.process-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.process-line {
  position: absolute;
  inset: 50% 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.process-step {
  position: relative;
  min-height: 208px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
}

.process-step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

.process-step p,
.trust-item p {
  color: var(--muted);
}

.market-chart {
  display: grid;
  place-items: center;
  min-height: 520px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(229, 29, 42, 0.08), transparent 45%),
    linear-gradient(145deg, #171717, #2b2a27);
  box-shadow: var(--shadow);
}

.market-chart svg {
  width: min(92%, 520px);
  height: auto;
}

.chart-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 28;
}

.chart-ring {
  fill: none;
  stroke-linecap: round;
  transform-origin: center;
  animation: chartSpin 18s linear infinite;
}

.ring-one {
  stroke: var(--red);
  stroke-width: 26;
  stroke-dasharray: 370 790;
}

.ring-two {
  stroke: var(--gold);
  stroke-width: 18;
  stroke-dasharray: 260 650;
  animation-duration: 24s;
  animation-direction: reverse;
}

.ring-three {
  stroke: rgba(255, 255, 255, 0.78);
  stroke-width: 12;
  stroke-dasharray: 160 500;
  animation-duration: 30s;
}

.chart-core {
  fill: rgba(255, 255, 255, 0.95);
}

.market-chart text {
  fill: var(--ink);
  font-size: 62px;
  font-weight: 850;
}

.market-chart .chart-sub {
  fill: var(--muted);
  font-size: 22px;
  font-weight: 700;
}

.market-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.market-list span {
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.06);
  font-weight: 750;
}

.trust {
  background: #111;
  color: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 54px;
}

.trust-item {
  min-height: 230px;
  padding: 26px;
}

.contact {
  padding-top: 92px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 34px;
  align-items: end;
  padding: clamp(28px, 5vw, 70px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 243, 239, 0.78)),
    var(--soft);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(38px, 6vw, 82px);
  line-height: 1.02;
  letter-spacing: 0;
}

.contact-panel p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.contact-details {
  display: grid;
  gap: 13px;
  padding: 24px;
  border-left: 2px solid var(--red);
  font-style: normal;
}

.contact-details a {
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 30px max(24px, calc((100vw - 1180px) / 2));
  color: var(--muted);
  font-size: 14px;
}

.cookie-banner-visible .site-footer {
  padding-bottom: 144px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-links button,
.cookie-banner button,
.legal-close {
  cursor: pointer;
  border: 0;
  font: inherit;
}

.legal-links button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 750;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.legal-links button:hover,
.cookie-banner button:hover,
.legal-close:hover {
  transform: translateY(-1px);
}

.legal-modal[hidden],
.cookie-banner[hidden] {
  display: none;
}

.legal-modal {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
}

.legal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 12, 0.62);
  backdrop-filter: blur(14px);
}

.legal-dialog {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
  max-height: min(820px, calc(100svh - 44px));
  overflow: auto;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background: rgba(255, 253, 250, 0.96);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.32);
}

.legal-close {
  position: sticky;
  top: 0;
  float: right;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: -16px -16px 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.legal-copy h2 {
  margin: 0 0 28px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: 0;
}

.legal-copy h3 {
  margin: 28px 0 10px;
  font-size: 21px;
  letter-spacing: 0;
}

.legal-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.legal-copy strong,
.legal-copy a {
  color: var(--ink);
}

.cookie-banner {
  position: fixed;
  z-index: 50;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(560px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  background: rgba(255, 253, 250, 0.88);
  box-shadow: 0 26px 80px rgba(17, 17, 17, 0.2);
  backdrop-filter: blur(18px) saturate(150%);
}

.cookie-banner strong {
  display: block;
  margin-bottom: 5px;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.cookie-banner button {
  min-width: 68px;
  min-height: 42px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes chartSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .header-actions {
    justify-content: end;
  }

  .hero {
    min-height: 940px;
    padding-top: 110px;
  }

  .hero-image {
    object-position: 62% 50%;
  }

  .wall-sign {
    right: max(24px, 7vw);
    left: auto;
    top: 76px;
    width: min(300px, 44vw);
    opacity: 0.72;
  }

  .hero-metrics,
  .expertise .section-shell,
  .markets-layout,
  .logistics-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .float-card:nth-child(2),
  .float-card:nth-child(3) {
    margin-left: 0;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .market-chart {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand span {
    display: none;
  }

  .header-cta {
    padding: 0 14px;
  }

  .hero {
    min-height: 900px;
    padding-inline: 18px;
    padding-bottom: 24px;
  }

  .wall-sign {
    display: none;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-lede,
  .section-lede,
  .body-copy {
    font-size: 17px;
  }

  .hero-metrics {
    gap: 10px;
  }

  .hero-metrics div {
    min-height: 98px;
    padding: 16px;
  }

  .hero-metrics strong,
  .hero-metrics span {
    font-size: 36px;
  }

  .section-pad {
    padding: 82px 18px;
  }

  .process-visual,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .process-line {
    display: none;
  }

  .contact-details {
    padding: 18px 0 0;
    border-left: 0;
    border-top: 2px solid var(--red);
  }

  .site-footer {
    padding-inline: 18px;
  }

  .cookie-banner-visible .site-footer {
    padding-bottom: 248px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
  }

  .cookie-banner button {
    width: 100%;
  }
}
