:root {
  --bg-cream: #f6e0c8;
  --bg-rose: #efc6a2;
  --bg-shell: #fff2e4;
  --red-1: #7b250a;
  --red-2: #c94610;
  --red-3: #ff6f1b;
  --gold: #e39a43;
  --teal: #a94d1b;
  --ink: #261109;
  --ink-soft: #5f3c2d;
  --line: rgba(161, 72, 26, 0.34);
  --line-soft: rgba(161, 72, 26, 0.2);
  --shadow-soft: 0 20px 48px rgba(52, 20, 9, 0.2);
  --shadow-strong: 0 38px 80px rgba(33, 12, 5, 0.4);
  --royal-emerald: #b24a17;
  --royal-onyx: #180c07;
  --royal-ivory: #fff2e2;
  --hero-orange: #ff6a00;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.45;
  background:
    radial-gradient(900px 520px at 2% -12%, rgba(255, 134, 45, 0.4), transparent 58%),
    radial-gradient(980px 620px at 96% -16%, rgba(195, 74, 20, 0.34), transparent 60%),
    radial-gradient(920px 520px at 84% 92%, rgba(237, 115, 35, 0.22), transparent 62%),
    linear-gradient(180deg, #fff4e7 0%, #f8dfc4 34%, #efc79f 72%, #f6e4cf 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(860px 460px at 84% -8%, rgba(255, 174, 92, 0.28), transparent 56%),
    radial-gradient(960px 560px at 8% 96%, rgba(181, 73, 24, 0.24), transparent 62%),
    radial-gradient(900px 520px at 86% 100%, rgba(115, 49, 22, 0.16), transparent 64%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02));
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(920px 500px at 2% -10%, rgba(196, 80, 25, 0.22), transparent 56%),
    radial-gradient(900px 560px at 98% 2%, rgba(255, 140, 42, 0.24), transparent 60%),
    radial-gradient(1040px 660px at 82% 92%, rgba(120, 49, 19, 0.16), transparent 66%);
}

h1,
h2,
h3,
.btn,
.kicker,
.brand-text strong {
  font-family: "Sora", "Space Grotesk", sans-serif;
}

a {
  color: inherit;
}

img,
video {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto;
}

body.prelaunch {
  overflow: hidden;
}

.site-shell {
  transition: filter 0.42s ease, transform 0.42s ease, opacity 0.42s ease;
}

body.prelaunch .site-shell {
  filter: blur(7px);
  transform: scale(1.01);
  opacity: 0.72;
  pointer-events: none;
}

.intro-gate {
  position: fixed;
  inset: 0;
  z-index: 140;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #130905;
}

.intro-gate::before,
.intro-gate::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.intro-gate::before {
  background: none;
  animation: none;
}

.intro-gate::after {
  background: none;
}

.intro-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.09) contrast(1.06) brightness(1.03);
}

.intro-photo-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
}

.intro-photo {
  display: block;
}

.intro-photo-bg {
  display: none;
}

.intro-photo-main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 33%;
  border-radius: 0;
  box-shadow: none;
  border: 0;
  opacity: 1;
  filter: saturate(1.02) contrast(1.02) brightness(0.98);
}

.intro-overlay {
  display: none;
}

.intro-content {
  position: relative;
  z-index: 2;
  width: min(660px, calc(100% - 2rem));
  border-radius: 12px;
  border: 1px solid rgba(255, 189, 123, 0.74);
  background: rgba(26, 10, 5, 0.7);
  color: #fff8f3;
  padding: 1rem 1.1rem 1.2rem;
  box-shadow: 0 24px 64px rgba(18, 6, 2, 0.58);
  text-shadow: none;
}

.intro-news {
  backdrop-filter: none;
}

.intro-stamp {
  margin: 0;
  display: inline-flex;
  padding: 0.34rem 0.56rem;
  border-radius: 5px;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #512311;
  background: linear-gradient(120deg, #ffe5ac, #ffc07a);
}

.intro-breaking::before {
  content: "•";
  margin-right: 0.38rem;
}

.kicker {
  margin: 0;
  color: #b35d25;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.66rem;
  font-weight: 800;
}

.intro-kicker {
  margin-top: 0.62rem;
  color: rgba(255, 240, 222, 0.96);
}

.intro-content h1 {
  margin: 0.4rem 0 0;
  font-size: clamp(2.2rem, 5.3vw, 4rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  max-width: 11ch;
}

.intro-copy {
  margin: 0.65rem 0 0;
  max-width: 56ch;
  color: rgba(255, 237, 218, 0.94);
}

.intro-enter {
  margin-top: 1rem;
}

.intro-minimal {
  width: min(440px, calc(100% - 1.2rem));
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  text-shadow: none;
  position: absolute;
  left: 50%;
  top: auto;
  bottom: max(0.72rem, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  backdrop-filter: none;
}

.intro-script-title {
  margin: 0;
  font-family: "Sora", "Space Grotesk", sans-serif;
  color: #fffaf3;
  font-size: clamp(1.2rem, 4.2vw, 1.85rem);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: none;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.36);
}

.intro-mini-brand {
  margin: 0;
  color: #fff8eb;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intro-mini-copy {
  margin: 0;
  color: rgba(255, 230, 198, 0.94);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.intro-enter-sign {
  margin: 0.15rem 0 0.18rem;
  color: rgba(255, 219, 172, 0.92);
  font-size: 0.57rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.intro-enter-sign::before,
.intro-enter-sign::after {
  content: "";
  width: 32px;
  height: 1px;
  background: rgba(255, 214, 169, 0.5);
}

.intro-minimal .intro-enter {
  margin-top: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(16, 9, 6, 0.28);
  color: #fffdf7;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.02rem;
  min-width: 0;
  box-shadow: none;
  backdrop-filter: blur(2px);
}

.intro-minimal .intro-enter:hover,
.intro-minimal .intro-enter:focus-visible {
  transform: translateY(-1px);
  border-color: #ffffff;
  background: rgba(16, 9, 6, 0.44);
  color: #fffdf7;
}

.intro-gate.is-exiting {
  animation: gateFadeOut 0.6s ease forwards;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: linear-gradient(180deg, rgba(255, 236, 214, 0.97), rgba(245, 211, 177, 0.93));
  border-bottom: 1px solid rgba(158, 63, 18, 0.34);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.74rem;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(175, 103, 49, 0.44);
  box-shadow: 0 10px 24px rgba(49, 28, 17, 0.2);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

.brand-text strong {
  display: block;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-text small {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.54rem;
}

.site-nav a {
  text-decoration: none;
  padding: 0.42rem 0.62rem;
  border-radius: 4px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}

.site-nav a:hover {
  background: rgba(181, 103, 45, 0.16);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(144, 57, 19, 0.3);
  border-radius: 6px;
  background: rgba(255, 244, 228, 0.95);
  color: #56250f;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.6rem 0.8rem;
  align-items: center;
  justify-content: center;
  gap: 0.46rem;
  cursor: pointer;
}

.menu-toggle:hover {
  background: #fff0dd;
}

.menu-toggle-icon {
  width: 15px;
  height: 1.5px;
  background: currentColor;
  box-shadow: 0 -4.5px 0 currentColor, 0 4.5px 0 currentColor;
}

.menu-toggle.is-open .menu-toggle-icon {
  box-shadow: none;
  transform: rotate(90deg);
}

.mobile-nav-panel {
  display: none;
}

.mobile-nav-panel[hidden] {
  display: none !important;
}

.mobile-site-nav {
  display: grid;
  gap: 0.42rem;
}

.mobile-site-nav a {
  text-decoration: none;
  padding: 0.66rem 0.74rem;
  border-radius: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  background: rgba(255, 248, 237, 0.94);
  border: 1px solid rgba(169, 72, 22, 0.2);
}

.mobile-site-nav a:hover {
  background: #fff0dd;
}

.btn {
  border: none;
  border-radius: 6px;
  padding: 0.78rem 1.08rem;
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-main {
  color: #fff7eb;
  background: linear-gradient(115deg, var(--red-1), var(--red-2) 45%, var(--red-3) 100%);
  box-shadow: 0 14px 32px rgba(48, 16, 7, 0.44);
}

.btn-main:hover {
  box-shadow: 0 18px 40px rgba(43, 14, 5, 0.52);
}

.btn-ghost {
  color: #7e300f;
  border: 1px solid rgba(161, 69, 23, 0.4);
  background: rgba(255, 242, 226, 0.94);
}

.btn-ghost:hover {
  background: #ffe9d2;
}

.cart-chip {
  min-width: 112px;
}

.hero {
  margin-top: 1.3rem;
  margin-bottom: 1.45rem;
  display: grid;
  grid-template-columns: 1.07fr 0.93fr;
  gap: 1rem;
  align-items: stretch;
}

.hero-copy {
  padding: 2.15rem;
  border-radius: 6px;
  border: 1px solid rgba(163, 67, 20, 0.48);
  background: linear-gradient(155deg, rgba(255, 202, 128, 0.98), rgba(255, 138, 54, 0.96) 52%, rgba(191, 58, 17, 0.92));
  box-shadow:
    0 24px 56px rgba(74, 26, 9, 0.32),
    inset 0 1px 0 rgba(255, 225, 186, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy h1 {
  margin: 0.58rem 0 0;
  font-size: clamp(2.35rem, 5.4vw, 4.35rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  max-width: 12ch;
  color: #311208;
}

.hero-text {
  margin: 0.95rem 0 0;
  color: #3f1b0c;
  max-width: 58ch;
}

.hero-actions {
  margin-top: 1.12rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.56rem;
}

.hero-points {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.hero-points li {
  padding: 0.46rem 0.65rem;
  border-radius: 3px;
  background: rgba(255, 223, 189, 0.3);
  border: 1px solid rgba(142, 53, 17, 0.42);
  color: #3d1709;
  font-size: 0.71rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.hero-media {
  margin: 0;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(169, 64, 21, 0.44);
  min-height: 520px;
}

.hero-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 480px at 84% -2%, rgba(255, 152, 62, 0.26), transparent 54%),
    linear-gradient(180deg, rgba(255, 130, 35, 0.14), rgba(76, 23, 8, 0.35));
}

.hero-ambience {
  position: absolute;
  right: 0.82rem;
  bottom: 0.82rem;
  width: 180px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.36rem;
}

.hero-ambience img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
  border-radius: 3px;
  border: 1px solid rgba(255, 199, 149, 0.88);
  box-shadow: 0 12px 26px rgba(44, 18, 8, 0.46);
}

.section {
  padding: 3.1rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 235, 211, 0.95), rgba(243, 206, 168, 0.92));
}

.section-accent {
  background:
    radial-gradient(940px 440px at 14% 8%, rgba(255, 149, 54, 0.32), transparent 58%),
    radial-gradient(880px 440px at 88% 88%, rgba(214, 94, 33, 0.24), transparent 62%),
    linear-gradient(145deg, #34180d, #6a2c15 40%, #a6461e 72%, #de7a2c 100%);
}

.section-men {
  background:
    radial-gradient(920px 420px at 10% 8%, rgba(230, 107, 41, 0.28), transparent 58%),
    radial-gradient(840px 380px at 88% 92%, rgba(247, 154, 74, 0.26), transparent 62%),
    linear-gradient(145deg, #27120b, #4a1e12 44%, #73331a 100%);
}

.section-signature {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(940px 460px at 10% 5%, rgba(255, 170, 92, 0.34), transparent 58%),
    radial-gradient(980px 540px at 90% 92%, rgba(207, 85, 31, 0.2), transparent 62%),
    linear-gradient(140deg, #2f150d, #5d2916 40%, #94411d 70%, #d16d28 100%);
}

.section-signature::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 218, 180, 0.18), transparent 42%),
    repeating-linear-gradient(135deg, rgba(255, 201, 154, 0.08) 0 2px, transparent 2px 18px);
}

.section-signature .container {
  position: relative;
  z-index: 1;
}

.signature-hero-grid {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.signature-hero-card {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(239, 187, 122, 0.5);
  background: linear-gradient(180deg, rgba(255, 227, 186, 0.18), rgba(255, 255, 255, 0.06));
  box-shadow: 0 20px 48px rgba(40, 20, 11, 0.34);
  backdrop-filter: blur(4px);
}

.signature-hero-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.signature-hero-copy {
  padding: 0.92rem;
}

.signature-hero-copy .kicker {
  color: #ffe2bc;
}

.signature-hero-copy h3 {
  margin: 0.45rem 0 0;
  color: #fff2df;
  font-size: 1.72rem;
  line-height: 0.9;
  letter-spacing: -0.025em;
}

.signature-hero-copy p {
  margin: 0.52rem 0 0;
  color: rgba(255, 233, 205, 0.94);
}

.signature-hero-copy .btn {
  margin-top: 0.72rem;
}

.signature-products {
  margin-top: 0.95rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#before-after,
#benefits {
  background:
    radial-gradient(900px 420px at 16% 10%, rgba(247, 165, 99, 0.22), transparent 56%),
    radial-gradient(860px 420px at 84% 92%, rgba(230, 145, 80, 0.12), transparent 58%),
    linear-gradient(180deg, rgba(255, 249, 239, 0.96), rgba(248, 235, 214, 0.95));
}

#before-after .kicker,
#benefits .kicker {
  color: #ab5823;
}

#before-after .section-head p,
#benefits .section-head p {
  color: #6d4f40;
}

#before-after .result-card,
#benefits .benefit,
#benefits .education-strip {
  border-color: rgba(174, 106, 52, 0.24);
  box-shadow: 0 18px 40px rgba(62, 35, 21, 0.13);
}

#before-after .result-card,
#benefits .benefit {
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(252, 236, 214, 0.98));
}

#benefits .education-strip {
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(248, 230, 204, 0.96));
}

.section-head {
  margin-bottom: 1rem;
}

.section-head h2 {
  margin: 0.44rem 0 0;
  font-size: clamp(2rem, 3.7vw, 3.15rem);
  line-height: 0.9;
  letter-spacing: -0.038em;
}

.section-head p {
  margin: 0.55rem 0 0;
  color: var(--ink-soft);
}

.section-head-light .kicker,
.section-head-light h2,
.section-head-light p {
  color: #fff3df;
}

.spotlight-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vibe-grid {
  display: grid;
  gap: 0.82rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vibe-card {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(174, 106, 52, 0.24);
  background: linear-gradient(180deg, rgba(255, 251, 243, 0.98), rgba(250, 234, 212, 0.98));
  box-shadow: 0 18px 36px rgba(58, 35, 21, 0.12);
}

.vibe-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 36%;
  display: block;
}

.vibe-card p {
  margin: 0;
  padding: 0.72rem 0.78rem 0.76rem;
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 800;
  color: #9f5321;
}

.spotlight-card {
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid rgba(173, 104, 52, 0.22);
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(252, 239, 221, 0.98));
  padding: 0.9rem;
  box-shadow: 0 18px 36px rgba(58, 35, 21, 0.12);
}

.spotlight-kicker {
  margin: 0;
  font-size: 0.63rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 800;
  color: #a85723;
}

.spotlight-card h3 {
  margin: 0.46rem 0 0;
  font-size: 1.78rem;
  line-height: 0.88;
  letter-spacing: -0.03em;
}

.spotlight-card p {
  margin: 0.5rem 0 0;
  color: var(--ink-soft);
}

.section-signature .product-card {
  border-color: rgba(177, 108, 55, 0.24);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(251, 238, 220, 0.98));
  box-shadow: 0 20px 42px rgba(62, 35, 20, 0.2);
}

.section-signature .product-tag {
  color: #a85622;
}

.testimonial-focus {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial-card {
  border-radius: 8px;
  border: 1px solid rgba(255, 196, 138, 0.44);
  background: linear-gradient(180deg, rgba(255, 157, 77, 0.2), rgba(255, 231, 201, 0.11));
  color: #fff8ef;
  padding: 1rem;
  box-shadow: 0 20px 44px rgba(27, 11, 5, 0.38);
  backdrop-filter: blur(5px);
  overflow: hidden;
}

.testimonial-media-wrap {
  margin: -1rem -1rem 0.85rem;
  border-bottom: 1px solid rgba(255, 197, 150, 0.32);
  background: rgba(53, 23, 10, 0.38);
}

.testimonial-media {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 34%;
  display: block;
  filter: saturate(1.08) contrast(1.03);
}

.testimonial-card h3 {
  margin: 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stars {
  margin-top: 0.45rem;
  color: #ffd48a;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.testimonial-card blockquote {
  margin: 0.66rem 0 0;
  line-height: 1.5;
  font-size: 0.92rem;
}

.testimonial-card p {
  margin: 0.68rem 0 0;
  color: rgba(255, 242, 232, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.74rem;
}

.product-grid {
  display: grid;
  gap: 0.88rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.favorites-grid {
  margin-top: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(96, 72, 36, 0.2);
  background: var(--bg-shell);
  box-shadow: 0 14px 30px rgba(45, 34, 16, 0.1);
  display: flex;
  flex-direction: column;
}

.product-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: saturate(1.08) contrast(1.03);
}

.product-square {
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0.74rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid rgba(67, 31, 35, 0.18);
}

.product-square p {
  margin: 0;
}

.square-top {
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
}

.square-main {
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: 1.9rem;
  line-height: 0.9;
  letter-spacing: 0.03em;
  color: #fff;
}

.square-note {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tone-gold {
  background: linear-gradient(145deg, #f8bf89, #e88b44 64%, #b66632);
}

.tone-aqua {
  background: linear-gradient(145deg, #ffcf9e, #e8924f 62%, #b96931);
}

.tone-coral {
  background: linear-gradient(145deg, #ffd0a8, #f2a167 58%, #c7763a);
}

.tone-lime {
  background: linear-gradient(145deg, #ffd9ab, #e9a463 64%, #be7439);
}

.product-body {
  padding: 0.88rem;
  display: flex;
  flex-direction: column;
  gap: 0.44rem;
}

.product-tag {
  margin: 0;
  font-size: 0.64rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 800;
  color: #a65521;
}

.product-body h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.3;
}

.product-blurb {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.product-meta {
  margin-top: 0.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.product-price {
  font-size: 1rem;
  font-weight: 800;
  color: #9c4f1e;
}

.add-btn {
  border: none;
  border-radius: 3px;
  background: #8e4420;
  color: #fef9ef;
  padding: 0.46rem 0.72rem;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.add-btn:hover {
  background: #74361a;
}

.results-wrap {
  margin-top: 0.96rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.results-major .result-card img {
  aspect-ratio: 1 / 1;
}

.result-card {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(177, 108, 54, 0.2);
  background: var(--bg-shell);
  box-shadow: var(--shadow-soft);
}

.result-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center center;
  display: block;
}

#before-after .results-major .result-card:first-child img {
  object-position: center 28%;
}

#before-after .results-major .result-card:last-child img {
  object-position: center 58%;
}

.result-card div {
  padding: 0.85rem;
}

.result-card h3 {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.result-card p {
  margin: 0.38rem 0 0;
  color: var(--ink-soft);
}

.bundle-hero {
  margin-top: 0.82rem;
  margin-bottom: 0.9rem;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(176, 106, 52, 0.26);
  box-shadow: 0 18px 42px rgba(63, 35, 20, 0.18);
  display: grid;
  grid-template-columns: 1fr 0.9fr;
}

.bundle-hero-copy {
  padding: 1rem;
  background: linear-gradient(154deg, rgba(255, 248, 237, 0.98), rgba(249, 228, 201, 0.94) 52%, rgba(237, 157, 89, 0.92));
}

.bundle-hero-copy h3 {
  margin: 0;
  font-size: 2.05rem;
  line-height: 0.88;
  letter-spacing: -0.03em;
}

.bundle-hero-copy p {
  margin: 0.58rem 0 0;
  color: #6b4e3f;
}

.bundle-hero-copy .btn {
  margin-top: 0.7rem;
}

.bundle-hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

#bundle-grid .product-card:first-child .product-photo {
  object-position: center 45%;
  filter: saturate(1.03) contrast(1.03);
}

.men-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 0.9rem;
  align-items: start;
}

.men-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.men-grid .product-card {
  background: linear-gradient(180deg, #fff8ee, #f9e7d0 100%);
  border-color: rgba(176, 105, 52, 0.26);
  box-shadow: 0 18px 42px rgba(47, 26, 16, 0.3);
}

.men-grid .product-photo {
  aspect-ratio: 3 / 4;
  object-position: center 50%;
  filter: saturate(1.05) contrast(1.04);
}

.men-grid .product-card:nth-child(1) .product-photo {
  object-position: center 54%;
}

.men-grid .product-card:nth-child(2) .product-photo {
  object-position: center 50%;
}

.men-grid .product-card:nth-child(3) .product-photo {
  object-position: center 36%;
}

.men-grid .product-tag {
  color: #a75622;
}

.men-note {
  border-radius: 4px;
  border: 1px solid rgba(255, 206, 162, 0.42);
  background: rgba(58, 32, 20, 0.82);
  color: #fff6e9;
  padding: 0.9rem;
  box-shadow: 0 20px 46px rgba(20, 14, 28, 0.42);
}

.men-note h3 {
  margin: 0;
  font-size: 1.95rem;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.men-note p {
  margin: 0.56rem 0 0;
  color: rgba(255, 232, 206, 0.9);
}

.men-note .btn {
  margin-top: 0.7rem;
}

.men-note .btn-ghost {
  width: 100%;
  margin-top: 0.45rem;
}

.men-video-card {
  margin-top: 0.78rem;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 205, 168, 0.34);
  background: rgba(50, 28, 18, 0.78);
  box-shadow: 0 16px 38px rgba(31, 17, 10, 0.38);
}

.men-video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: #0f1114;
}

.men-video-card div {
  padding: 0.8rem;
}

.men-video-card h3 {
  margin: 0;
  color: #fff8ee;
  font-size: 1rem;
}

.men-video-card p {
  margin: 0.42rem 0 0;
  color: rgba(255, 229, 201, 0.88);
  font-size: 0.84rem;
}

.benefit-grid {
  display: grid;
  gap: 0.82rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit {
  border-radius: 4px;
  border: 1px solid rgba(174, 106, 52, 0.22);
  background: var(--bg-shell);
  box-shadow: var(--shadow-soft);
  padding: 0.82rem;
}

.benefit h3 {
  margin: 0;
  font-size: 1rem;
}

.benefit p {
  margin: 0.4rem 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.education-strip {
  margin-top: 0.95rem;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(174, 106, 52, 0.2);
  background: var(--bg-shell);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
}

.seamoss-guide {
  margin-top: 0.9rem;
  border-radius: 4px;
  border: 1px solid rgba(174, 106, 52, 0.22);
  background: linear-gradient(170deg, rgba(255, 250, 242, 0.98), rgba(248, 231, 208, 0.98));
  box-shadow: var(--shadow-soft);
  padding: 0.9rem;
}

.seamoss-guide h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 0.94;
  letter-spacing: -0.025em;
}

.guide-grid {
  margin-top: 0.68rem;
  display: grid;
  gap: 0.66rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-item {
  border-radius: 4px;
  border: 1px solid rgba(174, 106, 52, 0.18);
  background: rgba(255, 253, 247, 0.86);
  padding: 0.62rem;
}

.guide-item h4 {
  margin: 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.guide-item p {
  margin: 0.35rem 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.education-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% 52%;
  display: block;
}

.education-strip div {
  padding: 0.92rem;
}

.education-strip h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.education-strip p {
  margin: 0.54rem 0 0;
  color: var(--ink-soft);
}

.video-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.video-card {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(174, 106, 52, 0.22);
  background: var(--bg-shell);
  box-shadow: var(--shadow-soft);
}

.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #130d10;
  display: block;
}

.video-card h3 {
  margin: 0;
  padding: 0.84rem;
  font-size: 0.9rem;
}

.join-wrap {
  display: grid;
  gap: 0.8rem;
  align-items: center;
}

.join-highlight {
  border-radius: 4px;
  border: 1px solid rgba(174, 106, 52, 0.24);
  background: linear-gradient(165deg, rgba(255, 250, 241, 0.92), rgba(248, 228, 203, 0.96));
  padding: 1rem;
}

.join-wrap h2 {
  margin: 0.44rem 0 0;
  font-size: clamp(1.95rem, 3.2vw, 2.8rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.join-wrap p {
  margin: 0.56rem 0 0;
  color: var(--ink-soft);
}

.email-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.email-form input {
  flex: 1;
  min-width: 230px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.72rem 0.88rem;
  font-family: inherit;
  font-size: 0.88rem;
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 0.5rem;
}

.faq-list details {
  border-radius: 4px;
  border: 1px solid rgba(109, 85, 43, 0.14);
  background: var(--bg-shell);
  box-shadow: var(--shadow-soft);
  padding: 0.7rem 0.84rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 0.52rem 0 0;
  color: var(--ink-soft);
}

.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.info-media {
  border-radius: 4px;
  border: 1px solid rgba(109, 85, 43, 0.15);
  background: var(--bg-shell);
  box-shadow: var(--shadow-soft);
}

.info-card {
  padding: 0.95rem;
}

.info-card h2 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.info-card p {
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
}

.info-media {
  overflow: hidden;
}

.info-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  padding: 1.55rem 0 2rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.footer-wrap p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.form-message {
  min-height: 1.25em;
  margin: 0;
  color: #9d5120;
  font-size: 0.82rem;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 13, 8, 0.48);
  z-index: 110;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(430px, 100vw);
  background: #fff9eb;
  border-left: 1px solid var(--line-soft);
  z-index: 120;
  padding: 1rem;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 0.8rem;
  transform: translateX(100%);
  transition: transform 0.22s ease;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-head h2 {
  margin: 0;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: 2rem;
  line-height: 0.9;
}

.icon-btn {
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: #984d1f;
  background: rgba(192, 116, 56, 0.2);
}

.cart-lines {
  overflow: auto;
  display: grid;
  gap: 0.5rem;
}

.cart-empty {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.cart-item {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 0.56rem;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.cart-item h3 {
  margin: 0;
  font-size: 0.87rem;
}

.cart-item p {
  margin: 0.2rem 0 0;
  font-size: 0.76rem;
  color: var(--ink-soft);
}

.qty-wrap {
  text-align: right;
}

.qty-wrap strong {
  display: block;
  font-size: 0.83rem;
}

.qty-controls {
  margin-top: 0.28rem;
  display: inline-flex;
  gap: 0.2rem;
}

.qty-controls button {
  width: 23px;
  height: 23px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}

.cart-total-row {
  border-top: 1px solid var(--line-soft);
  padding-top: 0.74rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

.checkout-form {
  display: grid;
  gap: 0.44rem;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.62rem 0.7rem;
  font-family: inherit;
  font-size: 0.82rem;
  background: #fff;
}

.checkout-form textarea {
  min-height: 76px;
  resize: vertical;
}

.checkout-actions {
  display: grid;
  gap: 0.44rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.js-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes gateFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes auraPulse {
  0% {
    opacity: 0.65;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
  100% {
    opacity: 0.72;
    transform: scale(0.97);
  }
}

@media (max-width: 1120px) {
  .site-nav {
    display: none;
  }

  .nav-wrap {
    min-height: 76px;
    position: relative;
    flex-wrap: wrap;
    row-gap: 0.46rem;
    padding-top: 0.38rem;
    padding-bottom: 0.38rem;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
    width: 100%;
  }

  .cart-chip {
    order: 2;
  }

  .mobile-nav-panel {
    display: block;
    order: 4;
    width: 100%;
    margin-top: 0.16rem;
    padding: 0.74rem;
    border-radius: 8px;
    border: 1px solid rgba(167, 72, 24, 0.3);
    background: rgba(248, 224, 194, 0.98);
    box-shadow: 0 16px 34px rgba(36, 14, 6, 0.22);
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  .intro-content {
    width: min(520px, calc(100% - 1.2rem));
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 420px;
  }

  .hero-ambience {
    width: 155px;
  }

  .spotlight-grid,
  .bundle-hero,
  .men-layout,
  .education-strip,
  .signature-hero-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-focus {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .favorites-grid,
  .video-grid,
  .benefit-grid,
  .signature-products,
  .vibe-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 760px) {
  .container {
    width: min(1180px, calc(100% - 1.1rem));
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .site-header {
    top: 0;
  }

  .intro-video {
    object-position: center;
  }

  .intro-photo-main {
    width: 100%;
    height: 100%;
    max-height: none;
    object-position: center 30%;
  }

  .intro-content {
    width: calc(100% - 1rem);
    padding: 0.85rem 0.9rem 1rem;
  }

  .intro-minimal {
    width: min(320px, calc(100% - 0.9rem));
    padding: 0;
    bottom: max(0.52rem, env(safe-area-inset-bottom));
  }

  .intro-script-title {
    font-size: clamp(1rem, 4.8vw, 1.32rem);
    letter-spacing: 0.02em;
  }

  .intro-mini-copy {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
  }

  .intro-enter-sign {
    font-size: 0.5rem;
    letter-spacing: 0.18em;
  }

  .intro-content h1 {
    font-size: clamp(1.85rem, 10vw, 3.15rem);
  }

  .nav-wrap {
    min-height: 60px;
    gap: 0.5rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-text strong {
    font-size: 0.8rem;
    letter-spacing: 0.045em;
    line-height: 1.12;
  }

  .cart-chip {
    min-width: 92px;
    padding: 0.62rem 0.78rem;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .hero {
    margin-top: 0.36rem;
    margin-bottom: 0.64rem;
    gap: 0.65rem;
  }

  .brand-text small {
    display: none;
  }

  .hero-copy {
    padding: 0.84rem;
  }

  .hero-copy h1 {
    margin-top: 0.34rem;
    font-size: clamp(1.75rem, 8.6vw, 2.6rem);
  }

  .hero-text {
    margin-top: 0.58rem;
    font-size: 0.9rem;
  }

  .hero-actions {
    margin-top: 0.78rem;
    gap: 0.44rem;
  }

  .hero-points {
    margin-top: 0.72rem;
    gap: 0.34rem;
  }

  .hero-ambience {
    display: none;
  }

  .hero-points {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-points li {
    padding: 0.36rem 0.52rem;
    font-size: 0.62rem;
  }

  .hero-media {
    min-height: 272px;
  }

  .signature-hero-copy h3 {
    font-size: 1.3rem;
  }

  .section {
    padding: 1.34rem 0;
  }

  .section-head {
    margin-bottom: 0.62rem;
  }

  .product-grid,
  .two-up,
  .results-wrap,
  .testimonial-focus,
  .favorites-grid,
  .guide-grid,
  .video-grid,
  .benefit-grid,
  .vibe-grid,
  .contact-grid,
  .checkout-actions {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    flex-direction: column;
  }

  .cart-drawer {
    width: 100vw;
  }
}

@media (max-width: 560px) {
  .hero {
    margin-top: 0.28rem;
    margin-bottom: 0.56rem;
  }

  .hero-media {
    min-height: 236px;
  }

  .section {
    padding: 1.08rem 0;
  }

}

/* -------- Multipage Sophora Refresh -------- */
.site-nav a.is-active {
  background: rgba(169, 72, 22, 0.2);
  color: #7b2f0f;
}

.mobile-site-nav a.is-active {
  background: rgba(169, 72, 22, 0.2);
  color: #7b2f0f;
  border-color: rgba(169, 72, 22, 0.34);
}

.spotlight-card.has-photo {
  padding: 0;
  overflow: hidden;
}

.spotlight-card.has-photo img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.spotlight-card-content {
  padding: 0.9rem;
}

.news-flash {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(176, 106, 52, 0.24);
  background: linear-gradient(160deg, rgba(255, 250, 242, 0.98), rgba(248, 230, 205, 0.97));
  box-shadow: 0 18px 40px rgba(61, 34, 20, 0.16);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}

.news-flash img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.news-flash div {
  padding: 1rem;
}

.news-flash h3 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.45rem, 2.7vw, 2.2rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.news-flash p {
  margin: 0.56rem 0 0;
  color: var(--ink-soft);
}

.news-flash .btn {
  margin-top: 0.72rem;
}

.home-hero-split {
  padding-top: 0;
  padding-bottom: 0;
  background: var(--hero-orange);
}

.home-hero-split > .container {
  width: min(1180px, 100%);
}

.news-flash-home {
  min-height: 0;
  grid-template-columns: 1fr;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.news-flash-media {
  margin: 0;
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.news-flash-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.news-flash-home .news-flash-media {
  width: 100%;
  margin-inline: auto;
  min-height: 0;
  height: min(74vh, 760px);
  aspect-ratio: auto;
  max-height: none;
  background: var(--hero-orange);
}

.news-flash-home .news-flash-media img {
  object-fit: cover;
  object-position: center center;
  background: var(--hero-orange);
}

.news-flash-media-cta {
  position: absolute;
  left: 50%;
  top: 66%;
  transform: translate(-50%, -50%);
  z-index: 2;
  min-width: 172px;
  padding: 0.7rem 1.08rem;
  border-radius: 10px;
  border: 0;
  background: #ff7a0d;
  color: #190e07;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: clamp(0.75rem, 1.2vw, 0.88rem);
  line-height: 1;
  box-shadow: 0 10px 24px rgba(23, 10, 5, 0.32);
}

.news-flash-media-cta:hover,
.news-flash-media-cta:focus-visible {
  background: #ff8f30;
  color: #190e07;
}

.news-flash-copy {
  padding: clamp(1rem, 2.8vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, #fff9ef, #fff3e3 58%, #fdf0de 100%);
}

.news-flash-copy h1,
.news-flash-copy h3 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.7rem, 4.2vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.news-flash-copy p {
  margin: 0.56rem 0 0;
  color: var(--ink-soft);
}

.hero-home .hero-media > img {
  object-position: center 28%;
}

.hero-shop .hero-media > img {
  object-position: center 30%;
}

.hero-reviews .hero-media > img {
  object-position: center center;
}

.hero-benefits .hero-media > img {
  object-position: center center;
}

.hero-contact .hero-media > img {
  object-position: center center;
}

.testimonial-focus {
  display: block;
}

.review-groups {
  margin-top: 0.35rem;
  display: grid;
  gap: 0.88rem;
}

.review-group {
  border-radius: 8px;
  border: 1px solid rgba(255, 196, 138, 0.44);
  background: linear-gradient(180deg, rgba(255, 157, 77, 0.2), rgba(255, 231, 201, 0.11));
  box-shadow: 0 20px 44px rgba(27, 11, 5, 0.38);
  overflow: hidden;
}

.review-summary {
  list-style: none;
  cursor: pointer;
  padding: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  background: rgba(44, 18, 9, 0.42);
  border-bottom: 1px solid rgba(255, 197, 150, 0.32);
}

.review-summary::-webkit-details-marker {
  display: none;
}

.review-summary-main {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff7ec;
}

.review-product-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(255, 210, 164, 0.5);
}

.review-summary strong {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-summary small {
  display: block;
  margin-top: 0.16rem;
  color: rgba(255, 233, 205, 0.88);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.review-summary-cta {
  color: #ffe4be;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.review-group[open] .review-summary-cta {
  color: #fff9ef;
}

.review-group .review-grid {
  padding: 0.85rem;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-group .testimonial-card {
  margin: 0;
}

.landing-only {
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(60% 60% at 18% 18%, rgba(255, 121, 14, 0.32), transparent 74%),
    radial-gradient(45% 45% at 88% 12%, rgba(255, 167, 73, 0.24), transparent 70%),
    #120905;
}

.landing-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: end center;
  padding: 1rem;
}

.landing-photo,
.landing-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: saturate(1.1) contrast(1.04);
}

.landing-video {
  background: #120905;
  pointer-events: none;
}

.landing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 7, 3, 0.26) 0%, rgba(18, 7, 3, 0.52) 100%),
    radial-gradient(55% 55% at 50% 16%, rgba(255, 143, 34, 0.28), transparent 78%);
  pointer-events: none;
}

.landing-content {
  position: relative;
  z-index: 6;
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  text-align: center;
  margin-bottom: max(0.86rem, env(safe-area-inset-bottom));
  pointer-events: auto;
}

.landing-title {
  margin: 0;
  color: #fff6e9;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: clamp(1rem, 2.6vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.36);
}

.landing-subtitle {
  margin: 0;
  color: rgba(255, 227, 188, 0.96);
  font-size: 0.66rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 700;
}

.landing-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.landing-enter {
  border-radius: 999px;
  border: 1px solid rgba(255, 196, 125, 0.76);
  background: rgba(24, 10, 5, 0.44);
  color: #fffaf1;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  text-decoration: none;
  min-width: 120px;
  box-shadow: 0 10px 24px rgba(16, 7, 4, 0.4);
}

.landing-enter:hover,
.landing-enter:focus-visible {
  transform: translateY(-1px);
  background: rgba(24, 10, 5, 0.66);
  border-color: rgba(255, 221, 180, 0.96);
}

.landing-shop {
  background: linear-gradient(180deg, #ff9e2a, #ff6c05);
  border-color: rgba(255, 210, 150, 0.95);
  color: #2b1207;
  text-shadow: none;
}

.landing-shop:hover,
.landing-shop:focus-visible {
  background: linear-gradient(180deg, #ffb64d, #ff7b12);
  border-color: rgba(255, 233, 197, 0.98);
  color: #261108;
}

.landing-enter-ghost {
  background: rgba(20, 9, 5, 0.42);
}

.landing-hero-news .opening-windows {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: auto;
}

.opening-window {
  margin: 0;
  position: absolute;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 205, 140, 0.82);
  box-shadow: 0 24px 46px rgba(16, 6, 3, 0.58);
  background: rgba(16, 9, 6, 0.2);
}

.opening-window img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.opening-window-main {
  left: 50%;
  transform: translateX(-50%);
  top: min(8vh, 68px);
  width: min(360px, 40vw);
  aspect-ratio: 9 / 16;
}

.opening-window-side {
  right: min(9vw, 84px);
  top: min(18vh, 156px);
  width: min(220px, 24vw);
  aspect-ratio: 4 / 5;
  border-color: rgba(255, 186, 103, 0.68);
  opacity: 0.92;
}

.opening-window-news {
  position: absolute;
}

.opening-window-news::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  background: linear-gradient(180deg, rgba(16, 7, 3, 0), rgba(16, 7, 3, 0.7));
  pointer-events: none;
}

.hero-window-cta {
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  transform: translateX(-50%);
  z-index: 2;
  border-radius: 10px;
  border: 1px solid rgba(255, 207, 153, 0.96);
  background: linear-gradient(180deg, #ff9f2a, #ff6f08);
  color: #2b1207;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.5rem 1.05rem;
  min-width: 140px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(17, 8, 4, 0.45);
}

.hero-window-cta:hover,
.hero-window-cta:focus-visible {
  background: linear-gradient(180deg, #ffb24b, #ff7f1f);
  border-color: rgba(255, 236, 204, 0.98);
}

.review-group .review-grid {
  padding: 0.74rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 230px);
  gap: 0.74rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
}

.review-group .testimonial-card {
  margin: 0;
  min-width: 210px;
  max-width: 230px;
  scroll-snap-align: start;
}

.review-group .testimonial-media-wrap {
  border-radius: 6px;
  overflow: hidden;
}

.review-group .testimonial-media {
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.review-group .testimonial-card h3 {
  font-size: 0.78rem;
  line-height: 1.3;
}

.review-group .testimonial-card blockquote {
  font-size: 0.8rem;
  line-height: 1.45;
}

.review-group .testimonial-card p {
  font-size: 0.67rem;
}

@media (max-width: 1120px) {
  .news-flash,
  .review-group .review-grid {
    grid-auto-columns: minmax(190px, 220px);
  }
}

@media (max-width: 760px) {
  .landing-content {
    position: fixed;
    left: 50%;
    bottom: max(1.05rem, env(safe-area-inset-bottom));
    transform: translateX(-50%);
    margin: 0;
    width: auto;
    z-index: 24;
  }

  .landing-actions {
    width: auto;
  }

  .mobile-nav-panel {
    padding: 0.66rem;
    border-radius: 6px;
  }

  .home-hero-split {
    background: var(--hero-orange);
  }

  .home-hero-split > .container {
    width: 100%;
  }

  .spotlight-card.has-photo img {
    aspect-ratio: 4 / 3;
  }

  .opening-window-main {
    left: 50%;
    transform: translateX(-50%);
    top: 0.7rem;
    width: min(74vw, 285px);
  }

  .opening-window-side {
    right: 0.55rem;
    top: auto;
    bottom: 9.8rem;
    width: min(33vw, 122px);
  }

  .hero-window-cta {
    font-size: 0.62rem;
    min-width: 118px;
    padding: 0.46rem 0.8rem;
    bottom: 0.65rem;
  }

  .landing-subtitle {
    max-width: 30ch;
    font-size: 0.56rem;
  }

  .landing-enter {
    min-width: 136px;
    padding: 0.62rem 1.08rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    border-color: rgba(255, 212, 164, 0.96);
    background: rgba(16, 8, 4, 0.74);
    color: #fff7e8;
    box-shadow: 0 14px 34px rgba(10, 5, 2, 0.48);
  }

  .review-group .review-grid {
    grid-auto-columns: minmax(180px, 205px);
  }

  .home-hero-split {
    padding-top: 0.35rem;
    padding-bottom: 0.65rem;
  }

  .news-flash-home {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .news-flash-home .news-flash-media {
    width: 100%;
    min-height: 0;
    height: auto;
    max-height: none;
    aspect-ratio: 1 / 1;
    background: var(--hero-orange);
  }

  .news-flash-home .news-flash-media img {
    object-position: center 52%;
    transform: scale(1.055);
    transform-origin: center 52%;
  }

  .news-flash-media-cta {
    top: 65%;
    min-width: 158px;
    padding: 0.58rem 0.9rem;
    font-size: 0.72rem;
  }

  .news-flash-copy {
    padding: 0.95rem;
  }

  .news-flash-copy h1,
  .news-flash-copy h3 {
    font-size: clamp(1.45rem, 7.4vw, 2.15rem);
  }
}

/* -------- Global Orange Polish Pass -------- */
:root {
  --bg-cream: #ffa151;
  --bg-rose: #ff7d2c;
  --bg-shell: #ffd6b2;
  --line: rgba(122, 45, 14, 0.3);
  --line-soft: rgba(122, 45, 14, 0.2);
}

body {
  background:
    radial-gradient(980px 620px at 4% -12%, rgba(255, 184, 92, 0.34), transparent 60%),
    radial-gradient(1020px 640px at 96% 0%, rgba(255, 137, 42, 0.28), transparent 62%),
    radial-gradient(980px 560px at 84% 96%, rgba(213, 77, 21, 0.24), transparent 64%),
    linear-gradient(180deg, #ff9d4e 0%, #ff8633 34%, #ff7426 68%, #f5641f 100%);
}

body::before {
  background:
    radial-gradient(880px 480px at 84% -8%, rgba(255, 188, 111, 0.22), transparent 56%),
    radial-gradient(920px 560px at 8% 96%, rgba(192, 72, 22, 0.2), transparent 62%),
    radial-gradient(900px 520px at 86% 100%, rgba(126, 46, 18, 0.16), transparent 64%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
}

.page-bg {
  background:
    radial-gradient(920px 500px at 2% -10%, rgba(206, 78, 20, 0.2), transparent 56%),
    radial-gradient(900px 560px at 98% 2%, rgba(255, 158, 58, 0.18), transparent 60%),
    radial-gradient(1040px 660px at 82% 92%, rgba(114, 42, 16, 0.14), transparent 66%);
}

.site-header {
  background: linear-gradient(180deg, rgba(255, 176, 106, 0.98), rgba(245, 126, 45, 0.94));
  border-bottom: 1px solid rgba(121, 44, 13, 0.34);
}

.site-footer {
  background: linear-gradient(180deg, rgba(255, 165, 90, 0.4), rgba(245, 116, 35, 0.34));
}

.footer-wrap p {
  color: #3a1a0c;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 195, 138, 0.56), rgba(248, 132, 54, 0.42));
}

.spotlight-card,
.product-card,
.result-card,
.benefit,
.education-strip,
.seamoss-guide,
.guide-item,
.video-card,
.faq-list details,
.info-card,
.info-media,
.join-highlight,
.bundle-hero-copy,
.cart-drawer,
.cart-item,
.mobile-nav-panel,
.mobile-site-nav a {
  border-color: rgba(130, 52, 17, 0.24);
  background: linear-gradient(180deg, rgba(255, 224, 195, 0.98), rgba(255, 197, 156, 0.96));
}

.email-form input,
.checkout-form input,
.checkout-form textarea,
.qty-controls button {
  border-color: rgba(122, 45, 14, 0.32);
  background: rgba(255, 235, 216, 0.98);
}

.btn-ghost {
  background: rgba(255, 232, 208, 0.94);
  border-color: rgba(144, 57, 19, 0.34);
}

.btn-ghost:hover {
  background: rgba(255, 218, 186, 0.96);
}
