*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --gray: #888888;
  --light-gray: #cccccc;
  --white: #ffffff;
  --bg-soft: #f7f7f7;
  --border-light: #e5e5e5;
  --text: #1a1a1a;
  --text-muted: #555555;
  --green: #00e676;
  --green-dark: #00c853;
  --cherry: #ff2d9b;
  --mango: #ff8c00;
  --blackcurrant: #9c5fff;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1280px;
  --gap: 2rem;
}

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

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--green-dark);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--green);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.section {
  padding: 6rem 0;
}

.section--alt {
  background: var(--bg-soft);
}

.accent {
  color: var(--green);
}

.plus {
  color: var(--green-dark);
  font-weight: 700;
  margin-right: 0.5rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s;
}

.btn--primary {
  background: var(--green);
  color: var(--black);
}

.btn--primary:hover {
  background: var(--green-dark);
  color: var(--black);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}

.btn--outline:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
}

.center-cta {
  text-align: center;
  margin-top: 3rem;
}

.link-arrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.link-arrow:hover {
  color: var(--green);
}

/* ============================================
   HEADER
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.25rem var(--gap);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0.05em;
}

.logo-accent {
  color: var(--green);
  font-size: 0.6em;
  vertical-align: super;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--green-dark);
}

.nav-link--cta {
  background: var(--green);
  color: var(--black);
  padding: 0.5rem 1.25rem;
  font-weight: 600;
}

.nav-link--cta:hover {
  background: var(--green-dark);
  color: var(--black);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.75) 50%,
    rgba(255, 255, 255, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.hero-eyebrow {
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-title {
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--green), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  margin-bottom: 4rem;
}

.section-header--mt {
  margin-top: 6rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

/* ============================================
   PRODUCTS
   ============================================ */

.products {
  background: var(--white);
}

.product-specs {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.spec {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--green-dark);
}

.spec-divider {
  width: 40px;
  height: 1px;
  background: var(--border-light);
}

.product-grid {
  display: grid;
  gap: 2rem;
}

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

.product-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.product-card--cherry:hover { border-color: var(--cherry); }
.product-card--mango:hover { border-color: var(--mango); }
.product-card--blackcurrant:hover { border-color: var(--blackcurrant); }

.product-card-img {
  background: var(--bg-soft);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.product-card-img img {
  max-height: 240px;
  object-fit: contain;
  margin: 0 auto;
}

.product-card-info {
  padding: 1.5rem;
}

.product-card-info h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.product-card-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.product-tagline {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  color: var(--green-dark);
  font-weight: 600;
}

/* Lifestyle banner */
.lifestyle-banner {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
}

.lifestyle-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lifestyle-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.15) 60%);
}

.lifestyle-banner-text {
  position: relative;
  z-index: 2;
  padding: 3rem;
  color: var(--white);
}

.lifestyle-banner-text .section-label {
  color: var(--green);
}

.lifestyle-banner-text h3 {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
  margin: 0.5rem 0 1.5rem;
  color: var(--white);
}

.lifestyle-banner-text .btn--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.lifestyle-banner-text .btn--outline:hover {
  border-color: var(--green);
  color: var(--green);
}

/* Stick boxes */
.stick-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stick-boxes img {
  width: 100%;
  object-fit: contain;
}

/* Drops */
.drops-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.drops-img {
  overflow: hidden;
}

.drops-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.drops-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.drops-specs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.drops-spec {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.drops-spec-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
  font-weight: 600;
}

/* ============================================
   USPs
   ============================================ */

.usps {
  background: var(--bg-soft);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.usp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.usp-item:hover {
  border-color: var(--green);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.usp-icon {
  font-size: 1.75rem;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.usp-item span {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text);
}

.usp-detail-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.usp-detail {
  padding: 1.5rem;
  border-left: 2px solid var(--green);
}

.usp-detail h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.usp-detail p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   ABOUT
   ============================================ */

.about {
  background: var(--white);
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-intro-text h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.about-intro-text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-intro-img {
  overflow: hidden;
}

.about-intro-img img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.about-company {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 6rem;
}

.about-company-img {
  overflow: hidden;
}

.about-company-img img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.about-company-text h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.about-company-text p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Climate */
.climate {
  padding-top: 4rem;
}

.climate-header {
  margin-bottom: 2rem;
}

.climate-img-banner {
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
  max-height: 400px;
}

.climate-img-banner img {
  width: 100%;
  object-fit: cover;
  max-height: 400px;
}

.climate-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.5), transparent);
}

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

.climate-card {
  padding: 2rem;
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.climate-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.climate-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--green-dark);
}

.climate-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   NEWS
   ============================================ */

.news {
  background: var(--bg-soft);
}

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

.news-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.news-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.news-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--green);
  color: var(--black);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.25rem 0.75rem;
}

.news-card-info {
  padding: 1.5rem;
}

.news-card-info h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.news-card-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* ============================================
   SCIENCE
   ============================================ */

.science {
  background: var(--white);
}

.science-research {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.science-research-text h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.science-research-text p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.science-quote {
  margin-top: 2rem;
  padding: 1.5rem;
  border-left: 3px solid var(--green);
}

.science-quote p {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.4;
}

.science-research-img {
  overflow: hidden;
}

.science-research-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* K-IND */
.kind-section {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 4rem;
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  margin-bottom: 6rem;
}

.kind-badge {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}

.kind-title {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--green-dark);
}

.kind-text h3 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--text);
}

.kind-text p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

/* Promise */
.promise {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.promise-img {
  overflow: hidden;
}

.promise-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.promise-text h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text);
}

.promise-lead {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.promise-text p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.promise-values {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.promise-values span {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--green-dark);
}

/* ============================================
   INGREDIENTS
   ============================================ */

.ingredients {
  background: var(--bg-soft);
}

.mit-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.mit-big-label {
  display: flex;
  flex-direction: column;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: var(--gray);
}

.mit-mit {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-dark);
}

.mit-text h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text);
}

.mit-lead {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1rem;
}

.mit-text p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.mit-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.mit-benefit {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.mit-note {
  font-size: 0.8125rem;
  color: var(--gray);
  font-style: italic;
}

.mit-img {
  overflow: hidden;
}

.mit-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.quality-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  margin-bottom: 6rem;
}

.quality-item {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Kratom */
.kratom-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 6rem;
}

.kratom-img {
  overflow: hidden;
}

.kratom-img img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.kratom-text h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text);
}

.kratom-text p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.kratom-specs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.kratom-spec {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Vitamins */
.vitamins-section h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 2rem;
  color: var(--text);
}

.vitamins-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.vitamin-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.vitamin-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.vitamin-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
}

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

.vitamin-card--featured p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 1rem 0;
  line-height: 1.7;
}

.vitamin-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vitamin-benefits span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ============================================
   SAFETY & FAQ
   ============================================ */

.safety {
  background: var(--white);
}

.safety-note {
  padding: 2rem;
  border: 1px solid var(--cherry);
  background: rgba(255, 45, 155, 0.04);
  margin-bottom: 4rem;
}

.safety-note h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cherry);
  margin-bottom: 0.5rem;
}

.safety-note p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 2rem;
  color: var(--text);
}

.faq-group {
  margin-bottom: 3rem;
}

.faq-group-title {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 1.25rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--green-dark);
}

.faq-icon {
  font-size: 1.25rem;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================
   MEDIA GRID
   ============================================ */

.media {
  background: var(--bg-soft);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.media-item {
  overflow: hidden;
  aspect-ratio: 3/2;
}

.media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.media-item:hover img {
  transform: scale(1.05);
}

/* ============================================
   SUPPORT / CONTACT
   ============================================ */

.support {
  background: var(--bg-soft);
}

.support-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.support-text .section-title {
  margin-bottom: 0;
}

.contact-compact {
  max-width: 640px;
  margin: 0 auto;
}

.contact-compact .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-compact .section-subtitle {
  margin: 0 auto;
}

.contact-compact .form-group {
  margin-bottom: 1.25rem;
}

.contact-compact .btn {
  width: 100%;
  padding: 1rem;
  margin-top: 0.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9375rem;
  padding: 0.875rem 1rem;
  transition: border-color 0.2s, background 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
}

.form-disclaimer {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: var(--gray);
}

/* ============================================
   DISTRIBUTOR PAGE
   ============================================ */

.distributor-page {
  max-width: 640px;
  margin: 0 auto;
}

.distributor-form-wrap {
  margin-bottom: 4rem;
}

.distributor-form-wrap .form-group {
  margin-bottom: 1.25rem;
}

.distributor-form-wrap .btn {
  width: 100%;
  padding: 1rem;
  margin-top: 0.5rem;
}

.distributor-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.distributor-benefit {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.distributor-benefit:hover {
  border-color: var(--green);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.distributor-benefit-icon {
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.distributor-benefit h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.distributor-benefit p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .distributor-benefits {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   INSTAGRAM BANNER
   ============================================ */

.insta-banner {
  background: var(--bg-soft);
  text-align: center;
  padding: 1.25rem var(--gap);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.insta-banner a {
  color: var(--green-dark);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.insta-banner a:hover {
  color: var(--green);
}

/* ============================================
   FOOTER (stays dark for contrast)
   ============================================ */

.footer {
  background: var(--dark);
  padding: 4rem 0 2rem;
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 2fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--dark-3);
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a,
.footer-col li a {
  display: block;
  font-size: 0.8125rem;
  color: var(--gray);
  transition: color 0.2s;
}

.footer-col a:hover,
.footer-col li a:hover {
  color: var(--green);
}

.footer-col p {
  font-size: 0.8125rem;
  color: var(--gray);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.footer-col--wide {
  padding-left: 2rem;
  border-left: 1px solid var(--dark-3);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.newsletter-form input {
  flex: 1;
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.8125rem;
  padding: 0.625rem 0.75rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--green);
}

.newsletter-disclaimer {
  font-size: 0.6875rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.mt-lg {
  margin-top: 2rem;
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  max-width: 500px;
}

.footer-brand .logo {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.6875rem;
  color: var(--gray);
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.footer-legal span,
.footer-legal a {
  font-size: 0.6875rem;
  color: var(--gray);
}

.footer-legal a:hover {
  color: var(--green);
}

/* ============================================
   FORM FEEDBACK
   ============================================ */

.form-success {
  background: var(--green);
  color: var(--dark);
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
}

.form-success h3 {
  margin-bottom: 0.5rem;
}

.form-error {
  background: #ff2d2d;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.form-error p {
  color: #fff;
  margin: 0;
}

/* ============================================
   PAGE CONTENT (generic CMS pages)
   ============================================ */

.page-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.page-content h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.page-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}

.page-content ul,
.page-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.page-content li {
  margin-bottom: 0.5rem;
}

/* ============================================
   COMPACT HERO (subpages)
   ============================================ */

.hero--compact {
  min-height: auto;
  padding: 8rem 2rem 3rem;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-light);
}

.hero--compact .hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.75rem;
  color: var(--text);
}

.hero--compact .hero-sub {
  margin-bottom: 0;
  color: var(--text-muted);
}

/* Product detail (show pages) */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.product-detail-img {
  background: var(--bg-soft);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail-img img {
  max-height: 400px;
  object-fit: contain;
}

.product-detail-info h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text);
}

.product-detail-info p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Ambassador hero image (show pages) */
.ambassador-hero-img,
.news-hero-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  margin-bottom: 2rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .product-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .footer-col--wide {
    grid-column: 1 / -1;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--dark-3);
    padding-top: 2rem;
  }

  .kind-section {
    flex-direction: column;
    padding: 2.5rem;
  }

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

  .support-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-compact {
    max-width: 100%;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --gap: 1.25rem;
  }

  .section {
    padding: 4rem 0;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    transition: right 0.3s;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
  }

  .nav.open {
    right: 0;
  }

  .nav-link {
    font-size: 1.25rem;
    color: var(--text);
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .hero--compact {
    padding: 7rem 1.5rem 2rem;
  }

  .hero--compact .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .product-grid--3 {
    grid-template-columns: 1fr;
  }

  .stick-boxes {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .usp-detail-list {
    grid-template-columns: 1fr;
  }

  .about-intro {
    grid-template-columns: 1fr;
  }

  .about-company {
    grid-template-columns: 1fr;
  }

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

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

  .science-research {
    grid-template-columns: 1fr;
  }

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

  .promise-values {
    flex-direction: column;
    gap: 0.75rem;
  }

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

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

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

  .vitamin-card--featured {
    grid-column: span 1;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

  .footer-legal {
    gap: 0.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-header--mt {
    margin-top: 4rem;
  }

  .hero-title {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .hero-sub {
    font-size: 0.875rem;
  }

  .usp-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .stick-boxes {
    grid-template-columns: 1fr;
  }

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

  .kind-section {
    padding: 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .product-specs {
    flex-wrap: wrap;
  }

  .lifestyle-banner {
    min-height: 300px;
  }

  .lifestyle-banner-text {
    padding: 1.5rem;
  }

  .insta-banner a {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
  }
}
