:root {
  --dark: #101430;
  --dark2: #0D1028;
  --cream: #F4F1E6;
  --accent: #E1201B;
  --accent-hover: #FF2E28;
  --yellow: #FFC821;
  --yellow-hover: #FFDD66;
  --text-muted: #3A3F5C;
  --text-muted-light: #C9CCE3;
  --text-muted-lighter: #A9ADCC;
  --display-font: 'Titan One', cursive;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--dark);
  font-family: 'Nunito', sans-serif;
  color: #fff;
}

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

a { color: var(--yellow); text-decoration: none; }
a:hover { color: var(--yellow-hover); }

::selection { background: var(--accent); color: #fff; }
input::placeholder, textarea::placeholder { color: rgba(16,20,48,.45); }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px,5vw,32px); }

.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 200;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 900;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 0 0 10px 10px;
  transition: top .15s;
}
.skip-link:focus { top: 0; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mascot, .marquee-content {
    animation: none !important;
  }
  .btn, .btn:hover, .btn:active {
    transition: none;
    transform: none !important;
  }
}

@keyframes wr-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes wr-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- shared elements ---------- */

.h2 {
  font-family: var(--display-font);
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.06;
  margin: 0 0 18px;
  font-weight: 400;
}
.h2-narrow { max-width: 760px; }
.h2-wide { max-width: 720px; margin-bottom: 44px; }

.h3 {
  font-family: var(--display-font);
  font-size: 24px;
  margin: 0 0 8px;
  font-weight: 400;
}

.lede {
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.6;
  font-weight: 600;
  margin: 0 0 32px;
}
.lede-narrow { max-width: 640px; }
.lede-dark { color: var(--text-muted-light); }
.lede-center { max-width: 620px; margin: 0 auto; color: var(--text-muted-light); }

.badge {
  display: inline-block;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.badge-yellow { background: var(--yellow); color: var(--dark); border: 3px solid #000; box-shadow: 3px 3px 0 #000; font-size: 14px; padding: 8px 16px; }
.badge-dark { background: var(--dark); color: var(--yellow); }
.badge-accent { background: var(--accent); color: #fff; border: 2px solid #000; }
.badge-rotate-neg { transform: rotate(-2deg); }
.badge-rotate-pos { transform: rotate(1.5deg); }
.badge-rotate-neg-sm { transform: rotate(-1.5deg); }
.badge-rotate-pos-sm { transform: rotate(1.5deg); }

.btn {
  display: inline-block;
  font-family: var(--display-font);
  border-radius: 14px;
  border: 3px solid #000;
  box-shadow: 0 6px 0 #000;
  transition: transform .1s;
  text-align: center;
  cursor: pointer;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(1px); box-shadow: 0 3px 0 #000; }
.btn-lg { font-size: 19px; padding: 16px 30px; }
.btn-sm { font-size: 15px; letter-spacing: .5px; padding: 12px 22px; border-radius: 999px; }
.btn-block { width: 100%; font-size: 19px; padding: 16px 24px; }
.btn-nowrap { white-space: nowrap; flex: 0 0 auto; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-hover); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.14); backdrop-filter: blur(4px); color: #fff; }
.btn-ghost:hover { color: var(--yellow); }

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13,16,40,.92);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid #000;
  box-shadow: 0 4px 0 rgba(0,0,0,.35);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: clamp(8px,2vw,10px) clamp(20px,5vw,32px);
  position: relative;
}
.nav-logo img {
  height: clamp(40px,7vw,54px);
  width: auto;
  filter: drop-shadow(0 2px 0 rgba(0,0,0,.4));
}
.hamburger {
  display: none;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: auto;
}
.nav-links a:not(.btn) {
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: 999px;
}
.nav-links a:not(.btn):hover { background: rgba(255,255,255,.12); color: var(--yellow); }

@media (max-width: 760px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(13,16,40,.98);
    padding: 16px 20px;
    border-bottom: 3px solid #000;
    margin-left: 0;
    gap: 10px;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--dark2);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: .85;
}
.hero-scrim-v {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,16,40,.55) 0%, rgba(13,16,40,.15) 45%, rgba(13,16,40,.88) 100%);
}
.hero-scrim-h {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,16,40,.92) 0%, rgba(13,16,40,.72) 28%, rgba(13,16,40,.25) 52%, rgba(13,16,40,0) 70%);
}
.hero-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(40px,8vw,56px) clamp(20px,5vw,32px) 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 24px;
  align-items: end;
}
.hero-copy { align-self: center; padding: 24px 0 clamp(28px,6vw,56px); }
.hero-title {
  font-family: var(--display-font);
  font-size: clamp(40px,8vw,84px);
  line-height: 1.02;
  margin: 0 0 20px;
  text-shadow: 4px 4px 0 #000;
  font-weight: 400;
}
.hero-lede {
  font-size: clamp(16px,2.2vw,20px);
  line-height: 1.55;
  font-weight: 600;
  max-width: 520px;
  margin: 0 0 32px;
  color: var(--cream);
  text-shadow: 0 2px 4px rgba(0,0,0,.6);
}
.hero-lede strong { color: var(--yellow); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-art {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  padding-bottom: 22px;
}
.mascot {
  width: 100%;
  max-width: 560px;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.55));
  animation: wr-bob 5s ease-in-out infinite;
}
.marquee-track {
  position: relative;
  background: #000;
  border-top: 3px solid #000;
  overflow: hidden;
  padding: 10px 0;
}
.marquee-content {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  width: max-content;
  animation: wr-marquee 22s linear infinite;
  font-family: var(--display-font);
  font-size: clamp(13px,2.2vw,16px);
  letter-spacing: 2px;
  will-change: transform;
}

/* ---------- problem ---------- */

.problem {
  background: var(--cream);
  color: var(--dark);
  padding: clamp(56px,9vw,88px) 0;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 22px;
}
.problem-card {
  background: #fff;
  border: 3px solid #000;
  border-radius: 18px;
  box-shadow: 6px 6px 0 #000;
  padding: 26px 24px;
}
.problem-num {
  font-family: var(--display-font);
  font-size: 34px;
  color: var(--accent);
  margin-bottom: 10px;
}
.problem-title { font-family: var(--display-font); font-size: 20px; margin-bottom: 8px; }
.problem-body { font-size: 16px; line-height: 1.55; font-weight: 600; color: var(--text-muted); }

/* ---------- product ---------- */

.product {
  background: var(--dark);
  padding: clamp(56px,9vw,88px) 0;
  overflow: hidden;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
  gap: 56px;
  align-items: center;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(max(220px,calc(50% - 7px)),1fr));
  gap: 14px;
}
.feature-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.07);
  border: 2px solid rgba(255,255,255,.18);
  border-radius: 14px;
  padding: 14px 16px;
}
.feature-icon {
  flex: none;
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 2px solid #000;
  overflow: visible;
}
.feature-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 44px;
  height: 44px;
  max-width: none;
  object-fit: contain;
}
.feature-title { font-weight: 900; font-size: 16px; }
.feature-sub { font-weight: 600; font-size: 13.5px; color: var(--text-muted-lighter); }

.product-video-wrap { position: relative; }
.product-video-glow {
  position: absolute;
  inset: 8% -6% 8% -6%;
  background: radial-gradient(ellipse at center, rgba(255,200,33,.22), transparent 70%);
}
.product-video {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  border: 3px solid #000;
  box-shadow: 10px 10px 0 #000;
  transform: rotate(-1.5deg);
}
.video-sticker {
  position: absolute;
  bottom: -18px;
  right: -10px;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--display-font);
  font-size: 16px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 3px solid #000;
  box-shadow: 4px 4px 0 #000;
  transform: rotate(2deg);
}

/* ---------- why ---------- */

.why {
  background: var(--accent);
  color: #fff;
  padding: clamp(56px,9vw,88px) 0;
  border-top: 4px solid #000;
  border-bottom: 4px solid #000;
}
.why-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.why-tag {
  font-family: var(--display-font);
  font-size: 17px;
  background: #fff;
  color: var(--accent);
  padding: 12px 18px;
  border-radius: 12px;
  border: 3px solid #000;
  box-shadow: 4px 4px 0 #000;
  transform: rotate(1.5deg);
}
.reason-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(max(260px,calc(50% - 11px)),1fr));
  gap: 22px;
}
.reason-card {
  background: #fff;
  color: var(--dark);
  border: 3px solid #000;
  border-radius: 18px;
  box-shadow: 6px 6px 0 #000;
  padding: 26px 24px;
  display: flex;
  gap: 16px;
}
.reason-glyph {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--yellow);
  border: 3px solid #000;
  display: grid;
  place-items: center;
  font-family: var(--display-font);
  font-size: 20px;
}
.reason-title { font-family: var(--display-font); font-size: 20px; margin-bottom: 6px; }
.reason-body { font-size: 16px; line-height: 1.55; font-weight: 600; color: var(--text-muted); }

/* ---------- amsterdam ---------- */

.amsterdam {
  position: relative;
  background: var(--dark2);
  padding: clamp(64px,9vw,96px) 0;
  overflow: hidden;
}
.amsterdam-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .28;
}
.amsterdam-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,16,40,.92), rgba(13,16,40,.55) 50%, rgba(13,16,40,.95));
}
.amsterdam-inner { position: relative; }
.amsterdam-head { text-align: center; margin-bottom: 48px; }
.amsterdam-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: center;
}
.photo-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
  padding: 18px;
}
.photo-card img { width: 100%; height: auto; border-radius: 12px; }
.photo-rotate-neg { flex: 0.8 1 260px; max-width: 400px; transform: rotate(-3deg); }
.photo-rotate-pos { flex: 1.2 1 320px; max-width: 460px; transform: rotate(2deg); }
.custom-cta {
  margin-top: 56px;
  background: var(--dark);
  border: 3px solid #000;
  border-radius: 22px;
  box-shadow: 8px 8px 0 #000;
  padding: clamp(24px,5vw,36px) clamp(20px,5vw,40px);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.custom-cta > div:first-child { flex: 1 1 320px; }
.custom-cta h3 { color: var(--yellow); }
.custom-cta p { font-size: 16.5px; line-height: 1.6; font-weight: 600; color: var(--text-muted-light); margin: 0; }

/* ---------- gallery ---------- */

.gallery { background: var(--cream); color: var(--dark); padding: clamp(56px,9vw,88px) 0; }

.wr-gallery {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-areas: "video img1 img2" "video img3 img4";
}
.wr-g-video { grid-area: video; width: 100%; height: 100%; min-height: 220px; object-fit: cover; border-radius: 18px; border: 3px solid var(--dark); box-shadow: 6px 6px 0 var(--dark); }
.wr-g-0-fig { grid-area: img1; }
.wr-g-1-fig { grid-area: img2; }
.wr-g-2-fig { grid-area: img3; }
.wr-g-3-fig { grid-area: img4; }

@media (max-width: 900px) {
  .wr-gallery { grid-template-columns: 1.3fr 1fr; grid-template-areas: "video img1" "video img2" "img3 img4"; }
}
@media (max-width: 600px) {
  .wr-gallery { grid-template-columns: 1fr; grid-template-areas: "video" "img1" "img2" "img3" "img4"; }
}

.gallery-fig {
  margin: 0;
  background: #fff;
  border: 3px solid #000;
  border-radius: 18px;
  box-shadow: 6px 6px 0 #000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.gallery-img { aspect-ratio: 4/3; overflow: hidden; flex: 1; }
.gallery-img img { width: 100%; height: 100%; object-fit: cover; }
.gallery-fig figcaption {
  padding: 12px 16px;
  font-weight: 800;
  font-size: 14px;
  border-top: 3px solid #000;
  background: var(--yellow);
  color: var(--dark);
}

/* ---------- stockist ---------- */

.stockist { background: var(--dark); padding: clamp(64px,9vw,96px) 0; position: relative; overflow: hidden; }
.stockist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
  gap: 56px;
  align-items: start;
}
.perks { display: flex; flex-direction: column; gap: 12px; }
.perk { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 16px; }
.perk-check {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid #000;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--dark);
  font-size: 15px;
}
.display-box-img {
  width: 100%;
  max-width: 380px;
  margin-top: 36px;
  border-radius: 18px;
  border: 3px solid #000;
  box-shadow: 8px 8px 0 #000;
  transform: rotate(-1.5deg);
}

.stock-form {
  background: var(--cream);
  color: var(--dark);
  border: 3px solid #000;
  border-radius: 22px;
  box-shadow: 10px 10px 0 #000;
  padding: clamp(24px,5vw,34px) clamp(20px,5vw,32px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-success {
  background: #1F8A5B;
  color: #fff;
  border: 3px solid #000;
  border-radius: 14px;
  padding: 18px 20px;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 4px 4px 0 #000;
}
.form-fields { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; font-weight: 800; font-size: 13.5px; }
.field input, .field select, .field textarea {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 14px;
  border: 3px solid #000;
  border-radius: 12px;
  background: #fff;
  color: var(--dark);
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
.field textarea { resize: vertical; }
.form-heading-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.form-heading-row .h3 { margin: 0; }
.form-required-note { font-weight: 700; font-size: 12.5px; color: var(--text-muted); }
.form-error { color: var(--accent); font-weight: 800; font-size: 14px; }
.form-alt { font-weight: 700; font-size: 13px; color: var(--text-muted); text-align: center; }
.form-alt a { color: var(--accent); font-weight: 900; }
.form-alt a:hover { color: var(--accent-hover); }

/* ---------- footer ---------- */

.footer { background: #000; padding: clamp(40px,8vw,56px) 0 40px; border-top: 4px solid var(--accent); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.footer-logo { width: auto; height: 74px; }
.footer-tagline { font-family: var(--display-font); font-size: clamp(20px,2.6vw,28px); color: var(--yellow); }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; font-weight: 800; font-size: 14px; }
.footer-links a { color: var(--text-muted-light); }
.footer-links a:hover { color: var(--yellow); }
.footer-copy { font-weight: 600; font-size: 13px; color: #7B80A6; }
.footer-copy a { color: #7B80A6; }
.footer-copy a:hover { color: var(--yellow); }
