:root {
  color-scheme: light;
  --page: #fbfafc;
  --surface: #ffffff;
  --primary: #4a237a;
  --surface-soft: #f1ecf7;
  --ink: #1f1830;
  --muted: #696174;
  --line: #e7e0ec;
  --brand-gold: #c7a45a;
  --warning: #713c19;
  --focus: #4a237a;
  --max-width: 1200px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--page);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 280px;
  min-height: 100vh;
  margin: 0;
  background: var(--page);
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header,
.site-footer {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header {
  position: sticky;
  z-index: 5;
  top: 0;
  min-height: 4.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(74, 35, 122, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 100vmax rgba(255, 255, 255, 0.96);
  clip-path: inset(0 -100vmax);
  backdrop-filter: blur(16px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.header-brand-picture {
  display: block;
  flex: 0 0 auto;
  line-height: 0;
}

.header-brand-logo {
  display: block;
  width: auto;
  height: 3.75rem;
  max-width: 100%;
  flex: 0 0 auto;
  background: #000000;
  object-fit: contain;
}

.brand-logo {
  display: block;
  width: 2.5rem;
  height: auto;
  flex: 0 0 auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
}

.brand-name {
  white-space: nowrap;
}

.channel-label,
.site-footer {
  color: var(--muted);
  font-size: 0.82rem;
}

.channel-label {
  font-weight: 700;
}

.site-nav,
.nav-links {
  display: flex;
  align-items: center;
}

.site-nav {
  min-width: 0;
  gap: 1.5rem;
}

.nav-links {
  gap: clamp(1rem, 2.5vw, 2rem);
}

.nav-links a {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  padding: 0.72rem 1rem;
  border-radius: 0.7rem;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 750;
  text-decoration: none;
}

main {
  width: 100%;
  flex: 1;
}

.hero {
  width: min(100% - 2rem, var(--max-width));
  min-height: min(650px, calc(100vh - 7rem));
  margin: 2rem auto 0;
  padding: clamp(2.5rem, 5vw, 4.75rem);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(30rem, 1.05fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: clamp(1.5rem, 3vw, 2rem);
  background: var(--surface);
  box-shadow: 0 1.25rem 3.5rem rgba(49, 29, 69, 0.08);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  flex: 0 0 auto;
  background: var(--brand-gold);
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 15ch;
  margin-bottom: 1.4rem;
  color: var(--ink);
  font-size: clamp(2.65rem, 5vw, 4.5rem);
  font-weight: 760;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.lede {
  max-width: 35rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  line-height: 1.7;
}

.cta-group {
  display: grid;
  gap: 1rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.primary-cta,
.secondary-cta,
.final-cta-link,
.consent-button,
.secondary-button {
  min-height: 3rem;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  font-weight: 750;
}

.primary-cta,
.secondary-cta,
.final-cta-link {
  text-decoration: none;
}

.primary-cta,
.secondary-cta,
.consent-button,
.secondary-button {
  cursor: pointer;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  min-width: 10.5rem;
  padding: 0.9rem 1.2rem;
  background: var(--primary);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 0.7rem 1.75rem rgba(74, 35, 122, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.2rem;
  border-color: rgba(74, 35, 122, 0.24);
  background: #ffffff;
  color: var(--primary);
}

.primary-cta:hover,
.secondary-cta:hover {
  transform: translateY(-2px);
}

.primary-cta:hover {
  box-shadow: 0 0.9rem 2rem rgba(74, 35, 122, 0.24);
}

.secondary-cta:hover {
  background: var(--surface-soft);
}

.cta-status {
  max-width: 28rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.cta-status[data-available="false"] {
  width: fit-content;
  padding: 0.55rem 0.7rem;
  border-radius: 0.65rem;
  background: var(--surface-soft);
  color: var(--primary);
  font-weight: 650;
}

.product-count {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.product-count strong {
  color: var(--ink);
  font-weight: 750;
}

.hero-products {
  min-width: 0;
  margin: 0;
  padding: 0.85rem;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-template-rows: repeat(2, minmax(10.5rem, 1fr));
  gap: 0.75rem;
  border-radius: 1.5rem;
  background: var(--surface-soft);
}

.hero-product {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(74, 35, 122, 0.08);
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 0.45rem 1.2rem rgba(49, 29, 69, 0.08);
}

.hero-product-featured {
  grid-row: 1 / 3;
}

.hero-product img,
.product-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-product figcaption {
  position: absolute;
  right: 0.55rem;
  bottom: 0.55rem;
  left: 0.55rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 750;
  text-align: center;
  backdrop-filter: blur(8px);
}

.funnel-path {
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  list-style: none;
}

.funnel-path li {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.funnel-path li:not(:last-child)::after {
  content: "→";
  color: var(--brand-gold);
}

.contact-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 1rem 3rem rgba(15, 23, 42, 0.2);
}

.contact-card::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 11rem;
  height: 11rem;
  border: 1px solid rgba(79, 70, 229, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.card-index {
  display: block;
  margin-bottom: 3.5rem;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  font-variant-numeric: tabular-nums;
}

.contact-card h2 {
  max-width: 11ch;
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.04em;
}

.steps {
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  display: grid;
  grid-template-columns: 1.8rem 1fr;
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.5;
  counter-increment: step;
}

.steps li::before {
  content: "0" counter(step);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 850;
}

.card-note {
  margin: 0;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
}

.principles {
  width: min(100% - 2rem, var(--max-width));
  margin: 1.5rem auto clamp(4rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.principles article {
  min-height: 10rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-top: 4px solid var(--primary);
  border-radius: 1rem;
  background: var(--surface);
  box-shadow: 0 0.4rem 1.5rem rgba(15, 23, 42, 0.07);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.principles article:nth-child(2) {
  border-top-color: var(--primary);
}

.principles article:nth-child(3) {
  border-top-color: var(--brand-gold);
}

.principles article:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.8rem 2rem rgba(15, 23, 42, 0.1);
}

.principles span {
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.principles p {
  max-width: 28ch;
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.section-shell {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto clamp(6rem, 9vw, 7rem);
}

.product-section {
  padding-top: clamp(6rem, 9vw, 7rem);
}

.section-heading {
  max-width: 45rem;
  margin-bottom: clamp(2.25rem, 4vw, 3.25rem);
}

.section-heading h2,
.assurance-copy h2,
.final-cta h2 {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 740;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.section-heading > p:last-child,
.assurance-copy > p:last-child,
.final-cta p {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.8rem;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  flex: 0 0 auto;
  background: var(--brand-gold);
}

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

.product-card {
  min-width: 0;
  min-height: 35rem;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: var(--surface);
  box-shadow: 0 0.7rem 2.25rem rgba(49, 29, 69, 0.07);
}

.product-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.product-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.product-image-frame {
  height: 20rem;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--surface-soft);
}

.card-label {
  display: inline-grid;
  min-width: 2.3rem;
  width: fit-content;
  height: 2.3rem;
  padding-inline: 0.55rem;
  place-items: center;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-card h3,
.info-card h3,
.certification-card h3 {
  margin: 1.45rem 0 0.65rem;
  color: var(--ink);
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.product-card p,
.info-card p,
.certification-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.product-card .card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3rem;
  margin-top: auto;
  padding: 0.8rem 1rem;
  border-radius: 0.75rem;
  background: var(--primary);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 750;
  text-align: center;
  transition: background 160ms ease, transform 160ms ease;
}

.product-card .card-link:hover {
  background: #39165f;
  transform: translateY(-2px);
}

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

.info-card {
  min-width: 0;
  min-height: 15rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--surface);
}

.how-to-buy-section {
  padding: clamp(2.5rem, 5vw, 4.5rem);
  border-radius: 1.75rem;
  background: var(--surface-soft);
}

.order-grid .info-card {
  border-color: rgba(74, 35, 122, 0.08);
  box-shadow: 0 0.5rem 1.6rem rgba(49, 29, 69, 0.05);
}

.assurance-section {
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  border-radius: 1.75rem;
  background: var(--surface-soft);
}

.certification-card {
  min-width: 0;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  border: 1px solid rgba(74, 35, 122, 0.12);
  border-radius: 1rem;
  background: #ffffff;
}

.certification-mark {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.certification-card h3 {
  margin-top: 0.7rem;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.faq-section .section-heading {
  position: sticky;
  top: 6rem;
  margin-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 1.25rem 2.5rem 1.25rem 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.faq-list details[open] summary {
  color: var(--primary);
}

.faq-list p {
  max-width: 42rem;
  margin: 0;
  padding: 0 1rem 1.3rem 0;
  color: var(--muted);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.final-cta {
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  border-radius: 1.75rem;
  background: var(--primary);
  box-shadow: 0 1rem 3rem rgba(74, 35, 122, 0.18);
}

.final-cta .section-kicker {
  color: #ffffff;
}

.final-cta h2,
.final-cta p {
  color: #ffffff;
}

.final-cta p {
  color: #eee8f4;
}

.final-cta-link {
  min-width: 12rem;
  padding: 0.9rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: var(--primary);
  text-align: center;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-logo {
  width: 2.35rem;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.text-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.consent-panel {
  position: fixed;
  z-index: 10;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  width: min(calc(100% - 2rem), 52rem);
  max-height: calc(100vh - 2rem);
  margin-left: auto;
  padding: clamp(1.25rem, 3vw, 2rem);
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.25rem;
  background: rgba(31, 24, 48, 0.98);
  color: #ffffff;
  box-shadow: 0 1.5rem 5rem rgba(31, 24, 48, 0.32);
  backdrop-filter: blur(16px);
}

.consent-panel .eyebrow {
  color: #ffffff;
}

.consent-panel h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.consent-panel p:not(.eyebrow) {
  max-width: 54rem;
  color: #eee8f4;
  line-height: 1.55;
}

.consent-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

.consent-button,
.secondary-button {
  padding: 0.75rem 1.15rem;
}

.consent-button {
  background: #ffffff;
  color: var(--primary);
}

.secondary-button {
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
  color: #ffffff;
}

.noscript-message {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1rem;
  border: 1px solid var(--brand-gold);
  border-radius: 0.8rem;
  background: #ffffff;
  color: var(--warning);
  text-align: center;
}

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

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 44rem;
  }

  .hero-products {
    min-height: 27rem;
  }

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

  .product-card,
  .product-card:nth-child(4),
  .product-card:nth-child(5) {
    grid-column: auto;
  }

  .product-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 1rem);
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .site-header,
  .site-footer,
  .hero,
  .principles,
  .section-shell {
    width: min(100% - 1.25rem, var(--max-width));
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    margin-top: 0.75rem;
    padding: 2.75rem clamp(1.25rem, 6vw, 2.5rem);
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 4.2rem);
  }

  .product-grid,
  .info-grid,
  .assurance-section,
  .faq-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 32rem;
  }

  .product-card,
  .product-card:last-child,
  .product-card:nth-child(4),
  .product-card:nth-child(5) {
    width: 100%;
    grid-column: auto;
  }

  .info-card {
    min-height: auto;
  }

  .faq-section .section-heading {
    position: static;
  }

  .final-cta-link {
    width: fit-content;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .site-header {
    position: static;
    align-items: center;
  }

  .header-brand-logo {
    width: auto;
    height: 2.875rem;
    object-fit: contain;
  }

  .brand-logo {
    width: 2.25rem;
  }

  .hero {
    border-radius: 1.25rem;
  }

  .hero-products {
    min-height: 34rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(9rem, 1fr));
  }

  .hero-product-featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .card-index {
    margin-bottom: 2rem;
  }

  .cta-group,
  .cta-actions,
  .primary-cta,
  .secondary-cta,
  .consent-actions {
    width: 100%;
  }

  .primary-cta,
  .secondary-cta,
  .final-cta-link {
    width: 100%;
  }

  .product-image-frame {
    height: 18rem;
  }

  .consent-actions {
    flex-direction: column-reverse;
  }

  .consent-button,
  .secondary-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
