:root {
  --ink: #12231c;
  --muted: #66746e;
  --line: #e3e8e4;
  --paper: #f7f8f4;
  --green: #15563b;
  --green-2: #2f7a54;
  --gold: #c79a4b;
  --wine: #8d4550;
  --blue: #2f637d;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(20, 45, 34, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 13px clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(12, 13, 10, 0.92), rgba(22, 24, 18, 0.86));
  border-bottom: 1px solid rgba(199, 154, 75, 0.24);
  backdrop-filter: blur(16px);
}

.site-header > .brand,
.site-header > .site-nav,
.site-header > .language-switch {
  min-width: 0;
}

@media (min-width: 1280px) {
  .site-header {
    grid-template-columns: 220px minmax(520px, 760px) 220px;
    justify-content: center;
  }

  .site-header > .brand {
    transform: translateX(-42px);
  }

  .site-header > .language-switch {
    position: fixed;
    top: 13px;
    right: clamp(20px, 5vw, 72px);
    justify-self: auto;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: inline-block;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: url("assets/daoviva-mark.svg") center/contain no-repeat;
  box-shadow: 0 10px 24px rgba(199, 154, 75, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--gold);
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0.8px;
  line-height: 1.1;
  text-shadow: 0 10px 28px rgba(199, 154, 75, 0.18);
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.3px;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(34px, 3vw, 48px);
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.language-switch {
  margin-left: 0;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 0;
}

.nav-link:hover,
.nav-link.active,
.nav-group.open > .nav-link {
  color: var(--gold);
}

.nav-link.active::after,
.nav-group.open > .nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}

.nav-group {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 40;
  display: none;
  width: max-content;
  min-width: 260px;
  max-width: 360px;
  transform: translateX(-50%);
  border: 1px solid rgba(199, 154, 75, 0.22);
  border-radius: 8px;
  background: rgba(17, 18, 14, 0.98);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.nav-group.open .nav-dropdown {
  display: block;
}

.nav-dropdown a {
  display: block;
  padding: 13px 17px;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}

.dropdown-section {
  padding: 8px 0;
}

.dropdown-section + .dropdown-section {
  border-top: 1px solid var(--line);
}

.dropdown-section > span {
  display: block;
  padding: 8px 17px 5px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mega-product-menu {
  display: none;
  grid-template-columns: 150px minmax(250px, 1fr);
  min-width: 520px;
  max-width: 620px;
  max-height: min(76vh, 680px);
  padding: 0;
  overflow: auto;
}

.nav-group.open .mega-product-menu {
  display: grid;
}

.mega-menu-categories {
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(199, 154, 75, 0.18);
}

.mega-category {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 13px 14px;
  text-align: left;
}

.mega-category::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.45;
}

.mega-category:hover,
.mega-category.active {
  background: rgba(199, 154, 75, 0.14);
  box-shadow: none;
}

.mega-category.active {
  color: var(--gold);
}

.mega-category + .mega-category {
  margin-top: 4px;
}

.mega-menu-products {
  padding: 14px;
}

.mega-product-group {
  display: none;
  padding: 4px;
}

.mega-product-group.active {
  display: block;
}

.mega-product-group > span {
  display: block;
  padding: 8px 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mega-product-group a {
  border-radius: 8px;
  white-space: normal;
  line-height: 1.35;
}

.mega-product-group .mega-view-all {
  margin-top: 6px;
  color: var(--gold);
  font-weight: 800;
}

.nav-dropdown a:hover,
.nav-dropdown a.active {
  background: rgba(199, 154, 75, 0.12);
  color: var(--gold);
}

.language-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid rgba(199, 154, 75, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.language-switch button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font: inherit;
  padding: 7px 12px;
}

.language-switch button.active {
  background: var(--gold);
  color: #15110a;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  padding: 128px clamp(20px, 6vw, 86px) 64px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-image: var(--slide-image);
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 1800ms ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 42%, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(7, 19, 14, 0.88) 0%, rgba(8, 23, 17, 0.64) 48%, rgba(8, 23, 17, 0.28) 100%),
    linear-gradient(0deg, rgba(8, 23, 17, 0.56), transparent 50%);
}

.hero-content,
.hero-panel,
.hero-product-showcase {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 820px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.2;
}

.hero-content p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.6vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 800;
}

.primary-action {
  background: var(--white);
  color: var(--green);
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.54);
  color: var(--white);
}

.hero-panel {
  align-self: end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.hero-panel span,
.hero-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.hero-panel strong {
  display: block;
  margin: 8px 0;
  font-size: 38px;
  line-height: 1;
}

.hero-product-showcase {
  align-self: end;
  color: var(--white);
}

.hero-product-card {
  position: relative;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.09)),
    rgba(12, 25, 19, 0.32);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.hero-product-card::before {
  content: "";
  position: absolute;
  right: -22%;
  bottom: -30%;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(199, 154, 75, 0.25);
}

.hero-product-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 22px 26px rgba(0, 0, 0, 0.34));
}

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

.hero-product-meta span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero-product-meta strong {
  display: block;
  color: var(--white);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.08;
}

.hero-product-meta p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.hero-scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.hero-scope-grid a {
  min-height: 116px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-scope-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-scope-grid strong {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.35;
}

.hero-proof-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.hero-proof-list span {
  display: block;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.slide-dots {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}

.slide-dots button {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
}

.slide-dots button.active {
  background: var(--white);
}

.quick-products {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1180px;
  margin: -44px auto 0;
  padding: 0 clamp(16px, 3vw, 24px);
}

.quick-products a {
  min-height: 118px;
  padding: 24px;
  border-right: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quick-products a:first-child {
  border-radius: 8px 0 0 8px;
}

.quick-products a:last-child {
  border-right: 0;
  border-radius: 0 8px 8px 0;
}

.quick-products span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
}

.quick-products strong {
  display: block;
  color: var(--ink);
  line-height: 1.25;
}

.section,
.media-band {
  padding: clamp(64px, 8vw, 104px) clamp(20px, 6vw, 86px);
  scroll-margin-top: 92px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 104px clamp(20px, 6vw, 86px) 0;
  background: var(--white);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--green);
}

.breadcrumb a::after {
  content: "/";
  margin-left: 8px;
  color: var(--muted);
}

.breadcrumb span {
  color: var(--ink);
}

.supporting-material-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(20px, 6vw, 86px);
  border-bottom: 1px solid var(--line);
  background: #f7f8f4;
}

.supporting-material-note span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.supporting-material-note p {
  max-width: 980px;
  margin: 0;
  color: var(--muted);
}

.supporting-material-note a {
  flex: 0 0 auto;
  border: 1px solid rgba(21, 86, 59, 0.24);
  border-radius: 999px;
  color: var(--green);
  font-weight: 900;
  padding: 10px 16px;
}

.breadcrumb + .product-hero,
.breadcrumb + .tea-hero,
.breadcrumb + .oct-hero {
  padding-top: 50px;
}

.supporting-material-note + .oct-hero,
.supporting-material-note + .extract-hero {
  padding-top: 64px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.centered {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.wide-copy,
.section-heading p,
.product-card p,
.split-content p,
.value-grid p,
.media-copy p,
.mission-panel p,
.site-footer p {
  color: var(--muted);
}

.wide-copy {
  font-size: 19px;
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 44px;
  align-items: center;
}

.refined-intro-section {
  background: var(--white);
}

.refined-intro-section .section-heading {
  max-width: 920px;
}

.refined-intro-layout {
  align-items: stretch;
}

.image-tile {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-tile img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.feature-row article {
  min-height: 200px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcf8;
}

.refined-capability-row article {
  background: var(--white);
  box-shadow: 0 14px 34px rgba(20, 45, 34, 0.06);
}

.feature-row span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--gold);
  font-weight: 900;
}

.media-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 42px;
  align-items: center;
  background: #10241b;
  color: var(--white);
}

.refined-media-band {
  background:
    linear-gradient(115deg, #10241b 0%, #1b382c 62%, #203029 100%);
}

.science-led-hero .hero-content {
  max-width: 700px;
}

.science-led-hero h1 {
  font-size: clamp(54px, 7vw, 96px);
  color: var(--gold);
  text-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.science-led-hero {
  grid-template-columns: minmax(520px, 720px) minmax(520px, 700px);
  justify-content: center;
  gap: clamp(24px, 3vw, 48px);
  min-height: clamp(720px, 84vh, 880px);
  padding-bottom: 96px;
}

.science-led-hero .hero-product-showcase {
  width: 100%;
}

.science-led-hero .hero-product-card {
  grid-template-columns: 190px minmax(0, 1fr);
  min-height: 330px;
  padding: 30px;
  background:
    radial-gradient(circle at 24% 52%, rgba(199, 154, 75, 0.24), transparent 34%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.1)),
    rgba(12, 25, 19, 0.42);
}

.science-led-hero .hero-product-card img {
  max-height: 300px;
}

.science-led-hero .hero-scope-grid a {
  min-height: 140px;
  padding: 20px;
}

.home-principles-section {
  background:
    linear-gradient(180deg, #fffaf0 0%, #f7f8f4 100%);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1480px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
}

.principle-grid article {
  min-height: 240px;
  padding: 32px;
  border: 1px solid rgba(199, 154, 75, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 240, 0.96));
  box-shadow: 0 16px 42px rgba(20, 45, 34, 0.07);
}

.principle-grid span,
.story-facts span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.principle-grid span {
  margin-bottom: 36px;
}

.principle-grid p,
.daoviva-story-copy p {
  color: var(--muted);
}

.daoviva-story-section {
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(420px, 0.92fr);
  align-items: stretch;
  background: #10241b;
  color: var(--white);
}

.daoviva-story-image {
  min-height: 620px;
  background:
    radial-gradient(circle at center, rgba(199, 154, 75, 0.22), transparent 58%),
    #101812;
}

.daoviva-story-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: contain;
  padding: clamp(28px, 5vw, 72px);
}

.daoviva-story-copy {
  display: grid;
  align-content: center;
  padding: clamp(52px, 7vw, 92px) clamp(24px, 6vw, 86px);
}

.daoviva-story-copy h2 {
  max-width: 720px;
}

.daoviva-story-copy p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.74);
}

.story-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 30px;
}

.story-facts span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  text-transform: none;
}

.home-foundation-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  padding: clamp(64px, 7vw, 96px) clamp(20px, 6vw, 86px);
  background:
    radial-gradient(circle at 78% 28%, rgba(199, 154, 75, 0.18), transparent 32%),
    linear-gradient(110deg, #11110d, #16241b 58%, #261f12);
  color: var(--white);
}

.home-foundation-copy {
  max-width: 620px;
}

.home-foundation-copy h2 {
  color: var(--gold);
}

.home-foundation-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
}

.home-foundation-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(199, 154, 75, 0.24);
  border-radius: 8px;
  background: rgba(199, 154, 75, 0.24);
}

.home-foundation-list a {
  min-height: 210px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.07);
}

.home-foundation-list span,
.home-foundation-list strong,
.home-foundation-list small {
  display: block;
}

.home-foundation-list span {
  margin-bottom: 46px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.home-foundation-list strong {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 25px;
}

.home-foundation-list small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.6;
}

.media-copy {
  max-width: 560px;
}

.media-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.video-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.video-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 36, 27, 0.38), transparent 55%);
}

.play-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 74px;
  height: 74px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.play-mark::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 30px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 18px solid var(--green);
}

.products-section {
  background: var(--paper);
}

.home-products-section {
  background:
    linear-gradient(180deg, #f7f8f4 0%, #ffffff 100%);
}

.home-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 18px;
  align-items: stretch;
  max-width: 1480px;
  margin-right: auto;
  margin-left: auto;
}

.home-featured-product,
.home-product-side a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(20, 45, 34, 0.08);
  overflow: hidden;
}

.home-featured-product {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
}

.home-featured-product img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.home-featured-product div {
  display: grid;
  align-content: center;
  padding: clamp(30px, 4vw, 56px);
}

.home-featured-product span,
.home-product-side span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-featured-product h3 {
  max-width: 520px;
  color: var(--green);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
}

.home-featured-product p,
.home-product-side small {
  color: var(--muted);
}

.home-product-side {
  display: grid;
  gap: 18px;
}

.home-product-side a {
  display: flex;
  min-height: 200px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}

.home-product-side strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.25;
}

.home-product-side small {
  font-size: 15px;
  line-height: 1.65;
}

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

.daoviva-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: stretch;
  margin-bottom: 24px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  scroll-margin-top: 100px;
}

.daoviva-visual {
  position: relative;
  min-height: 520px;
  background: #dde8df;
}

.daoviva-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.daoviva-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 35, 28, 0.58), transparent 58%);
}

.product-label {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.product-label span,
.product-label small {
  display: block;
  color: rgba(255, 255, 255, 0.76);
}

.product-label strong {
  display: block;
  margin: 8px 0 4px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
}

.daoviva-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 58px);
}

.daoviva-copy h3 {
  font-size: clamp(28px, 3.4vw, 44px);
}

.product-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.product-facts div {
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbf7;
}

.product-facts span,
.product-facts strong {
  display: block;
}

.product-facts span {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
}

.product-facts strong {
  color: var(--green);
  line-height: 1.25;
}

.daoviva-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 18px 0 58px;
}

.info-panel {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.info-panel ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.guide-panel {
  background: #fffaf0;
  border-color: rgba(199, 154, 75, 0.28);
}

.compact-heading {
  margin-top: 10px;
  margin-bottom: 24px;
}

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

.product-category-label {
  grid-column: 1 / -1;
  margin: 18px 0 4px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.standalone-label {
  margin-top: 6px;
  margin-bottom: 14px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(20, 45, 34, 0.08);
  scroll-margin-top: 100px;
}

.product-card.featured {
  grid-column: span 2;
}

.product-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.product-card.featured img {
  height: 300px;
}

.product-card-body {
  padding: 24px;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--green);
  font-weight: 900;
}

.text-link::after {
  content: "";
  width: 26px;
  height: 1px;
  margin: 13px 0 0 10px;
  background: currentColor;
}

.prominent-link {
  margin-top: 18px;
  margin-bottom: 4px;
}

.product-hero {
  display: grid;
  min-height: 860px;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  padding: 132px clamp(20px, 6vw, 86px) 72px;
  background: linear-gradient(135deg, #f7faf6 0%, #ffffff 54%, #edf4ee 100%);
}

.product-hero-copy {
  max-width: 720px;
}

.product-hero-copy h1 {
  color: var(--green);
}

.product-hero-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 20px;
}

.product-hero-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-hero-image img {
  width: 100%;
  height: min(62vh, 560px);
  min-height: 360px;
  object-fit: cover;
}

.daoviva-page-hero {
  background:
    radial-gradient(circle at 78% 30%, rgba(199, 154, 75, 0.18), transparent 34%),
    linear-gradient(135deg, #050706 0%, #102018 52%, #1d1209 100%);
  color: var(--white);
}

.lead {
  color: var(--gold);
  font-size: 24px;
  font-weight: 800;
}

.daoviva-page-hero .product-hero-copy h1 {
  color: var(--gold);
}

.daoviva-page-hero .product-hero-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.daoviva-page-hero .product-hero-image {
  border: 1px solid rgba(199, 154, 75, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.daoviva-page-hero .product-hero-image img {
  object-fit: contain;
  background: radial-gradient(circle at center, rgba(199, 154, 75, 0.14), transparent 64%);
}

.daoviva-packshot {
  display: grid;
  min-height: 620px;
  place-items: center;
  padding: clamp(22px, 4vw, 50px);
}

.daoviva-packshot img {
  height: auto;
  max-height: 620px;
  min-height: 0;
}

.product-actions .primary-action {
  background: var(--gold);
  color: #161006;
}

.product-actions .secondary-action {
  border-color: rgba(199, 154, 75, 0.44);
  color: var(--gold);
}

.simple-product-hero {
  min-height: 760px;
}

.product-detail-section {
  background: var(--paper);
}

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

.large-panel {
  grid-column: span 2;
}

.product-story-section {
  background: #0f1712;
  color: var(--white);
}

.product-story-section .story-copy p:not(.eyebrow),
.product-story-section .product-facts span {
  color: rgba(255, 255, 255, 0.72);
}

.product-story-section .product-facts div {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(199, 154, 75, 0.22);
}

.product-story-section .product-facts strong {
  color: var(--gold);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 46px;
  align-items: center;
}

.story-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-image img {
  width: 100%;
  height: 520px;
  min-height: 0;
  object-fit: cover;
}

.product-display-image {
  display: grid;
  min-height: 520px;
  place-items: center;
  background: #121914;
}

.product-display-image img {
  height: auto;
  max-height: 520px;
  object-fit: contain;
  background: radial-gradient(circle at center, rgba(199, 154, 75, 0.13), transparent 66%);
}

.story-copy {
  max-width: 760px;
}

.reverse-layout .story-copy {
  order: 1;
}

.reverse-layout .story-image {
  order: 2;
}

.daoviva-promise-section {
  background: #f7faf6;
}

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

.promise-grid article {
  min-height: 230px;
  padding: 0 0 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.promise-grid img {
  width: 100%;
  height: 210px;
  margin-bottom: 24px;
  object-fit: cover;
}

.promise-grid strong {
  display: block;
  margin: 0 26px 22px;
  color: var(--gold);
  font-size: 28px;
}

.promise-grid h3,
.promise-grid p {
  margin-right: 26px;
  margin-left: 26px;
}

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

.benefit-grid article {
  min-height: 220px;
  padding: 26px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.refined-benefits article {
  position: relative;
  min-height: 250px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,251,247,0.96));
}

.refined-benefits span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--gold);
  font-size: 30px;
  font-weight: 900;
}

.target-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(18, 35, 28, 0.9), rgba(18, 35, 28, 0.64)),
    url("assets/daoviva-lifestyle.svg") center/cover;
  color: var(--white);
}

.target-copy {
  max-width: 620px;
}

.target-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.target-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.target-list span {
  min-height: 92px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  font-weight: 800;
}

.usage-section {
  background: #10241b;
}

.usage-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: center;
  color: var(--white);
}

.usage-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
  font-size: 19px;
}

.usage-card img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.science-section {
  background: var(--paper);
}

.ingredients-showcase {
  background: #f8fbf7;
}

.ingredients-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 42px;
  align-items: stretch;
}

.ingredients-copy {
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.ingredient-grid span {
  min-height: 92px;
  padding: 16px;
  border: 1px solid #e5ece6;
  border-radius: 8px;
  background: #fbfcf8;
}

.ingredient-grid strong,
.ingredient-grid small {
  display: block;
}

.ingredient-grid strong {
  color: var(--green);
  font-size: 18px;
}

.ingredient-grid small {
  margin-top: 6px;
  color: var(--muted);
}

.ingredients-image {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #101812;
  box-shadow: var(--shadow);
}

.ingredients-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

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

.disclaimer-section {
  padding-top: 34px;
  padding-bottom: 34px;
  background: #fffaf0;
}

.disclaimer-section p {
  max-width: 1100px;
  margin: 0 auto;
  color: #7b6540;
  font-size: 14px;
}

.origin-daoviva-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  min-height: 700px;
  padding: 142px clamp(20px, 6vw, 86px) 78px;
  background:
    radial-gradient(circle at 78% 44%, rgba(202, 156, 73, 0.22), transparent 34%),
    linear-gradient(118deg, #080908 0%, #171510 48%, #33270f 100%);
  color: var(--white);
  overflow: hidden;
}

.origin-daoviva-hero::after {
  content: "";
  position: absolute;
  right: -14vw;
  bottom: -30vw;
  width: 58vw;
  height: 58vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202, 156, 73, 0.2), transparent 62%);
  pointer-events: none;
}

.origin-daoviva-copy,
.origin-daoviva-product {
  position: relative;
  z-index: 1;
}

.origin-daoviva-logo {
  width: min(280px, 62vw);
  margin-bottom: 30px;
}

.origin-kicker,
.origin-section-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.origin-daoviva-copy h1 {
  color: var(--white);
  font-size: clamp(70px, 10vw, 148px);
  line-height: 0.9;
}

.origin-lead {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.85;
}

.origin-hero-actions,
.origin-ritual-box div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.origin-hero-actions a,
.origin-ritual-box a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid rgba(205, 162, 83, 0.55);
  border-radius: 999px;
  background: rgba(205, 162, 83, 0.12);
  color: var(--white);
  font-weight: 900;
}

.origin-hero-actions a:first-child,
.origin-ritual-box a:first-child {
  background: var(--gold);
  color: #15110a;
}

.origin-daoviva-product {
  display: grid;
  min-height: 480px;
  place-items: center;
  border: 1px solid rgba(205, 162, 83, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at center, rgba(205, 162, 83, 0.26), transparent 46%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.26);
}

.origin-daoviva-product img {
  max-height: 540px;
  object-fit: contain;
  filter: drop-shadow(0 28px 46px rgba(0, 0, 0, 0.44));
}

.origin-daoviva-statbar strong,
.origin-daoviva-statbar small,
.origin-about-card strong,
.origin-about-card span {
  display: block;
}

.origin-daoviva-statbar strong {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: clamp(22px, 2.4vw, 34px);
}

.origin-daoviva-statbar small {
  color: rgba(255, 255, 255, 0.68);
}

.origin-daoviva-about,
.origin-daoviva-ingredients,
.origin-daoviva-audience,
.origin-daoviva-ritual {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.8fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(72px, 8vw, 118px) clamp(20px, 6vw, 86px);
}

.origin-daoviva-about,
.origin-daoviva-audience {
  background: #fbfaf6;
}

.origin-daoviva-ingredients {
  background: var(--white);
}

.origin-daoviva-about p:not(.origin-section-label),
.origin-daoviva-ingredients p:not(.origin-section-label),
.origin-daoviva-ritual p:not(.origin-section-label) {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.origin-about-card {
  padding: 26px;
  border: 1px solid rgba(205, 162, 83, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 28%, rgba(205, 162, 83, 0.26), transparent 42%),
    linear-gradient(160deg, #15120d 0%, #2b210f 62%, #4a3511 100%);
  box-shadow: 0 28px 64px rgba(35, 31, 21, 0.22);
}

.origin-about-card img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.36));
}

.origin-about-card strong {
  margin-top: 18px;
  color: var(--gold);
  font-size: 22px;
}

.origin-about-card span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
}

.origin-image-panel {
  overflow: hidden;
  border-radius: 8px;
  background: #11100d;
}

.origin-image-panel img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.origin-ingredient-list,
.origin-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.origin-ingredient-list span,
.origin-audience-grid span {
  min-height: 54px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcf8;
  color: var(--ink);
  font-weight: 800;
}

.origin-daoviva-benefits {
  padding: clamp(72px, 8vw, 118px) clamp(20px, 6vw, 86px);
  background:
    linear-gradient(180deg, #fbfaf6, #ffffff);
  color: var(--ink);
}

.origin-daoviva-benefits h2 {
  color: var(--green);
}

.origin-daoviva-benefits .section-heading p {
  color: var(--gold);
}

.origin-benefit-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
  margin-top: 42px;
}

.origin-benefit-layout img {
  width: 100%;
  max-height: 560px;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(205, 162, 83, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.98), rgba(255, 255, 255, 0.92));
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.32);
  object-fit: contain;
}

.origin-benefit-list {
  display: grid;
  gap: 12px;
}

.origin-benefit-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 86px;
  padding: 18px;
  border: 1px solid rgba(199, 154, 75, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(20, 45, 34, 0.06);
}

.origin-benefit-list span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #17120a;
  font-size: 18px;
  font-weight: 900;
}

.origin-benefit-list p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.origin-daoviva-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #17130e;
}

.origin-daoviva-gallery img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.origin-daoviva-evidence {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(72px, 8vw, 118px) clamp(20px, 6vw, 86px);
  background:
    linear-gradient(180deg, #ffffff, #fbfaf4);
  color: var(--ink);
}

.origin-daoviva-evidence p:not(.origin-section-label) {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.origin-report-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  margin-top: 22px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--gold);
  color: #15120d;
  font-weight: 900;
}

.origin-evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.origin-evidence-grid article {
  min-height: 280px;
  padding: 26px;
  border: 1px solid rgba(205, 162, 83, 0.34);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(20, 45, 34, 0.07);
}

.origin-evidence-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: #15120d;
  font-weight: 900;
}

.origin-evidence-grid h3 {
  color: var(--green);
}

.origin-evidence-grid p {
  color: var(--muted);
}

.origin-evidence-grid a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  margin-top: 16px;
  padding: 0 18px;
  border-radius: 999px;
  background: #15120d;
  color: var(--gold);
  font-weight: 900;
}

.origin-daoviva-ritual {
  background:
    linear-gradient(rgba(11, 18, 13, 0.74), rgba(11, 18, 13, 0.74)),
    url("https://cellflora.com/wp-content/uploads/2026/04/product-use.webp") center/cover;
  color: var(--white);
}

.origin-daoviva-usage {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(72px, 8vw, 118px) clamp(20px, 6vw, 86px);
  background:
    radial-gradient(circle at 80% 30%, rgba(199, 154, 75, 0.18), transparent 34%),
    linear-gradient(120deg, #11100d, #241b0e);
  color: var(--white);
  scroll-margin-top: 92px;
}

.origin-usage-copy h2 {
  color: var(--gold);
}

.origin-usage-copy p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.origin-usage-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.origin-usage-steps article {
  min-height: 168px;
  padding: 22px;
  border: 1px solid rgba(199, 154, 75, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.origin-usage-steps span,
.origin-usage-steps strong,
.origin-usage-steps small {
  display: block;
}

.origin-usage-steps span {
  margin-bottom: 28px;
  color: var(--gold);
  font-weight: 900;
}

.origin-usage-steps strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 22px;
}

.origin-usage-steps small {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.origin-usage-visual {
  overflow: hidden;
  border: 1px solid rgba(199, 154, 75, 0.3);
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.28);
}

.origin-usage-visual img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.origin-usage-visual div {
  padding: 24px;
}

.origin-usage-visual strong,
.origin-usage-visual span {
  display: block;
}

.origin-usage-visual strong {
  color: #21180c;
  font-size: 24px;
}

.origin-usage-visual span {
  margin-top: 8px;
  color: #6f634f;
  line-height: 1.6;
}

.origin-daoviva-ritual h2,
.origin-daoviva-ritual p {
  color: var(--white);
}

.origin-ritual-box {
  padding: 34px;
  border: 1px solid rgba(205, 162, 83, 0.34);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
}

.origin-ritual-box strong {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 28px;
}

.origin-ritual-box div {
  margin-top: 0;
}

.origin-daoviva-disclaimer {
  padding: 28px clamp(20px, 6vw, 86px);
  background: #11100d;
}

.origin-daoviva-disclaimer p {
  max-width: 1080px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.64);
  text-align: center;
}

.tea-hero {
  display: grid;
  min-height: 900px;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  padding: 132px clamp(20px, 6vw, 86px) 72px;
  background:
    radial-gradient(circle at 78% 28%, rgba(169, 38, 34, 0.16), transparent 34%),
    linear-gradient(135deg, #fffaf2 0%, #ffffff 48%, #f6e9da 100%);
}

.tea-hero-copy {
  max-width: 760px;
}

.tea-hero-copy h1 {
  color: #8f2421;
}

.tea-hero-copy p:not(.eyebrow) {
  color: #6b5d51;
  font-size: 20px;
}

.tea-actions .primary-action {
  background: #8f2421;
  color: var(--white);
}

.tea-actions .secondary-action {
  border-color: rgba(143, 36, 33, 0.28);
  color: #8f2421;
}

.tea-hero-visual {
  overflow: hidden;
  border-radius: 8px;
  background: #fbf1e5;
  box-shadow: var(--shadow);
}

.tea-hero-visual img {
  width: 100%;
  height: min(66vh, 620px);
  min-height: 420px;
  object-fit: cover;
}

.tea-intro-section {
  background: var(--white);
}

.tea-intro-grid {
  display: grid;
  grid-template-columns: minmax(340px, 1.05fr) minmax(0, 0.95fr);
  gap: 44px;
  align-items: center;
}

.tea-photo-card {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.tea-photo-card img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: left center;
}

.tea-intro-copy {
  max-width: 720px;
}

.tea-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.tea-stats span {
  min-height: 112px;
  padding: 18px;
  border: 1px solid #ead7c0;
  border-radius: 8px;
  background: #fffaf2;
}

.tea-stats strong,
.tea-stats small {
  display: block;
}

.tea-stats strong {
  color: #8f2421;
}

.tea-stats small {
  margin-top: 8px;
  color: #7a6b5d;
}

.tea-usage-section {
  background: #8f2421;
  color: var(--white);
}

.tea-usage-section .section-heading p {
  color: rgba(255, 255, 255, 0.75);
}

.tea-usage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.tea-usage-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.tea-usage-grid span {
  display: block;
  margin-bottom: 32px;
  color: #f4d69e;
  font-size: 30px;
  font-weight: 900;
}

.tea-usage-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.tea-components-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 42px;
  align-items: start;
  background: #fffaf2;
}

.components-copy {
  max-width: 600px;
}

.component-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.component-grid span {
  min-height: 148px;
  padding: 22px;
  border: 1px solid #ead7c0;
  border-radius: 8px;
  background: var(--white);
}

.component-grid strong,
.component-grid small {
  display: block;
}

.component-grid strong {
  color: #8f2421;
  font-size: 20px;
}

.component-grid small {
  margin-top: 10px;
  color: #7a6b5d;
}

.tea-audience-section {
  background:
    linear-gradient(90deg, rgba(51, 28, 18, 0.84), rgba(143, 36, 33, 0.66)),
    url("assets/red-yeast-usage-audience.jpg") center/cover;
  color: var(--white);
}

.audience-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: center;
}

.audience-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.audience-list span {
  min-height: 88px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.tea-gallery-section {
  background: var(--white);
}

.tea-gallery {
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 0.95fr;
  gap: 18px;
}

.tea-gallery img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(51, 28, 18, 0.12);
}

.oct-hero {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  padding: 132px clamp(20px, 6vw, 86px) 72px;
  background:
    radial-gradient(circle at 82% 26%, rgba(199, 154, 75, 0.16), transparent 34%),
    linear-gradient(135deg, #f8faf4 0%, #ffffff 48%, #eef3ef 100%);
}

.oct-hero-copy {
  max-width: 760px;
}

.oct-hero-copy h1 {
  color: var(--green);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.04;
}

.oct-hero-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 20px;
}

.oct-actions .primary-action {
  background: var(--green);
  color: var(--white);
}

.oct-actions .secondary-action {
  border-color: rgba(21, 86, 59, 0.28);
  color: var(--green);
}

.oct-product-card {
  overflow: hidden;
  border: 1px solid rgba(199, 154, 75, 0.24);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 74px rgba(20, 45, 34, 0.14);
}

.oct-product-card img {
  width: 100%;
  height: min(58vh, 560px);
  min-height: 390px;
  object-fit: cover;
  background: #f8faf4;
}

.oct-product-card div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  background: #fbfaf4;
}

.oct-product-card span,
.oct-product-card strong {
  display: block;
}

.oct-product-card span {
  color: var(--muted);
}

.oct-product-card strong {
  color: var(--green);
  text-align: right;
}

.oct-intro-section {
  background: var(--white);
}

.oct-profile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.oct-profile-grid article {
  min-height: 160px;
  padding: 24px;
  border: 1px solid rgba(199, 154, 75, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #fbfaf4);
  box-shadow: 0 16px 34px rgba(20, 45, 34, 0.06);
}

.oct-profile-grid span,
.oct-profile-grid strong {
  display: block;
}

.oct-profile-grid span {
  margin-bottom: 28px;
  color: var(--muted);
}

.oct-profile-grid strong {
  color: var(--green);
  font-size: 24px;
  line-height: 1.15;
}

.oct-specs-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
  gap: 42px;
  align-items: start;
  background:
    linear-gradient(180deg, #fbfaf4, #ffffff);
  color: var(--ink);
}

.oct-specs-copy {
  max-width: 560px;
}

.oct-specs-copy p:not(.eyebrow) {
  color: var(--muted);
}

.oct-spec-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.oct-spec-table div {
  min-height: 128px;
  padding: 22px;
  border: 1px solid rgba(199, 154, 75, 0.2);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(20, 45, 34, 0.06);
}

.oct-spec-table span,
.oct-spec-table strong {
  display: block;
}

.oct-spec-table span {
  margin-bottom: 22px;
  color: var(--muted);
}

.oct-spec-table strong {
  color: var(--green);
  font-size: 21px;
}

.oct-app-section {
  background: var(--paper);
}

.oct-app-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.oct-app-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(199, 154, 75, 0.2);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(20, 45, 34, 0.06);
}

.oct-app-grid span {
  display: block;
  margin-bottom: 32px;
  color: var(--gold);
  font-size: 30px;
  font-weight: 900;
}

.oct-source-section {
  background:
    linear-gradient(180deg, #ffffff, #fbfaf4);
  color: var(--ink);
}

.oct-source-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

.oct-source-panel p:not(.eyebrow) {
  color: var(--muted);
}

.oct-source-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.oct-source-tags span {
  padding: 22px;
  border: 1px solid rgba(199, 154, 75, 0.2);
  border-radius: 8px;
  background: #ffffff;
  color: var(--green);
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(20, 45, 34, 0.06);
}

.extract-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: 720px;
  padding: 132px clamp(20px, 6vw, 86px) 76px;
  background:
    radial-gradient(circle at 82% 20%, rgba(199, 154, 75, 0.2), transparent 34%),
    linear-gradient(120deg, #f8faf4 0%, #ffffff 48%, #f1ece0 100%);
}

.extract-hero-copy {
  display: grid;
  align-content: center;
  max-width: 680px;
}

.extract-hero-copy h1 {
  color: var(--green);
  font-size: clamp(46px, 5.4vw, 78px);
  line-height: 1.02;
}

.extract-hero-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 20px;
}

.extract-hero-image {
  overflow: hidden;
  border: 1px solid rgba(199, 154, 75, 0.24);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 74px rgba(20, 45, 34, 0.14);
}

.extract-hero-image img {
  width: 100%;
  height: min(54vh, 520px);
  min-height: 360px;
  object-fit: cover;
}

.extract-hero-image div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  background: #fbfaf4;
}

.extract-hero-image span,
.extract-hero-image strong {
  display: block;
}

.extract-hero-image span {
  color: var(--muted);
}

.extract-hero-image strong {
  color: var(--green);
  text-align: right;
}

.extract-profile-section {
  background: var(--white);
}

.extract-profile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.extract-profile-grid article,
.extract-app-grid article {
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(199, 154, 75, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #fbfaf4);
  box-shadow: 0 16px 34px rgba(20, 45, 34, 0.06);
}

.extract-profile-grid span,
.extract-profile-grid strong,
.extract-app-grid span,
.extract-app-grid strong {
  display: block;
}

.extract-profile-grid span,
.extract-app-grid span {
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.extract-profile-grid strong,
.extract-app-grid strong {
  color: var(--green);
  font-size: 20px;
  line-height: 1.35;
}

.extract-tech-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(26px, 5vw, 64px);
  background:
    linear-gradient(180deg, #fbfaf4, #ffffff);
  color: var(--ink);
}

.extract-tech-copy {
  max-width: 560px;
}

.extract-tech-copy p:not(.eyebrow) {
  color: var(--muted);
}

.extract-tech-section .extract-app-grid article {
  border-color: rgba(199, 154, 75, 0.2);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(20, 45, 34, 0.06);
}

.extract-tech-section .extract-app-grid strong {
  color: var(--green);
}

.extract-app-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.extract-patent-section {
  background: var(--white);
}

.extract-patent-section img {
  width: min(100%, 980px);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(18, 35, 28, 0.12);
}

.patent-match-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 980px);
  margin: 28px 0 18px;
}

.patent-match-list article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(199, 154, 75, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(199, 154, 75, 0.08), rgba(255, 255, 255, 0.96));
}

.patent-match-list span,
.patent-match-list strong,
.patent-match-list small {
  display: block;
}

.patent-match-list span {
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.patent-match-list strong {
  color: var(--green);
  font-size: 22px;
}

.patent-match-list small {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.extract-note-section {
  background:
    linear-gradient(120deg, #f8faf4, #ffffff);
  color: var(--white);
}

.extract-note-section p {
  max-width: 900px;
  margin-top: 0;
  color: var(--green);
  font-size: 21px;
  font-weight: 800;
}

.extract-note-section small {
  display: block;
  max-width: 980px;
  color: rgba(255, 255, 255, 0.68);
}

.status {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.status.pending {
  color: var(--wine);
}

.mission-section {
  background:
    linear-gradient(90deg, rgba(18, 35, 28, 0.9), rgba(18, 35, 28, 0.68)),
    url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=2000&q=80") center/cover;
  color: var(--white);
}

.mission-panel {
  max-width: 900px;
}

.mission-panel p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.pill-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 9px 14px;
  color: var(--green);
  font-weight: 800;
}

.culture-section {
  background: #edf3f5;
}

.home-final-ritual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(78px, 8vw, 126px) clamp(20px, 6vw, 86px);
  background:
    radial-gradient(circle at 82% 28%, rgba(199, 154, 75, 0.22), transparent 34%),
    linear-gradient(120deg, rgba(12, 13, 10, 0.94), rgba(26, 24, 16, 0.82)),
    url("https://cellflora.com/wp-content/uploads/2026/04/product-use.webp") center/cover;
  color: var(--white);
}

.home-final-copy {
  max-width: 880px;
}

.home-final-copy h2 {
  color: var(--gold);
  font-size: clamp(42px, 6vw, 84px);
  line-height: 1.02;
}

.home-final-copy p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.home-final-actions {
  padding: 34px;
  border: 1px solid rgba(199, 154, 75, 0.34);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.home-final-actions span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
}

.home-final-actions a {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  border: 1px solid rgba(199, 154, 75, 0.46);
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
}

.home-final-actions a:first-of-type {
  background: var(--gold);
  color: #15110a;
}

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

.value-grid article {
  min-height: 190px;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  border-top: 4px solid var(--blue);
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 34px clamp(20px, 6vw, 86px);
  background: #0d1712;
  color: var(--white);
  text-align: center;
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer p {
  max-width: 880px;
  font-size: 13px;
  line-height: 1.6;
}

.site-footer small {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.portfolio-hero {
  min-height: 560px;
  display: grid;
  align-content: center;
  padding: 152px clamp(20px, 6vw, 86px) 92px;
  background:
    linear-gradient(90deg, rgba(18, 35, 28, 0.9), rgba(18, 35, 28, 0.54)),
    url("https://images.unsplash.com/photo-1581093458791-9f3c3f1205d5?auto=format&fit=crop&w=1800&q=82") center/cover;
  color: var(--white);
}

.refined-portfolio-hero {
  background:
    radial-gradient(circle at 74% 35%, rgba(199, 154, 75, 0.22), transparent 30%),
    linear-gradient(105deg, rgba(13, 25, 18, 0.98), rgba(17, 24, 19, 0.78)),
    url("https://cellflora.com/wp-content/uploads/2026/04/3-products.webp") right center/contain no-repeat,
    #10241b;
}

.portfolio-hero h1 {
  max-width: 900px;
  color: var(--gold);
  font-size: clamp(50px, 6.4vw, 92px);
  line-height: 1.02;
}

.portfolio-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
}

.product-system-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-top: 1px solid rgba(199, 154, 75, 0.26);
  border-bottom: 1px solid rgba(199, 154, 75, 0.22);
  background: rgba(199, 154, 75, 0.24);
}

.product-system-band article {
  min-height: 210px;
  padding: 32px clamp(22px, 4vw, 58px);
  background:
    radial-gradient(circle at 82% 18%, rgba(199, 154, 75, 0.14), transparent 42%),
    #101812;
  color: var(--white);
}

.product-system-band span,
.product-system-band strong,
.product-system-band p {
  display: block;
}

.product-system-band span {
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-system-band strong {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.2;
}

.product-system-band p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.portfolio-section {
  background: var(--white);
}

.portfolio-navigator {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: stretch;
  padding: clamp(54px, 6vw, 82px) clamp(20px, 6vw, 86px);
  border-bottom: 1px solid rgba(199, 154, 75, 0.16);
  background:
    linear-gradient(180deg, #fbfaf4, #ffffff);
}

.portfolio-nav-copy {
  max-width: 520px;
}

.portfolio-nav-copy p:not(.eyebrow) {
  color: var(--muted);
}

.portfolio-nav-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.portfolio-nav-card {
  display: flex;
  min-height: 170px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid rgba(199, 154, 75, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(255, 255, 255, 0.98));
  box-shadow: 0 18px 42px rgba(20, 45, 34, 0.08);
}

.portfolio-nav-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-nav-card strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.35;
}

.ingredients-portfolio {
  background:
    linear-gradient(180deg, #f7f8f4 0%, #ffffff 100%);
}

.branded-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 18px;
}

.portfolio-card {
  overflow: hidden;
  border: 1px solid rgba(199, 154, 75, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 54px rgba(20, 45, 34, 0.1);
}

.portfolio-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.portfolio-card div {
  padding: 26px;
}

.portfolio-card span,
.ingredient-row span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-card p {
  color: var(--muted);
}

.flagship-product-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  background:
    linear-gradient(135deg, #101812 0%, #16241b 42%, #ffffff 42%, #ffffff 100%);
}

.flagship-product-card img {
  height: 100%;
  min-height: 430px;
  object-fit: contain;
  background:
    radial-gradient(circle at center, rgba(199, 154, 75, 0.2), transparent 60%),
    #101812;
}

.flagship-product-card div {
  display: grid;
  align-content: center;
  padding: clamp(30px, 4vw, 56px);
}

.flagship-product-card h3 {
  max-width: 560px;
  color: var(--green);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
}

.flagship-product-card p {
  max-width: 560px;
  font-size: 18px;
}

.legacy-product-card {
  align-self: stretch;
  background: #fbfaf4;
  box-shadow: 0 18px 42px rgba(20, 45, 34, 0.08);
}

.legacy-product-card img {
  height: 250px;
}

.legacy-product-card h3 {
  font-size: 24px;
}

.portfolio-cta {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  margin-top: 18px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--gold);
  color: #15110a;
  font-size: 14px;
  font-weight: 900;
}

.ingredient-card-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ingredient-row {
  position: relative;
  display: flex;
  min-height: 275px;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(199, 154, 75, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #fbfaf4);
  box-shadow: 0 18px 42px rgba(20, 45, 34, 0.08);
}

.ingredient-row:hover,
.portfolio-nav-card:hover,
.portfolio-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 70px rgba(20, 45, 34, 0.14);
}

.ingredient-row,
.portfolio-nav-card,
.portfolio-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ingredient-row::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(21, 86, 59, 0.22);
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 46%, var(--green) 48%, var(--green) 53%, transparent 55%),
    linear-gradient(-45deg, transparent 46%, var(--green) 48%, var(--green) 53%, transparent 55%);
  opacity: 0.42;
  transform: rotate(45deg);
}

.ingredient-row strong {
  color: var(--green);
  font-size: 26px;
  line-height: 1.25;
}

.ingredient-row small {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  padding-right: 34px;
}

.ingredient-proof {
  display: block;
  max-width: calc(100% - 34px);
  margin-top: auto;
  padding: 8px 11px;
  border: 1px solid rgba(199, 154, 75, 0.3);
  border-radius: 999px;
  background: #fffaf0;
  color: #7b5a20;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.45;
}

.team-page-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  min-height: 700px;
  padding: 148px clamp(20px, 6vw, 86px) 76px;
  background:
    linear-gradient(105deg, rgba(8, 25, 19, 0.96) 0%, rgba(17, 68, 50, 0.82) 50%, rgba(31, 42, 34, 0.5) 100%),
    url("https://images.unsplash.com/photo-1581093588401-fbb62a02f120?auto=format&fit=crop&w=2200&q=82") center/cover;
  color: var(--white);
}

.team-page-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 82%);
}

.team-page-hero h1 {
  max-width: 900px;
  letter-spacing: 0;
}

.team-page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.7vw, 22px);
}

.team-page-hero aside {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(10, 32, 24, 0.46);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.team-page-hero aside span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.team-page-hero aside strong {
  display: block;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.28;
}

.team-focus-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.team-focus-strip article {
  min-height: 220px;
  padding: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 250, 244, 0.96));
}

.team-focus-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  border: 1px solid rgba(21, 86, 59, 0.22);
  border-radius: 50%;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.team-focus-strip h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(24px, 2.2vw, 34px);
}

.team-focus-strip p {
  max-width: 430px;
  color: var(--muted);
}

.team-focus-strip article:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(240, 247, 241, 0.98), rgba(255, 255, 255, 0.96));
}

.team-focus-strip article:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 251, 242, 0.98), rgba(255, 255, 255, 0.96));
}

.team-intro-section {
  background: var(--white);
}

.team-member-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.team-member-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #fbfcf8);
  box-shadow: 0 16px 34px rgba(20, 45, 34, 0.06);
}

.team-member-card.lead {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(21, 86, 59, 0.13), rgba(255, 255, 255, 0.96));
}

.member-avatar {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(21, 86, 59, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.9), transparent 32%),
    linear-gradient(135deg, rgba(21, 86, 59, 0.18), rgba(199, 154, 75, 0.22));
  color: var(--green);
  font-size: 20px;
  font-weight: 900;
}

.member-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.team-member-card span,
.alliance-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.team-member-card p,
.alliance-grid p,
.ecosystem-copy p,
.validation-panel p,
.team-values-section p {
  color: var(--muted);
}

.alliance-section {
  background:
    linear-gradient(180deg, #f7f8f4, #eef4ee);
}

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

.alliance-grid article {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #fbfcf8);
}

.ecosystem-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  background: var(--white);
}

.ecosystem-copy {
  max-width: 560px;
}

.ecosystem-list {
  display: grid;
  gap: 12px;
}

.ecosystem-list article {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcf8;
}

.ecosystem-list strong,
.ecosystem-list span {
  display: block;
}

.ecosystem-list strong {
  color: var(--green);
}

.ecosystem-list span {
  color: var(--muted);
  text-align: right;
}

.validation-section {
  background:
    linear-gradient(135deg, rgba(18, 35, 28, 0.92), rgba(21, 86, 59, 0.78));
  color: var(--white);
}

.compliance-note-section {
  background:
    linear-gradient(135deg, rgba(18, 35, 28, 0.94), rgba(21, 86, 59, 0.76));
  color: var(--white);
}

.compliance-note-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.compliance-note-panel p {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.76);
}

.validation-panel {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.validation-panel p {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.76);
}

.validation-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.validation-steps span {
  min-height: 96px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.team-values-section {
  background: #f7f8f4;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto auto;
    gap: 16px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 22px;
    background: rgba(17, 18, 14, 0.98);
    border-bottom: 1px solid rgba(199, 154, 75, 0.22);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-link,
  .nav-menu-button {
    width: 100%;
    justify-content: flex-start;
    padding: 10px 0;
  }

  .nav-link.active::after,
  .nav-group.open > .nav-link::after {
    display: none;
  }

  .nav-dropdown {
    position: static;
    width: 100%;
    max-width: none;
    transform: none;
    border: 0;
    border-left: 2px solid var(--line);
    border-radius: 0;
    background: #f7faf7;
    box-shadow: none;
  }

  .nav-dropdown a {
    padding-left: 18px;
  }

  .mega-product-menu {
    min-width: 0;
  }

  .nav-group.open .mega-product-menu {
    display: block;
  }

  .mega-menu-categories {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mega-menu-products {
    padding: 12px;
  }

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

  .hero-panel,
  .hero-product-showcase {
    max-width: 420px;
  }

  .hero-product-card {
    min-height: 320px;
  }

  .hero-scope-grid {
    max-width: 520px;
  }

  .quick-products,
  .product-grid,
  .branded-grid,
  .daoviva-info-grid,
  .feature-row,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-layout,
  .home-final-ritual,
  .home-foundation-section,
  .origin-daoviva-hero,
  .origin-daoviva-trust,
  .origin-daoviva-about,
  .origin-daoviva-ingredients,
  .origin-benefit-layout,
  .origin-daoviva-evidence,
  .origin-daoviva-audience,
  .origin-daoviva-usage,
  .origin-daoviva-ritual,
  .daoviva-detail,
  .flagship-product-card,
  .home-product-layout,
  .home-featured-product,
  .daoviva-story-section,
  .team-page-hero,
  .ecosystem-section,
  .product-hero,
  .tea-hero,
  .oct-hero,
  .extract-hero,
  .extract-tech-section,
  .portfolio-navigator,
  .tea-intro-grid,
  .tea-components-section,
  .audience-card,
  .oct-specs-section,
  .oct-source-panel,
  .story-layout,
  .usage-card,
  .target-section,
  .ingredients-layout,
  .media-band,
  .split-section {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .product-system-band,
  .origin-daoviva-statbar,
  .origin-trust-steps,
  .origin-daoviva-gallery,
  .origin-evidence-grid,
  .promise-grid,
  .principle-grid,
  .home-foundation-list,
  .team-focus-strip,
  .team-member-grid,
  .alliance-grid,
  .validation-steps,
  .tea-usage-grid,
  .component-grid,
  .audience-list,
  .oct-profile-grid,
  .extract-profile-grid,
  .extract-app-grid,
  .ingredient-card-list,
  .patent-match-list,
  .oct-spec-table,
  .oct-app-grid,
  .science-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .flagship-product-card img {
    min-height: 360px;
  }

  .home-featured-product img {
    min-height: 340px;
  }
}

@media (max-width: 660px) {
  .site-header {
    gap: 10px;
    padding: 12px 16px;
  }

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

  .brand small {
    display: none;
  }

  .language-switch button {
    padding: 6px 9px;
  }

  .hero {
    min-height: 760px;
    padding: 112px 18px 34px;
  }

  .hero-panel {
    padding: 18px;
  }

  .hero-product-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 18px;
  }

  .hero-product-card img {
    max-height: 220px;
  }

  .hero-product-meta strong {
    font-size: 28px;
  }

  .hero-proof-list span {
    font-size: 12px;
  }

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

  .hero-scope-grid a {
    min-height: 96px;
  }

  .supporting-material-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .flagship-product-card img {
    min-height: 320px;
  }

  .home-featured-product img {
    min-height: 280px;
  }

  .quick-products {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding: 0;
  }

  .quick-products a,
  .quick-products a:first-child,
  .quick-products a:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
  }

  .breadcrumb {
    padding-top: 86px;
  }

  .product-grid,
  .product-system-band,
  .branded-grid,
  .origin-daoviva-statbar,
  .origin-trust-steps,
  .origin-daoviva-gallery,
  .origin-evidence-grid,
  .origin-usage-steps,
  .origin-ingredient-list,
  .origin-audience-grid,
  .portfolio-nav-panel,
  .home-product-layout,
  .home-featured-product,
  .principle-grid,
  .home-foundation-list,
  .team-member-grid,
  .team-focus-strip,
  .alliance-grid,
  .validation-steps,
  .secondary-products,
  .daoviva-info-grid,
  .product-facts,
  .product-detail-grid,
  .benefit-grid,
  .promise-grid,
  .tea-usage-grid,
  .component-grid,
  .audience-list,
  .tea-stats,
  .tea-gallery,
  .oct-profile-grid,
  .extract-profile-grid,
  .extract-app-grid,
  .ingredient-card-list,
  .patent-match-list,
  .oct-spec-table,
  .oct-app-grid,
  .oct-source-tags,
  .science-grid,
  .target-list,
  .ingredient-grid,
  .feature-row,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .large-panel {
    grid-column: auto;
  }

  .origin-daoviva-hero {
    min-height: 0;
    padding-top: 116px;
  }

  .origin-daoviva-copy h1 {
    font-size: 64px;
  }

  .origin-daoviva-product {
    min-height: 360px;
  }

  .origin-daoviva-product img {
    max-height: 360px;
  }

  .origin-daoviva-gallery img {
    height: 300px;
  }

  .daoviva-story-section {
    grid-template-columns: 1fr;
  }

  .daoviva-story-image,
  .daoviva-story-image img {
    min-height: 360px;
  }

  .product-card.featured {
    grid-column: auto;
  }

  .video-card,
  .video-card img {
    min-height: 300px;
  }

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

  .ingredient-row {
    min-height: 210px;
  }
}
