@font-face {
  font-family: "Playfair Display";
  src: url("assets/PlayfairDisplay-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Calibri";
  src: url("assets/Calibri-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Calibri";
  src: url("assets/Calibri-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg: #07162c;
  --bg-deep: #03101f;
  --panel: rgba(8, 26, 51, 0.68);
  --panel-strong: rgba(9, 31, 58, 0.92);
  --panel-soft: rgba(255, 255, 255, 0.05);
  --line: rgba(183, 208, 235, 0.18);
  --text: #eef4fb;
  --muted: #b5c7da;
  --accent: #b9d9ff;
  --accent-strong: #6cb3ff;
  --gold: #d7bf8a;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius: 28px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Calibri", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(86, 146, 216, 0.22), transparent 28%),
    radial-gradient(circle at 90% 15%, rgba(215, 191, 138, 0.12), transparent 22%),
    linear-gradient(180deg, #0a2240 0%, var(--bg) 38%, var(--bg-deep) 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0, transparent 12%, transparent 88%, rgba(255, 255, 255, 0.03) 100%),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 22px
    );
  pointer-events: none;
  opacity: 0.35;
}

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

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

.page-shell {
  position: relative;
  width: min(calc(100% - 20px), 1280px);
  margin: 10px auto;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(16px);
  overflow: clip;
  box-shadow: var(--shadow);
}

.site-header,
.hero,
.usp-section,
.products-section,
.supply-chain-section,
.why-section,
.about-section,
.final-cta,
.site-footer {
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 18px;
  background: linear-gradient(180deg, rgba(3, 16, 31, 0.94), rgba(3, 16, 31, 0.72));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  width: clamp(130px, 16vw, 220px);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

.site-nav a {
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding-top: clamp(48px, 8vw, 92px);
  padding-bottom: clamp(42px, 7vw, 84px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.eyebrow {
  margin: 0 0 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.76rem;
  color: var(--gold);
}

h1,
h2,
h3,
.stat {
  font-family: "Playfair Display", serif;
  font-weight: 400;
}

h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  line-height: 0.92;
}

.hero-subline {
  margin: 18px 0 10px;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  color: var(--accent);
}

.hero-text,
.section-copy,
.timeline-step p,
.why-grid p,
.about-copy p,
.site-footer p,
.video-cta p,
.usp-card p,
.product-copy p {
  color: var(--muted);
  line-height: 1.6;
}

.hero-text {
  max-width: 58ch;
  font-size: 1.05rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.product-card:hover,
.usp-card:hover,
.why-grid article:hover,
.timeline-step:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: linear-gradient(135deg, #eaf4ff 0%, #afd5ff 100%);
  color: #062246;
  box-shadow: 0 18px 38px rgba(108, 179, 255, 0.26);
}

.button-secondary,
.button-ghost {
  border-color: rgba(185, 217, 255, 0.3);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: rgba(185, 217, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
}

.hero-visual {
  position: relative;
  min-height: 580px;
  isolation: isolate;
}

.hero-orb {
  position: absolute;
  inset: 12% 8% auto auto;
  width: min(82%, 480px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.2), rgba(108, 179, 255, 0.12) 42%, rgba(3, 16, 31, 0) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-wave {
  position: absolute;
  left: -8%;
  right: -8%;
  top: 24%;
  z-index: 1;
  opacity: 0.95;
  animation: drift 14s ease-in-out infinite;
}

.hero-wave img {
  width: 100%;
  mix-blend-mode: screen;
}

.hero-photo {
  position: absolute;
  right: 7%;
  top: 16%;
  width: min(56%, 320px);
  aspect-ratio: 0.9;
  z-index: 2;
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 16, 31, 0.02), rgba(3, 16, 31, 0.42)),
    linear-gradient(135deg, rgba(185, 217, 255, 0.12), transparent 45%);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge,
.hero-card,
.video-cta,
.usp-card,
.product-card,
.timeline-step,
.why-grid article,
.about-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  z-index: 2;
  border-radius: 24px;
  padding: 18px 20px;
}

.hero-card p {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 10px;
}

.hero-card strong {
  font-size: 1.05rem;
}

.hero-card {
  right: 0;
  bottom: 10%;
  max-width: 250px;
}

.usp-section,
.products-section,
.supply-chain-section,
.why-section,
.about-section {
  padding-top: clamp(44px, 7vw, 88px);
  padding-bottom: clamp(44px, 7vw, 88px);
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
  max-width: 14ch;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.split-heading .section-copy {
  max-width: 42ch;
}

.usp-grid,
.product-grid,
.why-grid {
  display: grid;
  gap: 18px;
}

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

.usp-card {
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.usp-card:hover,
.product-card:hover,
.why-grid article:hover,
.timeline-step:hover {
  border-color: rgba(185, 217, 255, 0.38);
}

.sustainability-card {
  background:
    radial-gradient(circle at top right, rgba(112, 173, 130, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.icon-shell {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 18px;
}

.icon {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.icon-octopus::before {
  content: "";
  position: absolute;
  inset: 4px 4px 10px;
  border: 2px solid currentColor;
  border-radius: 55% 55% 45% 45%;
}

.icon-octopus::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 4px;
  height: 7px;
  border-bottom: 2px solid currentColor;
  border-radius: 0 0 16px 16px;
}

.icon-pot::before,
.icon-pot::after,
.icon-chain::before,
.icon-chain::after,
.icon-calendar::before,
.icon-calendar::after,
.icon-anchor::before,
.icon-anchor::after,
.icon-leaf::before,
.icon-leaf::after {
  content: "";
  position: absolute;
}

.icon-pot::before {
  inset: 7px 5px 6px;
  border: 2px solid currentColor;
  border-radius: 8px 8px 10px 10px;
}

.icon-pot::after {
  left: 8px;
  right: 8px;
  top: 3px;
  height: 2px;
  background: currentColor;
}

.icon-chain::before,
.icon-chain::after {
  top: 8px;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 8px;
  transform: rotate(45deg);
}

.icon-chain::before {
  left: 4px;
}

.icon-chain::after {
  right: 4px;
}

.icon-calendar::before {
  inset: 7px 3px 4px;
  border: 2px solid currentColor;
  border-radius: 7px;
}

.icon-calendar::after {
  left: 6px;
  right: 6px;
  top: 12px;
  height: 2px;
  background: currentColor;
}

.icon-anchor::before {
  left: 13px;
  top: 3px;
  width: 2px;
  height: 19px;
  background: currentColor;
}

.icon-anchor::after {
  left: 6px;
  right: 6px;
  bottom: 4px;
  height: 12px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 18px 18px;
}

.icon-leaf::before {
  inset: 5px 8px 5px 3px;
  border: 2px solid currentColor;
  border-radius: 100% 0 100% 0;
  transform: rotate(-20deg);
}

.icon-leaf::after {
  left: 12px;
  top: 9px;
  width: 2px;
  height: 13px;
  background: currentColor;
  transform: rotate(-22deg);
}

.usp-card h3,
.product-copy h3,
.timeline-step h3,
.why-grid h3,
.about-copy h2,
.final-cta h2 {
  margin: 0 0 10px;
}

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

.product-card {
  border-radius: 30px;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}

.product-visual {
  position: relative;
  min-height: 320px;
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(215, 191, 138, 0.18), transparent 24%),
    radial-gradient(circle at 24% 24%, rgba(255, 255, 255, 0.14), transparent 12%),
    linear-gradient(180deg, rgba(170, 208, 255, 0.12), rgba(2, 18, 36, 0.3));
}

.product-visual::before,
.product-visual::after {
  content: "";
  position: absolute;
  inset: auto;
}

.product-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.product-cooked-octopus::before,
.product-cooked-octopus::after {
  z-index: 1;
}

.product-label {
  z-index: 2;
}

.product-cooked-octopus::before {
  width: 180px;
  height: 180px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 52% 48% 58% 42%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.08) 34%, transparent 35%),
    radial-gradient(circle at center, rgba(124, 184, 247, 0.58), rgba(11, 41, 76, 0.18) 58%, transparent 60%);
  box-shadow: 0 0 90px rgba(108, 179, 255, 0.22);
}

.product-cooked-octopus::after {
  width: 220px;
  height: 72px;
  left: calc(50% - 110px);
  bottom: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.product-tentacles::before,
.product-tentacles::after,
.product-raw::before,
.product-raw::after {
  display: none;
}

.product-label {
  position: absolute;
  left: 20px;
  top: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(3, 16, 31, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-copy {
  padding: 22px;
}

.product-copy a {
  color: var(--accent);
  font-weight: 700;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.timeline-step {
  position: relative;
  border-radius: 24px;
  padding: 22px;
  min-height: 196px;
}

.timeline-step::after {
  content: "";
  position: absolute;
  top: 48px;
  right: -9px;
  width: 18px;
  height: 2px;
  background: rgba(185, 217, 255, 0.5);
}

.timeline-step:last-child::after {
  display: none;
}

.step-number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.video-cta {
  margin-top: 24px;
  border-radius: 28px;
  padding: 26px;
}

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

.why-grid article {
  border-radius: 26px;
  padding: 24px;
}

.about-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

.about-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border-radius: 30px;
  padding: 24px;
}

.about-panel > div {
  border-radius: 22px;
  padding: 20px;
  background: var(--panel-soft);
}

.about-photo {
  grid-column: 1 / -1;
  margin: 0;
  min-height: 220px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 16, 31, 0.04), rgba(3, 16, 31, 0.38));
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat {
  display: block;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.95;
  margin-bottom: 10px;
  color: var(--accent);
}

.final-cta {
  position: relative;
  padding-top: clamp(52px, 8vw, 90px);
  padding-bottom: clamp(52px, 8vw, 90px);
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(185, 217, 255, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(8, 26, 51, 0.95), rgba(3, 16, 31, 0.98));
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
}

.final-cta p {
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 24px;
  padding-bottom: 34px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.14);
}

.footer-credit {
  color: var(--muted);
}

.footer-label {
  margin: 0 0 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.back-to-top {
  position: fixed;
  right: calc((100vw - min(1280px, calc(100vw - 20px))) / 2 + 18px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 30;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(215, 191, 138, 0.3);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(10, 34, 64, 0.94), rgba(3, 16, 31, 0.94));
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(185, 217, 255, 0.08);
  color: var(--gold);
  cursor: pointer;
  opacity: 0.92;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    opacity 180ms ease,
    box-shadow 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

.back-to-top:hover {
  opacity: 1;
  border-color: rgba(215, 191, 138, 0.58);
  background:
    linear-gradient(180deg, rgba(13, 42, 78, 0.98), rgba(4, 21, 40, 0.98));
  color: #f1e1b6;
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(215, 191, 138, 0.14);
}

.back-to-top:focus-visible {
  outline: 2px solid rgba(185, 217, 255, 0.72);
  outline-offset: 3px;
}

.back-to-top__icon {
  position: relative;
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.22));
}

.back-to-top__icon::before,
.back-to-top__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  background: currentColor;
  transform-origin: center;
}

.back-to-top__icon::before {
  top: 0;
  width: 12px;
  height: 12px;
  border-top: 2.5px solid currentColor;
  border-left: 2.5px solid currentColor;
  background: transparent;
  transform: translateX(-50%) rotate(45deg);
}

.back-to-top__icon::after {
  top: 5px;
  width: 2.5px;
  height: 12px;
  transform: translateX(-50%);
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@media (max-width: 1080px) {
  .hero,
  .about-section,
  .split-heading,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero,
  .about-section {
    display: grid;
  }

  .split-heading,
  .site-footer {
    display: grid;
  }

  .usp-grid,
  .product-grid,
  .why-grid,
  .timeline,
  .about-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: 460px;
  }

  .timeline-step::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 16px), 1280px);
    margin: 8px auto;
    border-radius: 24px;
  }

  .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    gap: 12px;
  }

  .hero {
    padding-top: 28px;
  }

  h1 {
    max-width: 100%;
  }

  .section-heading h2,
  .final-cta h2 {
    max-width: 100%;
  }

  .usp-grid,
  .product-grid,
  .why-grid,
  .timeline,
  .about-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-wave {
    left: -12%;
    right: -12%;
    top: 34%;
  }

  .hero-photo {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    margin-bottom: 14px;
    aspect-ratio: 1.2;
  }

  .hero-card {
    position: relative;
    max-width: none;
  }

  .hero-card {
    right: auto;
    bottom: auto;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
  }
}

/* ─── Hero copy entrance animation ─── */
@keyframes hero-slide-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

.hero-copy .eyebrow   { animation: hero-slide-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.10s both; }
.hero-copy h1         { animation: hero-slide-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.20s both; }
.hero-copy .hero-subline { animation: hero-slide-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.30s both; }
.hero-copy .hero-text { animation: hero-slide-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.40s both; }
.hero-copy .hero-actions { animation: hero-slide-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.50s both; }
.hero-visual          { animation: hero-slide-up 0.9s  cubic-bezier(0.22, 1, 0.36, 1) 0.25s both; }

/* ─── Scroll-triggered reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* Staggered delays inside grids */
.usp-grid .usp-card:nth-child(1)       { transition-delay:   0ms; }
.usp-grid .usp-card:nth-child(2)       { transition-delay:  80ms; }
.usp-grid .usp-card:nth-child(3)       { transition-delay: 160ms; }
.usp-grid .usp-card:nth-child(4)       { transition-delay: 240ms; }
.usp-grid .usp-card:nth-child(5)       { transition-delay: 320ms; }
.usp-grid .usp-card:nth-child(6)       { transition-delay: 400ms; }
.product-grid .product-card:nth-child(1) { transition-delay:   0ms; }
.product-grid .product-card:nth-child(2) { transition-delay: 100ms; }
.product-grid .product-card:nth-child(3) { transition-delay: 200ms; }
.timeline .timeline-step:nth-child(1)  { transition-delay:   0ms; }
.timeline .timeline-step:nth-child(2)  { transition-delay:  80ms; }
.timeline .timeline-step:nth-child(3)  { transition-delay: 160ms; }
.timeline .timeline-step:nth-child(4)  { transition-delay: 240ms; }
.timeline .timeline-step:nth-child(5)  { transition-delay: 320ms; }
.why-grid article:nth-child(1)         { transition-delay:   0ms; }
.why-grid article:nth-child(2)         { transition-delay: 100ms; }
.why-grid article:nth-child(3)         { transition-delay: 200ms; }
.why-grid article:nth-child(4)         { transition-delay: 300ms; }

/* ─── USP grid: 6-col layout so sustainability spans full row ─── */
.usp-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.usp-card:nth-child(-n+3) { grid-column: span 2; }
.usp-card:nth-child(4),
.usp-card:nth-child(5)    { grid-column: span 3; }

/* ─── Sustainability card – full-width, horizontal ─── */
.sustainability-card {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 28px;
  background:
    radial-gradient(circle at top right, rgba(112, 173, 130, 0.22), transparent 40%),
    radial-gradient(circle at bottom left, rgba(112, 173, 130, 0.10), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border-color: rgba(112, 173, 130, 0.28);
}
.sustainability-icon {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  background: rgba(112, 173, 130, 0.12);
  border: 1px solid rgba(112, 173, 130, 0.22);
}
.sustainability-icon .icon {
  color: #8fcfa0;
}
.sustainability-text {
  flex: 1;
  min-width: 0;
}
.sustainability-text h3 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: #8fcfa0;
}
.sustainability-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sustainability-pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(112, 173, 130, 0.32);
  background: rgba(112, 173, 130, 0.09);
  color: #8fcfa0;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease;
}
.sustainability-pill:hover {
  background: rgba(112, 173, 130, 0.18);
  border-color: rgba(112, 173, 130, 0.52);
}

/* ─── Supply chain step icons ─── */
.step-icon-wrap {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(215, 191, 138, 0.08);
  border: 1px solid rgba(215, 191, 138, 0.18);
  margin-bottom: 14px;
}
.step-icon-wrap .icon {
  color: var(--gold);
}

/* Cold-chain icon (snowflake shape) */
.icon-cold {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  color: var(--accent);
}
.icon-cold::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 3px;
  width: 2px;
  height: 22px;
  background: currentColor;
  box-shadow:
    7px  4px 0 0 currentColor,
    -7px  4px 0 0 currentColor,
    7px 14px 0 0 currentColor,
    -7px 14px 0 0 currentColor;
}
.icon-cold::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 13px;
  width: 22px;
  height: 2px;
  background: currentColor;
  box-shadow:
     4px -7px 0 0 currentColor,
    -4px -7px 0 0 currentColor;
}

/* ─── Video CTA: coming soon ─── */
.video-cta-inner {
  display: flex;
  align-items: center;
  gap: 22px;
}
.video-placeholder-disc {
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(215, 191, 138, 0.08);
  border: 1px solid rgba(215, 191, 138, 0.25);
  display: grid;
  place-items: center;
}
.video-placeholder-disc::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent var(--gold);
  margin-left: 5px;
}
.video-cta-text {
  flex: 1;
}
.video-cta-text h3 {
  margin: 0 0 6px;
}
.video-cta-text p {
  margin: 0;
}
.video-cta-text .eyebrow {
  margin-bottom: 6px;
}

/* ─── Header: scrolled state ─── */
.site-header.scrolled {
  background: rgba(3, 16, 31, 0.97);
  border-bottom-color: rgba(183, 208, 235, 0.32);
  box-shadow: 0 2px 28px rgba(0, 0, 0, 0.36);
}

/* ─── Responsive overrides for new USP grid ─── */
@media (max-width: 1080px) {
  .usp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .usp-card:nth-child(-n+3),
  .usp-card:nth-child(4),
  .usp-card:nth-child(5) {
    grid-column: span 1;
  }
  .sustainability-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .usp-grid {
    grid-template-columns: 1fr;
  }
  .sustainability-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .sustainability-pillars {
    width: 100%;
  }
  .video-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ═══════════════════════════════════════════════════════
   DESIGN PUSH
   ═══════════════════════════════════════════════════════ */

/* Grain texture — premium tactile depth */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.024;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

/* ─── Gradient text: h1 and section h2s ─── */
h1 {
  background: linear-gradient(155deg, #ffffff 0%, #a8ccee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-heading h2,
.split-heading h2,
.about-copy h2,
.final-cta h2 {
  background: linear-gradient(155deg, #ffffff 0%, #c0d8f2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Eyebrow: gold rule before label ─── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 1px;
  background: var(--gold);
  opacity: 0.75;
}
/* Don't show line in centered CTA eyebrow */
.final-cta .eyebrow {
  display: block;
}
.final-cta .eyebrow::before {
  display: none;
}

/* ─── Stats → gold ─── */
.stat {
  color: var(--gold);
}

/* ─── Cards: gold top-shimmer + richer hover ─── */
.usp-card,
.product-card,
.why-grid article,
.timeline-step,
.video-cta,
.about-panel {
  background: linear-gradient(
    180deg,
    rgba(215, 191, 138, 0.10) 0%,
    rgba(255, 255, 255, 0.06) 7%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border-color: rgba(215, 191, 138, 0.14);
}
.usp-card:hover,
.product-card:hover,
.why-grid article:hover,
.timeline-step:hover {
  border-color: rgba(215, 191, 138, 0.34);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(215, 191, 138, 0.12),
    inset 0 1px 0 rgba(215, 191, 138, 0.20);
}
/* Override green sustainability card border-color to stay green */
.sustainability-card {
  border-color: rgba(112, 173, 130, 0.28) !important;
}

/* ─── USP card icons → gold ─── */
.usp-card .icon-shell {
  background: rgba(215, 191, 138, 0.08);
  border: 1px solid rgba(215, 191, 138, 0.18);
}
.usp-card .icon-shell .icon {
  color: var(--gold);
}
/* Sustainability icon stays green */
.sustainability-icon .icon {
  color: #8fcfa0;
}

/* ─── Product cards: taller photos, gradient overlay, hover scale ─── */
.product-visual {
  min-height: 400px;
}
.product-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(3, 16, 31, 0.96) 0%,
    rgba(3, 16, 31, 0.42) 42%,
    transparent 70%
  );
}
.product-photo {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card:hover .product-photo {
  transform: scale(1.05);
}

/* Product CTA link → gold with animated arrow */
.product-copy a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
  transition: color 200ms ease, gap 200ms ease;
}
.product-copy a::after {
  content: "→";
  transition: transform 220ms ease;
}
.product-copy a:hover {
  color: var(--text);
}
.product-copy a:hover::after {
  transform: translateX(5px);
}

/* ─── Timeline: gold gradient connectors, larger step numbers ─── */
.timeline-step::after {
  background: linear-gradient(90deg, rgba(215, 191, 138, 0.52), transparent);
  height: 1px;
  top: 52px;
}
.step-number {
  font-size: 1.5rem;
  opacity: 0.5;
}

/* ─── Why-grid: more generous padding, slightly larger h3 ─── */
.why-grid article {
  padding: 30px 26px;
}
.why-grid h3 {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  margin-bottom: 12px;
}

/* ─── Final CTA: gold radial glow + top gold rule ─── */
.final-cta {
  background:
    radial-gradient(ellipse 65% 50% at 50% 0%, rgba(215, 191, 138, 0.16) 0%, transparent 62%),
    radial-gradient(circle at top, rgba(185, 217, 255, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(8, 26, 51, 0.95), rgba(3, 16, 31, 0.98));
}
.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18%;
  right: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 191, 138, 0.54), transparent);
}

/* ─── Nav hover → gold ─── */
.site-nav a:hover {
  color: var(--gold);
}

/* ─── Primary button — brighter hover ─── */
.button-primary:hover {
  background: linear-gradient(135deg, #ffffff 0%, #c8e8ff 100%);
  box-shadow: 0 20px 48px rgba(108, 179, 255, 0.42);
}

/* ─── Catalogue CTA banner ─── */
.catalogue-cta {
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(28px, 4vw, 48px);
}
.catalogue-cta-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 32px 36px;
  border-radius: 28px;
  border: 1px solid rgba(215, 191, 138, 0.28);
  background:
    radial-gradient(ellipse at left, rgba(215, 191, 138, 0.10) 0%, transparent 55%),
    linear-gradient(180deg, rgba(215, 191, 138, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
}
.catalogue-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(215, 191, 138, 0.28);
  background: rgba(215, 191, 138, 0.08);
  position: relative;
}
.catalogue-icon::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 10px;
  width: 28px;
  height: 34px;
  border: 2px solid var(--gold);
  border-radius: 4px;
}
.catalogue-icon::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 4px;
  width: 10px;
  height: 12px;
  background: rgba(7, 22, 44, 1);
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  border-bottom-right-radius: 3px;
}
.catalogue-text {
  flex: 1;
  min-width: 0;
}
.catalogue-text h3 {
  margin: 0 0 6px;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  background: linear-gradient(155deg, #ffffff 0%, #c0d8f2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.catalogue-text p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 55ch;
  line-height: 1.55;
}
.catalogue-text .eyebrow {
  margin-bottom: 8px;
}
.button-catalogue {
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(215, 191, 138, 0.22) 0%, rgba(215, 191, 138, 0.08) 100%);
  border-color: rgba(215, 191, 138, 0.45);
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding: 0 28px;
}
.button-catalogue:hover {
  background: linear-gradient(135deg, rgba(215, 191, 138, 0.32) 0%, rgba(215, 191, 138, 0.14) 100%);
  border-color: rgba(215, 191, 138, 0.7);
  color: #f0e0b0;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(215, 191, 138, 0.14);
}
@media (max-width: 720px) {
  .catalogue-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
  }
  .button-catalogue {
    width: 100%;
    justify-content: center;
  }
}

/* ─── Footer: 3-column (no photo credits) ─── */
.site-footer {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.site-footer a {
  color: var(--muted);
  transition: color 180ms ease;
}
.site-footer a:hover {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   MOBILE
   ═══════════════════════════════════════════════════════ */

/* ─── Contact form ─── */
.contact-form {
  width: 100%;
  max-width: 560px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(185, 217, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: "Calibri", sans-serif;
  font-size: 0.97rem;
  line-height: 1.5;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(215, 191, 138, 0.45);
  background: rgba(255, 255, 255, 0.07);
}
.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}
.form-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.form-footer .button-primary {
  flex-shrink: 0;
}
.form-footer .button-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.form-status {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.form-status--ok { color: #8fcfa0; }
.form-status--err { color: #e08080; }

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .form-footer .button-primary {
    width: 100%;
  }
}

/* ── Tablet (≤ 1080px) ── */
@media (max-width: 1080px) {
  /* Hero visual: shrink the wave when stacked below copy */
  .hero-visual {
    min-height: 300px;
  }
  /* Product grid: 2 col is fine but 3rd card goes full-width */
  .product-grid .product-card:last-child {
    grid-column: 1 / -1;
  }
  .product-grid .product-card:last-child .product-visual {
    min-height: 360px;
  }
}

/* ── Mobile (≤ 720px) ── */
@media (max-width: 720px) {
  /* Hide wave art — content-first on mobile */
  .hero-visual {
    display: none;
  }

  /* Header: sticky on scroll would hide content, keep relative */
  .site-header {
    gap: 14px;
    padding-bottom: 14px;
  }

  /* Nav: larger tap targets */
  .site-nav a {
    padding: 8px 2px;
    font-size: 0.95rem;
  }

  /* Hero: tighter top padding */
  .hero {
    padding-top: 28px;
    padding-bottom: 36px;
  }

  /* Hero h1: prevent overflow on small widths */
  h1 {
    font-size: clamp(2.6rem, 11vw, 3.6rem);
    line-height: 0.96;
  }

  /* Hero subline */
  .hero-subline {
    font-size: 1.15rem;
  }

  /* Hero buttons: wrap into two rows naturally */
  .hero-actions {
    gap: 10px;
  }
  .hero-actions .button {
    flex: 1 1 140px;
  }

  /* Section headings: tighter */
  .section-heading {
    margin-bottom: 18px;
  }
  .section-heading h2,
  .split-heading h2 {
    font-size: clamp(1.7rem, 7vw, 2.6rem);
  }

  /* USP cards: compact on mobile */
  .usp-card {
    padding: 20px;
  }

  /* Product visual: shorter on mobile */
  .product-visual {
    min-height: 280px;
  }
  .product-grid .product-card:last-child {
    grid-column: 1;
  }

  /* Timeline: compact */
  .timeline-step {
    min-height: unset;
    padding: 18px;
  }
  .step-number {
    font-size: 1.2rem;
  }

  /* About panel: keep stats side-by-side */
  .about-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .stat {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  /* Why grid: comfortable on single column */
  .why-grid article {
    padding: 22px 20px;
  }

  /* Video CTA: compact */
  .video-cta {
    padding: 20px;
  }

  /* Final CTA: tighter heading */
  .final-cta h2 {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }
}

/* ── Small phones (≤ 480px) ── */
@media (max-width: 480px) {
  /* Edge-to-edge shell — no floating card effect */
  .page-shell {
    width: 100%;
    margin: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  /* Hero buttons: fully stacked */
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .button {
    width: 100%;
    flex: none;
  }

  /* Product copy: tighter */
  .product-copy {
    padding: 16px;
  }

  /* Catalogue CTA: tighter inner padding */
  .catalogue-cta-inner {
    padding: 20px;
  }

  /* Footer: slightly smaller text */
  .site-footer {
    font-size: 0.9rem;
  }

  .back-to-top {
    right: 12px;
    bottom: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
  }
}

@media (min-width: 721px) {
  .back-to-top {
    right: calc((100vw - min(1280px, calc(100vw - 20px))) / 2 + 14px);
    bottom: 24px;
    width: 46px;
    height: 46px;
    opacity: 0.82;
  }

  .back-to-top__icon {
    width: 16px;
    height: 16px;
  }

  .back-to-top__icon::before {
    width: 11px;
    height: 11px;
  }

  .back-to-top__icon::after {
    height: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .back-to-top {
    transition: opacity 120ms ease;
    transform: none;
  }
}
