/* ============================================================
   TENZIORA — Malaysia Market — Global Stylesheet
   Design: Elite Wellness Premium v2
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Noto+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest:         #0B3D20;
  --forest-mid:     #0F5132;
  --forest-light:   #1A7A45;
  --forest-glow:    #25A35E;
  --mint:           #E6F7EE;
  --mint-deep:      #C8EDD8;
  --gold:           #D4A017;
  --gold-vivid:     #F0BC2E;
  --gold-pale:      #FBF3D6;
  --ink:            #081510;
  --ink-soft:       #1A2E20;
  --white:          #FFFFFF;
  --off-white:      #F6FAF7;
  --cream:          #FAFDF8;
  --grey-100:       #E4EDE6;
  --grey-200:       #C8D9CC;
  --grey-400:       #6B8570;
  --grey-600:       #3D5242;
  --shadow-sm:      0 2px 12px rgba(11,61,32,.08);
  --shadow-md:      0 8px 32px rgba(11,61,32,.14);
  --shadow-lg:      0 24px 64px rgba(11,61,32,.2);
  --shadow-gold:    0 8px 32px rgba(212,160,23,.35);
  --max-w:          1140px;
  --font-head:      'Poppins', sans-serif;
  --font-body:      'Noto Sans', sans-serif;
  --radius-sm:      6px;
  --radius-md:      14px;
  --radius-lg:      22px;
  --radius-pill:    100px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink-soft);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest-light); text-decoration: none; transition: color .2s; }
a:hover { color: var(--forest-glow); }

/* ── Utility ──────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }
.text-center { text-align: center; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  font-weight: 700;
  color: var(--ink);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; color: var(--grey-600); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.12rem;
  color: var(--grey-600);
  line-height: 1.85;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--forest-glow);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s ease;
  text-decoration: none;
  line-height: 1;
  letter-spacing: .02em;
}
.btn-primary {
  background: var(--forest-mid);
  color: var(--white);
  border-color: var(--forest-mid);
}
.btn-primary:hover {
  background: var(--forest-light);
  border-color: var(--forest-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15,81,50,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.9);
  color: var(--white);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-vivid) 100%);
  color: var(--ink);
  border-color: transparent;
  font-weight: 700;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--ink);
  filter: brightness(1.07);
}
.btn-ghost {
  background: transparent;
  color: var(--forest-mid);
  border-color: var(--grey-200);
}
.btn-ghost:hover {
  background: var(--mint);
  border-color: var(--forest-mid);
}

/* ── HEADER / NAV ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--grey-100);
  box-shadow: 0 1px 20px rgba(11,61,32,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--forest-mid);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.logo-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2) 0%, transparent 60%);
}
.logo-icon svg { width: 22px; height: 22px; fill: white; position: relative; z-index: 1; }
.logo-text {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.03em;
}
.logo-text span { color: var(--gold); }

.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a {
  font-family: var(--font-head);
  font-size: .86rem;
  font-weight: 500;
  color: var(--grey-600);
  text-decoration: none;
  transition: color .2s;
  letter-spacing: .01em;
}
.main-nav a:hover { color: var(--forest-mid); }
.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .3s;
}
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--grey-100);
  padding: 16px 28px 24px;
}
.mobile-nav a {
  display: block;
  padding: 13px 0;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  color: var(--grey-600);
  border-bottom: 1px solid var(--grey-100);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.open { display: block; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background: var(--forest);
  padding: 0;
  overflow: hidden;
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: stretch;
}
/* Geometric pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(26,122,69,.45) 0%, transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(212,160,23,.12) 0%, transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(11,61,32,.8) 0%, transparent 45%);
  z-index: 0;
}
/* Diagonal line pattern overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,.015) 0px,
    rgba(255,255,255,.015) 1px,
    transparent 1px,
    transparent 28px
  );
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-content {
  padding: 96px 56px 96px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-content .container { padding: 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212,160,23,.15);
  border: 1px solid rgba(212,160,23,.35);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold-vivid);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  width: fit-content;
}
.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--gold-vivid);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--gold-vivid);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -.02em;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #6EE7A0, #38D870);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .lead {
  color: rgba(255,255,255,.72);
  margin-bottom: 40px;
  font-size: 1.08rem;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: fit-content;
}
.stat-item {
  padding: 20px 28px;
  border-right: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  margin-top: 5px;
  display: block;
  white-space: nowrap;
}

/* Hero visual panel */
.hero-visual {
  position: relative;
  overflow: hidden;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--forest) 0%, transparent 30%);
  z-index: 1;
  pointer-events: none;
}
.hero-img-wrap {
  width: 100%;
  height: 100%;
  min-height: 640px;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(.7) saturate(1.1);
}
.hero-card-float {
  position: absolute;
  bottom: 36px;
  left: 24px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.6);
}
.hero-card-float .icon-wrap {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--forest-mid), var(--forest-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-card-float .icon-wrap svg { width: 20px; height: 20px; stroke: white; fill: none; }
.hero-card-float .card-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: .88rem;
  color: var(--ink);
  font-weight: 700;
}
.hero-card-float .card-text span { font-size: .76rem; color: var(--grey-400); }

/* ── STATS BAND ───────────────────────────────────────────── */
.stats-band {
  background: var(--forest-mid);
  padding: 0;
}
.stats-band-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stats-band-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 40px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stats-band-item:last-child { border-right: none; }
.stats-band-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stats-band-icon svg { width: 22px; height: 22px; stroke: var(--gold-vivid); fill: none; }
.stats-band-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.stats-band-text span { font-size: .8rem; color: rgba(255,255,255,.6); }

/* ── INTRO BANNER ─────────────────────────────────────────── */
.intro-banner {
  background: var(--mint);
  border-left: 4px solid var(--forest-light);
  padding: 22px 32px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 56px 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.intro-banner-icon {
  width: 36px;
  height: 36px;
  background: var(--forest-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.intro-banner-icon svg { width: 18px; height: 18px; stroke: white; fill: none; }
.intro-banner p {
  color: var(--forest);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.7;
}

/* ── INGREDIENTS SECTION ──────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--mint);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--forest-mid);
  margin-bottom: 16px;
}
.section-header { margin-bottom: 60px; }
.section-header h2 { margin-bottom: 14px; color: var(--ink); }
.section-header .lead { max-width: 600px; }
.section-header.centered { text-align: center; }
.section-header.centered .lead { margin: 0 auto; }

/* Ingredient Feature — redesigned as overlay cards */
.ingredient-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
  background: var(--white);
  border: 1px solid var(--grey-100);
  transition: box-shadow .3s, transform .3s;
}
.ingredient-feature:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.ingredient-feature.reverse { direction: rtl; }
.ingredient-feature.reverse > * { direction: ltr; }

.ingredient-feature-img {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.ingredient-feature-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(11,61,32,.35) 0%, transparent 60%);
}
.ingredient-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.ingredient-feature:hover .ingredient-feature-img img {
  transform: scale(1.04);
}

/* Number badge on image */
.ingredient-num-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.ingredient-feature-content {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.ingredient-feature-content .eyebrow { margin-bottom: 10px; }
.ingredient-feature-content h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  margin-bottom: 14px;
  color: var(--ink);
}
.ingredient-feature-content p { margin-bottom: 18px; }

.benefit-list { list-style: none; margin: 20px 0; }
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-100);
  font-size: .9rem;
  color: var(--grey-600);
}
.benefit-list li:last-child { border-bottom: none; }
.benefit-list .check {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--forest-mid), var(--forest-light));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.benefit-list .check svg { width: 11px; height: 11px; stroke: white; fill: none; stroke-width: 3; }

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* ── PRODUCT SECTION ──────────────────────────────────────── */
.product-section {
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.product-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 50%, rgba(26,122,69,.3) 0%, transparent 55%),
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,.01) 0px,
      rgba(255,255,255,.01) 1px,
      transparent 1px,
      transparent 28px
    );
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.product-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.product-img-frame {
  position: relative;
  display: inline-block;
}
.product-img-frame::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px solid rgba(212,160,23,.3);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.product-img-frame::after {
  content: '';
  position: absolute;
  inset: -24px;
  border: 1px solid rgba(212,160,23,.12);
  border-radius: 28px;
  z-index: 0;
}
.product-img-wrap img {
  max-width: 340px;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
  position: relative;
  z-index: 1;
}
.product-badge-wrap {
  position: absolute;
  top: -12px;
  right: -12px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-vivid) 100%);
  color: var(--ink);
  border-radius: 50%;
  width: 88px;
  height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .04em;
  box-shadow: var(--shadow-gold);
  z-index: 2;
}

.product-content .eyebrow { color: var(--gold-vivid); }
.product-content .eyebrow::before { background: var(--gold-vivid); }
.product-content h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 18px;
}
.product-content .lead {
  color: rgba(255,255,255,.72);
  margin-bottom: 28px;
}
.product-content > p { color: rgba(255,255,255,.6); }

.ingredient-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 28px;
}
.ingredient-tag {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: all .2s;
}
.ingredient-tag:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.35);
}
.ingredient-tag a { color: inherit; }

.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 32px;
}
.product-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .86rem;
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}
.product-feature-item .dot {
  width: 7px;
  height: 7px;
  background: var(--gold-vivid);
  border-radius: 50%;
  flex-shrink: 0;
}

.product-note {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  margin: 0 0 24px;
  line-height: 1.6;
}

/* ── CONTACT / FORM SECTION ───────────────────────────────── */
.contact-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--forest-mid), var(--forest-glow), var(--gold));
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.contact-info h2 { color: var(--ink); margin-bottom: 16px; }
.contact-info .lead { margin-bottom: 36px; }

.contact-points { list-style: none; }
.contact-points li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--grey-100);
  font-size: .92rem;
  color: var(--grey-600);
}
.contact-points li:last-child { border-bottom: none; }
.contact-points .cp-icon {
  width: 42px;
  height: 42px;
  background: var(--forest-mid);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-points .cp-icon svg { width: 18px; height: 18px; stroke: white; fill: none; }
.contact-points .cp-label {
  display: block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-100);
  position: relative;
  overflow: hidden;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--forest-mid), var(--gold));
}
.contact-form-wrap h3 {
  font-family: var(--font-head);
  margin-bottom: 6px;
  font-size: 1.4rem;
  color: var(--ink);
}
.contact-form-wrap .form-subtitle {
  color: var(--grey-400);
  font-size: .88rem;
  margin-bottom: 28px;
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  color: var(--grey-600);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--grey-100);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--ink-soft);
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s, background .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--forest-light);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(15,81,50,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-note {
  font-size: .76rem;
  color: var(--grey-400);
  margin-top: 14px;
  line-height: 1.6;
}
.form-success {
  display: none;
  background: linear-gradient(135deg, var(--mint), #d4f5e2);
  border: 1.5px solid var(--forest-light);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  color: var(--forest);
  font-family: var(--font-head);
  font-weight: 600;
  text-align: center;
  margin-top: 16px;
}

/* ── DISCLAIMER STRIP ─────────────────────────────────────── */
.disclaimer-strip {
  background: var(--gold-pale);
  border-top: 3px solid var(--gold);
  padding: 20px 0;
}
.disclaimer-strip p {
  font-size: .82rem;
  color: var(--grey-600);
  margin: 0;
  line-height: 1.65;
}
.disclaimer-strip strong { color: var(--ink-soft); }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--forest);
  color: rgba(255,255,255,.6);
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest-light), var(--gold), var(--forest-light));
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo-text { color: var(--white); font-size: 1.2rem; }
.footer-brand .logo-text span { color: var(--gold-vivid); }
.footer-brand p {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  margin-top: 16px;
  line-height: 1.8;
}
.footer-col h4 {
  font-family: var(--font-head);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .2s;
}
.footer-col ul li a:hover { color: rgba(255,255,255,.9); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.3); margin: 0; }
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal-links a {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  text-decoration: none;
  transition: color .2s;
}
.footer-legal-links a:hover { color: rgba(255,255,255,.7); }

.footer-disclaimer {
  background: rgba(0,0,0,.25);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  margin-top: 24px;
  border: 1px solid rgba(255,255,255,.05);
}
.footer-disclaimer p {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  margin: 0;
  line-height: 1.75;
}
.footer-disclaimer p + p { margin-top: 8px; }
.footer-disclaimer a { color: rgba(255,255,255,.5); text-decoration: underline; }

/* ── INNER PAGE HERO ──────────────────────────────────────── */
.page-hero {
  background: var(--forest);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 0%, rgba(26,122,69,.4) 0%, transparent 60%),
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,.015) 0px,
      rgba(255,255,255,.015) 1px,
      transparent 1px,
      transparent 28px
    );
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 800;
  position: relative;
  z-index: 1;
  letter-spacing: -.02em;
}
.page-hero p {
  color: rgba(255,255,255,.6);
  margin-top: 12px;
  position: relative;
  z-index: 1;
  font-size: .95rem;
}
.page-hero-bar {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px auto 0;
  position: relative;
  z-index: 1;
}

/* ── CONTENT PAGE ─────────────────────────────────────────── */
.content-page { padding: 80px 0; }
.content-page .container { max-width: 820px; }
.content-page h2 {
  margin: 44px 0 14px;
  font-size: 1.5rem;
  color: var(--forest-mid);
  display: flex;
  align-items: center;
  gap: 12px;
}
.content-page h2::before {
  content: '';
  display: block;
  width: 4px;
  height: 1.2em;
  background: linear-gradient(to bottom, var(--forest-mid), var(--gold));
  border-radius: 2px;
  flex-shrink: 0;
}
.content-page h2:first-child { margin-top: 0; }
.content-page h3 { margin: 28px 0 10px; font-size: 1.15rem; color: var(--ink); }
.content-page p { margin-bottom: 18px; font-size: .96rem; line-height: 1.85; }
.content-page ul { margin: 12px 0 22px 0; list-style: none; }
.content-page ul li {
  margin-bottom: 10px;
  font-size: .96rem;
  color: var(--grey-600);
  line-height: 1.75;
  padding-left: 22px;
  position: relative;
}
.content-page ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--forest-light);
  font-size: .9em;
}
.content-page strong { color: var(--ink-soft); }
.content-page a { color: var(--forest-light); }
.content-page a:hover { color: var(--forest-glow); }

.legal-box {
  background: var(--mint);
  border: 1px solid var(--mint-deep);
  border-left: 4px solid var(--forest-mid);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin: 36px 0;
}
.legal-box h3 {
  margin-top: 0;
  color: var(--forest);
  font-family: var(--font-head);
  margin-bottom: 14px;
}
.legal-box p { font-size: .92rem; }
.legal-box a { color: var(--forest-light); }

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-100);
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--forest-mid), var(--gold));
}
.contact-info-card h3 {
  font-family: var(--font-head);
  margin-bottom: 22px;
  color: var(--ink);
  margin-top: 8px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--grey-100);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail .cd-icon {
  width: 42px;
  height: 42px;
  background: var(--forest-mid);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail .cd-icon svg { width: 18px; height: 18px; stroke: white; fill: none; }
.contact-detail-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: .8rem;
  color: var(--ink);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 2px;
}
.contact-detail-text span { font-size: .9rem; color: var(--grey-600); }
.contact-detail-text a { color: var(--forest-light); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { padding: 80px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-band-inner { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .ingredient-feature { grid-template-columns: 1fr; }
  .ingredient-feature.reverse { direction: ltr; }
  .ingredient-feature-img { min-height: 260px; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .product-features { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .stats-band-inner { grid-template-columns: 1fr; }
  .stats-band-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stats-band-item:last-child { border-bottom: none; }
  .hero-stats { flex-direction: column; gap: 0; width: 100%; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); text-align: left; }
  .stat-item:last-child { border-bottom: none; }
}

@media (max-width: 540px) {
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 20px; }
  .hero-content { padding: 64px 0; }
}
