/* ============================================
   CreaGo — Brand stylesheet
   Palette:
     ivory   #F6F3EE    warm background
     charcoal #1B1B1B   primary text
     stone   #666666    secondary text
     forest  #c9b37e    accent / buttons
     fog     #F4F3EE    surfaces
============================================ */

:root {
  --ink: #1b1b1b;
  --coal: #2a2a2a;
  --char: #3a3a3a;
  --fog: #1b1b1b;
  --ivory: #f6f3ee;
  --paper: #ffffff;
  --stone: #666666;
  --forest: #c9b37e;
  --forest-2: #d4c08a;
  --forest-3: #a89060;
  --line: rgba(27, 27, 27, 0.1);
  --line-dark: rgba(27, 27, 27, 0.1);
  --muted: #666666;
  --muted-dark: rgba(27, 27, 27, 0.55);
  --surface: #edeae4;

  /* Keep brand pack colours for accents */
  --lime: #c9b37e;
  --lime-2: #d4c08a;
  --lime-3: #a89060;
  --berry: #e40000;
  --berry-2: #ff1f1f;
  --berry-3: #b80000;
  --plain: #f4f3ee;
  --plain-2: #d8d4c2;

  --display: "Bebas Neue", "Anton", "Space Grotesk", system-ui, sans-serif;
  --sans: "Inter", "Space Grotesk", system-ui, sans-serif;

  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 28px;

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

  --t: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

.container {
  width: min(100% - 2 * var(--pad), var(--container));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* ============================================
   Typography helpers
============================================ */
h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(38px, 6vw, 84px);
}
h2 em {
  font-style: normal;
  color: var(--forest);
}

h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: 0.02em;
}

p {
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 600;
}
.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(201, 179, 126, 0.18);
}
.eyebrow--dark {
  color: var(--ink);
}
.eyebrow--dark .dot {
  background: var(--ink);
  box-shadow: 0 0 0 4px rgba(10, 10, 10, 0.08);
}

.section__head {
  max-width: 760px;
  margin: 0 0 56px;
  display: grid;
  gap: 18px;
}
.section__head p {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--muted-dark);
  max-width: 60ch;
}
.section__head--light p {
  color: var(--muted);
}

/* ============================================
   Buttons
============================================ */
.btn {
  --bg: var(--lime);
  --fg: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--bg);
  color: var(--fg);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: transform 0.25s var(--t), background 0.25s var(--t),
    color 0.25s var(--t), box-shadow 0.25s var(--t);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -12px rgba(201, 179, 126, 0.55);
}
.btn--primary {
  --bg: var(--lime);
  --fg: #1b1b1b;
}
.btn--dark {
  --bg: var(--lime);
  --fg: #1b1b1b;
}
.btn--ghost {
  --bg: transparent;
  --fg: var(--ink);
  border: 1.5px solid currentColor;
  padding: 12.5px 22px;
}
.btn--ghost:hover {
  background: var(--ink);
  color: #f6f3ee;
  box-shadow: none;
}
.btn--ghost-light {
  --fg: var(--fog);
}
.btn--ghost-light:hover {
  background: var(--fog);
  color: var(--ink);
}
.btn--sm {
  padding: 11px 18px;
  font-size: 13px;
}
.btn--lg {
  padding: 18px 30px;
  font-size: 16px;
}

/* ============================================
   Announcement bar
============================================ */
.announce {
  background: var(--lime);
  color: #1b1b1b;
  overflow: hidden;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.announce__track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  padding: 10px 0;
  animation: scroll 38s linear infinite;
  width: max-content;
}
.announce__track span {
  display: inline-flex;
  align-items: center;
}
@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

/* ============================================
   Nav
============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px var(--pad);
  background: #000000;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: padding 0.3s var(--t), background 0.3s var(--t);
}
.nav.is-scrolled {
  padding: 10px var(--pad);
  background: #000000;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f4f3ee;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.04em;
}
.nav__logo-img {
  height: 52px;
  width: auto;
  max-width: 52px;
  object-fit: contain;
  border-radius: 10px;
  background: #000;
  padding: 5px;
}
.nav__logo-img--big {
  height: 68px;
  max-width: 68px;
  border-radius: 12px;
  padding: 6px;
}
.nav__logo svg {
  color: var(--lime);
}
.nav__logo--big {
  font-size: 34px;
}
.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: auto;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s var(--t);
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: #f6f3ee;
  transition: width 0.3s var(--t);
}
.nav__links a:hover {
  color: #f6f3ee;
}
.nav__links a:hover::after {
  width: 100%;
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__account {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f6f3ee;
  transition: background 0.2s var(--t), transform 0.2s var(--t);
}
.nav__account:hover {
  background: rgba(255,255,255,0.14);
  transform: scale(1.05);
}
.cart {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f6f3ee;
  transition: background 0.2s var(--t), transform 0.2s var(--t);
}
.cart:hover {
  background: rgba(255,255,255,0.14);
  transform: scale(1.05);
}
.cart__count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--lime);
  color: #1b1b1b;
  font-size: 10px;
  font-weight: 700;
  height: 18px;
  min-width: 18px;
  padding: 0 4px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.nav__burger span {
  display: block;
  width: 16px;
  height: 2px;
  background: #f6f3ee;
  transition: transform 0.25s var(--t), opacity 0.25s var(--t);
}

/* ============================================
   Hero
============================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
  min-height: 65vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.hero__bg {
  display: none;
}
.hero__grid {
  display: none;
}
.hero__glow {
  display: none;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.05); }
}

.hero__inner {
  position: relative;
  width: min(100%, var(--container));
  margin: 0 auto;
  z-index: 1;
}

.hero__copy {
  max-width: 600px;
  padding: clamp(24px, 3vw, 40px) clamp(32px, 5vw, 72px);
  background: transparent;
  position: relative;
  z-index: 2;
}
.hero__copy .hero__title { color: var(--ink); }
.hero__copy .hero__sub { color: var(--stone); }
.hero__copy .hero__pills { color: var(--stone); }

.hero__title {
  font-family: "Bebas Neue", var(--display);
  font-weight: 700;
  font-size: clamp(48px, 7.5vw, 110px);
  line-height: 0.95;
  letter-spacing: 0em;
  margin: 22px 0 26px;
  text-transform: uppercase;
}
.hero__title .line {
  display: block;
  overflow: visible;
}
.hero__title .line span {
  display: inline-block;
}
.hero__title .line--accent {
  color: var(--forest);
  font-style: italic;
}

.hero__sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 32px;
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero__pills {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* Hero product photography — now using background image */

/* Sachets */
.hero__visual {
  display: none;
}
.sachet {
  position: relative;
  width: 200px;
  height: 280px;
  border-radius: 18px 18px 6px 6px / 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 28px 18px 22px;
  text-align: center;
  color: var(--ink);
  font-family: var(--display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: transform 0.6s var(--t);
}
.sachet::before,
.sachet::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  height: 8px;
  background-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.18) 0 2px,
    transparent 2.5px
  );
  background-size: 8px 8px;
}
.sachet::before {
  top: 6px;
}
.sachet::after {
  bottom: 6px;
}
.sachet__brand {
  font-size: 14px;
  letter-spacing: 0.18em;
  font-weight: 400;
  font-family: var(--sans);
}
.sachet__flavor {
  font-size: 32px;
  line-height: 0.95;
  font-weight: 400;
}
.sachet__dose {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 0;
  position: relative;
}
.sachet__dose::after {
  content: "creatine monohydrate";
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin-top: 2px;
  opacity: 0.7;
}
.sachet--lime {
  background: linear-gradient(160deg, var(--lime-2) 0%, var(--lime) 55%, var(--lime-3) 100%);
  color: var(--ink);
}
.sachet--berry {
  background: linear-gradient(160deg, var(--berry-2) 0%, var(--berry) 55%, var(--berry-3) 100%);
  color: #f6f3ee;
}
.sachet--berry::before,
.sachet--berry::after {
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.45) 0 2px,
    transparent 2.5px
  );
}
.sachet--plain {
  background: linear-gradient(160deg, #ffffff 0%, var(--plain) 55%, var(--plain-2) 100%);
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Hero arrangement */
.hero__visual .sachet:nth-child(1) {
  position: absolute;
  transform: translate(-110px, 30px) rotate(-12deg);
  z-index: 2;
}
.hero__visual .sachet:nth-child(2) {
  position: absolute;
  transform: translate(0, -10px) rotate(2deg);
  z-index: 3;
}
.hero__visual .sachet:nth-child(3) {
  position: absolute;
  transform: translate(110px, 30px) rotate(10deg);
  z-index: 1;
}
.hero__visual:hover .sachet:nth-child(1) {
  transform: translate(-130px, 20px) rotate(-16deg);
}
.hero__visual:hover .sachet:nth-child(3) {
  transform: translate(130px, 20px) rotate(14deg);
}

.hero__chip {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #f6f3ee;
  padding: 12px 18px;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero__chip--top {
  top: 6%;
  right: 4%;
  color: var(--lime);
  border-color: rgba(201, 179, 126, 0.4);
  animation: bob 6s ease-in-out infinite;
}
.hero__chip--mid {
  top: 50%;
  left: -2%;
  color: var(--berry);
  border-color: rgba(228, 0, 0, 0.4);
  animation: bob 7s ease-in-out infinite 0.5s;
}
.hero__chip--bot {
  bottom: 5%;
  right: 8%;
  animation: bob 8s ease-in-out infinite 1s;
}
@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Hero metrics */
.hero__metrics {
  position: relative;
  z-index: 1;
  margin-top: clamp(60px, 8vw, 100px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  width: min(100%, var(--container));
  margin-left: auto;
  margin-right: auto;
}
.hero__metrics > div {
  text-align: center;
}
.metric__num {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 48px);
  color: #f6f3ee;
}
.metric__plus {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--lime);
  margin-left: 2px;
}
.hero__metrics p {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* ============================================
   Marquee
============================================ */
.marquee {
  background: var(--lime);
  color: #1b1b1b;
  overflow: hidden;
  border-block: 1px solid rgba(0, 0, 0, 0.1);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 0;
  white-space: nowrap;
  width: max-content;
  animation: scroll 28s linear infinite;
}
.marquee__track span {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.marquee__track em {
  font-style: normal;
  font-size: clamp(20px, 3vw, 34px);
  opacity: 0.7;
}

/* ============================================
   Benefits
============================================ */
.benefits {
  position: relative;
  color: #f4f3ee;
  padding: clamp(48px, 6vw, 80px) 0;
  background-image: url('assets/lifestyle-trail.jpg');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  overflow: hidden;
}
.benefits::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.68);
  pointer-events: none;
  z-index: 0;
}
.benefits > .container {
  position: relative;
  z-index: 1;
}
.benefits .section__head {
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}
.benefits .section__head h2 {
  color: #f4f3ee;
}
.benefits .section__head p {
  color: rgba(244,243,238,0.78);
}
.benefits .eyebrow {
  color: var(--lime);
}
.benefits .eyebrow .dot {
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(201,179,126,0.25);
}

.bgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.bcard {
  background: #2a2a2a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.4s var(--t), box-shadow 0.4s var(--t),
    border-color 0.4s var(--t);
  position: relative;
  overflow: hidden;
}
.bcard::after {
  content: "";
  position: absolute;
  inset: auto -20% -60% auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lime), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--t);
  pointer-events: none;
}
.bcard:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.4);
}
.bcard:hover::after {
  opacity: 0.45;
}

.bcard--feature {
  grid-row: span 2;
  background: var(--ink);
  color: #f4f3ee;
  padding: 40px;
  justify-content: flex-start;
}
.bcard--feature h3 {
  font-size: clamp(28px, 3vw, 40px);
  color: #f4f3ee;
}
.bcard--feature .bcard__icon {
  background: #c9b37e;
  color: #1b1b1b;
}
.bcard--feature .bcard__list {
  border-color: rgba(255, 255, 255, 0.12);
}

.bcard__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: #1b1b1b;
  color: var(--lime);
  border-radius: 16px;
}
.bcard__icon svg {
  width: 26px;
  height: 26px;
  color: var(--lime);
}
/* img icons (SVG files) get the lime colour via filter */
.bcard__icon img {
  width: 26px;
  height: 26px;
  filter: brightness(0) saturate(100%) invert(79%) sepia(55%) saturate(700%) hue-rotate(28deg) brightness(110%);
}
/* Muscle icon stays black */
.bcard__icon img[src*="icon-muscle"] {
  filter: brightness(0);
}

.bcard h3 { color: #f6f3ee; }
.bcard.bcard--feature h3 { color: #f6f3ee !important; }
.bcard p {
  color: rgba(246,243,238,0.75);
  font-size: 15px;
}
.bcard--feature p {
  color: rgba(246,243,238,0.7);
}

.bcard__list {
  list-style: none;
  padding: 12px 0 0;
  margin: 8px 0 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: rgba(246,243,238,0.85);
}
.bcard__list li::before {
  content: "+";
  color: var(--lime);
  font-weight: 700;
  margin-right: 8px;
}

.bcard--cta {
  grid-column: 1 / -1;
  background: var(--ink);
  color: #f4f3ee;
  border: 1px solid rgba(201, 179, 126, 0.25);
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.bcard--cta h3 {
  font-size: clamp(28px, 3vw, 38px);
  color: var(--lime);
}
.bcard--cta p {
  color: rgba(246,243,238,0.7);
}
.bcard--cta::after {
  display: none;
}
.bcard--cta .btn {
  align-self: center;
  background: var(--lime);
  color: var(--ink);
  margin-top: 0;
  white-space: nowrap;
}
.bcard--cta .btn:hover {
  background: #d4c08a;
}

/* Nutrition card */
.bgrid--nutrition {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
}
.bcard--nutrition {
  background: #f6f3ee;
  border: 1px solid var(--line-dark);
}
.bcard--nutrition h3 {
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 4px;
}
.bcard--nutrition .bcard__sub {
  font-size: 12px;
  color: var(--muted-dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-bottom: 12px;
}
.nutrition-table td {
  padding: 6px 0;
  border-bottom: 1px solid var(--line-dark);
  color: var(--ink);
}
.nutrition-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--ink);
}
.nutrition-table__highlight td {
  color: var(--lime);
  font-weight: 700;
  border-bottom: none;
  padding-top: 10px;
}
.nutrition-table__highlight td:last-child {
  color: var(--lime);
}
.bcard__ingredients {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 8px;
}
.nutrition-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}
.nutrition-tab {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.nutrition-tab.is-active {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}
.nutrition-panel {
  display: none;
}
.nutrition-panel.is-active {
  display: block;
}

/* ============================================
   Lifestyle banner
============================================ */
.banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  padding: 0 var(--pad) 0;
  background: var(--ivory);
}
.banner img {
  width: 100%;
  height: clamp(280px, 40vw, 520px);
  object-fit: cover;
  object-position: center 40%;
  display: block;
  border-radius: var(--radius-lg);
  filter: brightness(0.9);
  transition: transform 8s ease-out;
  mask-image: radial-gradient(ellipse at center, #000 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 60%, transparent 100%);
}
.banner:hover img {
  transform: scale(1.03);
}

/* ============================================
   Science
============================================ */
.science {
  background: #2a2a2a;
  color: #f6f3ee;
  padding: clamp(48px, 6vw, 80px) 0;
  position: relative;
  overflow: hidden;
}
.science::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at top, #000, transparent 80%);
  pointer-events: none;
}
.science > .container {
  position: relative;
}
.science .section__head {
  text-align: center;
  margin-inline: auto;
  justify-items: center;
}

.science__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 60px;
}
.science__stats > div {
  background: var(--coal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: grid;
  gap: 10px;
  transition: transform 0.4s var(--t), border-color 0.4s var(--t);
}
.science__stats > div:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 179, 126, 0.5);
}
.stat__value {
  font-family: var(--display);
  font-size: clamp(42px, 4vw, 60px);
  color: #f4f3ee;
  line-height: 1;
}
.science__stats p {
  color: rgba(244,243,238,0.6);
  font-size: 14px;
}
.science__stats sup {
  color: rgba(244,243,238,0.5);
  margin-left: 2px;
}

.science__panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.panel {
  background: linear-gradient(180deg, var(--coal), var(--char));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  gap: 16px;
  transition: transform 0.4s var(--t), border-color 0.4s var(--t);
}
.panel:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 179, 126, 0.4);
}
.panel__tag {
  align-self: start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f4f3ee;
  background: var(--forest);
  padding: 6px 12px;
  border-radius: 999px;
  width: max-content;
}
.panel p {
  color: rgba(244,243,238,0.7);
  font-size: 15.5px;
  line-height: 1.65;
}
.panel__cite {
  color: rgba(244, 243, 238, 0.35);
  font-size: 12.5px;
  font-style: italic;
}

.science__note {
  margin-top: 32px;
  text-align: center;
  color: rgba(246,243,238,0.4);
  font-size: 12.5px;
}

/* ============================================
   Shop
============================================ */
.shop {
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  color: #f6f3ee;
  padding: clamp(36px, 4vw, 56px) 0;
}
.shop .section__head {
  text-align: center;
  margin-inline: auto;
  justify-items: center;
  color: #f6f3ee;
}
.shop .section__head p {
  color: rgba(246,243,238,0.7);
}
.shop .eyebrow {
  color: #f6f3ee !important;
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
.shop .eyebrow .dot {
  background: #f6f3ee !important;
  background-color: #f6f3ee !important;
  box-shadow: none !important;
}

.products {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.product {
  background: rgba(42, 42, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  display: grid;
  grid-template-rows: 1fr auto;
  transition: transform 0.4s var(--t), box-shadow 0.4s var(--t);
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -25px rgba(0, 0, 0, 0.25);
}

.product__visual {
  aspect-ratio: 3/4;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: #333333;
  padding: 20px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.product__visual > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s var(--t);
}
.product--lime .product__visual {
  background: #333333;
}
.product--berry .product__visual {
  background: #333333;
}
.product--plain .product__visual {
  background: #333333;
}
.product--mix .product__visual {
  background: #333333;
}
.product--mix .product__visual > img {
  transform: scale(1.2);
}
.product:hover .product__visual > img {
  transform: scale(1.05);
}

.product__body {
  padding: 24px;
  display: grid;
  gap: 8px;
  background: transparent;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
}
.product__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--lime);
  padding: 5px 10px;
  border-radius: 6px;
  width: max-content;
}
.product h3 {
  font-size: 24px;
  color: #f6f3ee;
}
.product p {
  font-size: 14px;
  color: rgba(246,243,238,0.65);
}
.product__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.product__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.product__price span {
  font-family: var(--display);
  font-size: 26px;
  color: #f6f3ee;
}
.product__price small {
  font-size: 12px;
  color: rgba(246,243,238,0.6);
}

/* Sale / discount styling */
.product--sale {
  border: 2px solid var(--lime);
}
.product__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--lime);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  border-radius: 20px;
  z-index: 2;
}
.product__price--old {
  font-family: var(--display);
  font-size: 18px;
  text-decoration: line-through;
  color: var(--muted-dark);
  opacity: 0.6;
}
.product--sale .product__price span:not(.product__price--old) {
  color: var(--lime);
}
.product__size-label {
  font-size: 12px;
  color: var(--muted-dark);
  display: block;
  margin-top: -4px;
}

/* ============================================
   Product gallery
============================================ */
.gallery {
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
.gallery::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/sachets-pile.jpg') center/cover no-repeat;
  filter: brightness(0.5);
  z-index: 0;
}
.gallery::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.4) 100%);
  z-index: 0;
}
.gallery__header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto clamp(32px, 5vw, 56px);
  padding: 0 20px;
  color: #f6f3ee;
}
.gallery__header h2 {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 52px);
  text-transform: uppercase;
  line-height: 1.1;
  margin: 12px 0;
}
.gallery__header h2 em {
  color: var(--lime);
  font-style: normal;
}
.gallery__header p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.gallery__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}
.gallery__item {
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery__item:hover img {
  transform: scale(1.06);
}
@media (max-width: 768px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

/* ============================================
   How it works
============================================ */
.how {
  background: var(--fog);
  color: var(--ink);
  padding: 0 0 clamp(80px, 10vw, 140px);
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.steps li {
  background: #f6f3ee;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.steps li:hover {
  border-color: rgba(0, 0, 0, 0.2);
}
.step__num {
  font-family: var(--display);
  font-size: 80px;
  line-height: 0.9;
  color: var(--lime);
  text-shadow: -1px -1px 0 #0a0a0a, 1px -1px 0 #0a0a0a, -1px 1px 0 #0a0a0a,
    1px 1px 0 #0a0a0a;
  letter-spacing: 0;
}
.steps p {
  color: var(--muted-dark);
  font-size: 15px;
  max-width: 36ch;
}

/* ============================================
   Quotes
============================================ */
.quotes {
  background: #2a2a2a;
  color: #f6f3ee;
  padding: clamp(48px, 6vw, 80px) 0;
}
.quotes .section__head {
  text-align: center;
  margin-inline: auto;
  justify-items: center;
}
.quotes .section__head .eyebrow {
  color: var(--lime);
}
.quotes .section__head .eyebrow .dot {
  background: var(--lime);
}
.qgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.quote {
  background: #3a3a3a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 0;
  display: grid;
  gap: 14px;
}
.stars {
  color: var(--lime);
  letter-spacing: 4px;
  font-size: 16px;
}
blockquote {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: #f4f3ee;
}
.quote figcaption {
  font-size: 13px;
  color: rgba(244,243,238,0.55);
  letter-spacing: 0.04em;
}

/* ============================================
   FAQ
============================================ */
.faq {
  background: var(--ivory);
  color: var(--ink);
  padding: clamp(48px, 6vw, 80px) 0;
}
.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.faq h2 {
  font-size: clamp(48px, 6vw, 80px);
  margin: 18px 0;
}
.muted {
  color: var(--muted-dark);
}
.muted a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq__list {
  display: grid;
  gap: 4px;
}
.faq__list details {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding: 20px 0;
}
.faq__list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.2s var(--t);
}
.faq__list summary::-webkit-details-marker {
  display: none;
}
.faq__list summary::after {
  content: "+";
  font-family: var(--display);
  font-size: 32px;
  color: var(--ink);
  transition: transform 0.3s var(--t);
}
.faq__list details[open] summary::after {
  transform: rotate(45deg);
}
.faq__list details[open] summary {
  color: var(--ink);
}
.faq__list details p {
  margin-top: 14px;
  color: var(--muted-dark);
  font-size: 16px;
  max-width: 65ch;
}

/* ============================================
   CTA
============================================ */
.cta {
  background: var(--lime);
  color: #1b1b1b;
  padding: clamp(48px, 6vw, 80px) 0;
  position: relative;
  overflow: hidden;
}
.cta--lifestyle {
  background-image: url('assets/product-box-spread.jpg');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
}
.cta--lifestyle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.52);
  pointer-events: none;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(48, 66, 54, 0.3), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(27, 27, 27, 0.15), transparent 50%);
  pointer-events: none;
}
.cta__inner {
  position: relative;
  display: grid;
  gap: 22px;
  justify-items: center;
  text-align: center;
  background: rgba(246, 243, 238, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 24px;
  padding: clamp(40px, 5vw, 72px) clamp(32px, 5vw, 64px);
  max-width: 860px;
  margin: 0 auto;
}
.cta h2 {
  font-size: clamp(54px, 8vw, 120px);
  letter-spacing: -0.005em;
  max-width: 14ch;
  color: var(--lime);
}
.cta h2 em {
  color: var(--lime);
  position: relative;
}
.cta h2 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 8px;
  background: #2a2a2a;
  z-index: -1;
}
.cta p {
  font-size: clamp(15px, 1.4vw, 18px);
  max-width: 50ch;
  color: #1b1b1b;
}
.news {
  display: flex;
  gap: 8px;
  width: min(100%, 480px);
  background: #f6f3ee;
  border-radius: 999px;
  padding: 6px;
  margin-top: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.news input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  padding: 0 18px;
  font: inherit;
  color: var(--ink);
}
.news .btn {
  flex-shrink: 0;
  --bg: var(--lime);
  --fg: #1b1b1b;
}

/* ============================================
   Footer
============================================ */
.foot {
  background: #050505;
  color: #f6f3ee;
  padding: 80px 0 30px;
  border-top: 1px solid var(--line);
}
.foot__inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.foot__brand p {
  color: var(--muted);
  margin-top: 14px;
  max-width: 28ch;
  font-size: 14px;
}
.foot__col h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}
.foot__col {
  display: grid;
  gap: 10px;
  align-content: start;
}
.foot__col a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s var(--t);
}
.foot__col a:hover {
  color: #f6f3ee;
}
.socials {
  display: flex;
  gap: 10px;
}
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: #f6f3ee;
  transition: background 0.2s var(--t), color 0.2s var(--t), transform 0.2s var(--t);
}
.socials a:hover {
  background: var(--lime);
  color: #f6f3ee;
  transform: translateY(-2px);
}
.foot__base {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: rgba(246,243,238,0.4);
  font-size: 12px;
}

/* ============================================
   Cart drawer
============================================ */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  visibility: hidden;
}
.drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}
.drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.35s var(--t);
}
.drawer.is-open .drawer__backdrop {
  opacity: 1;
}
.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 90vw);
  background: var(--ivory);
  border-left: 1px solid rgba(27,27,27,0.1);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s var(--t);
}
.drawer.is-open .drawer__panel {
  transform: translateX(0);
}
.drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid rgba(27,27,27,0.1);
}
.drawer__head h3 {
  font-size: 20px;
}
.drawer__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(27,27,27,0.07);
  display: grid;
  place-items: center;
  font-size: 16px;
  color: var(--ink);
  transition: background 0.2s var(--t);
}
.drawer__close:hover {
  background: rgba(27,27,27,0.14);
}
.drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}
.drawer__empty {
  color: var(--stone);
  text-align: center;
  padding: 40px 0;
}
.drawer__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(27,27,27,0.08);
}
.drawer__item-name {
  font-family: var(--display);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.drawer__item-price {
  font-size: 14px;
  color: var(--stone);
  margin-top: 2px;
}
.drawer__item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.drawer__qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(27,27,27,0.07);
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  transition: background 0.2s var(--t);
}
.drawer__qty-btn:hover {
  background: var(--lime);
  color: var(--ink);
}
.drawer__qty {
  font-weight: 700;
  font-size: 16px;
  min-width: 20px;
  text-align: center;
}
.drawer__foot {
  padding: 24px;
  border-top: 1px solid rgba(27,27,27,0.1);
  display: grid;
  gap: 12px;
}
.drawer__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
}
.drawer__total strong {
  font-family: var(--display);
  font-size: 28px;
  color: var(--lime);
}
.drawer__checkout {
  width: 100%;
  justify-content: center;
}
.drawer__clear {
  width: 100%;
  justify-content: center;
  font-size: 13px;
  padding: 10px;
  border-color: rgba(27,27,27,0.25);
  color: var(--stone);
}
.drawer__clear:hover {
  background: rgba(27,27,27,0.06);
  color: var(--ink);
  border-color: rgba(27,27,27,0.5);
}

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

/* ============================================
   Responsive
============================================ */
@media (max-width: 1080px) {
  .bgrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bgrid--nutrition {
    grid-template-columns: repeat(2, 1fr);
  }
  .bcard--feature {
    grid-row: span 1;
    grid-column: span 2;
  }
  .bcard--cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .science__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .science__panels {
    grid-template-columns: 1fr;
  }
  .products {
    grid-template-columns: repeat(3, 1fr);
  }
  .qgrid {
    grid-template-columns: 1fr;
  }
  .faq__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .foot__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav__logo-img {
    height: 42px;
    max-width: 42px;
    padding: 4px;
  }
  .nav__links {
    display: none;
  }
  .nav__burger {
    display: inline-flex;
  }
  .nav__actions .btn--ghost {
    display: none;
  }
  .hero {
    min-height: 70vh;
  }
  .hero__grid {
    opacity: 0.3;
    mask-image: linear-gradient(to top, #000 30%, transparent 80%);
    -webkit-mask-image: linear-gradient(to top, #000 30%, transparent 80%);
    background-position: center bottom;
  }
  .hero__title {
    font-size: clamp(48px, 12vw, 80px);
  }
  .hero__metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 12px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .bgrid {
    grid-template-columns: 1fr;
  }
  .bgrid--nutrition {
    grid-template-columns: 1fr;
  }
  .bcard--feature {
    grid-column: span 1;
  }
  .science__stats {
    grid-template-columns: 1fr;
  }
  .products {
    grid-template-columns: repeat(2, 1fr);
  }
  .foot__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .news {
    flex-direction: column;
    border-radius: 22px;
  }
  .news input {
    padding: 14px 18px;
  }
  .banner img {
    height: 220px;
    border-radius: var(--radius);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .announce__track,
  .marquee__track {
    animation: none;
  }
}

/* ─── Product Detail Modal ─────────────────────────────────────── */
.pdmodal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--t);
}
.pdmodal.is-open {
  opacity: 1;
  pointer-events: all;
}
.pdmodal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.pdmodal__panel {
  position: relative;
  background: #2a2a2a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  width: min(960px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  transform: translateY(20px);
  transition: transform 0.3s var(--t);
  z-index: 1;
}
.pdmodal.is-open .pdmodal__panel {
  transform: translateY(0);
}
.pdmodal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: none;
  color: #999999;
  font-size: 16px;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
  transition: background 0.2s;
}
.pdmodal__close:hover { background: rgba(255,255,255,0.15); }

.pdmodal__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Image viewer */
.pdmodal__viewer {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pdmodal__stage {
  aspect-ratio: 1;
  background: #2a2a2a;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  user-select: none;
  position: relative;
}
.pdmodal__stage:active { cursor: grabbing; }
.pdmodal__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}
.pdmodal__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.pdmodal__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: none;
  color: #f6f3ee;
  font-size: 16px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}
.pdmodal__arrow:hover { background: var(--lime); color: var(--ink); }
.pdmodal__dots {
  display: flex;
  gap: 6px;
}
.pdmodal__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.pdmodal__dot.is-active {
  background: var(--lime);
  transform: scale(1.3);
}
.pdmodal__drag-hint {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Travelling hand hint */
.pdmodal__hand {
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 2;
  animation: hand-appear 0.3s ease forwards;
}
@keyframes hand-appear {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.pdmodal__hand img {
  width: 40px;
  height: auto;
  display: block;
  animation: hand-travel-px 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}
@keyframes hand-travel-px {
  0%   { transform: translateX(var(--hand-start, 10px));  opacity: 0; }
  12%  { opacity: 1; }
  80%  { transform: translateX(var(--hand-end, 200px));   opacity: 1; }
  100% { transform: translateX(var(--hand-end, 200px));   opacity: 0; }
}

/* Info panel */
.pdmodal__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}
.pdmodal__name {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  color: #f6f3ee;
  text-transform: uppercase;
}
.pdmodal__sub {
  font-size: 13px;
  color: #999999;
  margin-top: -10px;
}
.pdmodal__table {
  width: 100%;
  border-collapse: collapse;
}
.pdmodal__table td {
  color: #999999;
  border-bottom-color: rgba(255,255,255,0.08);
}
.pdmodal__table td:last-child {
  color: #999999;
}
.pdmodal__table .nutrition-table__highlight td {
  color: var(--lime);
}
.pdmodal__table .nutrition-table__highlight td:last-child {
  color: var(--lime);
}
.pdmodal__actions {
  margin-top: 8px;
}
.pdmodal__actions .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 640px) {
  .pdmodal__panel { padding: 24px 20px; }
  .pdmodal__inner { grid-template-columns: 1fr; }
}
/* ─── Swimmer full-width hero section ──────────────────────────── */
.swim-hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-image: url('assets/lifestyle-swim.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  overflow: hidden;
}
.swim-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 10, 10, 0.78) 0%,
    rgba(10, 10, 10, 0.45) 60%,
    rgba(10, 10, 10, 0.1) 100%
  );
}
.swim-hero__copy {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 120px) var(--pad);
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin-left: var(--pad);
}
.swim-hero__copy .eyebrow {
  color: #c9b37e;
}
.swim-hero__copy .eyebrow .dot {
  background: #c9b37e;
  box-shadow: 0 0 0 3px rgba(201,179,126,0.25);
}
.swim-hero__copy h2 {
  font-size: clamp(40px, 6vw, 80px);
  color: #f4f3ee;
  line-height: 1;
}
.swim-hero__copy h2 em {
  color: #c9b37e;
}
.swim-hero__copy p {
  font-size: 16px;
  color: rgba(244,243,238,0.75);
  max-width: 44ch;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .swim-hero {
    background-attachment: scroll;
    min-height: 60vh;
  }
  .swim-hero__copy {
    margin-left: 0;
    padding: clamp(48px, 8vw, 80px) var(--pad);
  }
}

/* ─── Banner tall modifier ─────────────────────────────────────── */
.banner--tall img {
  height: clamp(320px, 50vw, 600px);
  object-position: center 25%;
  filter: brightness(0.85);
}

@media (max-width: 768px) {
  .lifestyle-split {
    grid-template-columns: 1fr;
  }
  .lifestyle-split__img {
    height: 280px;
  }
}

/* ─── Nathos font (self-hosted) ────────────────────────────────── */
/* Drop your Nathos font files into assets/fonts/ and uncomment:   */
/*
@font-face {
  font-family: 'Nathos';
  src: url('assets/fonts/Nathos-Bold.woff2') format('woff2'),
       url('assets/fonts/Nathos-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nathos';
  src: url('assets/fonts/Nathos-Regular.woff2') format('woff2'),
       url('assets/fonts/Nathos-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
*/
/* Once font files are added, update --display variable: */
/* --display: 'Nathos', 'Space Grotesk', system-ui, sans-serif; */

/* ─── Hero split layout ────────────────────────────────────────── */
.hero__panel--product {
  height: 100%;
  min-height: 65vh;
  overflow: hidden;
  position: relative;
}
.hero__panel--product::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ivory) 0%, rgba(246,243,238,0.7) 30%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}
.hero__panel--product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero__inner {
  padding: clamp(24px, 3vw, 40px) clamp(32px, 5vw, 72px);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__panel--product {
    min-height: 50vw;
    max-height: 420px;
  }
  .hero__inner {
    padding: 48px var(--pad);
  }
}

/* ─── Benefits intro: heading + box image side by side ─────────── */
.benefits__intro {
  display: block;
  max-width: 680px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.benefits__intro-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.benefits__intro-copy h2 {
  font-size: clamp(40px, 6vw, 76px);
  color: #f4f3ee;
}
.benefits__intro-copy p {
  font-size: 16px;
  color: rgba(244,243,238,0.78);
  max-width: 48ch;
  line-height: 1.7;
}
.benefits__intro-img {
  display: none;
}
.benefits__intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ─── Parallax break sections ──────────────────────────────────── */
.parallax-break {
  position: relative;
  width: 100%;
  height: clamp(280px, 35vw, 480px);
  background-image: var(--pbg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.parallax-break--tall {
  height: clamp(340px, 45vw, 560px);
}
.parallax-break__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.18);
}

@media (max-width: 900px) {
  .benefits__intro {
    grid-template-columns: 1fr;
  }
  .benefits__intro-img {
    aspect-ratio: 16/9;
    max-height: 300px;
  }
  .parallax-break,
  .benefits,
  .cta--lifestyle {
    background-attachment: scroll;
  }
}
/* Product card buttons: ivory text on copper bg */
.product .btn--primary {
  --fg: #1b1b1b;
}

/* ─── Hero + Shop: golden tan #C9B37E overrides ───────────────── */
.hero .btn--primary,
.hero .line--accent,
.hero .hero__cta .btn--primary {
  --bg: #c9b37e;
  --fg: #1b1b1b;
  color: #1b1b1b;
}
.hero .line--accent {
  color: #c9b37e;
}
.hero .hero__pills .pill {
  color: #c9b37e;
}

.shop .btn--primary,
.shop .product .btn--primary {
  --bg: #c9b37e;
  --fg: #1b1b1b;
}
.shop .eyebrow,
.shop .eyebrow .dot {
  color: #f6f3ee;
  background: none;
}
.shop .eyebrow .dot {
  background: #f6f3ee;
}
.shop h2 em {
  color: #c9b37e;
}
.shop .product__price span {
  color: #f6f3ee;
}

/* ─── Announce bar + Nav: champagne #C9B37E overrides ─────────── */
.announce {
  background: #c9b37e;
}
.marquee {
  background: #c9b37e;
}
.nav .btn--primary {
  --bg: #c9b37e;
  --fg: #1b1b1b;
}
.nav__links a::after {
  background: #c9b37e;
}
.cart__count {
  background: #c9b37e;
  color: #1b1b1b;
}

/* ─── About Us section ─────────────────────────────────────────── */
.about {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
  min-height: 600px;
  display: flex;
  align-items: center;
}
.about__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.about__bg img {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  /* Fade to ivory on the left */
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 25%, rgba(0,0,0,0.85) 55%, #000 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 25%, rgba(0,0,0,0.85) 55%, #000 100%);
  opacity: 0.6;
}
.about__inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(60px, 8vw, 100px);
}
.about__copy {
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about__copy h2 {
  font-size: clamp(40px, 5vw, 68px);
  color: var(--ink);
  line-height: 1;
}
.about__copy h2 em {
  color: var(--lime);
}
.about__copy p {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.75;
  max-width: 52ch;
}
.about__sign {
  margin-top: 8px;
  font-style: italic;
  color: var(--ink) !important;
}
.about__names {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--lime) !important;
  margin-top: -8px !important;
}

/* eyebrow on ivory bg */
.eyebrow--light {
  color: var(--stone);
}
.eyebrow--light .dot {
  background: var(--lime);
}

@media (max-width: 768px) {
  .about__bg img {
    width: 100%;
    opacity: 0.15;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .about__copy {
    max-width: 100%;
  }
}

/* ─── Trustpilot Reviews carousel ─────────────────────────────── */
.reviews {
  background: #1a1a1a;
  padding: clamp(48px, 6vw, 80px) 0;
  overflow: hidden;
}
.reviews__head {
  margin-bottom: 36px;
}
.reviews__score {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.reviews__score-num {
  font-family: var(--display);
  font-size: 32px;
  color: #f6f3ee;
  line-height: 1;
}
.reviews__score-label {
  font-size: 14px;
  color: rgba(246,243,238,0.55);
}
.reviews__tp-link {
  margin-left: 4px;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.reviews__tp-link:hover { opacity: 1; }

/* Scrolling track */
.reviews__track-wrap {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.reviews__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: reviewScroll 60s linear infinite;
}
.reviews__track:hover {
  animation-play-state: paused;
}
@keyframes reviewScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Review card */
.rcard {
  background: rgba(246,243,238,0.06);
  border: 1px solid rgba(246,243,238,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  transition: background 0.2s;
}
.rcard:hover {
  background: rgba(246,243,238,0.1);
}
.rcard__stars {
  color: #00b67a;
  font-size: 18px;
  letter-spacing: 2px;
}
.rcard__title {
  font-family: var(--display);
  font-size: 17px;
  color: #f6f3ee;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}
.rcard blockquote {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(246,243,238,0.65);
  flex: 1;
}
.rcard figcaption {
  font-size: 12px;
  color: rgba(246,243,238,0.35);
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.reviews__footer {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.reviews__footer .btn--ghost {
  --fg: rgba(246,243,238,0.7);
  box-shadow: inset 0 0 0 1.5px rgba(246,243,238,0.25);
  font-size: 14px;
}
.reviews__footer .btn--ghost:hover {
  --fg: #f6f3ee;
  --bg: rgba(246,243,238,0.08);
}
/* ─── Reviews strip inside shop section ───────────────────────── */
.shop-reviews {
  margin-bottom: 40px;
}
.shop-reviews .reviews__head {
  margin-bottom: 24px;
}
.shop-reviews .reviews__footer {
  margin-top: 24px;
}

/* ─── Reviews beside product grid ─────────────────────────────── */
.reviews-beside-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
}
.reviews-panel {
  display: flex;
  flex-direction: column;
  background: rgba(42,42,42,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 80px;
}
.reviews__track-wrap--vertical {
  overflow: hidden;
  height: 520px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.reviews__track--vertical {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  animation: reviewScrollV 30s linear infinite;
}
.reviews__track--vertical:hover {
  animation-play-state: paused;
}
@keyframes reviewScrollV {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
.reviews__track--vertical .rcard {
  width: 100%;
  flex-shrink: 0;
}
.reviews-panel .reviews__score-num {
  font-family: var(--display);
  font-size: 28px;
  color: #f6f3ee;
  line-height: 1;
}
.reviews-panel .reviews__score-label {
  font-size: 13px;
  color: rgba(246,243,238,0.55);
}

@media (max-width: 1080px) {
  .reviews-beside-grid {
    grid-template-columns: 1fr;
  }
  .reviews-panel {
    position: static;
  }
  .reviews__track-wrap--vertical {
    height: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .reviews__track--vertical {
    animation: none;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .reviews__track--vertical .rcard {
    width: calc(50% - 6px);
  }
}
@media (max-width: 600px) {
  .reviews__track--vertical .rcard {
    width: 100%;
  }
}

/* ─── Shop reviews horizontal strip ───────────────────────────── */
.shop-reviews-strip {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.shop-reviews-strip .reviews__score {
  display: flex;
  align-items: center;
  gap: 8px;
}
.shop-reviews-strip .reviews__score-num {
  font-family: var(--display);
  font-size: 24px;
  color: #f6f3ee;
  line-height: 1;
}
.shop-reviews-strip .reviews__score-label {
  font-size: 13px;
  color: rgba(246,243,238,0.55);
}

/* Remove old beside/vertical layout rules */
.reviews-beside-grid { display: block; }
.reviews-panel { display: none; }

/* ─── Product image hover overlay ─────────────────────────────── */
.product__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  opacity: 0;
  transition: opacity 0.3s var(--t);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  z-index: 2;
}
.product__visual-hint {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s var(--t);
  pointer-events: none;
}
.product__visual-hint svg {
  width: 36px;
  height: 36px;
  color: #f6f3ee;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.product__visual-hint span {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f6f3ee;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.product:hover .product__visual::after,
.product:hover .product__visual-hint {
  opacity: 1;
}
.pdmodal__img {
  transition: opacity 0.3s ease;
}