/* =========================================================
   RIPPED — styles
   White, bright, playful. Inspired by the foil-bag packaging.
   ========================================================= */

:root {
  --bg: #ffffff;
  --bg-soft: #f4f4f1;          /* warm off-white */
  --bg-card: #ffffff;
  --line: #e6e6e1;
  --line-soft: #efefea;

  --text: #0d0d0d;
  --text-dim: #5a5a5a;
  --text-mute: #8a8a86;

  /* Brand palette pulled from the bag art */
  --blue: #1e8fe0;
  --blue-deep: #0c6cb5;
  --orange: #f07a2d;
  --orange-deep: #d35e15;
  --pink: #e36fa6;
  --purple: #7a3aa6;
  --grape: #5a2a8c;
  --gold: #e6a922;
  --green: #2db84a;
  --red: #d23a3a;

  --radius: 14px;
  --radius-lg: 22px;

  --container: 1240px;
  --pad: clamp(20px, 4vw, 56px);

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease), opacity .2s var(--ease); }
a:hover { color: var(--blue); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- typography helpers ---------- */
.kicker {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-block;
  padding: 6px 12px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  background: #fff;
  box-shadow: 3px 3px 0 0 var(--blue);
}
.kicker--orange { color: var(--orange); border-color: var(--orange); box-shadow: 3px 3px 0 0 var(--orange); }
.kicker--pink   { color: var(--pink);   border-color: var(--pink);   box-shadow: 3px 3px 0 0 var(--pink); }
.kicker--purple { color: var(--purple); border-color: var(--purple); box-shadow: 3px 3px 0 0 var(--purple); }
.kicker--blue   { color: var(--blue);   border-color: var(--blue);   box-shadow: 3px 3px 0 0 var(--blue); }

.section__head {
  max-width: 820px;
  margin: 0 auto clamp(36px, 6vw, 72px);
  text-align: center;
  padding: 0 var(--pad);
}
.section__title {
  font-family: 'Bowlby One', Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 6.4vw, 80px);
  line-height: .95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 22px 0 16px;
  color: var(--text);
}
.section__title em {
  font-style: normal;
  color: var(--blue);
  font-family: inherit;
  -webkit-text-stroke: 0;
}
.section__lede {
  color: var(--text-dim);
  font-size: clamp(15px, 1.4vw, 18px);
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  border: 2px solid var(--text);
  transition: transform .15s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .15s var(--ease);
  white-space: nowrap;
  box-shadow: 4px 4px 0 0 var(--text);
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 0 var(--text); }
.btn:active { transform: translate(2px,2px); box-shadow: 0 0 0 0 var(--text); }
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-deep); color: #fff; }
.btn--ghost { background: #fff; color: var(--text); }
.btn--ghost:hover { background: #fff; color: var(--blue); }
.btn--small { padding: 9px 16px; font-size: 13px; box-shadow: 3px 3px 0 0 var(--text); }
.btn--small:hover { box-shadow: 4px 4px 0 0 var(--text); }
.btn--large { padding: 16px 26px; font-size: 15px; }

/* ---------- age gate ---------- */
.age-gate {
  position: fixed; inset: 0;
  background: rgba(20,20,20,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  display: grid; place-items: center;
  padding: 24px;
  animation: fadeIn .3s var(--ease);
}
.age-gate.is-hidden { display: none; }
.age-gate__card {
  max-width: 520px;
  width: 100%;
  background: #fff;
  border: 3px solid var(--text);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  text-align: center;
  box-shadow: 10px 10px 0 0 var(--blue);
}
.age-gate__logo { width: 180px; margin: 0 auto 8px; }
.age-gate__title {
  font-family: 'Bowlby One', sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 18px 0 12px;
}
.age-gate__sub { color: var(--text-dim); font-size: 14px; margin: 0 0 24px; }
.age-gate__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.age-gate__legal {
  margin-top: 28px;
  font-size: 11px;
  color: var(--text-mute);
  line-height: 1.5;
}

/* ---------- top bar (announcement) ---------- */
.topbar {
  background: var(--blue);
  color: #fff;
  overflow: hidden;
  padding: 8px 0;
  border-bottom: 2px solid var(--text);
}
.topbar__track {
  display: flex; gap: 36px;
  white-space: nowrap;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .18em;
  animation: scroll 32s linear infinite;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px var(--pad);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease), padding .25s var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255,255,255,.94);
  padding-top: 8px; padding-bottom: 8px;
}
.nav__logo {
  display: inline-flex; align-items: center;
  transition: transform .2s var(--ease);
}
.nav__logo:hover { transform: rotate(-2deg) scale(1.04); }
.nav__logo img { height: 38px; width: auto; display: block; }

/* Pill-style nav links — sticker aesthetic */
.nav__links {
  justify-self: center;
  display: flex; gap: 4px;
  padding: 5px;
  background: #fff;
  border: 2px solid var(--text);
  border-radius: 999px;
  box-shadow: 3px 3px 0 0 var(--text);
}
.nav__links a {
  position: relative;
  display: inline-flex; align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__links a span { position: relative; z-index: 1; }
.nav__links a::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--blue);
  border-radius: 999px;
  transform: scale(.6);
  opacity: 0;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::before { transform: scale(1); opacity: 1; }
.nav__links a.is-active { color: #fff; }
.nav__links a.is-active::before { transform: scale(1); opacity: 1; background: var(--text); }

.nav__cta { display: flex; gap: 12px; align-items: center; }
.nav__burger {
  display: none;
  width: 42px; height: 42px;
  border: 2px solid var(--text);
  border-radius: 12px;
  background: #fff;
  position: relative;
  box-shadow: 3px 3px 0 0 var(--text);
}
.nav__burger span {
  display: block; width: 16px; height: 2px; background: var(--text);
  position: absolute; left: 11px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__burger span:nth-child(1) { top: 13px; }
.nav__burger span:nth-child(2) { top: 19px; }
.nav__burger span:nth-child(3) { top: 25px; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 64px 0 0 0;
  background: #fff;
  padding: 32px var(--pad);
  display: flex; flex-direction: column; gap: 8px;
  transform: translateY(-110%);
  transition: transform .35s var(--ease);
  z-index: 40;
  border-bottom: 2px solid var(--text);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a {
  padding: 14px 0;
  font-family: 'Bowlby One', sans-serif;
  font-size: 28px;
  letter-spacing: .02em;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a.btn { font-family: 'Inter', sans-serif; margin-top: 16px; border-bottom: 0; font-size: 15px; align-self: flex-start; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 6vw, 80px) var(--pad) clamp(60px, 8vw, 100px);
  isolation: isolate;
  background: var(--bg);
}
.hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero__blob {
  position: absolute;
  width: 540px; height: 540px;
  filter: blur(110px);
  opacity: .55;
  border-radius: 50%;
}
.hero__blob--a { background: color-mix(in srgb, var(--blue) 60%, white); top: -150px; left: -150px; }
.hero__blob--b { background: color-mix(in srgb, var(--orange) 50%, white); top: 30%; right: -180px; opacity: .45; }
.hero__blob--c { background: color-mix(in srgb, var(--pink) 50%, white); bottom: -200px; left: 20%; opacity: .4; }

.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 56px;
  position: relative;
}
.hero__copy { min-width: 0; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border: 2px solid var(--text);
  background: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--text);
  margin-bottom: 26px;
  box-shadow: 3px 3px 0 0 var(--text);
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--orange) 60%, transparent);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--orange) 60%, transparent); }
  70% { box-shadow: 0 0 0 10px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.hero__title {
  font-family: 'Bowlby One', Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(56px, 9vw, 132px);
  line-height: .9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 24px;
  color: var(--text);
}
.title-accent {
  color: var(--orange);
  position: relative;
  display: inline-block;
}
.title-accent::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 6%;
  height: 14%;
  background: var(--blue);
  z-index: -1;
  border-radius: 4px;
  transform: skewY(-1.5deg);
  opacity: .35;
}

.hero__lede {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 0 32px;
}
.hero__lede strong { color: var(--text); }

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero__stats {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 580px;
}
.hero__stats li {
  padding: 16px 14px;
  background: #fff;
  border: 2px solid var(--text);
  border-radius: var(--radius);
  text-align: left;
  box-shadow: 3px 3px 0 0 var(--text);
}
.hero__stats li:nth-child(1) { border-color: var(--blue); box-shadow: 3px 3px 0 0 var(--blue); }
.hero__stats li:nth-child(2) { border-color: var(--orange); box-shadow: 3px 3px 0 0 var(--orange); }
.hero__stats li:nth-child(3) { border-color: var(--pink); box-shadow: 3px 3px 0 0 var(--pink); }
.hero__stats li:nth-child(4) { border-color: var(--purple); box-shadow: 3px 3px 0 0 var(--purple); }
.hero__stats strong {
  display: block;
  font-family: 'Bowlby One', sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 4px;
}
.hero__stats span { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--text-mute); font-weight: 700; }

/* hero product / bag stack */
.hero__product {
  position: relative;
  display: grid; place-items: center;
  min-height: clamp(360px, 40vw, 540px);
}
.hero__bag {
  position: absolute;
  width: clamp(220px, 28vw, 380px);
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.18));
  transition: transform .35s var(--ease);
}
.hero__bag--main {
  z-index: 3;
  transform: rotate(-3deg);
  animation: floatMain 6s ease-in-out infinite;
}
.hero__bag--alt1 {
  z-index: 2;
  width: clamp(160px, 20vw, 260px);
  left: 8%; top: 8%;
  transform: rotate(-14deg);
  animation: floatAlt1 7.5s ease-in-out infinite;
}
.hero__bag--alt2 {
  z-index: 1;
  width: clamp(160px, 20vw, 260px);
  right: 8%; bottom: 8%;
  transform: rotate(12deg);
  animation: floatAlt2 8s ease-in-out infinite;
}
@keyframes floatMain {
  0%,100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-1deg) translateY(-12px); }
}
@keyframes floatAlt1 {
  0%,100% { transform: rotate(-14deg) translateY(0); }
  50% { transform: rotate(-12deg) translateY(-8px); }
}
@keyframes floatAlt2 {
  0%,100% { transform: rotate(12deg) translateY(0); }
  50% { transform: rotate(14deg) translateY(-8px); }
}

/* ---------- banner ---------- */
.banner {
  background: var(--orange);
  color: #fff;
  border-top: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  padding: 14px 0;
  overflow: hidden;
}
.banner__row {
  display: flex; gap: 20px;
  white-space: nowrap;
  font-family: 'Bowlby One', sans-serif;
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: .04em;
  justify-content: center;
}
.banner__row b { color: rgba(255,255,255,.6); font-weight: 400; }

/* ---------- features ---------- */
.features {
  padding: clamp(80px, 10vw, 140px) var(--pad);
  max-width: var(--container);
  margin: 0 auto;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.feature-card {
  --c: var(--blue);
  position: relative;
  padding: 28px 24px;
  background: #fff;
  border: 2px solid var(--text);
  border-radius: var(--radius-lg);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  overflow: hidden;
  box-shadow: 6px 6px 0 0 var(--c);
}
.feature-card--blue   { --c: var(--blue); }
.feature-card--orange { --c: var(--orange); }
.feature-card--pink   { --c: var(--pink); }
.feature-card--purple { --c: var(--purple); }
.feature-card:hover {
  transform: translate(-3px,-3px);
  box-shadow: 9px 9px 0 0 var(--c);
}
.feature-card__num {
  font-family: 'Bowlby One', sans-serif;
  font-size: 14px;
  letter-spacing: .15em;
  color: var(--c);
  margin-bottom: 18px;
}
.feature-card h3 {
  font-family: 'Bowlby One', sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.feature-card p { color: var(--text-dim); margin: 0; font-size: 14.5px; }

/* ---------- products ---------- */
.products {
  padding: clamp(60px, 8vw, 120px) var(--pad);
  background: var(--bg-soft);
  border-top: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
}
.products__filters {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin: -8px auto 36px;
  max-width: var(--container);
}
.chip {
  padding: 10px 20px;
  border-radius: 999px;
  border: 2px solid var(--text);
  background: #fff;
  color: var(--text);
  font-size: 13px; font-weight: 700;
  letter-spacing: .04em;
  transition: all .15s var(--ease);
  box-shadow: 3px 3px 0 0 var(--text);
}
.chip:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 0 var(--text); }
.chip.is-active {
  background: var(--blue); color: #fff;
}

.products__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}
.products__cta { text-align: center; margin-top: 48px; }

.p-card {
  --c: var(--blue);
  position: relative;
  background: #fff;
  border: 2px solid var(--text);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 5px 5px 0 0 var(--c);
}
.p-card:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 0 var(--c); }
.p-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.p-card__link:hover { color: inherit; }
.p-card__link:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
  border-radius: var(--radius-lg);
}
.p-card__art {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--c) 14%, white) 0%, #fff 70%);
  overflow: hidden;
  padding: 16px;
}
.p-card__bag {
  width: 88%;
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 14px 18px rgba(0,0,0,.12));
  transition: transform .3s var(--ease);
}
.p-card:hover .p-card__bag { transform: scale(1.04) rotate(-1.5deg); }

.p-card__body { padding: 20px 22px 22px; border-top: 2px solid var(--text); background: #fff; }
.p-card__tag {
  display: inline-block;
  font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--c);
  color: #fff;
  margin-bottom: 10px;
}
.p-card__name {
  font-family: 'Bowlby One', sans-serif;
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin: 0 0 6px;
  color: var(--text);
}
.p-card__notes { color: var(--text-dim); font-size: 13.5px; margin: 0 0 14px; min-height: 38px; }
.p-card__meta {
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--text-mute);
  border-top: 1px solid var(--line);
  padding-top: 12px;
  font-weight: 700;
  letter-spacing: .03em;
}
.p-card__meta strong { color: var(--text); font-weight: 800; }

/* ---------- process ---------- */
.process {
  padding: clamp(80px, 10vw, 140px) var(--pad);
  max-width: var(--container);
  margin: 0 auto;
}
.process__steps {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.process__steps li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 24px;
  background: #fff;
  border: 2px solid var(--text);
  border-radius: var(--radius-lg);
  box-shadow: 5px 5px 0 0 var(--text);
}
.process__steps li:nth-child(1) { box-shadow: 5px 5px 0 0 var(--blue); border-color: var(--text); }
.process__steps li:nth-child(2) { box-shadow: 5px 5px 0 0 var(--orange); }
.process__steps li:nth-child(3) { box-shadow: 5px 5px 0 0 var(--pink); }
.process__steps li:nth-child(4) { box-shadow: 5px 5px 0 0 var(--purple); }
.step-num {
  font-family: 'Bowlby One', sans-serif;
  font-size: 36px; line-height: 1;
  color: var(--blue);
  flex: 0 0 auto;
}
.process__steps li:nth-child(2) .step-num { color: var(--orange); }
.process__steps li:nth-child(3) .step-num { color: var(--pink); }
.process__steps li:nth-child(4) .step-num { color: var(--purple); }
.process__steps h3 {
  font-family: 'Bowlby One', sans-serif;
  font-weight: 400;
  font-size: 22px; line-height: 1;
  text-transform: uppercase;
  margin: 6px 0 8px;
}
.process__steps p { color: var(--text-dim); font-size: 14px; margin: 0; }

/* ---------- testimonials ---------- */
.testimonials {
  padding: clamp(80px, 10vw, 140px) var(--pad);
  background: var(--bg-soft);
  border-top: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
}
.testimonials__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.t-card {
  --c: var(--blue);
  background: #fff;
  border: 2px solid var(--text);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  margin: 0;
  position: relative;
  box-shadow: 5px 5px 0 0 var(--c);
}
.t-card--orange { --c: var(--orange); }
.t-card--pink { --c: var(--pink); }
.t-card::before {
  content: '"';
  position: absolute; top: 0; left: 18px;
  font-family: 'Bowlby One', sans-serif;
  font-size: 96px; line-height: 1;
  color: var(--c);
  opacity: .25;
}
.t-card p {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 18px;
  font-weight: 500;
  position: relative;
}
.t-card footer { color: var(--text-mute); font-size: 13px; letter-spacing: .04em; font-weight: 700; }

/* ---------- press ---------- */
.press { padding: clamp(60px, 8vw, 100px) var(--pad); background: #fff; }
.press__inner { max-width: var(--container); margin: 0 auto; text-align: center; }
.press__logos {
  margin-top: 28px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 28px 48px;
}
.press__logos span {
  font-family: 'Bowlby One', sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: .04em;
  color: var(--text-mute);
  transition: color .2s var(--ease);
}
.press__logos span:hover { color: var(--text); }

/* ---------- contact ---------- */
.contact {
  padding: clamp(80px, 10vw, 140px) var(--pad);
  background: var(--bg-soft);
  border-top: 2px solid var(--text);
}
.contact__grid {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.contact__grid .kicker { margin-bottom: 16px; }
.contact__grid .section__title { font-size: clamp(32px, 4vw, 56px); margin-top: 16px; }
.contact__grid .newsletter { justify-content: center; }

.newsletter {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 20px;
}
.newsletter input[type="email"],
.newsletter input[type="text"] {
  flex: 1; min-width: 220px;
  padding: 14px 18px;
  background: #fff;
  border: 2px solid var(--text);
  border-radius: 999px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: box-shadow .2s var(--ease), border-color .2s var(--ease);
  box-shadow: 3px 3px 0 0 var(--text);
}
.newsletter input[type="email"]:focus,
.newsletter input[type="text"]:focus { border-color: var(--blue); box-shadow: 3px 3px 0 0 var(--blue); }
.newsletter__msg { width: 100%; margin: 8px 0 0; font-size: 13px; color: var(--blue); min-height: 18px; font-weight: 600; }

/* --- Multi-field newsletter (homepage signup) --- */
.newsletter--full { flex-direction: column; gap: 14px; align-items: stretch; max-width: 640px; margin-inline: auto; text-align: left; }
.newsletter--full .form-row {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.newsletter--full .form-row > .form-field { flex: 1 1 200px; min-width: 0; }
.newsletter--full .form-field {
  display: flex; flex-direction: column; gap: 6px; border: 0; padding: 0; margin: 0;
}
.newsletter--full .form-field label,
.newsletter--full .form-field legend {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding: 0;
}
.newsletter--full .form-field .req { color: var(--orange); }
.newsletter--full .form-field--narrow { flex: 0 0 160px; }
.newsletter--full .btn { flex: 0 0 auto; align-self: flex-end; height: 50px; }
.newsletter--full .radio-row {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.newsletter--full .radio-row label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  border: 2px solid var(--text);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: none;
  color: var(--text);
  cursor: pointer;
  box-shadow: 2px 2px 0 0 var(--text);
  transition: background .15s var(--ease), color .15s var(--ease);
}
.newsletter--full .radio-row label:hover { background: var(--bg-soft); }
.newsletter--full .radio-row input[type="radio"] {
  appearance: none;
  width: 14px; height: 14px;
  border: 2px solid var(--text);
  border-radius: 50%;
  margin: 0;
  flex: 0 0 14px;
  position: relative;
  cursor: pointer;
}
.newsletter--full .radio-row input[type="radio"]:checked {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: inset 0 0 0 3px #fff;
}
.newsletter--full .radio-row label:has(input:checked) {
  background: var(--blue);
  color: #fff;
  border-color: var(--text);
}
.newsletter--full .radio-row label:has(input:checked) input[type="radio"] {
  border-color: #fff;
  box-shadow: inset 0 0 0 3px var(--blue);
}

.contact__card {
  background: #fff;
  border: 2px solid var(--text);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 6px 6px 0 0 var(--orange);
}
.contact__card h3 {
  font-family: 'Bowlby One', sans-serif;
  font-weight: 400;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin: 0 0 8px;
}
.contact__card p { color: var(--text-dim); margin: 0 0 18px; font-size: 14px; }
.contact__list { list-style: none; padding: 0; margin: 0; }
.contact__list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  gap: 12px;
}
.contact__list li span { color: var(--text-mute); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; }
.contact__list a { color: var(--text); font-weight: 600; }
.contact__list a:hover { color: var(--blue); }

/* ---------- footer ---------- */
.footer {
  padding: 64px var(--pad) 28px;
  background: var(--text);
  color: #fff;
  border-top: 2px solid var(--text);
}
.footer a { color: rgba(255,255,255,.8); }
.footer a:hover { color: var(--orange); }
.footer__top {
  max-width: var(--container); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
}
.footer__logo { height: 48px; width: auto; }
.footer__brand p { color: rgba(255,255,255,.7); max-width: 320px; margin: 14px 0 0; font-size: 14px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__cols h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 14px;
  font-weight: 700;
}
.footer__cols a { display: block; padding: 6px 0; font-size: 14px; }

.footer__bottom {
  max-width: var(--container); margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex; flex-direction: column; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,.55);
}
.footer__legal { max-width: 760px; line-height: 1.6; }
.footer__links a { color: rgba(255,255,255,.7); }
.footer__links span { margin: 0 8px; opacity: .5; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; align-items: center; justify-content: center; }
  .nav__cta .btn--small { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 28px; }
  .hero__copy { order: 2; }
  .hero__product { order: 1; min-height: 380px; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .age-gate__actions { flex-direction: column; }
  .age-gate__actions .btn { width: 100%; justify-content: center; }
  .hero__bag--alt1, .hero__bag--alt2 { display: none; }
}

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