:root {
  --ink: #edf6ff;
  --text-dark: #0b1720;
  --muted: #a7b8c6;
  --line: rgba(255, 255, 255, 0.14);
  --paper: #0a1720;
  --soft: #102532;
  --red: #ef1723;
  --red-dark: #bb101b;
  --green: #08a63d;
  --green-bright: #30e071;
  --blue: #0f7cc7;
  --cyan: #55d6ff;
  --deep: #06121a;
  --steel: #112b3a;
  --gold: #f2b43c;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-strong: rgba(255, 255, 255, 0.13);
  --glass-line: rgba(255, 255, 255, 0.22);
  --glass-highlight: rgba(255, 255, 255, 0.42);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
  --shadow-strong: 0 32px 90px rgba(0, 0, 0, 0.36);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(239, 23, 35, 0.18), transparent 27rem),
    radial-gradient(circle at 88% 18%, rgba(8, 166, 61, 0.16), transparent 25rem),
    linear-gradient(180deg, #06121a 0%, #0b1b25 42%, #08141d 100%);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

.reveal-on-scroll {
  opacity: 0;
  filter: blur(7px);
  transform: translateY(26px) scale(0.992);
  transition:
    opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 1200ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 16px clamp(20px, 5vw, 72px);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    linear-gradient(90deg, rgba(6, 18, 26, 0.78), rgba(11, 31, 43, 0.64));
  border-bottom: 1px solid var(--glass-line);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32), inset 0 1px 0 var(--glass-highlight);
  backdrop-filter: blur(24px) saturate(1.45);
  animation: headerDrop 520ms ease both;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: clamp(270px, 31vw, 430px);
  height: auto;
  max-height: 66px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.32));
}

.brand .brand-mark {
  flex: 0 0 auto;
  width: clamp(52px, 5vw, 66px);
  max-height: none;
  aspect-ratio: 1;
}

.brand .brand-text {
  width: clamp(235px, 27vw, 370px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  position: relative;
  min-width: 86px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 8px;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.site-nav a::after {
  position: absolute;
  right: 14px;
  bottom: 4px;
  left: 14px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-bright), var(--red));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.site-nav .lang-switch {
  min-width: 64px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  border: 1px solid var(--glass-line);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.site-nav .lang-switch::after {
  display: none;
}

.site-nav .lang-switch:hover {
  background: linear-gradient(135deg, rgba(8, 166, 61, 0.26), rgba(239, 23, 35, 0.24));
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  border: 1px solid var(--glass-line);
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  align-items: center;
  min-height: calc(100vh - 86px);
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 72px);
  overflow: hidden;
  isolation: isolate;
}

.home-hero {
  background:
    linear-gradient(90deg, rgba(6, 18, 26, 0.98), rgba(8, 28, 40, 0.82) 44%, rgba(48, 10, 18, 0.44)),
    url("assets/export-warehouse.png") center / cover;
}

.home-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 74% 44%, rgba(48, 224, 113, 0.14), transparent 18rem),
    radial-gradient(circle at 91% 54%, rgba(239, 23, 35, 0.16), transparent 20rem);
  content: "";
  opacity: 0.9;
}

.home-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 8px;
  background: linear-gradient(90deg, var(--green-bright), var(--cyan), var(--red));
  content: "";
}

.hero-slab {
  position: absolute;
  top: -14%;
  bottom: -16%;
  left: clamp(485px, 58vw, 880px);
  width: clamp(175px, 18vw, 260px);
  z-index: 0;
  background:
    linear-gradient(145deg, rgba(22, 101, 124, 0.48), rgba(6, 24, 36, 0.66)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 28%);
  transform: skewX(-11deg);
  transform-origin: center;
  border-left: 1px solid rgba(85, 214, 255, 0.18);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 1px 0 0 rgba(255, 255, 255, 0.08),
    0 0 70px rgba(85, 214, 255, 0.08);
  backdrop-filter: blur(2px) saturate(1.2);
  pointer-events: none;
}

.hero-stripe {
  position: absolute;
  top: -14%;
  bottom: -16%;
  left: clamp(445px, 52vw, 780px);
  z-index: 1;
  width: 45px;
  transform: skewX(-11deg);
  transform-origin: center;
  pointer-events: none;
}

.hero-stripe::before,
.hero-stripe::after,
.hero-stripe span {
  position: absolute;
  top: 0;
  bottom: 0;
  content: "";
  border-radius: 999px;
  transform: translateZ(0);
  will-change: transform;
}

.hero-stripe::before {
  left: 0;
  width: 13px;
  background: linear-gradient(180deg, rgba(48, 224, 113, 0.86), rgba(10, 137, 61, 0.78));
  box-shadow: 0 0 26px rgba(48, 224, 113, 0.28);
}

.hero-stripe span {
  left: 17px;
  width: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(228, 240, 246, 0.88));
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.3);
}

.hero-stripe::after {
  right: 0;
  width: 14px;
  background: linear-gradient(180deg, rgba(239, 23, 35, 0.86), rgba(164, 11, 23, 0.78));
  box-shadow: 0 0 26px rgba(239, 23, 35, 0.24);
}

.hero-mark {
  position: absolute;
  top: clamp(28px, 5vh, 44px);
  right: clamp(34px, 7vw, 96px);
  z-index: 1;
  width: min(12vw, 150px);
  min-width: 120px;
  opacity: 0.34;
  filter: saturate(1.2) drop-shadow(0 22px 46px rgba(0, 0, 0, 0.42));
  animation: markPulse 9s ease-in-out infinite;
  pointer-events: none;
}

.hero-copy {
  grid-row: 1;
  grid-column: 1;
  position: relative;
  z-index: 2;
  max-width: 680px;
  color: #fff;
  animation: fadeUp 720ms ease 120ms both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-bright);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy .eyebrow,
.cta-strip .eyebrow {
  color: #8af2a7;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 8vw, 6.7rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 6.2vw, 5.4rem);
  text-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
}

.hero-title {
  display: grid;
  gap: 0.02em;
}

.hero-title-line {
  display: block;
}

.italy-green {
  color: #23d35c;
  margin-left: -0.045em;
}

.italy-white {
  color: #ffffff;
  margin-left: 0.018em;
}

.italy-red {
  color: #ef1723;
  margin-left: -0.015em;
}

.glass-title {
  display: inline-block;
  margin-top: 0;
  padding: 0;
  color: transparent;
  background: linear-gradient(100deg, #ffffff 0%, #aee9ff 42%, #ff4d57 100%);
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 12px 30px rgba(85, 214, 255, 0.16));
  text-shadow: none;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid currentColor;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 36%),
    linear-gradient(135deg, var(--red), var(--red-dark));
  border-color: var(--red);
  box-shadow: 0 14px 32px rgba(239, 23, 35, 0.25);
}

.button.secondary {
  color: #fff;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045));
  border-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px) saturate(1.35);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #fff;
}

.hero-panel {
  grid-row: 1;
  grid-column: 2;
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: end;
  width: min(40vw, 470px);
  min-width: 330px;
  padding: clamp(24px, 4vw, 42px);
  color: #fff;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055)),
    radial-gradient(circle at 90% 12%, rgba(48, 224, 113, 0.22), transparent 12rem),
    radial-gradient(circle at 8% 100%, rgba(239, 23, 35, 0.18), transparent 14rem);
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  box-shadow: var(--shadow-strong), inset 0 1px 0 var(--glass-highlight);
  backdrop-filter: blur(24px) saturate(1.45);
  overflow: hidden;
  animation: fadeUp 720ms ease 260ms both;
}

.hero-panel::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.28), transparent 34%);
  content: "";
  pointer-events: none;
  z-index: 0;
}

.hero-panel::after {
  position: absolute;
  right: clamp(34px, 7vw, 74px);
  bottom: -12%;
  width: 38px;
  height: 55%;
  background:
    linear-gradient(
      90deg,
      rgba(48, 224, 113, 0.64) 0 33%,
      rgba(255, 255, 255, 0.72) 33% 66%,
      rgba(239, 23, 35, 0.64) 66% 100%
    );
  border-radius: 999px;
  box-shadow:
    0 0 28px rgba(48, 224, 113, 0.18),
    0 0 28px rgba(239, 23, 35, 0.14);
  content: "";
  opacity: 0.72;
  pointer-events: none;
  transform: skewX(-11deg);
  transform-origin: center;
  z-index: 0;
}

.hero-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-panel ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(232, 244, 255, 0.82);
  font-weight: 800;
}

.hero-panel li::before {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, var(--green-bright), var(--red));
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(48, 224, 113, 0.4);
  content: "";
}

.hero-panel-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 30px;
}

.hero-panel-stats strong {
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 10px;
  color: #fff;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    linear-gradient(90deg, rgba(6, 18, 26, 0.9), rgba(14, 42, 57, 0.82) 46%, rgba(37, 11, 16, 0.82));
  border-top: 1px solid var(--glass-line);
  border-bottom: 1px solid var(--glass-line);
  box-shadow: 0 -22px 54px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(16px) saturate(1.35);
}

.intro-band div {
  position: relative;
  min-height: 136px;
  padding: 28px clamp(20px, 4vw, 54px);
  border-right: 1px solid rgba(255, 255, 255, 0.34);
  overflow: hidden;
  transition: background 180ms ease;
}

.intro-band div:hover {
  background: rgba(255, 255, 255, 0.075);
}

.intro-band div:last-child {
  border-right: 0;
}

.intro-band span {
  display: block;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.intro-band strong {
  display: block;
  max-width: 260px;
  margin-top: 10px;
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.15;
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.split {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 38%),
    radial-gradient(circle at 82% 10%, rgba(239, 23, 35, 0.14), transparent 22rem),
    linear-gradient(135deg, #0a1720, #0f2735);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 74px);
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.cta-strip h2,
.contact-card h2,
.contact-note h2 {
  max-width: 840px;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-copy p:not(.eyebrow),
.about-text p,
.contact-card p,
.contact-note p {
  color: var(--muted);
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--green);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.text-link:hover {
  color: var(--red);
}

.photo-panel {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--glass-line);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transform: rotate(0.8deg);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.photo-panel:hover {
  box-shadow: var(--shadow-strong);
  transform: rotate(0deg) translateY(-4px);
}

.photo-panel img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  transition: transform 500ms ease;
}

.photo-panel:hover img {
  transform: scale(1.05);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 40%),
    radial-gradient(circle at 5% 10%, rgba(8, 166, 61, 0.18), transparent 28rem),
    radial-gradient(circle at 95% 10%, rgba(239, 23, 35, 0.15), transparent 26rem),
    linear-gradient(180deg, #08141d, #0e2532);
}

.section-heading {
  grid-column: 1 / -1;
  margin-bottom: 22px;
}

.service-grid article {
  --card-accent: var(--green-bright);
  --card-accent-2: var(--cyan);
  position: relative;
  min-height: 265px;
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.052)),
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--card-accent) 22%, transparent), transparent 12rem);
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(20px) saturate(1.35);
  overflow: hidden;
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease, background 190ms ease;
}

.service-grid article:nth-of-type(2) {
  --card-accent: var(--red);
  --card-accent-2: var(--gold);
}

.service-grid article:nth-of-type(3) {
  --card-accent: var(--cyan);
  --card-accent-2: var(--green-bright);
}

.service-grid article:nth-of-type(4) {
  --card-accent: var(--gold);
  --card-accent-2: var(--red);
}

.service-grid article:nth-of-type(5) {
  --card-accent: #7a7dff;
  --card-accent-2: var(--cyan);
}

.service-grid article:nth-of-type(6) {
  --card-accent: var(--green-bright);
  --card-accent-2: var(--red);
}

.service-grid article::before {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 54px;
  height: 54px;
  background:
    radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.68), transparent 18%),
    linear-gradient(135deg, var(--card-accent), var(--card-accent-2));
  border-radius: 18px;
  box-shadow:
    0 18px 38px color-mix(in srgb, var(--card-accent) 26%, transparent),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  content: "";
  opacity: 0.9;
  transform: rotate(12deg);
  transition: transform 220ms ease, opacity 220ms ease;
}

.service-grid article::after {
  position: absolute;
  inset: auto 0 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--card-accent), var(--card-accent-2));
  content: "";
  opacity: 0.88;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 220ms ease;
}

.service-grid article:hover {
  border-color: color-mix(in srgb, var(--card-accent) 48%, rgba(255, 255, 255, 0.2));
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.service-grid article:hover::before {
  opacity: 1;
  transform: rotate(-8deg) scale(1.12);
}

.service-grid article h3 {
  max-width: 285px;
  margin: 60px 0 16px;
  color: #fff;
  font-size: clamp(1.28rem, 2.1vw, 1.72rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.service-grid article h3::after {
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--card-accent), var(--card-accent-2));
  border-radius: 999px;
  content: "";
}

.service-grid article p {
  margin: 0;
  color: rgba(218, 233, 247, 0.76);
  font-size: 1.05rem;
}

.brands {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 42%),
    linear-gradient(135deg, #07131c, #0b2130 48%, #11151c);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(84px, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.brand-tile {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.045)),
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.22), transparent 48%),
    radial-gradient(circle at 100% 100%, rgba(48, 224, 113, 0.1), transparent 48%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px) saturate(1.35);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.brand-tile::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.28), transparent 28% 58%, rgba(255, 255, 255, 0.08));
  content: "";
  opacity: 0.8;
  pointer-events: none;
}

.brand-tile img {
  position: relative;
  z-index: 1;
  width: 84%;
  height: 84%;
  object-fit: contain;
  padding: 3px;
  border-radius: 10px;
  filter: grayscale(0);
  transition: transform 180ms ease, filter 180ms ease;
}

.brand-tile:hover {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.075)),
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.3), transparent 48%),
    radial-gradient(circle at 100% 100%, rgba(239, 23, 35, 0.12), transparent 48%);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 20px 42px rgba(48, 224, 113, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  transform: translateY(-5px) scale(1.02);
}

.brand-tile:hover img {
  transform: scale(1.06);
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(44px, 7vw, 72px) clamp(20px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(120deg, var(--deep), var(--steel) 58%, #3a1115 100%);
  border-top: 6px solid var(--red);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.cta-strip h2 {
  max-width: 760px;
  color: #fff;
}

.page-hero {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 420px;
  padding: clamp(72px, 12vw, 130px) clamp(20px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6, 18, 26, 0.97), rgba(8, 60, 42, 0.72), rgba(86, 7, 13, 0.48)),
    url("assets/export-warehouse.png") center / cover;
  overflow: hidden;
  isolation: isolate;
}

.page-hero::after {
  position: absolute;
  right: -10vw;
  bottom: 0;
  width: 42vw;
  height: 7px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--red));
  content: "";
  transform: skewX(-28deg);
}

.page-hero div {
  width: 100%;
  min-width: 0;
  max-width: 980px;
}

.page-hero h1 {
  overflow-wrap: break-word;
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.about-text {
  max-width: 880px;
}

.about-text p:first-child {
  margin-top: 0;
  color: #fff;
  font-size: clamp(1.24rem, 2vw, 1.55rem);
  line-height: 1.48;
}

.about-text a {
  color: var(--green);
  font-weight: 900;
}

.about-aside {
  position: sticky;
  top: 116px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.052));
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px) saturate(1.35);
}

.about-aside img {
  width: 100%;
  margin-bottom: 28px;
}

.about-aside span {
  display: block;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-aside strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 1.55rem;
  line-height: 1.15;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(9, 25, 35, 0.97), rgba(11, 35, 49, 0.78)),
    url("assets/automotive-quality.png") center / cover,
    #091923;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: stretch;
}

.contact-card,
.contact-note {
  padding: clamp(28px, 5vw, 52px);
  border-radius: 8px;
}

.contact-card {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 32%),
    linear-gradient(145deg, var(--deep), #132d3e);
  border: 1px solid var(--glass-line);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px) saturate(1.35);
}

.contact-card .eyebrow {
  color: #8af2a7;
}

.contact-card h2 {
  overflow-wrap: anywhere;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.contact-card .email-title {
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  font-size: clamp(1.45rem, 2.45vw, 2.55rem);
  letter-spacing: 0;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-note {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(8, 166, 61, 0.09));
  border: 1px solid var(--glass-line);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px) saturate(1.35);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--deep);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: min(310px, 62vw);
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.2));
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

.site-footer .reveal-on-scroll {
  opacity: 1;
  filter: none;
  transform: none;
}

.intro-band .reveal-on-scroll {
  opacity: 1;
  filter: none;
  transform: none;
}

@media (max-width: 860px) {
  .site-header {
    min-height: 76px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: rgba(6, 18, 26, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    text-align: left;
  }

  .hero,
  .split,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .home-hero {
    background:
      linear-gradient(180deg, rgba(6, 18, 26, 0.98), rgba(11, 48, 44, 0.9), rgba(60, 8, 15, 0.78)),
      url("assets/export-warehouse.png") center / cover;
  }

  .hero-slab {
    top: 0;
    right: auto;
    bottom: 48%;
    left: 72vw;
    width: 120px;
    transform: skewX(-11deg);
    clip-path: none;
  }

  .hero-stripe {
    top: 0;
    bottom: 48%;
    left: 68vw;
    width: 32px;
  }

  .hero-stripe::before {
    width: 9px;
  }

  .hero-stripe span {
    left: 12px;
    width: 8px;
  }

  .hero-stripe::after {
    width: 10px;
  }

  .hero-mark {
    top: 78px;
    right: 14px;
    width: 124px;
    min-width: 0;
    opacity: 0.2;
  }

  .hero-panel {
    grid-row: auto;
    grid-column: auto;
    width: min(100%, 560px);
    min-width: 0;
    margin-top: 28px;
    justify-self: center;
  }

  .intro-band,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .intro-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .brand-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-aside {
    position: static;
  }
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes markPulse {
  0%,
  100% {
    opacity: 0.28;
    transform: rotate(-6deg) scale(1);
  }
  50% {
    opacity: 0.42;
    transform: rotate(3deg) scale(1.06);
  }
}

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

  .reveal-on-scroll {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand img {
    width: min(70vw, 280px);
  }

  .brand {
    gap: 10px;
  }

  .brand .brand-mark {
    width: 46px;
  }

  .brand .brand-text {
    width: min(52vw, 220px);
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.45rem);
  }

  .hero-actions,
  .cta-strip,
  .site-footer {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .site-footer img {
    display: block;
    margin-inline: auto;
    object-position: center;
  }

  .site-footer p {
    width: 100%;
    text-align: center;
  }

  .button {
    width: 100%;
  }

  .section-copy h2,
  .section-heading h2,
  .cta-strip h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

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