:root {
  --bg: #f5f1eb;
  --panel: #f8f4ee;
  --cream: #fffaf2;
  --line: rgba(29, 30, 32, 0.22);
  --line-soft: rgba(29, 30, 32, 0.12);
  --ink: #202326;
  --muted: #626263;
  --charcoal: #1f2226;
  --charcoal-2: #17191c;
  --red: #9a2f27;
  --bio-green: #08705d;
  --bio-green-soft: #dff6ef;
  --bio-purple: #7468c9;
  --bio-purple-soft: #ebe7ff;
  --radius: 24px;
  --radius-lg: 34px;
  --shadow-soft: 0 16px 45px rgba(34, 32, 28, 0.08);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 10% 0%, #fffaf2 0, var(--bg) 38%, #f1ece4 100%);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.page-shell {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
  padding: 28px 0 34px;
}

.site-header {
  height: 58px;
  display: flex;
  align-items: center;
  gap: 34px;
  position: relative;
  z-index: 30;
}
.brand {
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1;
  color: var(--red);
  font-weight: 500;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(26px, 3vw, 54px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.desktop-nav a { position: relative; }
.desktop-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-pill,
.consultation-btn,
.menu-btn,
.hero-cta,
.mini-pill,
.range-btn,
.filter,
.join-btn {
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
}
.lang-pill {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
}
.consultation-btn {
  background: var(--charcoal);
  color: white;
  padding: 13px 22px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.035em;
  border: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.menu-btn {
  display: none;
  width: 46px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 10px 4px;
}
.menu-btn span {
  display: block;
  height: 2px;
  width: 32px;
  background: var(--ink);
  margin: 6px 0;
  transition: transform .25s ease, opacity .25s ease;
}
.mobile-panel { display: none; }
body.menu-open .menu-btn span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.menu-open .menu-btn span:nth-child(2) { opacity: 0; }
body.menu-open .menu-btn span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* HERO */
.hero {
  margin-top: 18px;
  min-height: clamp(430px, 43vw, 570px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: #e7e4e0;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(244, 239, 232, .96) 0%, rgba(244, 239, 232, .82) 28%, rgba(244, 239, 232, .02) 62%, rgba(244, 239, 232, .12) 100%);
  z-index: 2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 54%;
  transform: scale(1.04);
  filter: saturate(.96) contrast(.99);
}
.hero-copy {
  position: relative;
  z-index: 3;
  width: min(470px, 48%);
  padding: clamp(36px, 5vw, 74px) 0 0 clamp(36px, 5vw, 74px);
}
.mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 42px;
  padding: 0 18px;
  background: rgba(255, 251, 245, .88);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
}
.hero h1 {
  margin: clamp(36px, 4.5vw, 62px) 0 22px;
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 86px);
  line-height: .84;
  letter-spacing: -.075em;
  font-weight: 400;
  text-transform: uppercase;
}
.hero h1 span, .hero h1 em { display: block; }
.hero h1 em {
  color: var(--red);
  font-style: italic;
}
.hero-copy > p {
  max-width: 360px;
  margin: 0;
  color: #383837;
  line-height: 1.55;
  font-size: 15px;
}
.instructor-mini {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 42px;
  color: var(--ink);
  font-size: 12px;
}
.instructor-mini > img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  border: 3px solid rgba(255,255,255,.8);
}
.instructor-mini span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.instructor-mini strong { font-weight: 800; letter-spacing: .03em; }
.instructor-mini a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-left: 14px;
  border-left: 1px solid var(--line);
  font-weight: 700;
}
.instructor-mini a img { width: 18px; height: 18px; }
.hero-cta {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  height: 52px;
  padding: 0 25px 0 30px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 251, 245, .92);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .035em;
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
}
.hero-cta img, .join-btn img { width: 20px; height: 20px; }

.section { margin-top: 52px; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 18px;
}
.section h2,
.events-intro h2,
.pilates-strip h2,
.subscription-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.075em;
  text-transform: uppercase;
}
.section-head h2 { font-size: clamp(44px, 4.8vw, 72px); }
.small-link,
.text-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}
.small-link span, .text-arrow span { font-size: 18px; line-height: 1; }

/* CLASSES */
.classes-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}
.span-3 { grid-column: span 3; }
.span-4 { grid-column: span 4; }
.span-6 { grid-column: span 6; }
.class-card,
.image-card,
.info-card,
.instructor-tile,
.schedule-card,
.subscription-section,
.community-strip {
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.class-card {
  min-height: 196px;
  padding: 28px;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
}
.class-card.dark {
  background: radial-gradient(circle at 30% 20%, #2f3338 0%, var(--charcoal-2) 56%, #101113 100%);
  color: white;
  border-color: rgba(255,255,255,.05);
}
.class-card.light { background: rgba(255, 250, 242, .55); }
.card-title {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 300;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.price { font-size: 13px; margin-top: -42px; }
.round-arrow {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  font-size: 28px;
  line-height: 1;
  font-weight: 200;
}
.image-card {
  min-height: 196px;
  background: #dedbd8;
}
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.image-card.portrait-card img { object-position: center 24%; }
.info-card {
  padding: 26px 24px;
  background: rgba(255, 250, 242, .58);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.info-card div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 20px;
  align-items: center;
  padding: 14px 0;
}
.info-card div + div { border-top: 1px solid var(--line-soft); }
.info-card img { width: 26px; height: 26px; }
.info-card p { margin: 0; line-height: 1.45; font-size: 13px; }

/* PILATES STRIP */
.pilates-strip {
  display: grid;
  grid-template-columns: 280px 1px minmax(280px, 1fr) 340px;
  align-items: center;
  gap: 42px;
  border-bottom: 1px solid var(--line-soft);
  padding: 18px 0 46px;
}
.pilates-strip h2 { font-size: clamp(50px, 5vw, 78px); }
.vertical-line { width: 1px; height: 120px; background: var(--line); }
.pilates-copy h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(27px, 2.7vw, 42px);
  font-weight: 400;
  letter-spacing: -.035em;
}
.pilates-copy p {
  margin: 0 0 18px;
  max-width: 480px;
  color: #454545;
  line-height: 1.55;
  font-size: 14px;
}
.triptych {
  height: 172px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.triptych span {
  border-radius: 18px;
  background-image: url('assets/images/hero-stretch.png');
  background-size: 720px auto;
  background-position: var(--x) 62%;
  background-repeat: no-repeat;
  border: 1px solid var(--line-soft);
}


/* BIOPLUS PARTNERSHIP + SCIENCE */
.bioplus-partnership {
  display: grid;
  gap: 22px;
}
.bioplus-card {
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: rgba(255, 250, 242, 0.62);
}
.bioplus-video-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.42fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  padding: clamp(42px, 5vw, 64px) clamp(42px, 5.2vw, 64px);
  background:
    radial-gradient(circle at 92% 6%, rgba(255,255,255,.84), transparent 34%),
    linear-gradient(120deg, rgba(251,247,239,.96), rgba(241,236,227,.88));
}
.bio-eyebrow {
  margin: 0 0 14px;
  color: var(--bio-green);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.bio-eyebrow.purple { color: var(--bio-purple); }
.bioplus-copy-block h2,
.science-hero-copy h2 {
  margin: 0;
  font-family: var(--sans);
  font-weight: 650;
  color: #060708;
  letter-spacing: -.055em;
}
.bioplus-copy-block h2 {
  font-size: clamp(42px, 4.4vw, 66px);
  line-height: .98;
}
.bioplus-copy-block > p:not(.bio-eyebrow) {
  max-width: 420px;
  margin: 28px 0 36px;
  color: #151718;
  font-size: 16px;
  line-height: 1.58;
}
.bio-proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 420px;
  margin-bottom: 36px;
  border-radius: 18px;
}
.bio-proof-row div {
  min-height: 86px;
  display: grid;
  place-items: center;
  gap: 8px;
  text-align: center;
  padding: 4px 18px;
}
.bio-proof-row div + div { border-left: 1px solid var(--line-soft); }
.bio-proof-row img { width: 42px; height: 42px; }
.bio-proof-row span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.18;
}
.bio-outline-btn,
.bio-dark-btn {
  height: 50px;
  min-width: 210px;
  padding: 0 25px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
}
.bio-outline-btn {
  border: 1px solid var(--ink);
  background: rgba(255,255,255,.25);
}
.bio-dark-btn {
  color: white;
  background: #050607;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.bio-outline-btn img,
.bio-dark-btn img { width: 19px; height: 19px; }
.bio-dark-btn img { filter: invert(1); }
.bio-video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #f8f8f7;
  box-shadow: 0 24px 55px rgba(9, 14, 18, .12);
  border: 1px solid rgba(255,255,255,.4);
}
.bio-video {
  width: 100%;
  aspect-ratio: 2.414 / 1;
  display: block;
  object-fit: cover;
  background: #1f2a2f;
}
.bio-play {
  position: absolute;
  left: 50%;
  top: calc(50% - 25px);
  transform: translate(-50%, -50%);
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.94);
  color: #0b0c0d;
  display: grid;
  place-items: center;
  padding-left: 5px;
  font-size: 29px;
  box-shadow: 0 18px 42px rgba(0,0,0,.15);
  cursor: pointer;
  transition: transform .22s ease, opacity .22s ease;
}
.bio-play:hover { transform: translate(-50%, -50%) scale(1.045); }
.bio-video-shell.is-playing .bio-play { opacity: 0; pointer-events: none; }
.bio-video-controls {
  height: 56px;
  display: grid;
  grid-template-columns: auto auto 1fr auto auto auto;
  align-items: center;
  gap: 20px;
  padding: 0 22px;
  color: #08090a;
  background: rgba(255,255,255,.93);
  font-size: 13px;
}
.bio-video-controls i {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, #252525 0 15%, rgba(0,0,0,.18) 15% 100%);
}
.control-play { font-size: 15px; }
.speaker { font-size: 20px; }
.bioplus-science-card {
  position: relative;
  padding: clamp(34px, 4.8vw, 58px) clamp(34px, 5vw, 58px) clamp(30px, 4vw, 42px);
  background:
    linear-gradient(120deg, rgba(255,252,249,.94) 0%, rgba(248,245,255,.88) 58%, rgba(237,252,247,.8) 100%);
  min-height: 760px;
  isolation: isolate;
}
.dna-art {
  position: absolute;
  z-index: -1;
  top: 4px;
  right: -70px;
  width: min(890px, 76%);
  height: 330px;
  object-fit: cover;
  opacity: .92;
  pointer-events: none;
}
.science-hero-copy {
  max-width: 620px;
  position: relative;
  z-index: 2;
}
.science-hero-copy h2 {
  max-width: 850px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.04;
}
.science-hero-copy h2 em {
  color: var(--bio-purple);
  font-style: italic;
  font-weight: 420;
}
.science-hero-copy > p {
  max-width: 690px;
  margin: 24px 0 24px;
  color: #171819;
  line-height: 1.55;
  font-size: 15px;
}
.science-grid {
  position: relative;
  z-index: 2;
  margin-top: 52px;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 20px;
}
.tech-card,
.complex-card,
.science-feature-strip {
  border: 1px solid rgba(27, 27, 28, .08);
  border-radius: 22px;
  background: rgba(255,255,255,.62);
  box-shadow: 0 20px 46px rgba(78, 67, 113, .08);
  backdrop-filter: blur(8px);
}
.tech-card {
  padding: 28px 28px;
}
.tech-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 22px;
  align-items: center;
  padding: 18px 0 22px;
}
.tech-item + .tech-item { border-top: 1px solid var(--line-soft); }
.tech-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -.04em;
}
.tech-badge.aut { color: var(--bio-green); background: #d8f3ed; }
.tech-badge.bmts { color: var(--bio-purple); background: var(--bio-purple-soft); }
.tech-item h3 {
  margin: 0 0 6px;
  font-size: 17px;
}
.tech-item strong {
  display: block;
  color: var(--bio-green);
  font-size: 13px;
  margin-bottom: 8px;
}
.tech-item p {
  margin: 0;
  color: #333536;
  font-size: 13px;
  line-height: 1.45;
}
.complex-card {
  padding: 28px 34px 34px;
}
.complex-card > p:not(.bio-eyebrow) {
  max-width: 720px;
  margin: 0 0 30px;
  color: #202122;
  font-size: 15px;
  line-height: 1.5;
}
.complex-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.complex-icons div {
  min-height: 168px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  justify-items: center;
  text-align: center;
  padding: 14px 26px;
}
.complex-icons div + div { border-left: 1px solid var(--line-soft); }
.complex-icons img {
  width: 76px;
  height: 76px;
  padding: 14px;
  border-radius: 50%;
  background: #eef9f5;
}
.complex-icons strong {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.15;
}
.complex-icons span {
  margin-top: 10px;
  color: #565859;
  font-size: 13px;
  line-height: 1.35;
}
.science-feature-strip {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.science-feature-strip div {
  min-height: 112px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 26px;
}
.science-feature-strip div + div { border-left: 1px solid var(--line-soft); }
.science-feature-strip img {
  width: 54px;
  height: 54px;
  padding: 10px;
  border-radius: 50%;
  background: #eef9f5;
}
.science-feature-strip span {
  font-size: 14px;
  line-height: 1.32;
}


/* PRODUCT */
.product-section {
  scroll-margin-top: 90px;
}
.product-head {
  align-items: flex-end;
}
.product-showcase {
  min-height: 565px;
  display: grid;
  grid-template-columns: minmax(350px, .9fr) minmax(0, 1.18fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: center;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,250,242,.92), rgba(239,232,224,.72));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.product-copy-panel {
  min-width: 0;
}
.product-eyebrow {
  margin: 0 0 34px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-copy-panel h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(48px, 5.7vw, 82px);
  line-height: .95;
  letter-spacing: -.065em;
  font-weight: 300;
  text-transform: uppercase;
}
.product-copy-panel h3 {
  margin: 30px 0 14px;
  font-size: clamp(18px, 1.7vw, 24px);
  letter-spacing: -.03em;
}
.product-copy-panel > p:not(.product-eyebrow) {
  max-width: 470px;
  margin: 0;
  color: #3e3f40;
  line-height: 1.58;
  font-size: 16px;
}
.product-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 48px 0 38px;
  border-top: 0;
}
.product-features div {
  min-width: 0;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 11px;
  padding: 0 19px;
}
.product-features div + div { border-left: 1px solid var(--line-soft); }
.product-features img {
  width: 56px;
  height: 56px;
}
.product-features strong {
  min-height: 38px;
  display: block;
  font-size: 12px;
  line-height: 1.28;
}
.product-features span {
  color: #4e4e4d;
  font-size: 12px;
  line-height: 1.4;
}
.product-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.product-buy-btn {
  min-width: 225px;
  height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--charcoal);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease;
}
.product-buy-btn:hover { transform: translateY(-2px); background: var(--charcoal-2); }
.product-buy-btn img {
  width: 20px;
  height: 20px;
  filter: invert(1);
}
.product-price {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .01em;
}
.product-gallery-panel {
  min-width: 0;
  position: relative;
  display: grid;
  gap: 16px;
}
.product-carousel {
  --product-bar-width: 16px;
  --product-bar-gap: 56px;
  --product-bar-opacity: .82;
  position: relative;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: 24px;
  background: rgba(255, 250, 242, .62);
  border: 1px solid rgba(255,255,255,.58);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.product-carousel::-webkit-scrollbar { display: none; }
/* Remove the class `has-product-bars` from .product-carousel to disable the CSS overlay bars. */
.product-carousel.has-product-bars::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent var(--product-bar-gap),
    rgba(248, 244, 238, var(--product-bar-opacity)) var(--product-bar-gap),
    rgba(248, 244, 238, var(--product-bar-opacity)) calc(var(--product-bar-gap) + var(--product-bar-width))
  );
  mix-blend-mode: normal;
}
.product-slide {
  min-width: 100%;
  margin: 0;
  scroll-snap-align: start;
  display: grid;
  place-items: center;
  aspect-ratio: 1.04 / 1;
  padding: clamp(22px, 4vw, 52px);
}
.product-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: saturate(.96) contrast(1.01);
}
.carousel-control {
  position: absolute;
  z-index: 5;
  top: 44%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: rgba(255,250,242,.88);
  display: grid;
  place-items: center;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.product-prev { left: -28px; }
.product-next { right: -28px; }
.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.product-thumbs button {
  height: 74px;
  padding: 5px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(255,250,242,.58);
  overflow: hidden;
  cursor: pointer;
  opacity: .7;
  transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}
.product-thumbs button:hover,
.product-thumbs button.is-active {
  opacity: 1;
  border-color: var(--ink);
  transform: translateY(-1px);
}
.product-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.product-treatment-pairing {
  margin-top: 14px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: rgba(255,250,242,.58);
  padding: 34px 48px;
  display: grid;
  grid-template-columns: .7fr 1fr;
  gap: 34px;
  align-items: center;
}
.product-treatment-pairing h3 {
  margin: 0 0 16px;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -.05em;
  font-weight: 400;
}
.product-treatment-pairing p {
  margin: 0 0 22px;
  max-width: 330px;
  color: #424344;
  line-height: 1.5;
}
.product-treatment-pairing img {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
}

/* INSTRUCTOR */
.line-head {
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}
.instructor-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.45fr .8fr .82fr;
  grid-template-rows: 168px 168px;
  gap: 14px;
}
.instructor-tile { background: var(--cream); }
.instructor-tile img { width: 100%; height: 100%; object-fit: cover; }
.tile-tall { grid-row: 1 / span 2; }
.tile-tall img { object-position: center 30%; }
.tile-wide { grid-column: 2 / span 1; }
.tile-wide.lower { grid-column: 2 / span 1; }
.tile-text {
  grid-column: 3 / span 1;
  grid-row: 1 / span 2;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.tile-text .eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
}
.tile-text h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -.03em;
  font-weight: 400;
}
.divider-star { display: block; margin: 20px 0; color: var(--red); font-size: 22px; }
.tile-text p:last-of-type {
  margin: 0 0 20px;
  color: #505050;
  line-height: 1.52;
  font-size: 13px;
}
.tile-sculpt { grid-column: 4 / span 1; grid-row: 1 / span 2; }
.tile-sculpt img { object-position: center; }

/* EVENTS */
.events-section {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}
.events-intro h2 { font-size: clamp(42px, 4.4vw, 68px); }
.event-note {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  margin-top: 26px;
  align-items: start;
}
.event-note img { width: 25px; height: 25px; }
.event-note p { margin: 0; line-height: 1.45; font-size: 13px; }
.schedule-card {
  background: rgba(255, 250, 242, .42);
  padding: 0;
  overflow: hidden;
}
.schedule-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 12px;
  transform: translateY(-42px);
  margin-bottom: -42px;
}
.range-btn,
.filter {
  height: 34px;
  padding: 0 18px;
  background: rgba(255,250,242,.8);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.filter-row { display: flex; gap: 10px; }
.filter.is-active { background: var(--charcoal); color: white; border-color: var(--charcoal); }
.week-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border-radius: 16px;
  overflow: hidden;
}
.day-head {
  min-height: 58px;
  display: grid;
  place-items: center;
  background: var(--charcoal);
  color: white;
  text-align: center;
  font-size: 10px;
  text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,.14);
}
.day-head strong { font-size: 17px; }
.day-cell {
  min-height: 174px;
  border-right: 1px solid var(--line);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px 10px;
  background: rgba(255, 250, 242, .43);
}
.day-cell:last-child,
.day-head:nth-child(7) { border-right: 0; }
.day-cell.muted { color: #a19c95; font-size: 20px; }
.event-cell span {
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
}
.event-cell strong {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.02;
  letter-spacing: -.03em;
  margin-top: 8px;
}
.event-cell small { color: #545454; margin-bottom: 10px; }
.event-cell a {
  padding: 8px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.tiny-note {
  margin: 9px 18px 14px;
  color: #69645f;
  font-size: 12px;
}

/* SUBSCRIPTION */
.subscription-section {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 260px;
  gap: 32px;
  align-items: center;
  padding: 28px 32px;
  background: linear-gradient(120deg, rgba(255,250,242,.92), rgba(236,227,216,.78));
  box-shadow: var(--shadow-soft);
  overflow: visible;
}
.bag-wrap {
  position: relative;
  min-height: 210px;
  display: grid;
  place-items: center;
}
.bag-wrap img {
  width: 220px;
  max-height: 232px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.badge {
  position: absolute;
  top: 14px;
  right: 10px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #111;
  color: white;
  display: grid;
  place-items: center;
  text-align: center;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.05;
  transform: rotate(-5deg);
}
.subscription-copy h2 {
  font-size: clamp(36px, 4vw, 58px);
  text-transform: none;
  letter-spacing: -.055em;
  line-height: .94;
}
.subscription-copy em { color: var(--red); font-style: italic; }
.subscription-copy p {
  max-width: 520px;
  margin: 18px 0 20px;
  color: #414141;
  line-height: 1.55;
  font-size: 14px;
}
.gift-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.gift-features span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}
.gift-features img { width: 25px; height: 25px; }
.price-box {
  min-height: 220px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-left: 32px;
}
.price-box span { text-transform: uppercase; font-weight: 800; font-size: 13px; }
.price-box strong {
  font-family: var(--serif);
  text-transform: uppercase;
  color: var(--red);
  font-size: 58px;
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.08em;
  margin-top: 4px;
}
.price-box p { margin: 12px 0 18px; font-size: 14px; }
.join-btn {
  height: 44px;
  min-width: 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--charcoal);
  color: white;
  border: 0;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
}
.price-box small { margin-top: 10px; color: #5c5a56; }

.community-strip {
  margin-top: 22px;
  min-height: 88px;
  padding: 15px 22px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  align-items: center;
  background: rgba(255,250,242,.55);
}
.community-strip > div {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border-left: 1px solid var(--line-soft);
}
.community-strip > div:first-child { border-left: 0; justify-content: flex-start; }
.community-strip img { width: 32px; height: 32px; object-fit: cover; }
.community-profile > img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-position: center 18%;
}
.community-strip p { margin: 0; line-height: 1.35; font-size: 12px; }
.community-strip span { color: var(--red); font-weight: 800; }

.site-footer {
  min-height: 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  padding: 22px 0 0;
}
.footer-brand { font-size: 24px; }
.site-footer nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 58px);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #5b5a57;
}
.footer-socials {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}
.footer-socials img { width: 22px; height: 22px; }
.footer-socials span { font-weight: 800; font-size: 18px; }

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .page-shell { width: min(100% - 38px, 940px); }
  .desktop-nav { display: none; }
  .consultation-btn { display: none; }
  .menu-btn { display: block; }
  .mobile-panel {
    display: block;
    max-height: 0;
    transition: max-height .28s ease;
    overflow: hidden;
    position: relative;
    z-index: 20;
  }
  .mobile-panel a {
    display: block;
    padding: 15px 18px;
    border-bottom: 1px solid var(--line-soft);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 12px;
  }
  body.menu-open .mobile-panel { max-height: 260px; }
  .hero { min-height: 520px; }
  .hero-copy { width: 60%; }
  .classes-grid { grid-template-columns: repeat(6, minmax(0,1fr)); }
  .span-3 { grid-column: span 3; }
  .span-4, .span-6 { grid-column: span 6; }
  .pilates-strip { grid-template-columns: 220px 1px 1fr; }
  .triptych { grid-column: 1 / -1; }

  .bioplus-video-card { grid-template-columns: 1fr; }
  .bioplus-copy-block > p:not(.bio-eyebrow), .bio-proof-row { max-width: 620px; }
  .science-grid { grid-template-columns: 1fr; }
  .science-feature-strip { grid-template-columns: repeat(2, 1fr); }
  .science-feature-strip div:nth-child(3) { border-left: 0; border-top: 1px solid var(--line-soft); }
  .science-feature-strip div:nth-child(4) { border-top: 1px solid var(--line-soft); }
  .product-showcase { grid-template-columns: 1fr; min-height: auto; }
  .product-copy-panel > p:not(.product-eyebrow) { max-width: 680px; }
  .product-features { max-width: 720px; }
  .product-gallery-panel { max-width: 760px; width: 100%; margin: 0 auto; }
  .instructor-grid { grid-template-columns: 1fr 1.25fr 1fr; grid-template-rows: 170px 170px 170px; }
  .tile-sculpt { grid-column: 3; grid-row: 1 / span 2; }
  .tile-text { grid-column: 1 / span 2; grid-row: 3; }
  .tile-tall { grid-column: 1; grid-row: 1 / span 2; }
  .tile-wide { grid-column: 2; }
  .tile-wide.lower { grid-column: 2; }
  .events-section { grid-template-columns: 1fr; }
  .schedule-tools { transform: none; margin-bottom: 12px; padding: 0; }
  .subscription-section { grid-template-columns: 220px 1fr; }
  .price-box { grid-column: 1 / -1; border-left: 0; border-top: 1px solid var(--line); padding-left: 0; padding-top: 24px; min-height: auto; }
  .community-strip { grid-template-columns: 1fr 1fr; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .site-footer nav, .footer-socials { justify-content: center; }
}

@media (max-width: 760px) {
  .page-shell { width: calc(100% - 28px); padding-top: 18px; }
  .site-header { height: 50px; gap: 14px; }
  .brand { font-size: 28px; letter-spacing: -0.08em; }
  .lang-pill { display: none; }
  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    border-radius: 26px;
    overflow: hidden;
  }
  .hero-media {
    position: relative;
    height: clamp(310px, 92vw, 520px);
    order: 1;
  }
  .hero-media::after {
    background: linear-gradient(180deg, rgba(244,239,232,.0) 0%, rgba(244,239,232,.18) 66%, rgba(244,239,232,.86) 100%);
  }
  .hero-media img { object-position: 67% center; transform: scale(1.02); }
  .hero-copy {
    order: 0;
    width: 100%;
    padding: 26px 24px 10px;
  }
  .mini-pill { height: 38px; font-size: 11px; }
  .hero h1 { font-size: clamp(42px, 12vw, 62px); margin: 24px 0 15px; }
  .hero-copy > p { font-size: 14px; max-width: 92%; }
  .instructor-mini { margin-top: 24px; align-items: flex-start; flex-wrap: wrap; }
  .instructor-mini > img { width: 48px; height: 48px; }
  .hero-cta {
    left: 18px;
    right: 18px;
    bottom: 18px;
    justify-content: center;
    background: var(--charcoal);
    color: white;
    border-color: var(--charcoal);
  }
  .section { margin-top: 38px; }
  .section-head { align-items: center; }
  .section-head h2 { font-size: 40px; }
  .small-link { font-size: 11px; }
  .classes-grid { gap: 10px; grid-template-columns: repeat(2, 1fr); }
  .span-3, .span-4, .span-6 { grid-column: span 1; }
  .image-card,
  .class-card,
  .info-card { min-height: 148px; border-radius: 14px; }
  .class-card { padding: 20px 16px; }
  .card-title { font-size: 18px; }
  .price { margin-top: -28px; font-size: 12px; }
  .round-arrow { width: 34px; height: 34px; right: 12px; bottom: 12px; font-size: 22px; }
  .info-card {
    grid-column: span 1;
    padding: 14px 14px;
  }
  .info-card div { grid-template-columns: 24px 1fr; gap: 10px; padding: 9px 0; }
  .info-card img { width: 20px; height: 20px; }
  .info-card p { font-size: 11px; }
  .pilates-strip {
    grid-template-columns: 1fr;
    gap: 18px;
    border: 1px solid var(--line-soft);
    border-radius: 20px;
    padding: 26px;
    background: rgba(255,250,242,.44);
  }
  .pilates-strip h2 { font-size: 48px; }
  .vertical-line { display: none; }
  .triptych { height: 180px; grid-column: auto; }
  .triptych span { background-size: 780px auto; }

  .bioplus-video-card,
  .bioplus-science-card { border-radius: 22px; padding: 28px 20px; }
  .bioplus-copy-block h2 { font-size: 42px; }
  .bioplus-copy-block > p:not(.bio-eyebrow) { margin: 20px 0 24px; font-size: 14px; }
  .bio-proof-row { grid-template-columns: 1fr; margin-bottom: 24px; border: 1px solid var(--line-soft); overflow: hidden; }
  .bio-proof-row div { min-height: 72px; grid-template-columns: 42px 1fr; justify-items: start; text-align: left; padding: 12px 18px; }
  .bio-proof-row div + div { border-left: 0; border-top: 1px solid var(--line-soft); }
  .bio-video { aspect-ratio: 1.65 / 1; }
  .bio-play { width: 64px; height: 64px; top: calc(50% - 24px); font-size: 22px; }
  .bio-video-controls { height: 48px; gap: 12px; padding: 0 14px; font-size: 11px; }
  .bio-video-controls span:nth-last-child(2) { display: none; }
  .dna-art { width: 820px; max-width: none; top: 72px; right: -330px; opacity: .72; }
  .science-hero-copy h2 { font-size: 34px; }
  .science-hero-copy > p { font-size: 14px; }
  .science-grid { margin-top: 34px; gap: 14px; }
  .tech-card, .complex-card { padding: 22px 18px; border-radius: 18px; }
  .tech-item { grid-template-columns: 64px 1fr; gap: 14px; }
  .tech-badge { width: 58px; height: 58px; font-size: 20px; }
  .complex-icons { grid-template-columns: 1fr; }
  .complex-icons div { min-height: auto; grid-template-columns: 62px 1fr; grid-template-rows: auto auto; justify-items: start; text-align: left; gap: 0 14px; padding: 18px 0; }
  .complex-icons div + div { border-left: 0; border-top: 1px solid var(--line-soft); }
  .complex-icons img { width: 58px; height: 58px; grid-row: 1 / span 2; padding: 10px; }
  .complex-icons strong { margin-top: 0; }
  .complex-icons span { margin-top: 5px; }
  .science-feature-strip { grid-template-columns: 1fr; border-radius: 18px; }
  .science-feature-strip div { min-height: 86px; padding: 17px 18px; grid-template-columns: 48px 1fr; }
  .science-feature-strip div + div { border-left: 0; border-top: 1px solid var(--line-soft); }
  .science-feature-strip div:nth-child(3) { border-left: 0; }
  .science-feature-strip img { width: 44px; height: 44px; padding: 8px; }
  .science-feature-strip span { font-size: 13px; }
  .product-showcase { padding: 24px 20px; border-radius: 22px; gap: 24px; }
  .product-eyebrow { margin-bottom: 22px; font-size: 12px; }
  .product-copy-panel h2 { font-size: clamp(39px, 10vw, 54px); }
  .product-copy-panel h3 { margin-top: 20px; font-size: 17px; }
  .product-copy-panel > p:not(.product-eyebrow) { font-size: 14px; }
  .product-features { grid-template-columns: 1fr; margin: 28px 0 24px; border: 1px solid var(--line-soft); border-radius: 18px; overflow: hidden; }
  .product-features div { grid-template-columns: 48px 1fr; justify-items: start; text-align: left; gap: 0 14px; padding: 14px 16px; }
  .product-features div + div { border-left: 0; border-top: 1px solid var(--line-soft); }
  .product-features img { width: 42px; height: 42px; grid-row: 1 / span 2; }
  .product-features strong { min-height: 0; font-size: 12px; }
  .product-features span { font-size: 12px; margin-top: 4px; }
  .product-actions { gap: 14px; }
  .product-buy-btn { width: 100%; min-width: 0; height: 54px; }
  .product-price { width: 100%; text-align: center; font-size: 14px; }
  .product-carousel { --product-bar-width: 10px; --product-bar-gap: 42px; border-radius: 18px; }
  .product-slide { aspect-ratio: .95 / 1; padding: 20px; }
  .carousel-control { width: 42px; height: 42px; font-size: 28px; top: 40%; }
  .product-prev { left: 8px; }
  .product-next { right: 8px; }
  .product-thumbs { gap: 7px; }
  .product-thumbs button { height: 58px; border-radius: 12px; }
  .instructor-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .tile-tall, .tile-wide, .tile-wide.lower, .tile-text, .tile-sculpt {
    grid-column: auto;
    grid-row: auto;
  }
  .tile-tall, .tile-sculpt { min-height: 250px; }
  .tile-wide { min-height: 145px; }
  .tile-wide.lower { min-height: 160px; }
  .tile-text { grid-column: 1 / -1; padding: 24px 20px; }
  .events-section { gap: 20px; }
  .events-intro h2 { font-size: 40px; }
  .event-note { margin-top: 16px; }
  .schedule-tools { flex-direction: column; align-items: stretch; gap: 10px; }
  .filter-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
  .range-btn, .filter { height: 34px; padding: 0 10px; font-size: 10px; }
  .week-grid {
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
  }
  .day-head { display: none; }
  .day-cell {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .day-cell.muted { display: none; }
  .event-cell {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    grid-template-areas:
      'date title btn'
      'date loc btn';
    align-items: center;
    gap: 0 14px;
    text-align: left;
    padding: 20px;
  }
  .event-cell span { grid-area: date; font-size: 14px; }
  .event-cell strong { grid-area: title; margin-top: 0; }
  .event-cell small { grid-area: loc; margin: 0; }
  .event-cell a { grid-area: btn; }
  .subscription-section {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px;
  }
  .bag-wrap { min-height: 205px; }
  .bag-wrap img { width: min(260px, 80%); }
  .badge { right: 18%; }
  .subscription-copy h2 { font-size: 36px; }
  .gift-features { gap: 14px; }
  .community-strip { grid-template-columns: 1fr; padding: 0; }
  .community-strip > div { min-height: 76px; border-left: 0; border-top: 1px solid var(--line-soft); justify-content: flex-start; }
  .community-strip > div:first-child { border-top: 0; }
  .site-footer nav { gap: 17px; flex-wrap: wrap; }
}

@media (max-width: 440px) {
  .page-shell { width: calc(100% - 22px); }
  .brand { font-size: 24px; }
  .menu-btn { width: 38px; }
  .menu-btn span { width: 28px; }
  .hero-copy { padding: 22px 19px 8px; }
  .hero-media { height: 360px; }
  .hero-cta { height: 48px; }
  .classes-grid { grid-template-columns: 1fr; }
  .info-card, .image-card, .class-card { grid-column: 1 !important; }
  .image-card { min-height: 190px; }
  .class-card { min-height: 160px; }

  .bio-outline-btn, .bio-dark-btn { width: 100%; min-width: 0; }
  .bio-video-controls { grid-template-columns: auto auto 1fr auto; }
  .bio-video-controls span:nth-last-child(1), .bio-video-controls span:nth-last-child(3) { display: none; }
  .bioplus-science-card { min-height: auto; }
  .science-hero-copy h2 { font-size: 31px; }
  .product-showcase { padding: 22px 16px; }
  .product-copy-panel h2 { font-size: 38px; }
  .product-slide { aspect-ratio: .86 / 1; padding: 12px; }
  .product-carousel { --product-bar-gap: 34px; --product-bar-width: 9px; }
  .product-thumbs button { height: 50px; }
  .instructor-grid { grid-template-columns: 1fr; }
  .event-cell { grid-template-columns: 64px 1fr; grid-template-areas: 'date title' 'date loc' 'btn btn'; }
  .event-cell a { width: fit-content; margin-top: 12px; }
}

/* PRODUCT DETAIL PAGE -------------------------------------------------- */
.product-page-shell {
  width: min(1440px, calc(100% - 72px));
}
.product-detail-main .section {
  margin-top: 18px;
}
.product-hero {
  min-height: clamp(560px, 55vw, 740px);
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(520px, 1.18fr);
  gap: clamp(24px, 4vw, 70px);
  align-items: center;
  padding: clamp(42px, 5vw, 76px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 83% 21%, rgba(255,255,255,.95) 0, rgba(255,255,255,.26) 33%, transparent 60%),
    linear-gradient(135deg, rgba(255,250,242,.96), rgba(236,229,222,.78));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.product-hero-copy {
  position: relative;
  z-index: 3;
}
.product-hero-copy .mini-pill {
  height: 40px;
  padding-inline: 20px;
  margin-bottom: clamp(32px, 4vw, 54px);
}
.product-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(56px, 6.6vw, 104px);
  line-height: .88;
  letter-spacing: -.075em;
  font-weight: 400;
  text-transform: uppercase;
}
.product-hero h1 em {
  color: var(--red);
  font-style: italic;
}
.product-hero h2 {
  margin: clamp(22px, 2.3vw, 32px) 0 0;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.25;
  letter-spacing: -.02em;
}
.product-hero-copy > p {
  max-width: 460px;
  margin: 18px 0 0;
  color: #303234;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.65;
}
.product-hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: clamp(32px, 4vw, 52px);
  flex-wrap: wrap;
}
.product-hero-actions > span {
  font-size: 16px;
  letter-spacing: .02em;
  white-space: nowrap;
}
.product-hero-image {
  min-height: clamp(380px, 39vw, 560px);
  border-radius: 34px;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.26);
  display: grid;
  place-items: center;
  z-index: 2;
}
.product-hero-image img {
  width: 112%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(.98) contrast(1.02);
  transform: translateX(-2%) scale(1.03);
}
.product-hero-image.has-product-bars::after,
.product-detail-carousel.has-product-bars::after {
  pointer-events: none;
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: .38;
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 66px,
    rgba(248, 244, 238, .96) 66px,
    rgba(248, 244, 238, .96) 82px
  );
}
/* Remove the `has-product-bars` class from .product-hero-image or .product-detail-carousel to disable the CSS bars. */
.scroll-cue {
  position: absolute;
  right: clamp(40px, 5vw, 72px);
  bottom: clamp(26px, 3vw, 46px);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.scroll-cue span {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(154,47,39,.6);
  border-radius: 50%;
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 14px;
}
.product-feature-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  padding: 38px 44px;
  border-radius: 28px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 250, 242, .62);
  box-shadow: var(--shadow-soft);
}
.product-feature-band > div {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 clamp(18px, 2vw, 34px);
}
.product-feature-band > div + div { border-left: 1px solid var(--line-soft); }
.product-feature-band img {
  width: 66px;
  height: 66px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  padding: 15px;
  margin-bottom: 18px;
}
.product-feature-band strong {
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.product-feature-band span {
  max-width: 210px;
  margin-top: 10px;
  color: #464747;
  font-size: 14px;
  line-height: 1.45;
}
.product-story {
  display: grid;
  grid-template-columns: minmax(330px, .82fr) minmax(540px, 1.25fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: stretch;
  padding: clamp(34px, 4.5vw, 62px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: rgba(255, 250, 242, .58);
  box-shadow: var(--shadow-soft);
}
.product-story-copy {
  align-self: center;
}
.product-story-copy h2,
.usage-head h2,
.product-cta-banner h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.06em;
}
.product-story-copy h2 {
  margin-top: 22px;
  font-size: clamp(42px, 4.2vw, 72px);
  line-height: .96;
}
.product-story-copy h2 em,
.product-cta-banner em {
  color: var(--red);
  font-style: italic;
}
.product-story-copy > p:not(.product-eyebrow) {
  max-width: 440px;
  margin: 26px 0 0;
  color: #303234;
  line-height: 1.65;
  font-size: 16px;
}
.product-check-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 14px;
  color: #303234;
  font-size: 15px;
}
.product-check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-check-list img { width: 22px; height: 22px; flex: 0 0 auto; }
.product-detail-gallery {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  grid-template-areas:
    'prev carousel next'
    '. thumbs .';
  align-items: center;
  gap: 18px 12px;
  min-width: 0;
}
.product-detail-gallery .product-prev { grid-area: prev; position: static; transform: none; }
.product-detail-gallery .product-next { grid-area: next; position: static; transform: none; }
.product-detail-carousel {
  grid-area: carousel;
  border: 0;
  box-shadow: none;
  background: rgba(236,229,222,.62);
  border-radius: 26px;
  min-width: 0;
  position: relative;
  overflow-x: auto;
}
.product-detail-carousel .product-slide {
  aspect-ratio: 1.58 / 1;
  padding: 0;
  background: transparent;
}
.product-detail-carousel .product-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.product-detail-thumbs {
  grid-area: thumbs;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.product-detail-thumbs button {
  height: 92px;
  border-radius: 16px;
  background: rgba(236,229,222,.74);
}
.usage-section {
  padding: clamp(34px, 4.5vw, 62px);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 242, .46);
}
.usage-head h2 {
  margin-top: 16px;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1;
}
.usage-layout {
  display: grid;
  grid-template-columns: 1fr minmax(290px, 360px);
  gap: clamp(24px, 4vw, 56px);
  margin-top: 44px;
  align-items: stretch;
}
.usage-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}
.usage-steps article {
  min-height: 250px;
  padding: 0 clamp(16px, 2vw, 28px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.usage-steps article + article { border-left: 1px solid var(--line-soft); }
.step-icon {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(154, 47, 39, .055);
  margin-bottom: 30px;
}
.step-icon img { width: 54px; height: 54px; }
.usage-steps strong {
  color: var(--red);
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  line-height: 1;
}
.usage-steps p {
  margin: 18px 0 0;
  color: #383837;
  line-height: 1.45;
  font-size: 14px;
}
.pro-tips-card {
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  padding: 34px 30px;
  background: rgba(255, 250, 242, .76);
  align-self: stretch;
}
.pro-tips-card h3 {
  margin: 0 0 24px;
  color: var(--red);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.pro-tips-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}
.pro-tips-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #333;
  line-height: 1.4;
  font-size: 14px;
}
.pro-tips-card img { width: 22px; height: 22px; flex: 0 0 auto; }
.product-cta-banner {
  min-height: 230px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, rgba(154,47,39,.96), rgba(142,48,43,.94)),
    radial-gradient(circle at 78% 50%, rgba(255,255,255,.22), transparent 48%);
  color: #fffaf2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: clamp(36px, 5vw, 62px) clamp(34px, 6vw, 78px);
}
.product-cta-banner h2 {
  font-size: clamp(38px, 4.3vw, 70px);
  line-height: .94;
  max-width: 650px;
}
.product-cta-banner p {
  max-width: 410px;
  margin: 18px 0 0;
  line-height: 1.5;
  color: rgba(255,250,242,.9);
}
.product-cta-banner .join-btn {
  min-width: 310px;
  height: 64px;
  background: #fffaf2;
  color: var(--ink);
  border: 0;
  z-index: 2;
}
.product-cta-banner > img {
  position: absolute;
  right: 24%;
  bottom: -42%;
  width: 430px;
  opacity: .14;
  transform: rotate(-8deg);
  pointer-events: none;
}
.product-page-shell .site-footer { margin-top: 24px; }

@media (max-width: 1100px) {
  .product-page-shell { width: calc(100% - 44px); }
  .product-hero {
    grid-template-columns: 1fr;
    padding: 38px;
    gap: 22px;
  }
  .product-hero-image {
    min-height: 420px;
    order: -1;
  }
  .product-hero-copy .mini-pill { margin-bottom: 24px; }
  .scroll-cue { display: none; }
  .product-feature-band { grid-template-columns: repeat(2, 1fr); padding: 24px; }
  .product-feature-band > div:nth-child(3) { border-left: 0; }
  .product-feature-band > div:nth-child(n+3) { border-top: 1px solid var(--line-soft); }
  .product-story { grid-template-columns: 1fr; }
  .product-detail-gallery { max-width: 820px; margin: 0 auto; width: 100%; }
  .usage-layout { grid-template-columns: 1fr; }
  .usage-steps { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .usage-steps article:nth-child(3) { border-left: 0; }
  .usage-steps article:nth-child(n+3) { border-top: 1px solid var(--line-soft); padding-top: 28px; }
}

@media (max-width: 760px) {
  .product-page-shell { width: calc(100% - 26px); }
  .product-page-shell .site-header {
    height: 62px;
    gap: 12px;
  }
  .product-page-shell .consultation-btn {
    padding: 12px 18px;
    font-size: 11px;
  }
  .product-hero {
    margin-top: 12px;
    min-height: auto;
    padding: 20px;
    border-radius: 26px;
    gap: 18px;
  }
  .product-hero-image {
    min-height: 320px;
    border-radius: 22px;
  }
  .product-hero-image img {
    width: 130%;
    transform: translateX(-5%) scale(1.04);
  }
  .product-hero-image.has-product-bars::after,
  .product-detail-carousel.has-product-bars::after {
    background: repeating-linear-gradient(90deg, transparent 0, transparent 44px, rgba(248,244,238,.96) 44px, rgba(248,244,238,.96) 54px);
    opacity: .34;
  }
  .product-hero h1 {
    font-size: clamp(42px, 11.8vw, 68px);
    line-height: .9;
  }
  .product-hero h2 { font-size: 17px; }
  .product-hero-copy > p { font-size: 14px; }
  .product-hero-actions { margin-top: 26px; gap: 12px; }
  .product-hero-actions .product-buy-btn { width: 100%; }
  .product-hero-actions > span { width: 100%; text-align: center; font-size: 13px; }
  .product-feature-band {
    grid-template-columns: 1fr;
    padding: 0;
    border-radius: 22px;
    overflow: hidden;
  }
  .product-feature-band > div {
    min-height: 104px;
    display: grid;
    grid-template-columns: 58px 1fr;
    justify-items: start;
    text-align: left;
    gap: 4px 16px;
    padding: 18px 20px;
  }
  .product-feature-band > div + div,
  .product-feature-band > div:nth-child(n+3) {
    border-left: 0;
    border-top: 1px solid var(--line-soft);
  }
  .product-feature-band img {
    width: 48px;
    height: 48px;
    padding: 11px;
    margin: 0;
    grid-row: 1 / span 2;
  }
  .product-feature-band strong { font-size: 14px; }
  .product-feature-band span { font-size: 12px; margin: 0; max-width: none; }
  .product-story,
  .usage-section {
    padding: 22px;
    border-radius: 24px;
  }
  .product-story-copy h2 { font-size: 42px; }
  .product-story-copy > p:not(.product-eyebrow) { font-size: 14px; }
  .product-detail-gallery {
    grid-template-columns: 42px 1fr 42px;
    gap: 12px 6px;
  }
  .product-detail-carousel .product-slide {
    aspect-ratio: .92 / 1;
    padding: 0;
  }
  .product-detail-carousel .product-slide img { object-fit: cover; }
  .product-detail-thumbs { gap: 7px; }
  .product-detail-thumbs button { height: 56px; border-radius: 12px; }
  .usage-head h2 { font-size: 36px; }
  .usage-layout { margin-top: 28px; }
  .usage-steps { grid-template-columns: 1fr; border: 1px solid var(--line-soft); border-radius: 20px; overflow: hidden; }
  .usage-steps article {
    min-height: 0;
    display: grid;
    grid-template-columns: 62px 52px 1fr;
    gap: 0 14px;
    text-align: left;
    align-items: center;
    padding: 18px;
  }
  .usage-steps article + article,
  .usage-steps article:nth-child(n+3) {
    border-left: 0;
    border-top: 1px solid var(--line-soft);
    padding-top: 18px;
  }
  .step-icon { width: 56px; height: 56px; margin: 0; }
  .step-icon img { width: 36px; height: 36px; }
  .usage-steps strong { font-size: 24px; }
  .usage-steps p { margin: 0; font-size: 13px; }
  .pro-tips-card { padding: 24px 20px; border-radius: 20px; }
  .product-cta-banner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 28px 24px;
    border-radius: 24px;
    text-align: left;
  }
  .product-cta-banner h2 { font-size: 38px; }
  .product-cta-banner .join-btn { min-width: 0; width: 100%; }
  .product-cta-banner > img { right: -80px; bottom: -70px; width: 290px; }
}

@media (max-width: 440px) {
  .product-page-shell { width: calc(100% - 20px); }
  .product-page-shell .brand { font-size: 23px; }
  .product-page-shell .consultation-btn { display: none; }
  .product-hero { padding: 16px; }
  .product-hero-image { min-height: 270px; }
  .product-hero h1 { font-size: 39px; }
  .product-story-copy h2,
  .usage-head h2,
  .product-cta-banner h2 { font-size: 34px; }
  .product-detail-gallery {
    grid-template-columns: 1fr;
    grid-template-areas: 'carousel' 'thumbs';
  }
  .product-detail-gallery .product-prev,
  .product-detail-gallery .product-next { display: none; }
  .product-detail-carousel .product-slide { aspect-ratio: .86 / 1; }
  .usage-steps article { grid-template-columns: 52px 42px 1fr; gap: 0 10px; padding: 15px; }
}

/* PRODUCT PAGE VARIANT 2 — homepage-style product layout */
.product2-shell {
  --p2-red: #9a2f27;
}
.product2-main .section { margin-top: 18px; }
.p2-hero {
  margin-top: 18px;
  min-height: clamp(430px, 43vw, 570px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 70% 18%, rgba(255,255,255,.96) 0 18%, rgba(238, 234, 228, .75) 48%, rgba(230, 224, 217, .84) 100%);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}
.p2-hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: clamp(20px, 4vw, 58px) clamp(18px, 5vw, 88px) clamp(26px, 4vw, 62px) 38%;
}
.p2-hero-media img {
  width: min(780px, 68vw);
  max-height: 92%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 28px 42px rgba(84, 34, 26, .16));
  mix-blend-mode: multiply;
  transform: rotate(-2deg) scale(1.02);
}
.p2-hero-sheen {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(245,241,235,.94) 0%, rgba(245,241,235,.70) 27%, rgba(245,241,235,.12) 52%, rgba(245,241,235,.52) 100%);
  pointer-events: none;
}
.p2-hero-copy {
  position: relative;
  z-index: 4;
  width: min(430px, 47%);
  padding: clamp(58px, 7vw, 90px) 0 0 clamp(30px, 6vw, 74px);
}
.p2-hero-copy h1 {
  margin: clamp(30px, 3vw, 46px) 0 0;
  font-family: var(--serif);
  font-size: clamp(54px, 6.6vw, 96px);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.075em;
  text-transform: uppercase;
}
.p2-hero-copy h1 span,
.p2-hero-copy h1 em { display: block; }
.p2-hero-copy h1 em {
  color: var(--p2-red);
  font-style: italic;
  letter-spacing: -.055em;
}
.p2-hero-copy p {
  max-width: 360px;
  margin: clamp(18px, 2vw, 26px) 0 0;
  font-size: 15px;
  line-height: 1.68;
  color: #353332;
}
.p2-mini-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.p2-mini-row span {
  min-height: 54px;
  min-width: 102px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 9px 14px;
  border: 1px solid rgba(32, 35, 38, .15);
  border-radius: 999px;
  background: rgba(255,255,255,.52);
  backdrop-filter: blur(8px);
}
.p2-mini-row strong {
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.p2-mini-row small {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.15;
}
.p2-hero .hero-cta {
  z-index: 5;
}
.p2-blocks-section .section-head h2 {
  font-size: clamp(48px, 8vw, 104px);
  letter-spacing: -.085em;
}
.p2-product-grid .class-card,
.p2-product-grid .image-card,
.p2-product-grid .info-card {
  min-height: 172px;
}
.p2-product-grid .card-title {
  line-height: 1.02;
}
.p2-product-grid .price {
  max-width: 170px;
  line-height: 1.28;
  text-align: center;
}
.p2-product-image {
  background: linear-gradient(135deg, #f7f3ec, #e7e1da);
}
.p2-product-image img {
  object-fit: contain;
  object-position: center;
  padding: 18px;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 18px 26px rgba(67, 27, 23, .12));
}
.p2-product-image.portrait-card img {
  object-fit: cover;
  padding: 0;
  mix-blend-mode: multiply;
}
.p2-info-card div p { font-size: 12px; line-height: 1.38; }
.p2-wait-card .card-title { color: var(--p2-red); }
.p2-triptych {
  background-image: url('assets/images/rollerred-04.png');
  background-size: 172%;
  background-position: 50% 48%;
  filter: saturate(.96);
}
.p2-triptych::after {
  content: '';
  position: absolute;
  inset: -8px;
  background: linear-gradient(90deg, rgba(245,241,235,.4), rgba(245,241,235,.08));
  pointer-events: none;
}
.p2-cta-panel {
  min-height: 245px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: clamp(30px, 5vw, 70px);
  border: 1px solid rgba(154, 47, 39, .24);
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(154,47,39,.94), rgba(154,47,39,.82)),
    url('assets/images/rollerred-01.png') right center / contain no-repeat;
  color: #fff7ef;
  overflow: hidden;
}
.p2-cta-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 4vw, 66px);
  line-height: .95;
  letter-spacing: -.05em;
}
.p2-cta-panel h2 em { font-style: italic; color: #fff; }
.p2-cta-panel p:not(.product-eyebrow) {
  max-width: 420px;
  color: rgba(255, 250, 242, .82);
  line-height: 1.6;
  margin: 16px 0 0;
}
.p2-cta-panel .product-eyebrow { color: rgba(255, 250, 242, .74); }
.p2-cta-panel .product-buy-btn {
  background: #fffaf2;
  color: var(--ink);
  min-width: 280px;
  justify-content: center;
}
.p2-cta-panel .product-buy-btn img { filter: none; }

@media (max-width: 1100px) {
  .p2-hero { min-height: 520px; }
  .p2-hero-media { padding-left: 30%; padding-right: 26px; }
  .p2-hero-media img { width: 73vw; transform: rotate(-2deg) scale(1); }
  .p2-hero-copy { width: 50%; padding-left: 36px; }
  .p2-product-grid .class-card,
  .p2-product-grid .image-card,
  .p2-product-grid .info-card { min-height: 150px; }
}

@media (max-width: 760px) {
  .product2-shell { width: min(100% - 28px, 720px); padding-top: 16px; }
  .p2-hero {
    min-height: 0;
    height: auto;
    display: grid;
    padding: 26px 18px 78px;
    border-radius: 26px;
  }
  .p2-hero-media {
    position: relative;
    inset: auto;
    order: 2;
    padding: 8px 0 0;
    min-height: 250px;
    align-items: end;
    justify-content: center;
  }
  .p2-hero-media img {
    width: min(96vw, 540px);
    max-height: 300px;
    transform: rotate(-3deg) scale(1.08);
  }
  .p2-hero-sheen {
    background: linear-gradient(180deg, rgba(245,241,235,.05), rgba(245,241,235,.62));
  }
  .p2-hero-copy {
    order: 1;
    width: 100%;
    padding: 0;
  }
  .p2-hero-copy h1 {
    margin-top: 26px;
    font-size: clamp(48px, 13vw, 72px);
    line-height: .88;
  }
  .p2-hero-copy p {
    max-width: 300px;
    font-size: 14px;
    line-height: 1.55;
  }
  .p2-mini-row { gap: 8px; margin-top: 20px; }
  .p2-mini-row span { min-width: calc(50% - 4px); border-radius: 17px; }
  .p2-mini-row span:last-child { width: 100%; }
  .p2-hero .hero-cta {
    left: 18px;
    right: 18px;
    bottom: 16px;
    width: auto;
    height: 54px;
    justify-content: center;
  }
  .p2-blocks-section .section-head h2 { font-size: clamp(42px, 14vw, 68px); }
  .p2-product-grid .class-card,
  .p2-product-grid .image-card,
  .p2-product-grid .info-card { min-height: 134px; }
  .p2-product-grid .span-6,
  .p2-product-grid .span-4,
  .p2-product-grid .span-3 { grid-column: span 12; }
  .p2-product-grid .image-card:nth-child(2) { min-height: 220px; }
  .p2-product-image img { padding: 12px; }
  .p2-strip { grid-template-columns: 1fr; gap: 18px; padding: 26px 20px; }
  .p2-strip .vertical-line { display: none; }
  .p2-strip .triptych { width: 100%; justify-self: stretch; }
  .p2-cta-panel {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    min-height: 300px;
    background:
      linear-gradient(180deg, rgba(154,47,39,.95), rgba(154,47,39,.86)),
      url('assets/images/rollerred-01.png') center 80% / 90% auto no-repeat;
  }
  .p2-cta-panel .product-buy-btn { width: 100%; min-width: 0; }
}

@media (max-width: 430px) {
  .p2-hero-media { min-height: 220px; }
  .p2-hero-media img { max-height: 248px; width: 105vw; }
  .p2-mini-row span { min-width: 100%; }
  .p2-product-grid .image-card:nth-child(2) { min-height: 185px; }
}

/* BRAND LOGO UPDATE */
.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(148px, 14vw, 230px);
  height: auto;
  line-height: 1;
  letter-spacing: 0;
}
.brand img {
  width: 100%;
  height: auto;
  display: block;
}
.footer-brand { width: 150px; font-size: 0; }

/* HOMEPAGE WAITLIST PREVIEW */
.homepage-waitlist {
  min-height: 440px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  padding: clamp(34px, 5.5vw, 72px);
  border: 1px solid rgba(154, 47, 39, .16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 72% 40%, rgba(154,47,39,.08), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.72), rgba(243,237,229,.78));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
}
.homepage-waitlist::before {
  content: '';
  position: absolute;
  inset: -22% 48% -18% auto;
  width: 520px;
  border-radius: 50%;
  background: rgba(154,47,39,.06);
  pointer-events: none;
}
.home-waitlist-copy { position: relative; z-index: 2; }
.home-waitlist-copy h2 {
  margin: 14px 0 18px;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 76px);
  line-height: .94;
  font-weight: 400;
  letter-spacing: -.06em;
}
.home-waitlist-copy h2 em {
  color: var(--red);
  font-style: italic;
}
.home-waitlist-copy > p:not(.product-eyebrow) {
  max-width: 520px;
  color: #3b3a39;
  font-size: 15px;
  line-height: 1.72;
  margin: 0 0 24px;
}
.home-waitlist-benefits {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 28px;
}
.home-waitlist-benefits span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(32,35,38,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.54);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .035em;
}
.home-waitlist-benefits img { width: 18px; height: 18px; }
.waitlist-bag-card {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: radial-gradient(circle at 50% 56%, rgba(255,255,255,.9), rgba(255,251,246,.28) 62%, transparent 72%);
}
.waitlist-bag-img {
  width: min(440px, 88%);
  height: auto;
  opacity: .88;
  filter: drop-shadow(0 28px 38px rgba(47, 32, 25, .12));
}
.bag-counter {
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  width: min(420px, 76%);
  text-align: center;
  color: var(--red);
  pointer-events: none;
}
.bag-counter > span {
  display: block;
  color: #2b2c2e;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 800;
  margin-bottom: 14px;
}
.count-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: baseline;
  gap: clamp(4px, 1vw, 11px);
}
.count-row strong {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.02em;
}
.count-row i {
  font-style: normal;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 46px);
  opacity: .72;
}
.count-labels {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 8px;
  margin-top: 8px;
  color: #333536;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .06em;
}
.bag-counter b {
  display: inline-block;
  margin-top: 30px;
  font-family: var(--serif);
  color: var(--red);
  font-size: clamp(20px, 2.2vw, 31px);
  font-weight: 400;
  letter-spacing: -.02em;
}

/* WAITLIST PAGE */
.waitlist-page-shell {
  width: min(1450px, calc(100% - 64px));
}
.waitlist-main {
  display: grid;
  gap: 22px;
}
.waitlist-hero {
  min-height: clamp(650px, 67vw, 880px);
  display: grid;
  grid-template-columns: minmax(360px, .74fr) minmax(520px, 1.26fr);
  align-items: center;
  gap: clamp(22px, 4vw, 70px);
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 5vw, 74px) clamp(36px, 5vw, 78px);
  border-radius: 34px;
  background: radial-gradient(circle at 69% 50%, rgba(154,47,39,.06), transparent 30%);
}
.waitlist-hero-copy { position: relative; z-index: 2; }
.waitlist-hero-copy h1 {
  margin: 38px 0 28px;
  font-family: var(--serif);
  font-size: clamp(54px, 6.4vw, 104px);
  line-height: .96;
  font-weight: 400;
  letter-spacing: -.06em;
}
.waitlist-hero-copy h1 em {
  color: var(--red);
  font-style: italic;
}
.waitlist-hero-copy > p {
  max-width: 470px;
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: #303234;
}
.waitlist-perks-list {
  display: grid;
  gap: 22px;
  max-width: 420px;
  margin-top: 58px;
}
.waitlist-perks-list div {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 22px;
}
.waitlist-perks-list div > span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(245,239,232,.86);
  border: 1px solid rgba(32,35,38,.10);
}
.waitlist-perks-list img { width: 24px; height: 24px; }
.waitlist-perks-list p {
  min-height: 72px;
  display: grid;
  align-content: center;
  margin: 0;
  padding-left: 22px;
  border-left: 1px dashed rgba(32,35,38,.26);
  color: #373837;
  line-height: 1.45;
}
.waitlist-perks-list strong {
  display: block;
  color: var(--ink);
  text-transform: none;
  font-size: 15px;
  margin-bottom: 4px;
}
.waitlist-bag-hero {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
}
.waitlist-bag-halo {
  position: absolute;
  width: min(690px, 92%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(231,222,213,.70), rgba(255,255,255,.08));
  filter: blur(.1px);
}
.waitlist-bag-hero .waitlist-bag-img {
  width: min(690px, 96%);
  position: relative;
  z-index: 1;
  opacity: .75;
}
.waitlist-bag-hero .bag-counter {
  top: 58%;
  z-index: 3;
}
.waitlist-form-panel {
  display: grid;
  grid-template-columns: minmax(290px, .72fr) minmax(520px, 1.28fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(36px, 5vw, 70px) clamp(36px, 6vw, 86px);
  border: 1px solid rgba(32,35,38,.08);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,.68), rgba(244,238,230,.66));
  box-shadow: var(--shadow-soft);
}
.waitlist-form-copy h2 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(40px, 4.2vw, 70px);
  line-height: .98;
  font-weight: 400;
  letter-spacing: -.055em;
}
.waitlist-form-copy h2 em { color: var(--red); font-style: italic; }
.waitlist-form-copy p {
  max-width: 340px;
  line-height: 1.72;
  color: #333536;
}
.waitlist-form {
  display: grid;
  gap: 20px;
}
.waitlist-form label { display: grid; gap: 10px; }
.waitlist-form label > span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.field-wrap {
  height: 62px;
  display: grid;
  grid-template-columns: 1fr 26px;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid rgba(32,35,38,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.68);
}
.field-wrap input,
.field-wrap select {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  appearance: none;
}
.field-wrap input::placeholder { color: rgba(32,35,38,.42); }
.field-wrap img { width: 22px; height: 22px; opacity: .85; }
.waitlist-form .product-buy-btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}
.privacy-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  color: #4b4b4a;
  font-size: 12px;
}
.privacy-note img { width: 16px; height: 16px; }
.waitlist-success {
  min-height: 20px;
  margin: -4px 0 0;
  text-align: center;
  color: var(--red);
  font-weight: 800;
  font-size: 13px;
}
.center-heading {
  text-align: center;
  margin: 0 auto 50px;
}
.center-heading span {
  display: block;
  color: var(--red);
  font-size: 32px;
  margin-bottom: 8px;
}
.center-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4.2vw, 68px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.055em;
}
.center-heading p {
  max-width: 520px;
  margin: 18px auto 0;
  color: #3c3e3f;
  line-height: 1.55;
}
.waitlist-reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 26px;
  overflow: hidden;
}
.waitlist-reason-grid > div {
  min-height: 210px;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  gap: 12px;
  padding: 18px 32px;
  border-left: 1px dashed rgba(32,35,38,.22);
}
.waitlist-reason-grid > div:first-child { border-left: 0; }
.waitlist-reason-grid span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(238,231,224,.78);
}
.waitlist-reason-grid img { width: 30px; height: 30px; }
.waitlist-reason-grid strong {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}
.waitlist-reason-grid p {
  margin: 0;
  color: #3b3c3d;
  line-height: 1.55;
  font-size: 14px;
}
.waitlist-final-cta {
  min-height: 240px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: clamp(32px, 5vw, 70px);
  border-radius: 30px;
  overflow: hidden;
  color: #fff8ef;
  background:
    linear-gradient(90deg, rgba(154,47,39,.90), rgba(154,47,39,.70)),
    url('assets/images/rollerred-01.png') center right / contain no-repeat;
}
.waitlist-final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4.2vw, 68px);
  line-height: .98;
  font-weight: 400;
  letter-spacing: -.055em;
}
.waitlist-final-cta h2 em { font-style: italic; color: #fff; }
.waitlist-final-cta p {
  max-width: 460px;
  color: rgba(255,248,239,.86);
  line-height: 1.65;
}
.product-buy-btn.light {
  background: #fffaf2;
  color: var(--ink);
}
.product-buy-btn.light img { filter: none; }

@media (max-width: 1040px) {
  .brand { width: 162px; }
  .homepage-waitlist,
  .waitlist-form-panel,
  .waitlist-hero {
    grid-template-columns: 1fr;
  }
  .homepage-waitlist { padding: 34px; }
  .waitlist-bag-card { min-height: 420px; }
  .waitlist-hero { min-height: auto; padding: 38px 26px 54px; }
  .waitlist-bag-hero { min-height: 620px; }
  .waitlist-form-panel { gap: 24px; }
  .waitlist-form-copy p { max-width: 520px; }
  .waitlist-reason-grid { grid-template-columns: repeat(2, 1fr); }
  .waitlist-reason-grid > div:nth-child(3) { border-left: 0; border-top: 1px dashed rgba(32,35,38,.22); }
  .waitlist-reason-grid > div:nth-child(4) { border-top: 1px dashed rgba(32,35,38,.22); }
}

@media (max-width: 760px) {
  .brand { width: 138px; }
  .footer-brand { width: 132px; }
  .homepage-waitlist {
    border-radius: 26px;
    padding: 28px 20px;
    gap: 12px;
  }
  .home-waitlist-copy h2 { font-size: clamp(38px, 12vw, 58px); }
  .home-waitlist-benefits { display: grid; grid-template-columns: 1fr; }
  .home-waitlist-benefits span { border-radius: 17px; justify-content: flex-start; }
  .waitlist-bag-card { min-height: 390px; }
  .waitlist-bag-img { width: min(360px, 96%); }
  .bag-counter { width: 84%; top: 56%; }
  .count-row strong { font-size: clamp(30px, 10vw, 48px); }
  .count-row i { font-size: clamp(25px, 8vw, 38px); }
  .count-labels { font-size: 8px; gap: 4px; }
  .bag-counter b { margin-top: 22px; }

  .waitlist-page-shell { width: calc(100% - 28px); padding-top: 18px; }
  .waitlist-hero {
    border-radius: 26px;
    padding: 28px 20px 36px;
    gap: 8px;
  }
  .waitlist-hero-copy h1 {
    margin: 28px 0 18px;
    font-size: clamp(48px, 14vw, 72px);
  }
  .waitlist-hero-copy > p { font-size: 14px; max-width: 340px; }
  .waitlist-perks-list { margin-top: 28px; gap: 12px; }
  .waitlist-perks-list div { grid-template-columns: 46px 1fr; gap: 12px; }
  .waitlist-perks-list div > span { width: 44px; height: 44px; }
  .waitlist-perks-list img { width: 20px; height: 20px; }
  .waitlist-perks-list p { min-height: 58px; padding-left: 14px; font-size: 13px; }
  .waitlist-bag-hero { min-height: 430px; }
  .waitlist-bag-hero .waitlist-bag-img { width: min(430px, 100%); }
  .waitlist-bag-halo { width: min(420px, 96%); }
  .waitlist-form-panel { padding: 28px 20px; border-radius: 26px; }
  .waitlist-form-copy h2 { font-size: clamp(38px, 11vw, 56px); }
  .field-wrap { height: 58px; padding: 0 18px; }
  .waitlist-reasons { padding-top: 22px; }
  .center-heading { margin-bottom: 24px; }
  .waitlist-reason-grid { grid-template-columns: 1fr; }
  .waitlist-reason-grid > div,
  .waitlist-reason-grid > div:nth-child(3),
  .waitlist-reason-grid > div:nth-child(4) {
    border-left: 0;
    border-top: 1px dashed rgba(32,35,38,.22);
    min-height: 168px;
  }
  .waitlist-reason-grid > div:first-child { border-top: 0; }
  .waitlist-final-cta {
    min-height: 330px;
    grid-template-columns: 1fr;
    padding: 30px 22px;
    background:
      linear-gradient(180deg, rgba(154,47,39,.93), rgba(154,47,39,.78)),
      url('assets/images/rollerred-01.png') center bottom / 88% auto no-repeat;
  }
  .waitlist-final-cta .product-buy-btn { width: 100%; justify-content: center; }
}

@media (max-width: 440px) {
  .brand { width: 124px; }
  .waitlist-bag-card { min-height: 340px; }
  .homepage-waitlist .waitlist-bag-img { width: 320px; max-width: 100%; }
  .waitlist-bag-hero { min-height: 380px; }
  .waitlist-bag-hero .bag-counter { top: 59%; }
  .bag-counter > span { font-size: 10px; margin-bottom: 9px; }
  .count-row strong { font-size: clamp(25px, 8.8vw, 36px); }
  .count-row i { font-size: clamp(22px, 7vw, 32px); }
  .bag-counter b { font-size: 19px; }
  .waitlist-form .product-buy-btn { height: 52px; }
}

/* FINAL RESPONSIVE FIXES + MEMBERSHIP PAGE */
.events-section {
  grid-template-columns: minmax(285px, 330px) minmax(0, 1fr);
  gap: clamp(36px, 4.5vw, 64px);
}
.events-intro { min-width: 0; }
.events-intro h2 { overflow-wrap: normal; }
.schedule-card { min-width: 0; }

.homepage-waitlist .waitlist-bag-card { min-height: 400px; }
.homepage-waitlist .bag-counter {
  top: 58%;
  width: min(318px, 58%);
}
.homepage-waitlist .count-row {
  gap: clamp(3px, .55vw, 8px);
}
.homepage-waitlist .count-row strong {
  font-size: clamp(24px, 2.85vw, 43px);
}
.homepage-waitlist .count-row i {
  font-size: clamp(20px, 2.35vw, 34px);
}
.homepage-waitlist .count-labels {
  font-size: 8px;
  gap: 4px;
}
.homepage-waitlist .bag-counter b {
  margin-top: 18px;
  font-size: clamp(18px, 1.65vw, 25px);
}
.product-price {
  max-width: 280px;
  line-height: 1.35;
}
.price-box .join-btn { min-width: 150px; }

.subscription-page-shell { width: min(1320px, calc(100% - 64px)); }
.subscription-main { display: grid; gap: 28px; }
.membership-hero {
  min-height: clamp(560px, 58vw, 720px);
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(34px, 5vw, 76px);
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 46%, rgba(154,47,39,.11), transparent 26%),
    linear-gradient(135deg, rgba(255,255,255,.78), rgba(241,234,225,.74));
  box-shadow: var(--shadow-soft);
}
.membership-hero-copy h1 {
  margin: 36px 0 22px;
  font-family: var(--serif);
  font-size: clamp(56px, 6.4vw, 108px);
  line-height: .92;
  font-weight: 400;
  letter-spacing: -.06em;
}
.membership-hero-copy h1 em { color: var(--red); font-style: italic; }
.membership-hero-copy > p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.7;
  color: #343638;
}
.membership-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 520px;
  margin: 28px 0;
}
.membership-points span {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 16px;
  border: 1px solid rgba(32,35,38,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.56);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .035em;
}
.membership-points img { width: 22px; height: 22px; }
.membership-visual-card {
  min-height: 500px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: radial-gradient(circle at 54% 50%, rgba(255,255,255,.94), rgba(251,246,240,.48) 55%, transparent 72%);
}
.membership-bag {
  width: min(420px, 72%);
  filter: drop-shadow(0 28px 36px rgba(47,32,25,.12));
}
.membership-roller {
  position: absolute;
  right: 4%;
  bottom: 6%;
  width: min(330px, 48%);
  transform: rotate(-7deg);
  filter: drop-shadow(0 22px 26px rgba(47,32,25,.16));
}
.membership-price-chip {
  position: absolute;
  left: 8%;
  top: 8%;
  width: 158px;
  min-height: 158px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  border-radius: 50%;
  color: #fffaf2;
  background: var(--charcoal);
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 16px 28px rgba(32,35,38,.18);
}
.membership-price-chip span,
.membership-price-chip small { font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.membership-price-chip strong {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  line-height: .9;
}
.membership-form-section {
  display: grid;
  grid-template-columns: minmax(280px,.66fr) minmax(520px,1.34fr);
  align-items: start;
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(34px, 5vw, 72px);
  border: 1px solid rgba(32,35,38,.08);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,.74), rgba(244,238,230,.70));
  box-shadow: var(--shadow-soft);
}
.membership-form-copy h2 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(42px, 4.6vw, 74px);
  line-height: .98;
  font-weight: 400;
  letter-spacing: -.055em;
}
.membership-form-copy h2 em { color: var(--red); font-style: italic; }
.membership-form-copy p:not(.product-eyebrow) {
  max-width: 360px;
  line-height: 1.7;
  color: #383a3c;
}
.membership-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.membership-form label { display: grid; gap: 10px; }
.membership-form label > span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.membership-form .full-field,
.membership-form .product-buy-btn,
.membership-form .privacy-note,
.membership-form .membership-success { grid-column: 1 / -1; }
.textarea-wrap {
  height: 110px;
  align-items: start;
  border-radius: 24px;
  padding-top: 18px;
}
.textarea-wrap textarea {
  width: 100%;
  height: 72px;
  border: 0;
  resize: none;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}
.textarea-wrap textarea::placeholder { color: rgba(32,35,38,.42); }
.membership-success {
  min-height: 20px;
  margin: -4px 0 0;
  text-align: center;
  color: var(--red);
  font-weight: 800;
  font-size: 13px;
}

@media (max-width: 1120px) {
  .events-section { grid-template-columns: 1fr; gap: 20px; }
  .events-intro h2 { font-size: clamp(42px, 8vw, 64px); }
  .schedule-tools { transform: none; margin-bottom: 12px; }
  .membership-hero,
  .membership-form-section { grid-template-columns: 1fr; }
  .membership-visual-card { min-height: 430px; }
}

@media (max-width: 760px) {
  .hero h1 { font-size: clamp(39px, 11vw, 58px); }
  .hero-cta { font-size: 12px; letter-spacing: .035em; }
  .homepage-waitlist .waitlist-bag-card { min-height: 350px; }
  .homepage-waitlist .waitlist-bag-img { width: min(330px, 96%); }
  .homepage-waitlist .bag-counter {
    width: min(226px, 63%);
    top: 57%;
  }
  .homepage-waitlist .bag-counter > span { font-size: 8px; margin-bottom: 7px; }
  .homepage-waitlist .count-row { gap: 3px; }
  .homepage-waitlist .count-row strong { font-size: clamp(20px, 6.1vw, 28px); }
  .homepage-waitlist .count-row i { font-size: clamp(17px, 5vw, 24px); }
  .homepage-waitlist .count-labels { font-size: 6px; gap: 1px; margin-top: 5px; }
  .homepage-waitlist .bag-counter b { margin-top: 12px; font-size: 16px; }

  .waitlist-hero .bag-counter {
    width: min(245px, 62%);
    top: 59%;
  }
  .waitlist-hero .bag-counter > span { font-size: 8px; margin-bottom: 7px; }
  .waitlist-hero .count-row { gap: 3px; }
  .waitlist-hero .count-row strong { font-size: clamp(21px, 6.2vw, 30px); }
  .waitlist-hero .count-row i { font-size: clamp(17px, 5.1vw, 25px); }
  .waitlist-hero .count-labels { font-size: 6px; gap: 1px; margin-top: 5px; }
  .waitlist-hero .bag-counter b { margin-top: 13px; font-size: 17px; }

  .product-price { max-width: 100%; font-size: 13px; }
  .subscription-page-shell { width: calc(100% - 28px); padding-top: 18px; }
  .membership-hero { padding: 28px 20px; border-radius: 26px; gap: 18px; }
  .membership-hero-copy h1 { margin: 28px 0 18px; font-size: clamp(46px, 13vw, 68px); }
  .membership-hero-copy > p { font-size: 14px; }
  .membership-points span { border-radius: 17px; align-items: flex-start; font-size: 12px; }
  .membership-visual-card { min-height: 340px; }
  .membership-bag { width: min(300px, 78%); }
  .membership-roller { width: min(230px, 54%); right: -2%; bottom: 4%; }
  .membership-price-chip { width: 112px; min-height: 112px; left: 4%; top: 5%; }
  .membership-price-chip strong { font-size: 30px; }
  .membership-price-chip span,
  .membership-price-chip small { font-size: 8px; }
  .membership-form-section { padding: 28px 20px; border-radius: 26px; }
  .membership-form { grid-template-columns: 1fr; }
  .membership-form label,
  .membership-form .full-field,
  .membership-form .product-buy-btn,
  .membership-form .privacy-note,
  .membership-form .membership-success { grid-column: auto; }
}

@media (max-width: 440px) {
  .homepage-waitlist .waitlist-bag-card { min-height: 318px; }
  .homepage-waitlist .bag-counter { width: 214px; max-width: 64%; top: 57%; }
  .homepage-waitlist .count-row strong { font-size: 21px; }
  .homepage-waitlist .count-row i { font-size: 17px; }
  .homepage-waitlist .bag-counter b { font-size: 15px; }
  .waitlist-hero .bag-counter { width: 226px; max-width: 63%; top: 59%; }
  .waitlist-hero .count-row strong { font-size: 22px; }
  .waitlist-hero .count-row i { font-size: 18px; }
  .waitlist-hero .bag-counter b { font-size: 16px; }
}

/* Extra desktop spacing so the calendar never overlaps the UPCOMING EVENTS heading. */
@media (min-width: 1121px) {
  .events-section { grid-template-columns: minmax(350px, 380px) minmax(0, 1fr); }
  .events-intro h2 { font-size: clamp(50px, 4vw, 64px); }
}

/* EVENTS INTERACTION FIXES: visible desktop filters + clickable week controls */
.schedule-card {
  overflow: visible;
}
.schedule-tools {
  transform: none !important;
  margin-bottom: 14px !important;
  padding: 0 !important;
  display: grid;
  grid-template-columns: minmax(230px, 320px) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}
.date-filter {
  display: grid;
  grid-template-columns: 36px minmax(150px, 1fr) 36px;
  align-items: center;
  gap: 8px;
}
.schedule-nav,
.range-btn,
.filter {
  cursor: pointer;
}
.schedule-nav {
  width: 36px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: rgba(255,250,242,.82);
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
  transition: background .22s ease, color .22s ease, opacity .22s ease, transform .22s ease;
}
.schedule-nav:hover:not(:disabled) {
  background: var(--charcoal);
  color: #fffaf2;
  transform: translateY(-1px);
}
.schedule-nav:disabled {
  opacity: .34;
  cursor: not-allowed;
}
.range-btn {
  min-width: 0;
  width: 100%;
  justify-content: center;
  border-radius: 999px;
  transition: background .22s ease, color .22s ease;
}
.range-btn:hover {
  background: var(--charcoal);
  color: #fffaf2;
}
.filter-row {
  justify-content: end;
  min-width: 0;
}
.week-grid {
  border: 1px solid rgba(32,35,38,.16);
}
.week-grid.is-changing {
  animation: scheduleWeekSwap .22s ease;
}
@keyframes scheduleWeekSwap {
  from { opacity: .55; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 1121px) {
  .events-section {
    grid-template-columns: minmax(350px, 380px) minmax(780px, 1fr);
    align-items: start;
  }
  .schedule-card {
    padding-top: 0;
  }
  .schedule-tools {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

@media (max-width: 1120px) {
  .schedule-tools {
    grid-template-columns: 1fr;
  }
  .filter-row {
    justify-content: stretch;
  }
  .filter-row .filter {
    flex: 1 1 0;
  }
}

@media (max-width: 560px) {
  .schedule-tools {
    gap: 10px;
  }
  .date-filter {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 6px;
  }
  .schedule-nav {
    width: 34px;
    height: 34px;
  }
  .range-btn,
  .filter {
    height: 34px;
    padding: 0 12px;
    font-size: 10px;
  }
}
