/* ==========================================================================
   Much Love — Home (Figma V4.2)
   ========================================================================== */

/* Self-hosted fonts (latin subset, from Google Fonts — SIL OFL) */
@font-face {
  font-family: "Archivo Black";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/archivo-black-latin.woff2?v=4b6914a69e") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url("../assets/fonts/dm-sans-latin.woff2?v=6c1e961057") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Libre Caslon Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/libre-caslon-display-latin.woff2?v=3b6d3d56e4") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --green: #61a654;
  --purple: #993f9e;
  --black: #000;
  --white: #fff;
  --cream: #f2efe7;
  --ink-111: #111;
  --ink-0f: #0f0f0f;
  --grey-75: #757575;

  --f-display: "Archivo Black", "Arial Black", sans-serif;
  --f-body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-serif: "Libre Caslon Display", "Times New Roman", serif;

  --container: 1216px;
  --gutter: 112px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
html.lenis { scroll-behavior: auto; }
.lenis.lenis-stopped { overflow: clip; }
main:focus { outline: none; }

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--white);
  color: var(--black);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: none; }

/* Motion: hide intro items only until motion.js has set their start state */
.has-motion:not(.motion-ready):not(.motion-failsafe) [data-intro],
.has-motion:not(.motion-ready):not(.motion-failsafe) [data-intro-lines],
.has-motion:not(.motion-ready):not(.motion-failsafe) .nav__links,
.has-motion:not(.motion-ready):not(.motion-failsafe) .nav__logo { opacity: 0; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; font-weight: inherit; }
button, input { font: inherit; 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;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.purple { color: var(--purple); }
.arr {
  display: inline-block;
  flex-shrink: 0;
  width: 0.7em;
  height: 0.7em;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M1.6 8.4 8.2 1.8M3.1 1.6h5.3v5.3' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='square'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M1.6 8.4 8.2 1.8M3.1 1.6h5.3v5.3' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='square'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ---------- Eyebrows ---------- */
.eyebrow {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 10.5px;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow--green { color: var(--green); }
.eyebrow--purple { color: var(--purple); }
.eyebrow--light { color: rgba(255, 255, 255, 0.82); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 52px;
  padding: 0 23px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.btn .arr { width: 7px; height: 7px; }
.btn--white { background: var(--white); color: var(--black); }
.btn--white:hover { background: var(--green); color: var(--black); }
.btn--outline { border-color: var(--white); color: var(--white); }
.btn--outline:hover { background: var(--white); color: var(--black); }
.btn--black { background: var(--black); color: var(--white); }
.btn--black:hover { background: var(--purple); }
.btn:focus-visible,
a:focus-visible,
button:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }

/* ==========================================================================
   Announcement + Nav
   ========================================================================== */
.announce {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--black);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 16px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.nav.is-hidden:not(:focus-within) { transform: translateY(-100%); }
.nav__inner {
  position: relative;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 87px;
}
.nav__links {
  display: flex;
  gap: 28px;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.nav__links a { position: relative; transition: color .2s ease; }
.nav__links a:hover { color: var(--green); }
.nav__logo {
  position: absolute;
  left: 50%;
  top: -6px;
  transform: translateX(-50%);
  width: 262px;
}
.nav__toggle { display: none; }
.mobile-menu { display: none; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  height: 802px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #000;
}
.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  container-type: size;
  background: #000 url("../assets/img/hero-poster.webp?v=9571fbacb2") center / cover no-repeat;
}
/* Frame matches the video's cover box so the watermark mask tracks it */
.bg-video__frame {
  position: absolute;
  left: 50%;
  top: 50%;
  width: max(100cqw, 100cqh * 1280 / 712);
  aspect-ratio: 1280 / 712;
  transform: translate(calc(-50% + var(--fx-x, 0) * -14px), calc(-50% + var(--fx-y, 0) * -10px)) scale(1.03);
}
.hero__wm-mask {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34%;
  height: 32%;
  background: radial-gradient(ellipse 62% 48% at 72% 78%, rgba(0,0,0,.9) 0%, rgba(0,0,0,.75) 35%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 159px;
  padding-left: 20px;
}
.hero__eyebrow {
  color: var(--green);
  font-size: 16px;
  letter-spacing: 0.115em;
}
.hero__title {
  margin-top: 24px;
  font-family: var(--f-display);
  font-size: 101px;
  line-height: 84px;
  letter-spacing: -0.068em;
  text-transform: uppercase;
  margin-right: 7px;
}
.hero__title span { display: block; }
.hero__lede {
  margin-top: 26px;
  max-width: 540px;
  font-size: 15px;
  line-height: 26.5px;
  color: rgba(255, 255, 255, 0.75);
}
.hero__ctas {
  display: flex;
  gap: 14px;
  margin-top: 31px;
}
.hero__tagline-inner { display: inline-block; }
.hero__tagline {
  position: absolute;
  left: 20px;
  right: 0;
  top: 628px;
  color: var(--green);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.143em;
  text-transform: uppercase;
}

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee {
  height: 67px;
  background: var(--cream);
  color: var(--black);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.marquee__track { display: flex; width: max-content; }
.marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.marquee__group span {
  font-family: var(--f-display);
  font-size: 25px;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__group i {
  width: 9px;
  height: 9px;
  margin: 0 38px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
}
.marquee__track { transform: translateX(1px); }

/* ==========================================================================
   Section heads
   ========================================================================== */
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.sec-head__copy {
  width: 495px;
  flex-shrink: 0;
  font-size: 14px;
  line-height: 24.5px;
  margin-bottom: 13px;
}
.sec-head__copy--dark { color: rgba(255, 255, 255, 0.72); }
.sec-head__copy--light { color: var(--grey-75); }

.display-xl,
.display-lg,
.display-md {
  font-family: var(--f-display);
  text-transform: uppercase;
  letter-spacing: -0.061em;
}
.display-xl { margin-top: 14px; font-size: 85px; line-height: 72px; }
.display-lg { margin-top: 9px; font-size: 83.5px; line-height: 1; letter-spacing: -0.054em; }
.display-md { margin-top: 13px; font-size: 91.4px; line-height: 75px; }

.display-serif {
  font-family: var(--f-serif);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 82.5px;
  line-height: 75px;
  letter-spacing: -0.042em;
}
.display-serif--sm { font-size: 73.3px; line-height: 70px; letter-spacing: 0; }

/* ==========================================================================
   01 Explore
   ========================================================================== */
.explore {
  padding: 104px 0 100px;
  border-bottom: 1px solid #1f1f1f;
}
.cat-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.cat-card {
  position: relative;
  height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  overflow: hidden;
  background: #000;
}
.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.92) 100%);
  pointer-events: none;
}
.cat-card__body {
  position: relative;
  z-index: 1;
  padding: 24px 24px 0;
}
.cat-card__num {
  color: var(--green);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.cat-card__title {
  margin-top: -3px;
  font-family: var(--f-display);
  font-size: 38px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}
.cat-card__desc {
  margin-top: 9px;
  font-size: 12px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 240px;
}
.cat-card img { transition: scale .8s cubic-bezier(.2,.7,.2,1); }
.cat-card:hover img { scale: 1.05; }
.cat-card:hover { border-color: rgba(153, 63, 158, 0.8); }

/* ==========================================================================
   02 Featured
   ========================================================================== */
.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
  border-bottom: 1px solid rgba(0,0,0,.33);
}
.featured__copy {
  background: var(--cream);
  color: var(--black);
  border-top: 1px solid rgba(0,0,0,.1);
  padding: 3px 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured__copy .display-serif { margin-top: 16px; }
.featured__text {
  margin-top: 38px;
  max-width: 535px;
  font-size: 14px;
  line-height: 24.5px;
  color: var(--grey-75);
}
.featured__copy .btn { align-self: flex-start; margin-top: 43px; height: 53px; }
.featured__visual {
  position: relative;
  overflow: hidden;
  background: #000;
  border-top: 1px solid #090909;
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured__smoke {
  position: absolute;
  inset: 0;
  background: #000 url("../assets/img/featured-smoke-poster.webp?v=41037aabce") center / cover no-repeat;
}

/* Background videos: poster shows until the video is actually playing */
.bg-video__el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .8s ease;
}
.bg-video.is-playing .bg-video__el { opacity: 1; }
/* Cursor-reactive layer (js/video-fx.js) sits over the video once it has frames */
.bg-video__fx {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  opacity: 0;
  transition: opacity .8s ease;
}
.bg-video.is-playing.fx-live .bg-video__fx { opacity: 1; }
.featured__smoke .bg-video__el,
.featured__smoke .bg-video__fx {
  transform: translate(calc(var(--fx-x, 0) * -12px), calc(var(--fx-y, 0) * -12px)) scale(1.04);
}
.bg-video__frame .bg-video__el { position: absolute; }

.drop-card {
  position: relative;
  width: 438px;
  padding: 14px 21px 22px;
  background: var(--ink-0f);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: perspective(1000px)
    translate(calc(var(--fx-x, 0) * 8px), calc(var(--fx-y, 0) * 8px))
    rotateY(calc(var(--fx-x, 0) * 7deg))
    rotateX(calc(var(--fx-y, 0) * -7deg))
    rotate(2.3deg);
  box-shadow: 0 30px 60px rgba(0,0,0,.45);
}
.drop-card__media { overflow: hidden; }
.drop-card img { width: 100%; }
.drop-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 16px;
}
.drop-card__label {
  color: var(--green);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.155em;
  text-transform: uppercase;
}
.drop-card__title {
  margin-top: 4px;
  font-family: var(--f-display);
  font-size: 38px;
  line-height: 32px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.drop-card__view {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 42px;
  padding: 0 0 0 0.14em; /* offsets trailing letter-spacing so the word sits optically centred */
  background: var(--white);
  color: var(--black);
  font-weight: 700;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ==========================================================================
   03 Best sellers
   ========================================================================== */
.best {
  background: var(--white);
  color: var(--black);
  padding: 101px 0 100px;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #ebf4e9;
}
.best .sec-head__copy { margin-bottom: 19px; }
.product-grid {
  margin-top: 49px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product {
  display: block;
  border-top: 2px solid var(--black);
  padding-top: 14px;
}
.product__media { position: relative; overflow: hidden; background: #111; }
.product__media img { width: 100%; aspect-ratio: 289 / 362; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.product__media img { transition: scale .8s cubic-bezier(.2,.7,.2,1); }
.product:hover .product__media img { scale: 1.05; }
.product__badge {
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 12px;
  height: 21px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product__name {
  margin-top: 13px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
}
.product__meta {
  margin-top: 5px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 11px;
  color: var(--grey-75);
}
.product__meta strong { color: var(--black); font-size: 13px; font-weight: 700; }

/* ==========================================================================
   Statement
   ========================================================================== */
.statement {
  background: var(--green);
  color: var(--black);
  border-bottom: 1px solid #4d8143;
}
.statement__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 81px;
  padding-bottom: 85px;
}
.statement__title {
  font-family: var(--f-display);
  font-size: 95px;
  line-height: 81px;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.badge-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  flex-shrink: 0;
}
.badge-circle span { display: block; transform: rotate(-8deg); }
.badge-circle--dark {
  width: 170px;
  height: 170px;
  background: var(--black);
  color: var(--white);
  border: 4px solid #3a3a3a;
  font-size: 10.5px;
  line-height: 13px;
  letter-spacing: 0.12em;
}

/* ==========================================================================
   04 Culture
   ========================================================================== */
.culture {
  display: grid;
  grid-template-columns: 756px 1fr;
  background: var(--ink-111);
  border-bottom: 1px solid rgba(153, 63, 158, 0.25);
}
.culture__media { overflow: hidden; }
.culture__media img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
@media (min-width: 1025px) { .culture { height: 660px; } }
.culture__copy {
  border-left: 1px solid #323232;
  padding: 3px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.culture__copy .display-serif { margin-top: 15px; }
.culture__text {
  margin-top: 39px;
  max-width: 440px;
  font-size: 14px;
  line-height: 24.5px;
  color: rgba(255, 255, 255, 0.65);
}
.culture__copy .btn { align-self: flex-start; margin-top: 42px; }

/* ==========================================================================
   05 Visit
   ========================================================================== */
.visit {
  background: var(--purple);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.visit__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 95px;
  padding-bottom: 96px;
}
.visit__text {
  margin-top: 18px;
  max-width: 500px;
  font-size: 14px;
  line-height: 24.5px;
  color: rgba(255, 255, 255, 0.72);
}
.visit__copy .btn { margin-top: 27px; height: 53px; }
.visit__media {
  overflow: hidden;
  position: relative;
  width: 580px;
  flex-shrink: 0;
  border: 1px solid #333;
  background: #000;
}
.visit__702 {
  position: absolute;
  left: calc(50% - 2px);
  top: calc(50% - 5px);
  transform: translate(-50%, -50%);
  font-family: var(--f-display);
  font-size: 208px;
  line-height: 1;
  letter-spacing: -0.11em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
  pointer-events: none;
}
.badge-circle--green {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 144px;
  height: 144px;
  background: var(--green);
  color: var(--black);
  font-size: 10.5px;
  line-height: 14px;
  letter-spacing: 0.12em;
}

/* ==========================================================================
   Newsletter
   ========================================================================== */
.news {
  background: var(--cream);
  color: var(--black);
  border-bottom: 1px solid rgba(0, 0, 0, 0.63);
}
.news__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 86px;
  padding-bottom: 85px;
}
.news__title { letter-spacing: 0; }
.news__line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--black);
}
.news__form {
  position: relative;
  width: 520px;
  display: flex;
  align-items: center;
  padding: 4px 0 18px;
  margin-bottom: 1px;
}
.news__form input {
  flex: 1;
  min-width: 0;
  background: none;
  border: 0;
  outline: 0;
  padding: 2px 0 0 2px;
  font-size: 15px;
  letter-spacing: 0;
  color: var(--black);
}
.news__form input::placeholder { color: var(--grey-75); opacity: 1; }
.news__form button {
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0 4px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.news__form button:hover { color: var(--purple); }
.news__form button .arr { width: 7px; height: 7px; margin-left: 4px; vertical-align: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { padding-top: 69px; padding-bottom: 27px; }
.footer__grid {
  display: grid;
  grid-template-columns: 420fr 224fr 224fr 228fr;
  gap: 40px;
}
.footer__logo {
  font-family: var(--f-display);
  font-size: 33px;
  line-height: 1;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.footer__desc {
  margin-top: 18px;
  max-width: 400px;
  font-size: 12px;
  line-height: 21px;
  color: rgba(255, 255, 255, 0.58);
}
.footer__col { display: flex; flex-direction: column; gap: 13px; }
.footer__head {
  color: var(--green);
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.footer__col a {
  font-size: 13px;
  line-height: 14px;
  color: rgba(255, 255, 255, 0.82);
  transition: color .2s ease;
}
.footer__col a:hover { color: var(--green); }
.footer__bottom {
  margin-top: 70px;
  padding-top: 24px;
  border-top: 1px solid #171717;
  display: flex;
  justify-content: space-between;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   Motion (only when user allows)
   ========================================================================== */
/* Statement "ink fill" while scrolling (js/motion.js toggles .is-filling) */
.statement__line { display: block; width: fit-content; }
.statement__title.is-filling .statement__line {
  color: transparent;
  background-image: linear-gradient(90deg, #000 45%, rgba(0, 0, 0, 0.16) 55%);
  background-size: 220% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
}
.statement__title.is-filling .statement__line.purple {
  background-image: linear-gradient(90deg, var(--purple) 45%, rgba(153, 63, 158, 0.22) 55%);
}
.split-line { will-change: transform; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1280px) {
  :root { --gutter: 48px; }
  .nav__inner { padding: 0 48px; }
  .hero__title { font-size: 88px; line-height: 76px; }
  .display-xl { font-size: 76px; line-height: 66px; }
  .statement__title { font-size: 80px; line-height: 70px; }
  .culture { grid-template-columns: 1fr 1fr; }
  .culture__copy { padding: 80px 56px; }
  .visit__media { width: 48%; }
  .news__form { width: 45%; }
}

@media (max-width: 1024px) {
  /* hero: dark scrim rising from the bottom so the tagline reads over the busy artwork */
  .hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 42%;
    z-index: 1;
    background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.78) 30%, rgba(0,0,0,.4) 62%, rgba(0,0,0,0) 100%);
    pointer-events: none;
  }
  .hero__content { z-index: 2; }
  .hero__tagline { z-index: 2; text-shadow: 0 1px 8px rgba(0,0,0,.95), 0 0 2px rgba(0,0,0,.95); }
  .nav__links--left { display: none; }
  .nav__toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
  }
  .nav__toggle span { display: block; height: 2px; width: 24px; background: var(--white); transition: transform .25s ease; }
  .nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu:not([hidden]) {
    display: flex;
    flex-direction: column;
    padding: 8px 24px 24px;
    border-top: 1px solid #1f1f1f;
    background: #000;
  }
  .mobile-menu a {
    padding: 16px 0;
    border-bottom: 1px solid #1a1a1a;
    font-family: var(--f-display);
    font-size: 22px;
    text-transform: uppercase;
  }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 24px; }
  .sec-head__copy { width: auto; max-width: 560px; }
  .cat-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .featured { grid-template-columns: 1fr; }
  .featured__copy { padding: 88px 48px; }
  .featured__visual { min-height: 640px; }
  .statement__inner { flex-direction: column; align-items: flex-start; gap: 40px; }
  .culture { grid-template-columns: 1fr; }
  .culture__media img { aspect-ratio: 756 / 560; }
  .culture__copy { border-left: 0; }
  .visit__inner { flex-direction: column; align-items: stretch; gap: 56px; }
  .visit__media { width: 100%; }
  .visit__media img { width: 100%; }
  .news__inner { flex-direction: column; align-items: stretch; gap: 48px; }
  .news__form { width: 100%; }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }

  /* Tablet + mobile: centred layout */
  .sec-head { align-items: center; text-align: center; }
  .sec-head__copy { margin-bottom: 0; }
  .cat-card__body { text-align: center; }
  .cat-card__desc { margin-left: auto; margin-right: auto; }
  .product { text-align: center; }
  .product__meta { flex-direction: column; align-items: center; gap: 4px; }
  .featured__copy { align-items: center; text-align: center; }
  .featured__copy .btn { align-self: center; }
  .featured__text { margin-left: auto; margin-right: auto; }
  .statement__inner { align-items: center; text-align: center; }
  .statement__line { margin-left: auto; margin-right: auto; }
  .culture__copy { align-items: center; text-align: center; }
  .culture__copy .btn { align-self: center; }
  .culture__text { margin-left: auto; margin-right: auto; }
  .visit__copy { text-align: center; }
  .visit__text { margin-left: auto; margin-right: auto; }
  .news__title { text-align: center; }
  .news__form input { text-align: center; padding-left: 0; }
  .footer__grid { text-align: center; }
  .footer__col { align-items: center; }
  .footer__desc { margin-left: auto; margin-right: auto; }
  .footer__bottom { flex-direction: column; align-items: center; gap: 10px; text-align: center; }
}

@media (max-width: 640px) {
  .hero__media { background-image: url("../assets/img/hero-poster-sm.webp?v=b1fab35c14"); }
  :root { --gutter: 16px; }
  .announce { font-size: 9px; letter-spacing: 0.1em; }
  .nav__inner { height: 68px; padding: 0 16px; }
  .nav__logo { width: 170px; top: -4px; }
  .nav__links { gap: 16px; font-size: 11px; }
  .hide-sm { display: none; }
  .hero { height: auto; min-height: 640px; padding-bottom: 96px; }
  .hero__content { padding: 110px 16px 0; }
  .hero__eyebrow { font-size: 11px; }
  .hero__title { margin-top: 20px; font-size: 52px; line-height: 46px; }
  .hero__lede { margin-top: 24px; font-size: 15px; line-height: 24px; }
  .hero__ctas { flex-direction: column; width: 100%; max-width: 320px; gap: 12px; margin-top: 28px; }
  .hero__tagline { top: auto; left: 0; bottom: 36px; padding: 0 16px; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; }
  .hero__title { margin-right: 0; }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse 80% 55% at 50% 48%, rgba(0,0,0,.6), rgba(0,0,0,0) 75%);
    pointer-events: none;
  }
  .hero__content, .hero__tagline { z-index: 2; }
  .hero__eyebrow, .hero__tagline { text-shadow: 0 1px 10px rgba(0,0,0,.95), 0 0 2px rgba(0,0,0,.9); }
  .marquee { height: 52px; }
  .marquee__group span { font-size: 18px; }
  .marquee__group i { width: 7px; height: 7px; margin: 0 22px; }
  .explore { padding: 72px 0; }
  .display-xl, .display-lg, .display-md { font-size: 52px; line-height: 46px; }
  .display-lg { line-height: 1; }
  .display-serif, .display-serif--sm { font-size: 46px; line-height: 42px; letter-spacing: -0.02em; }
  .cat-grid { margin-top: 40px; grid-template-columns: 1fr 1fr; gap: 10px; }
  .cat-card { height: 260px; }
  .cat-card__body { padding: 16px 14px 0; }
  .cat-card__title { font-size: 21px; white-space: nowrap; }
  .cat-card__desc { font-size: 12px; line-height: 16px; margin-top: 8px; }
  .featured__copy { padding: 72px 16px; }
  .featured__text { margin-top: 28px; }
  .featured__visual { min-height: 520px; }
  .drop-card { width: min(320px, 84vw); padding: 16px; }
  .drop-card__title { font-size: 28px; line-height: 26px; }
  .best { padding: 72px 0; }
  .product-grid { margin-top: 40px; gap: 24px 12px; }
  .product__name { font-size: 14px; margin-top: 12px; }
  .product__meta { flex-direction: column; gap: 4px; font-size: 11px; }
  .statement__inner { padding-top: 64px; padding-bottom: 64px; }
  .statement__title { font-size: 44px; line-height: 40px; }
  .badge-circle--dark { width: 130px; height: 130px; font-size: 9px; line-height: 11px; }
  .culture__copy { padding: 64px 16px; }
  .culture__text { margin-top: 28px; }
  .visit__inner { padding-top: 72px; padding-bottom: 72px; }
  .visit__702 { font-size: 120px; }
  .badge-circle--green { width: 104px; height: 104px; font-size: 9px; line-height: 12px; }
  .news__inner { padding-top: 72px; padding-bottom: 72px; }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; gap: 10px; margin-top: 48px; }
}
