:root {
  --ink: #2c2a27;
  --ink-soft: #5d5c59;
  --gold: #9b8767;
  --gold-soft: #c3b39a;
  --paper: #f6f3ed;
  --mist: #e8e1d6;
  --line: rgba(96, 91, 83, 0.14);
  --line-soft: rgba(111, 98, 82, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% -12%, rgba(255, 255, 255, 0.8), transparent 40%),
    radial-gradient(circle at 12% 78%, rgba(224, 206, 176, 0.18), transparent 52%),
    radial-gradient(circle at 92% 62%, rgba(214, 191, 158, 0.14), transparent 47%),
    linear-gradient(162deg, #f7f4ef 0%, #eee8de 54%, #e2d8ca 100%);
}

body.menu-open {
  overflow: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.008;
  z-index: 1;
  background-image: radial-gradient(rgba(66, 52, 35, 0.24) 0.32px, transparent 0.72px);
  background-size: 6px 6px;
}

.container {
  width: min(1240px, calc(100% - 2.4rem));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

main {
  position: relative;
}

main::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 760px;
  height: 980px;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 16%, rgba(213, 190, 156, 0.17), rgba(213, 190, 156, 0)),
    radial-gradient(circle at 18% 62%, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  z-index: 0;
}

.global-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(246, 241, 233, 0.92);
  border-bottom: 1px solid rgba(111, 103, 91, 0.16);
}

.utility-bar {
  background: #0d2239;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.utility-inner {
  min-height: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.utility-links {
  display: flex;
  gap: 1.5rem;
}

.utility-links a {
  color: rgba(236, 242, 249, 0.92);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

.nav-grid {
  min-height: 66px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
}

.nav-center,
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}

.main-nav {
  justify-self: end;
}

.mobile-menu-toggle {
  display: none;
  justify-self: end;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(22, 37, 54, 0.26);
  border-radius: 10px;
  background: rgba(255, 251, 245, 0.88);
  padding: 0.5rem;
  align-content: center;
  gap: 0.23rem;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #183149;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  border-top: 1px solid rgba(130, 104, 75, 0.14);
  background:
    linear-gradient(140deg, rgba(245, 242, 237, 0.95), rgba(234, 229, 221, 0.94)),
    #eee9e1;
}

.mobile-menu-inner {
  padding: 1.05rem 0 1.2rem;
}

.mobile-links {
  display: grid;
  gap: 0.48rem;
}

.mobile-links a {
  text-decoration: none;
  color: #1a2d42;
  font-size: 0.83rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 680;
  padding: 0.62rem 0.74rem;
  border-radius: 10px;
  background: rgba(255, 251, 246, 0.58);
  border: 1px solid rgba(135, 109, 78, 0.13);
}

.mobile-lang {
  margin-top: 0.95rem;
}

.mobile-lang p {
  margin: 0 0 0.45rem;
  color: #675646;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 0.69rem;
  font-weight: 700;
}

.mobile-lang .lang-select-wrap {
  display: inline-block;
}

.logo-badge {
  justify-self: start;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.02em;
  font-size: 1.64rem;
  font-weight: 600;
  text-transform: none;
  text-decoration: none;
  color: #111;
  border: 0;
  padding: 0;
}

.nav-center a,
.main-nav a,
.text-link {
  color: #18232f;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.nav-center a,
.main-nav a {
  padding: 0.46rem 0.82rem;
  border-radius: 8px;
  transition: background-color 180ms ease, color 180ms ease;
}

.nav-center a:hover,
.main-nav a:hover {
  background: #0f243a;
  color: #f4efe7;
}

.nav-link-btn {
  border: 0;
  background: transparent;
  color: #18232f;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  font-weight: 600;
  padding: 0.46rem 0.82rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.nav-link-btn:hover,
.nav-link-btn.active {
  background: #0f243a;
  color: #f4efe7;
}

.lang-select-wrap {
  position: relative;
}

.lang-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid rgba(21, 35, 49, 0.22);
  background: rgba(255, 251, 244, 0.7);
  color: #152433;
  border-radius: 999px;
  height: 38px;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  padding: 0 1.7rem 0 0.78rem;
  cursor: pointer;
}

.lang-select-wrap::after {
  content: "▾";
  position: absolute;
  right: 0.62rem;
  top: 50%;
  transform: translateY(-50%);
  color: #2f4258;
  pointer-events: none;
  font-size: 0.7rem;
}

.lang-select-custom {
  min-width: 160px;
}

.lang-select-custom::after {
  display: none;
}

.lang-select-custom .lang-select {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  inset: 0;
}

.lang-trigger {
  border: 1px solid rgba(21, 35, 49, 0.2);
  background: rgba(250, 246, 239, 0.94);
  color: #152433;
  border-radius: 999px;
  height: 38px;
  min-width: 160px;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  padding: 0 1.82rem 0 0.84rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.lang-trigger::after {
  content: "▾";
  position: absolute;
  right: 0.64rem;
  top: 50%;
  transform: translateY(-50%);
  color: #2f4258;
  font-size: 0.7rem;
  transition: transform 180ms ease;
}

.lang-select-custom.open .lang-trigger::after,
.lang-select-custom:hover .lang-trigger::after,
.lang-select-custom:focus-within .lang-trigger::after {
  transform: translateY(-50%) rotate(180deg);
}

.lang-select-custom.open .lang-trigger,
.lang-select-custom:hover .lang-trigger,
.lang-select-custom:focus-within .lang-trigger {
  border-color: rgba(21, 35, 49, 0.34);
  box-shadow: 0 3px 9px rgba(15, 36, 58, 0.09);
}

.lang-menu {
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  width: 100%;
  max-height: 246px;
  overflow-y: auto;
  padding: 0.24rem;
  border-radius: 12px;
  border: 1px solid rgba(21, 35, 49, 0.14);
  background: rgba(248, 244, 237, 0.99);
  box-shadow: 0 10px 22px rgba(16, 35, 57, 0.12);
  opacity: 0;
  transform: translateY(1px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 48;
}

.lang-select-custom.open .lang-menu,
.lang-select-custom:focus-within .lang-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-option {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #152433;
  text-align: left;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.4rem 0.5rem;
  cursor: pointer;
}

.lang-option.active {
  color: #7a6144;
  font-weight: 700;
  background: transparent;
}

.lang-option[hidden] {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .lang-select-custom:hover .lang-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .lang-select-custom:hover .lang-trigger {
    border-color: rgba(21, 35, 49, 0.36);
    box-shadow: 0 4px 10px rgba(15, 36, 58, 0.08);
  }

  .lang-option:hover {
    background: rgba(15, 36, 58, 0.08);
  }
}

.main-nav a.icon-link {
  width: 38px;
  height: 38px;
  padding: 0;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: background-color 180ms ease;
  line-height: 1;
  vertical-align: middle;
}

.icon-link.cart-link {
  position: relative;
}

.cart-badge {
  position: absolute;
  right: -4px;
  top: -5px;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  padding: 0 0.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #102339;
  color: #f5ecdf;
  border: 1px solid rgba(245, 236, 223, 0.7);
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1;
}

.icon-link svg {
  display: block;
  width: 20px;
  height: 20px;
  stroke: #152433;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-link:hover {
  background: #0f243a;
}

.icon-link:hover svg {
  stroke: #f4efe7;
}

.icon-link.member-active {
  background: #0f243a;
}

.icon-link.member-active svg {
  stroke: #f4efe7;
}

.mega-menu {
  border-top: 1px solid rgba(123, 100, 74, 0.14);
  background: #e9e8e7;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.mega-inner {
  padding: 1.35rem 0 1.6rem;
}

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

.mega-panel.active {
  display: grid;
}

.mega-panel-intro {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0.05rem 0.55rem;
  margin-bottom: 0.08rem;
  border-bottom: 1px solid rgba(123, 100, 74, 0.16);
}

.mega-panel-kicker {
  margin: 0;
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #796755;
  font-weight: 700;
}

.mega-panel-copy {
  margin: 0.35rem 0 0;
  max-width: 64ch;
  color: #3e4c5a;
  font-size: 0.82rem;
  line-height: 1.42;
}

.mega-panel-link {
  align-self: center;
  white-space: nowrap;
  text-decoration: none;
  color: #71583d;
  font-size: 0.67rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1px solid rgba(113, 88, 61, 0.38);
  padding-bottom: 0.18rem;
  transition: color 180ms ease, border-color 180ms ease;
}

.mega-panel-link:hover {
  color: #4f3a24;
  border-color: rgba(79, 58, 36, 0.58);
}

.mega-card {
  color: #223142;
  text-decoration: none;
}

.mega-card-link {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.mega-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  background: #d8d8d8;
  transition: transform 260ms ease;
}

.mega-card h4 {
  margin: 0.75rem 0 0;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 1.6vw, 2rem);
  color: #2b3b4a;
}

.mega-card p {
  margin: 0.28rem 0 0;
  color: #3e4e5d;
  font-size: 0.85rem;
  line-height: 1.45;
}

.mega-card-company p {
  min-height: 2.45em;
}

.mega-card-cta {
  display: inline-flex;
  margin-top: 0.42rem;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #725838;
  font-weight: 700;
  transition: transform 220ms ease, color 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .mega-card-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(35, 46, 57, 0.12);
  }

  .mega-card-link:hover img {
    transform: scale(1.03);
  }

  .mega-card-link:hover .mega-card-cta {
    transform: translateX(4px);
    color: #4d3721;
  }
}

.hero {
  min-height: 100vh;
}

.hero-media {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.hero-overlay {
  min-height: calc(100vh - 76px);
  display: grid;
  align-content: start;
  padding-top: clamp(3.4rem, 5.8vw, 5.6rem);
  position: relative;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(246, 235, 222, 0.26), rgba(246, 235, 222, 0.06) 42%, rgba(47, 36, 28, 0.02) 100%);
}

.hero-content {
  display: grid;
  justify-items: center;
  row-gap: 0.62rem;
  text-align: center;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
}

h1 {
  margin: 0;
  font-size: clamp(1.95rem, 4.2vw, 3.95rem);
  line-height: 0.96;
  color: #5a483a;
  text-shadow: 0 1px 0 rgba(255, 245, 232, 0.45);
}

.hero-sub {
  margin: 0;
  padding-bottom: 0;
  max-width: 54ch;
  font-size: clamp(0.88rem, 1.05vw, 0.94rem);
  line-height: 1.42;
  color: #6d5d4f;
  position: relative;
  z-index: 3;
}

.hero-actions {
  margin-top: 0.24rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  transform: translateY(-0.3rem);
  position: relative;
  z-index: 2;
}

.btn {
  border-radius: 999px;
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  padding: 0.82rem 2.2rem;
  border: 1px solid rgba(162, 126, 82, 0.44);
  transition:
    transform 180ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    filter 220ms ease;
}

.btn-primary {
  color: #6b4e2f;
  background: rgba(255, 250, 244, 0.9);
}

.btn-secondary {
  color: #f6ebde;
  background: linear-gradient(110deg, var(--gold-soft), var(--gold));
}

.hero-actions .btn {
  box-shadow: 0 4px 14px rgba(58, 45, 31, 0.09);
}

@media (hover: hover) and (pointer: fine) {
  .hero-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 11px 24px rgba(58, 45, 31, 0.16);
  }

  .hero-actions .btn-primary:hover {
    background: rgba(255, 252, 246, 0.98);
  }

  .hero-actions .btn-secondary:hover {
    filter: brightness(1.04);
  }
}

.hero-actions .btn:active {
  transform: translateY(0);
}

.quote-band {
  margin-top: 0;
  padding: 2.35rem 0 3.15rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f2efea 0%, #ebe7e1 52%, #f2efea 100%);
}

.quote-band::after {
  content: "";
  position: absolute;
  right: -150px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221, 196, 163, 0.23), rgba(221, 196, 163, 0));
}

.quote-wrap {
  text-align: center;
  max-width: 880px;
}

.quote-text {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.05rem, 3.35vw, 3rem);
  line-height: 1.2;
  color: #2f2924;
}

.typewriter-target {
  white-space: pre-line;
}

.typewriter-target.is-typing::after {
  content: "|";
  margin-left: 2px;
  color: #6a5b4b;
  animation: caret-blink 0.85s steps(1, end) infinite;
}

@keyframes caret-blink {
  50% {
    opacity: 0;
  }
}

.quote-author {
  margin: 0.8rem 0 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: #6d5d50;
}

.stories {
  margin-top: 2.1rem;
  padding: 1.6rem 1.2rem 1.4rem;
  border-radius: 26px;
  background:
    radial-gradient(circle at 10% 14%, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0) 34%),
    linear-gradient(145deg, rgba(244, 241, 236, 0.72), rgba(230, 225, 217, 0.54));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62), 0 14px 30px rgba(54, 49, 42, 0.08);
}

.stories-head {
  max-width: 700px;
}

.stories-head h2 {
  margin: 0.45rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.07;
  color: #3c2e24;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
}

.stories-marquee {
  margin-top: 1.4rem;
  overflow: hidden;
  padding-bottom: 0.2rem;
}

.stories-track {
  display: flex;
  align-items: end;
  gap: 0.95rem;
  width: max-content;
  animation: stories-scroll 48s linear infinite;
  will-change: transform;
}

.stories-marquee:hover .stories-track,
.stories-marquee:focus-within .stories-track {
  animation-play-state: paused;
}

.story-card {
  position: relative;
  overflow: hidden;
  background: rgba(244, 240, 234, 0.84);
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(74, 57, 38, 0.1);
  text-decoration: none;
  color: inherit;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.story-card:hover,
.story-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(74, 57, 38, 0.16);
  outline: none;
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.88) contrast(0.96) brightness(0.98);
}

.story-arch {
  border-radius: 0 120px 120px 0;
  width: 260px;
  height: 330px;
}

.story-tall {
  width: 250px;
  height: 330px;
}

.story-video {
  width: 260px;
  height: 330px;
}

.story-small {
  width: 250px;
  height: 210px;
  border-radius: 110px;
}

.story-quote {
  width: 250px;
  height: 210px;
  padding: 1.15rem 1rem;
  display: grid;
  align-content: center;
  text-align: center;
}

.story-quote p {
  margin: 0;
  color: #4a4037;
  font-size: 0.92rem;
  line-height: 1.4;
}

.story-quote span {
  margin-top: 0.75rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: #2e2822;
}

.play-dot {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  color: #fff;
  background: rgba(26, 33, 30, 0.45);
  backdrop-filter: blur(4px);
}

@keyframes stories-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.475rem));
  }
}

.trust-block {
  margin-top: 2.2rem;
  padding: 0.85rem 0 0;
  position: relative;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0.9rem 0 1.3rem;
  border-top: 0;
  border-bottom: 0;
  background: rgba(246, 243, 237, 0.42);
}

.trust-metrics article {
  padding: 0.36rem 1rem 0.34rem;
  border-left: 0;
  min-height: 172px;
  display: grid;
  align-content: start;
}

.trust-metrics article:first-child {
  border-left: 0;
}

.trust-metrics h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 560;
  letter-spacing: 0.01em;
  font-size: clamp(1.7rem, 2.2vw, 2.55rem);
  line-height: 0.98;
  color: #24364e;
  font-variant-numeric: tabular-nums;
}

.trust-metrics p {
  margin: 0.5rem 0 0;
  color: #545f6e;
  line-height: 1.46;
  font-size: 0.74rem;
  letter-spacing: 0.015em;
  text-transform: none;
  font-weight: 540;
  max-width: 19ch;
}

.science-badges {
  margin-top: 1.2rem;
  padding: 0.96rem 0 1.25rem;
  text-align: center;
  border-radius: 0;
  position: relative;
  overflow: visible;
  border-top: 0;
  border-bottom: 0;
  background: rgba(246, 243, 237, 0.62);
  box-shadow: none;
}

.science-badges::before {
  content: none;
}

.science-badges h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  font-size: clamp(1.08rem, 1.28vw, 1.32rem);
  line-height: 1.2;
  color: #705f50;
  position: relative;
  z-index: 1;
}

.badge-marquee {
  margin-top: 2.34rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.badge-marquee::before,
.badge-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 64px;
  pointer-events: none;
  z-index: 2;
}

.badge-marquee::before {
  left: 0;
  background: linear-gradient(to right, #eee8df 0%, rgba(238, 232, 223, 0) 100%);
}

.badge-marquee::after {
  right: 0;
  background: linear-gradient(to left, #eee8df 0%, rgba(238, 232, 223, 0) 100%);
}

.badge-track {
  display: flex;
  gap: 1.05rem;
  width: max-content;
  animation: badge-scroll 46s linear infinite;
  will-change: transform;
}

.badge-marquee:hover .badge-track {
  animation-play-state: paused;
}

.badge-card {
  min-width: clamp(142px, 12vw, 166px);
  display: grid;
  justify-items: center;
  gap: 0.34rem;
  padding: 0.1rem 0.08rem;
}

.badge-img {
  width: clamp(48px, 4.2vw, 56px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: grayscale(1) contrast(1.22) brightness(0.26);
  mix-blend-mode: normal;
  opacity: 0.86;
}

.badge-card p {
  margin: 0;
  font-size: clamp(0.62rem, 0.72vw, 0.7rem);
  color: #434a56;
  text-align: center;
  line-height: 1.28;
  font-weight: 620;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  max-width: 18ch;
}

@keyframes badge-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.6rem));
  }
}

.featured-products,
.protocol,
.science-journal,
.subscribe {
  margin-top: 2.6rem;
}

.section-head {
  max-width: 700px;
}

.eyebrow {
  margin: 0;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #705f50;
}

.section-head h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(2rem, 3.2vw, 3.3rem);
}

.section-head p {
  margin: 0.65rem 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.phase-switch {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(760px, 100%);
  gap: 0.45rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(245, 242, 238, 0.78);
  border: 1px solid rgba(164, 131, 96, 0.2);
}

.phase-btn {
  border: 0;
  background: transparent;
  color: #4f4236;
  font-size: 0.73rem;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 700;
  padding: 0.48rem 0.72rem;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 200ms ease;
}

.phase-btn.active {
  background: #0f243a;
  color: #f6eee2;
  box-shadow: 0 8px 18px rgba(15, 36, 58, 0.2);
}

@media (hover: hover) and (pointer: fine) {
  .phase-btn:hover {
    background: rgba(15, 36, 58, 0.1);
    color: #1d3249;
    transform: translateY(-1px);
  }

  .phase-btn.active:hover {
    background: #0f243a;
    color: #f6eee2;
    transform: translateY(-1px);
  }
}

.showcase-layout {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 230px 1fr 300px;
  gap: 1rem;
  align-items: stretch;
}

.showcase-simple {
  margin-top: 1.25rem;
  max-width: 100%;
  display: block;
}

.showcase-rhythm {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(252, 247, 239, 0.68);
  border: 1px solid rgba(166, 135, 99, 0.18);
}

.rhythm-title {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #786553;
}

.showcase-rhythm ul {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.showcase-rhythm li {
  margin: 0;
  border-radius: 12px;
  padding: 0.66rem 0.7rem;
  color: #4e4135;
  font-size: 0.88rem;
  border: 1px solid rgba(165, 133, 97, 0.16);
  background: rgba(255, 252, 247, 0.5);
}

.showcase-rhythm li span {
  display: inline-block;
  margin-right: 0.45rem;
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #8c755f;
}

.showcase-rhythm li.active {
  border-color: rgba(95, 72, 46, 0.28);
  background: rgba(236, 223, 204, 0.72);
}

.showcase-main-card {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(246, 243, 238, 0.74);
  border: 1px solid rgba(168, 135, 96, 0.2);
  box-shadow: 0 14px 30px rgba(82, 58, 33, 0.11);
  margin: 0 auto;
  width: 100%;
  cursor: pointer;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.showcase-main-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(82, 58, 33, 0.16);
}

.showcase-main-card:focus-visible {
  outline: 2px solid rgba(16, 35, 57, 0.55);
  outline-offset: 3px;
}

.showcase-main-card.dark {
  background:
    radial-gradient(circle at 18% 15%, rgba(118, 100, 90, 0.32), transparent 44%),
    rgba(66, 58, 54, 0.92);
}

.showcase-main-media {
  min-height: clamp(360px, 46vw, 620px);
  display: grid;
  place-items: center;
  background: #e7e3dc;
}

.showcase-main-media-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.showcase-main-media img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center center;
  filter: none;
  transition: transform 260ms ease;
}

.showcase-main-media-link:hover img {
  transform: scale(1.012);
}

.showcase-main-card.dark .showcase-main-media {
  background: #2b2f43;
}

.showcase-main-copy {
  padding: 1.2rem 1.35rem 1.35rem;
  background: rgba(247, 244, 239, 0.92);
}

.showcase-main-copy .kicker {
  margin: 0;
  color: #7d6751;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
}

.showcase-main-copy h3 {
  margin: 0.42rem 0 0;
  font-size: clamp(2.1rem, 2.9vw, 3.2rem);
}

.showcase-main-copy #showcase-main-sub {
  margin: 0.35rem 0 0;
  color: #5f5348;
  line-height: 1.6;
}

.showcase-main-copy .showcase-main-price {
  margin: 0.42rem 0 0;
  color: #3f3428;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.showcase-main-actions {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.46rem;
}

.showcase-main-copy a,
.showcase-main-actions button {
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.44rem;
  color: #f5ecdf;
  text-decoration: none;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid rgba(16, 35, 57, 0.35);
  background: #102339;
  border-radius: 999px;
  padding: 0.66rem 1.14rem;
  box-shadow: 0 10px 20px rgba(16, 35, 57, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  cursor: pointer;
}

.showcase-main-copy a::after,
.showcase-main-actions button::after {
  content: "→";
  font-size: 0.82rem;
  line-height: 1;
}

.showcase-main-copy a:hover,
.showcase-main-actions button:hover {
  transform: translateY(-2px);
  background: #0d1f33;
  box-shadow: 0 14px 24px rgba(16, 35, 57, 0.28);
}

.showcase-main-actions button {
  margin-top: 0;
  color: #6e5a45;
  border-color: rgba(110, 90, 69, 0.32);
  background: rgba(255, 252, 247, 0.82);
  box-shadow: none;
}

.showcase-main-actions button:hover {
  background: rgba(241, 232, 220, 0.88);
  box-shadow: none;
}

.showcase-main-card.dark .showcase-main-copy .kicker,
.showcase-main-card.dark .showcase-main-copy #showcase-main-sub,
.showcase-main-card.dark .showcase-main-copy .showcase-main-price,
.showcase-main-card.dark .showcase-main-copy h3,
.showcase-main-card.dark .showcase-main-copy a,
.showcase-main-card.dark .showcase-main-actions button {
  color: #e9ddce;
}

.showcase-main-card.dark .showcase-main-copy a {
  border-color: rgba(233, 221, 206, 0.45);
  background: rgba(233, 221, 206, 0.18);
  box-shadow: none;
}

.showcase-main-card.dark .showcase-main-copy a:hover {
  background: rgba(233, 221, 206, 0.26);
}

.showcase-main-card.dark .showcase-main-actions button {
  border-color: rgba(233, 221, 206, 0.38);
  background: transparent;
}

.showcase-main-card.dark .showcase-main-actions button:hover {
  background: rgba(233, 221, 206, 0.14);
}

.showcase-main-card.dark .showcase-main-copy {
  background: rgba(56, 49, 45, 0.94);
}

.showcase-side {
  display: grid;
  gap: 0.9rem;
}

.showcase-mini {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.8rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 0.85rem;
  border-radius: 18px;
  background: rgba(252, 247, 240, 0.72);
  border: 1px solid rgba(164, 130, 94, 0.16);
}

.showcase-mini img {
  width: 100%;
  height: 95px;
  object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(76, 55, 36, 0.2));
}

.showcase-mini p {
  margin: 0;
  font-size: 0.68rem;
  color: #7b6751;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.showcase-mini h4 {
  margin: 0.28rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  color: #3f3025;
}

.showcase-mini.dark {
  background:
    radial-gradient(circle at 22% 22%, rgba(112, 97, 88, 0.34), transparent 48%),
    rgba(70, 62, 58, 0.88);
}

.showcase-mini.dark p,
.showcase-mini.dark h4 {
  color: #e8dccd;
}

.product-rail {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.feature-card {
  position: relative;
  padding: 1.25rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 252, 248, 0.62), transparent 40%),
    rgba(255, 248, 241, 0.6);
  box-shadow: 0 14px 36px rgba(82, 59, 35, 0.1);
  transform: translateZ(0);
  transition: transform 320ms ease, box-shadow 320ms ease;
  overflow: hidden;
}

.feature-card.dark {
  background:
    radial-gradient(circle at 20% 20%, rgba(116, 97, 85, 0.28), transparent 46%),
    rgba(63, 56, 52, 0.92);
  color: #ece0d0;
}

.feature-card::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210, 173, 128, 0.26), rgba(210, 173, 128, 0));
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px rgba(72, 50, 30, 0.18);
}

.bottle-stage {
  position: relative;
  isolation: isolate;
  padding-bottom: 10px;
}

.bottle-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 18%;
  width: 62%;
  height: 62%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 230, 207, 0.8), rgba(246, 230, 207, 0));
  filter: blur(10px);
  z-index: -1;
}

.feature-card.dark .bottle-stage::before {
  background: radial-gradient(circle, rgba(140, 123, 108, 0.7), rgba(140, 123, 108, 0));
}

.bottle-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2%;
  width: 64%;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(27, 20, 16, 0.3), rgba(27, 20, 16, 0));
  filter: blur(3px);
  z-index: -1;
}

.feature-card img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 18px rgba(44, 32, 22, 0.16));
  transition: transform 320ms ease;
}

.feature-card:hover img {
  transform: translateY(-4px) scale(1.015);
}

.feature-card h3 {
  margin: 0.4rem 0 0;
  font-size: 2rem;
}

.feature-card p {
  margin: 0.25rem 0 0;
  color: #66584d;
}

.feature-card.dark p,
.feature-card.dark a {
  color: #ddd1c2;
}

.feature-card a {
  display: inline-block;
  margin-top: 0.85rem;
  text-decoration: none;
  color: #6e5134;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(110, 81, 52, 0.4);
  padding-bottom: 0.15rem;
}

.protocol {
  padding: 2.45rem 2.5rem 2.1rem;
  border-radius: 34px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 8%, rgba(205, 187, 160, 0.15), transparent 45%),
    linear-gradient(150deg, rgba(246, 243, 238, 0.9), rgba(232, 226, 218, 0.66));
  border: 0;
  box-shadow: 0 22px 44px rgba(57, 47, 36, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.protocol::after {
  display: none;
}

.protocol-head {
  max-width: 980px;
}

.protocol-head h2 {
  margin: 0.42rem 0 0;
  font-size: clamp(2.06rem, 3vw, 3.16rem);
  letter-spacing: 0.005em;
}

.protocol-intro {
  margin: 0.7rem 0 0;
  max-width: 56ch;
  color: #5f5a53;
  line-height: 1.6;
  font-size: 0.94rem;
}

.protocol-strip {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.protocol-pill {
  text-decoration: none;
  color: inherit;
  padding: 1rem 1.05rem 1.05rem;
  border-radius: 20px;
  background:
    radial-gradient(circle at 88% -20%, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0)),
    rgba(255, 252, 248, 0.62);
  border: 1px solid rgba(147, 120, 86, 0.18);
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 0.28rem;
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.protocol-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(123, 98, 70, 0.34);
}

.protocol-order {
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: rgba(124, 103, 79, 0.84);
}

.protocol-time {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.62rem;
  color: rgba(106, 88, 67, 0.86);
  font-weight: 700;
}

.protocol-pill h3 {
  margin: 0.08rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(1.86rem, 2.15vw, 2.22rem);
  line-height: 0.98;
  color: #2f2822;
}

.protocol-axis {
  margin: 0.36rem 0 0;
  color: #5d564e;
  font-size: 0.9rem;
  line-height: 1.35;
  letter-spacing: 0.005em;
  text-transform: none;
  font-weight: 600;
}

.protocol-detail {
  margin: 0.2rem 0 0;
  color: #6a645c;
  font-size: 0.79rem;
  line-height: 1.45;
  max-width: 31ch;
}

.protocol-link {
  margin-top: 1.12rem;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  text-decoration: none;
  color: #7b6347;
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 680;
  position: relative;
  padding-bottom: 0.14rem;
  transition:
    color 240ms ease,
    transform 220ms ease,
    letter-spacing 220ms ease;
}

.protocol-link::after {
  content: "→";
  font-size: 0.78rem;
  line-height: 1;
  transition: transform 220ms ease, opacity 220ms ease;
}

.protocol-link::before,
.science-journal .text-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(123, 99, 71, 0.92), rgba(123, 99, 71, 0.42));
  transform: scaleX(0.35);
  transform-origin: left center;
  opacity: 0.6;
  transition: transform 260ms cubic-bezier(0.22, 0.61, 0.36, 1), opacity 220ms ease;
}

.science-journal {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.35rem;
}

.science-card,
.journal-card {
  padding: 1.95rem 1.95rem 1.8rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at 86% -10%, rgba(241, 232, 217, 0.32), rgba(241, 232, 217, 0)),
    rgba(248, 245, 241, 0.66);
  box-shadow: 0 14px 30px rgba(58, 50, 41, 0.07);
  position: relative;
  overflow: hidden;
}

.science-card::after,
.journal-card::after {
  display: none;
}

.science-card h2,
.journal-card h2 {
  margin: 0.44rem 0 0;
  font-size: clamp(1.82rem, 2.34vw, 2.45rem);
}

.science-card ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.46rem;
  color: #5a5855;
  line-height: 1.52;
}

.science-card li {
  position: relative;
  padding-left: 1rem;
}

.science-card li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(88, 73, 59, 0.8);
  font-weight: 600;
}

.science-card .science-intro {
  margin: 0.9rem 0 0;
  color: #5f5d59;
  line-height: 1.56;
  max-width: 48ch;
}

.journal-card p {
  margin: 0.92rem 0 0;
  color: #615f5a;
  line-height: 1.58;
  max-width: 38ch;
}

.journal-card .journal-closure {
  margin-top: 0.82rem;
  color: #464038;
  letter-spacing: 0.01em;
  font-weight: 600;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.24rem;
  margin-top: 1.02rem;
  color: #7a6144;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 680;
}

.text-link::after {
  content: "→";
  font-size: 0.86rem;
  line-height: 1;
}

.science-journal .text-link {
  position: relative;
  padding-bottom: 0.14rem;
  transition:
    color 240ms ease,
    transform 220ms ease,
    letter-spacing 220ms ease;
}

.science-journal .text-link::after {
  transition: transform 220ms ease, opacity 220ms ease;
}

.protocol-link:focus-visible,
.science-journal .text-link:focus-visible {
  outline: 2px solid rgba(22, 47, 74, 0.36);
  outline-offset: 3px;
  border-radius: 4px;
}

.protocol-link:active,
.science-journal .text-link:active {
  transform: translateX(1px) translateY(1px);
}

@media (hover: hover) and (pointer: fine) {
  .protocol-link:hover,
  .science-journal .text-link:hover {
    transform: translateX(4px);
    letter-spacing: 0.145em;
    color: #5f4730;
  }

  .protocol-link:hover::before,
  .science-journal .text-link:hover::before {
    transform: scaleX(1);
    opacity: 1;
  }

  .protocol-link:hover::after,
  .science-journal .text-link:hover::after {
    transform: translateX(4px);
    opacity: 1;
  }
}

.subscribe {
  text-align: center;
  padding: 3rem 1rem;
  border-radius: 32px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.62), transparent 35%),
    linear-gradient(145deg, rgba(241, 237, 231, 0.78), rgba(228, 221, 212, 0.62));
}

.subscribe > * {
  position: relative;
  z-index: 1;
}

.subscribe::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 160px;
  left: 50%;
  bottom: -90px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(58, 43, 30, 0.22), rgba(58, 43, 30, 0));
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

.subscribe h2 {
  margin: 0;
  font-size: clamp(2.1rem, 3.4vw, 3.2rem);
}

.subscribe p {
  margin: 0.6rem 0 1rem;
  color: var(--ink-soft);
}

.subscribe .subscribe-cta {
  position: relative;
  overflow: hidden;
  min-width: min(420px, 96vw);
  height: 88px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(83, 63, 40, 0.12);
  transition:
    transform 220ms ease,
    box-shadow 260ms ease,
    background-color 260ms ease,
    border-color 260ms ease;
}

.subscribe .subscribe-cta:focus-visible {
  outline: 2px solid rgba(131, 101, 67, 0.65);
  outline-offset: 3px;
}

.subscribe .subscribe-cta-line {
  display: block;
  transition: transform 280ms ease, opacity 260ms ease;
  white-space: nowrap;
}

.subscribe .subscribe-cta-main {
  font-size: clamp(1rem, 1.55vw, 1.16rem);
}

.subscribe .subscribe-cta-price {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.76rem, 0.92vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b563f;
  opacity: 0;
  transform: translateY(120%);
}

@media (hover: hover) and (pointer: fine) {
  .subscribe .subscribe-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(83, 63, 40, 0.18);
    background: rgba(255, 252, 246, 0.98);
    border-color: rgba(162, 126, 82, 0.55);
  }

  .subscribe .subscribe-cta:hover .subscribe-cta-main {
    opacity: 0;
    transform: translateY(-120%);
  }

  .subscribe .subscribe-cta:hover .subscribe-cta-price {
    opacity: 1;
    transform: translateY(0);
  }
}

.subscribe .subscribe-cta:active {
  transform: translateY(-1px);
}

.member-access {
  margin-top: 1.45rem;
  padding: 2.1rem clamp(1.1rem, 2.7vw, 2rem);
  border-radius: 28px;
  border: 1px solid rgba(111, 94, 69, 0.12);
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.62), transparent 38%),
    linear-gradient(145deg, rgba(245, 240, 233, 0.82), rgba(233, 226, 215, 0.66));
}

.member-access h2 {
  margin: 0.42rem 0 0;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.member-access p {
  margin: 0.62rem 0 0;
  color: #5e5b55;
  max-width: 60ch;
  line-height: 1.6;
}

.member-access .text-link {
  margin-top: 1rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(122, 97, 68, 0.26);
  background: rgba(248, 243, 236, 0.7);
  box-shadow: 0 3px 12px rgba(58, 45, 30, 0.08);
  transition:
    transform 220ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease,
    background-color 240ms ease,
    color 240ms ease;
}

.member-access .text-link::after {
  transition: transform 220ms ease, opacity 220ms ease;
}

.member-access .text-link:focus-visible {
  outline: 2px solid rgba(21, 45, 72, 0.44);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .member-access .text-link:hover {
    transform: translateY(-2px);
    background: #132f4a;
    border-color: #132f4a;
    color: #f6efe3;
    box-shadow: 0 11px 22px rgba(19, 47, 74, 0.2);
  }

  .member-access .text-link:hover::after {
    transform: translateX(4px);
    opacity: 0.95;
  }
}

.site-footer {
  margin-top: 2.7rem;
  color: #e7eef7;
  background: #0d1b2a;
}

.footer-compliance {
  padding: 1.75rem 0 1.25rem;
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
  border-bottom: 1px solid rgba(170, 180, 195, 0.2);
}

.footer-brand-zone {
  display: grid;
  align-content: start;
  gap: 0.34rem;
}

.footer-brand-name {
  margin: 0;
  color: #c6a96b;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 0.98;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-brand-claim {
  margin: 0;
  color: #d5dfeb;
  font-size: 0.69rem;
  line-height: 1.36;
  max-width: 25ch;
}

.footer-support-email {
  margin-top: 0.64rem;
  text-decoration: none;
  color: #aab4c3;
  font-size: 0.63rem;
  letter-spacing: 0.015em;
}

.footer-support-email:hover {
  color: #c6a96b;
}

.footer-copyright {
  margin: 0.4rem 0 0;
  color: rgba(170, 180, 195, 0.88);
  font-size: 0.55rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.32rem;
}

.footer-column-title {
  margin: 0;
  color: #e2eaf4;
  font-size: 0.64rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-column a {
  text-decoration: none;
  color: #aab4c3;
  font-size: 0.67rem;
  line-height: 1.42;
  transition: color 160ms ease;
}

.footer-column a:hover {
  color: #c6a96b;
}

.footer-disclaimer {
  margin: 0;
  padding: 0.92rem clamp(0.9rem, 1.9vw, 1.6rem) 1.12rem;
  max-width: 100ch;
  color: rgba(170, 180, 195, 0.9);
  font-size: 0.62rem;
  line-height: 1.58;
}

.fade-target {
  opacity: 0;
  transform: translateY(24px) scale(0.995);
  transition: opacity 560ms ease, transform 560ms ease;
}

.fade-target.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 1050px) {
  .product-rail,
  .science-journal {
    grid-template-columns: 1fr;
  }

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

  .trust-metrics article:nth-child(odd) {
    border-left: 0;
  }

  .showcase-layout {
    grid-template-columns: 1fr;
  }

  .showcase-side {
    order: 3;
    grid-template-columns: 1fr;
  }

  .badge-track {
    animation-duration: 52s;
  }

  .stories-track {
    animation-duration: 58s;
  }

  .feature-card img {
    height: 270px;
  }

  .protocol-strip {
    gap: 0.9rem;
  }

  .science-journal {
    gap: 0.95rem;
  }

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

  .footer-brand-zone {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stories-track,
  .badge-track {
    animation: none;
  }

  .mobile-menu-toggle span {
    transition: none;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(1240px, calc(100% - 1rem));
  }

  .global-header {
    position: static;
  }

  .utility-bar,
  .nav-center {
    display: none;
  }

  .nav-grid {
    grid-template-columns: 1fr auto;
    min-height: 62px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: grid;
  }

  .mega-menu {
    display: none;
  }

  .logo-badge {
    font-size: 1.28rem;
    letter-spacing: 0.015em;
  }

  .main-nav .lang-select-wrap {
    display: none;
  }

  h1 {
    font-size: 1.9rem;
  }

  .hero-sub {
    max-width: 31ch;
    font-size: 0.86rem;
  }

  .trust-metrics {
    grid-template-columns: 1fr;
    padding: 0.8rem 0 1rem;
  }

  .trust-metrics article {
    border-left: 0;
    border-top: 0;
    min-height: 0;
    padding: 0.56rem 0.02rem 0.52rem;
  }

  .trust-metrics article:first-child {
    border-top: 0;
  }

  .trust-metrics h3 {
    font-size: 1.78rem;
  }

  .trust-metrics p {
    font-size: 0.76rem;
    max-width: 26ch;
  }

  .science-badges {
    padding: 0.92rem 0 1rem;
  }

  .science-badges h2 {
    letter-spacing: 0.16em;
    font-size: 1rem;
  }

  .badge-marquee {
    margin-top: 1.92rem;
  }

  .badge-track {
    gap: 0.95rem;
    animation-duration: 54s;
  }

  .badge-card {
    min-width: 124px;
    gap: 0.3rem;
  }

  .badge-img {
    width: 42px;
  }

  .badge-card p {
    font-size: 0.62rem;
    letter-spacing: 0.05em;
  }

  .phase-switch {
    width: 100%;
    gap: 0.34rem;
    border-radius: 18px;
  }

  .phase-btn {
    font-size: 0.63rem;
    letter-spacing: 0.01em;
    padding: 0.46rem 0.5rem;
  }

  .hero-actions {
    gap: 0.55rem;
    transform: translateY(-0.12rem);
    margin-top: 0.14rem;
  }

  .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
  }

  .subscribe .subscribe-cta {
    min-width: min(360px, 96vw);
    height: 74px;
  }

  .subscribe .subscribe-cta-main {
    font-size: 1.02rem;
  }

  .subscribe .subscribe-cta-price {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
  }

  .showcase-main-media {
    min-height: 280px;
  }

  .quote-band {
    padding: 1.9rem 0 2.2rem;
  }

  .quote-text {
    font-size: 1.8rem;
  }

  .protocol,
  .science-card,
  .journal-card,
  .member-access,
  .subscribe {
    padding: 1.3rem;
  }

  .protocol {
    padding: 1.5rem 1.3rem 1.35rem;
    border-radius: 24px;
  }

  .protocol-strip {
    margin-top: 0.9rem;
    grid-template-columns: 1fr;
    gap: 0.74rem;
  }

  .protocol-pill {
    min-height: auto;
    padding: 0.9rem 0.9rem 0.92rem;
  }

  .protocol-pill h3 {
    font-size: clamp(1.55rem, 9vw, 1.92rem);
  }

  .protocol-link {
    margin-top: 0.86rem;
  }

  .protocol-axis {
    font-size: 0.84rem;
  }

  .protocol-detail {
    font-size: 0.76rem;
    max-width: none;
  }

  .science-card,
  .journal-card {
    padding: 1.45rem 1.25rem 1.3rem;
    border-radius: 22px;
  }

  .footer-compliance {
    grid-template-columns: 1fr;
    gap: 0.95rem;
    padding: 1.2rem 0 0.9rem;
  }

  .footer-brand-name {
    font-size: 1.12rem;
    letter-spacing: 0.065em;
  }

  .footer-brand-claim {
    font-size: 0.63rem;
  }

  .footer-support-email {
    font-size: 0.58rem;
  }

  .footer-copyright {
    font-size: 0.52rem;
  }

  .footer-column {
    gap: 0.34rem;
  }

  .footer-column-title {
    letter-spacing: 0.17em;
    font-size: 0.6rem;
  }

  .footer-column a {
    font-size: 0.62rem;
  }

  .footer-disclaimer {
    margin: 0;
    padding: 0.72rem 0.8rem 0.96rem;
    font-size: 0.6rem;
  }
}
