/* =========================================
   BETTER COFFEE – styles.css
   Mobile-first, responsive, trust-focused
   Palette: #3B2A26 / #C69C6D / #6F7D5C / #F7F3EF / #D2693C
   ========================================= */

/* ---- CSS Variables ---- */
:root {
  --color-dark:      #3B2A26;
  --color-gold:      #C69C6D;
  --color-green:     #6F7D5C;
  --color-bg:        #F7F3EF;
  --color-cta:       #D2693C;
  --color-cta-hover: #B85528;
  --color-white:     #FFFFFF;
  --color-text:      #2E2118;
  --color-muted:     #6B5E56;
  --color-border:    #DDD3C8;
  --color-surface:   #EEE7DF;
  --color-compliance:#FFF8E7;
  --color-comp-border:#E8C870;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 8px rgba(59,42,38,0.08);
  --shadow-md:  0 6px 24px rgba(59,42,38,0.12);
  --shadow-lg:  0 16px 48px rgba(59,42,38,0.18);

  --nav-height: 68px;
  --container:  1120px;
  --section-gap: clamp(3rem, 8vw, 6rem);

  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-cta);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--color-cta-hover); }
a:focus-visible {
  outline: 3px solid var(--color-cta);
  outline-offset: 3px;
  border-radius: 3px;
}

ul[role="list"] { list-style: none; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px) { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-dark);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5.5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; }

p { color: var(--color-muted); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

em { font-style: italic; color: var(--color-gold); }
strong { font-weight: 600; color: var(--color-dark); }

/* ---- Section base ---- */
.section {
  padding: var(--section-gap) 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-sub {
  font-size: 1.05rem;
  margin-top: 0.75rem;
}

/* ---- Eyebrow tag ---- */
.eyebrow-tag {
  display: inline-block;
  background: var(--color-green);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.15s ease, box-shadow var(--transition);
  min-height: 48px; /* touch target */
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-cta);
  color: var(--color-white);
  border-color: var(--color-cta);
}
.btn-primary:hover {
  background: var(--color-cta-hover);
  border-color: var(--color-cta-hover);
  color: var(--color-white);
}

.btn-secondary {
  background: var(--color-gold);
  color: var(--color-dark);
  border-color: var(--color-gold);
}
.btn-secondary:hover {
  background: #b8894f;
  border-color: #b8894f;
  color: var(--color-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--color-dark);
  border-color: var(--color-border);
}
.btn-ghost:hover {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}

/* Ghost button on dark backgrounds (hero, contact sections) */
.hero-section .btn-ghost,
.contact-section .btn-ghost {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.45);
}
.hero-section .btn-ghost:hover,
.contact-section .btn-ghost:hover {
  background: var(--color-white);
  color: var(--color-dark);
  border-color: var(--color-white);
}

.btn-nav {
  background: var(--color-cta);
  color: var(--color-white);
  border-color: var(--color-cta);
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
  min-height: 40px;
}

.btn-large {
  font-size: 1.05rem;
  padding: 0.9rem 2rem;
  min-height: 54px;
}

/* ---- Compliance boxes ---- */
.compliance-box {
  background: var(--color-compliance);
  border: 1px solid var(--color-comp-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 2rem;
  line-height: 1.6;
}
.compliance-box strong { color: var(--color-dark); }
.compliance-box p { margin-bottom: 0.5rem; color: var(--color-muted); font-size: 0.85rem; }

.compliance-inline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
  margin-top: 1.25rem;
  line-height: 1.6;
  max-width: 520px;
}
.compliance-inline a { color: rgba(255,255,255,0.75); text-decoration: underline; }

/* ---- Fade-in animation ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* =========================================
   NAVIGATION
   ========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 243, 239, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  height: var(--nav-height);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px) { .nav-inner { padding: 0 2rem; } }

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 54px;
  width: auto;
  display: block;
  margin-bottom: 0.5rem;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.nav-links {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem 1.25rem;
  gap: 0.75rem;
  list-style: none;
}
.nav-links.open { display: flex; }
.nav-links li a {
  color: var(--color-dark);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.4rem 0;
  display: block;
}
.nav-links li a:hover { color: var(--color-cta); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    border: none;
    padding: 0;
    gap: 0.25rem;
    align-items: center;
  }
  .nav-links li a { padding: 0.4rem 0.7rem; font-size: 0.9rem; }
}

/* =========================================
   HERO
   ========================================= */
.hero-section {
  position: relative;
  background: var(--color-dark);
  overflow: hidden;
  padding-top: clamp(3rem, 8vw, 5rem);
  padding-bottom: clamp(0rem, 4vw, 0rem);
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(198,156,109,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(111,125,92,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 420px;
    gap: 4rem;
  }
}

.hero-content h1 {
  color: var(--color-white);
  margin-bottom: 1.25rem;
}
.hero-content h1 em { color: var(--color-gold); }

.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero-sub strong { color: var(--color-gold); font-weight: 500; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero photo */
.hero-photo-wrap {
  position: relative;
  width: 380px;
  max-width: 100%;
}
@media (min-width: 768px) {
  .hero-photo-wrap { width: 420px; }
}

.hero-photo {
  width: 100%;
  height: auto;
  border-radius: 50%;
  display: block;
  border: 4px solid rgba(198,156,109,0.5);
  box-shadow: 0 0 60px rgba(198,156,109,0.25), var(--shadow-lg);
}

/* Trust bar */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
  background: rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 1.5rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* =========================================
   SHOP
   ========================================= */
.shop-section { background: var(--color-bg); }

.product-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.product-card.featured { border-color: var(--color-gold); }

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-gold);
  color: var(--color-dark);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  z-index: 1;
}

.product-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-surface);
  padding: 1rem;
}
.latte-img  { background: linear-gradient(135deg, #e8d5b7, #d4b896); }
.black-img  { background: linear-gradient(135deg, #d8cfc8, #bfb0a4); }
.tea-img    { background: linear-gradient(135deg, #c8dbc0, #9ab88e); }

.product-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.35s ease;
}
.product-card:hover .product-photo {
  transform: scale(1.05);
}

.product-info { padding: 1.5rem; }
.product-info h3 { margin-bottom: 0.6rem; }

.product-features {
  list-style: none;
  margin: 1rem 0 1.25rem;
}
.product-features li {
  font-size: 0.85rem;
  color: var(--color-muted);
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: 700;
}

.wholesale-bar {
  background: var(--color-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2.5rem;
}
.wholesale-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}
@media (min-width: 640px) {
  .wholesale-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.wholesale-content strong { color: var(--color-gold); display: block; margin-bottom: 0.25rem; font-size: 1.05rem; }
.wholesale-content p { color: rgba(255,255,255,0.7); margin: 0; font-size: 0.88rem; }

/* =========================================
   SUBSCRIPTIONS
   ========================================= */
.subs-section { background: var(--color-surface); }

.subs-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 640px) { .subs-grid { grid-template-columns: 1fr 1fr; } }

.sub-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 2px solid var(--color-border);
  position: relative;
}
.sub-card.featured { border-color: var(--color-cta); }
.sub-card h3 { margin-bottom: 0.5rem; }
.sub-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-cta);
  margin-bottom: 1.25rem;
}
.sub-card ul {
  list-style: none;
  margin-bottom: 1.5rem;
}
.sub-card ul li {
  font-size: 0.9rem;
  color: var(--color-muted);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--color-border);
}
.sub-card ul li:last-child { border-bottom: none; }

/* =========================================
   HOW IT WORKS
   ========================================= */
.how-section { background: var(--color-bg); }

.steps-list {
  list-style: none;
  display: grid;
  gap: 2.5rem;
  counter-reset: step;
  max-width: 780px;
  margin: 0 auto;
}

.step-item {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 640px) {
  .step-item { grid-template-columns: 96px 1fr; }
}

.step-num {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--color-dark);
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid var(--color-gold);
  box-shadow: 0 4px 20px rgba(59,42,38,0.15);
}

.step-content h3 { margin-bottom: 0.6rem; }
.step-content .btn { margin-top: 1rem; }
.step-compliance {
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-top: 0.75rem;
  font-style: italic;
}

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-section { background: var(--color-surface); }

.features-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: 1fr 1fr; } }

.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* Consistent image area — all cards same height */
.feature-img-wrap {
  height: 220px;
  overflow: hidden;
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Awards card — badge cluster in image area */
.feature-img-wrap--awards {
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 1rem;
  background: var(--color-dark);
}

/* Map card — crop to show key countries */
.feature-img-wrap--map {
  height: 220px;
  background: var(--color-white);
}
.feature-img-wrap--map .feature-img {
  object-fit: cover;
  object-position: center 30%;
}

/* Text content area */
.feature-body {
  padding: 1.5rem;
  flex: 1;
}
.feature-body h3 { margin-bottom: 0.6rem; }
.feature-body p { font-size: 0.92rem; margin: 0; }

/* Badge cluster inside awards card image area */
.cluster-badge {
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.cluster-badge--small {
  width: 60px;
  height: 60px;
  opacity: 0.85;
}
.cluster-badge--lohas {
  width: 100%;
  max-width: 180px;
  height: auto;
}

.feature-card h3 { margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.88rem; }

/* Awards showcase */
.awards-showcase {
  background: var(--color-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.awards-heading {
  color: var(--color-gold);
  margin-bottom: 0.4rem;
}

.awards-sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) {
  .awards-grid { grid-template-columns: repeat(4, 1fr); }
}

.award-item {
  border-radius: var(--radius-md);
  padding: 1.25rem 0.75rem;
  border: 2px solid;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.award-item.gold {
  background: rgba(198,156,109,0.12);
  border-color: var(--color-gold);
}
.award-item.finalist {
  background: rgba(111,125,92,0.12);
  border-color: var(--color-green);
}

.award-badge-img {
  width: 100%;
  max-width: 180px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* LOHAS award banner */
.lohas-award {
  margin-top: 1rem;
}
.lohas-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: rgba(111,125,92,0.15);
  border: 2px solid var(--color-green);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  text-align: center;
}
@media (min-width: 540px) {
  .lohas-inner {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 1.25rem;
  }
}
.lohas-badge-img {
  width: 120px;
  height: auto;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
}
@media (min-width: 540px) {
  .lohas-badge-img { width: 140px; }
}
.lohas-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #9ab88e;
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.lohas-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}
.lohas-desc strong { color: var(--color-white); }

/* Video */
.video-container {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-border);
  text-align: center;
}
.video-heading { margin-bottom: 1.25rem; }
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #000;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-disclaimer {
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-top: 1rem;
  font-style: italic;
}

/* =========================================
   MISSION
   ========================================= */
.mission-section {
  background: var(--color-dark);
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  color: var(--color-white);
}

.mission-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .mission-grid { grid-template-columns: 1fr 340px; }
}

.mission-portrait-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.mission-portrait {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--color-gold);
  flex-shrink: 0;
  background: rgba(198,156,109,0.15);
}
.mission-content h2 { color: var(--color-white); }
.mission-content p { color: rgba(255,255,255,0.72); }
.mission-content p strong { color: var(--color-gold); }

.mission-stats {
  display: grid;
  gap: 1.25rem;
}

.stat-item {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-gold);
  display: block;
}
.stat-label {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
}

/* =========================================
   EARN WITH US
   ========================================= */
.earn-section { background: var(--color-bg); }

.earn-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 640px) { .earn-grid { grid-template-columns: 1fr 1fr; } }

.earn-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.earn-card h3 { margin-bottom: 0.75rem; }
.earn-card p { margin-bottom: 1.5rem; font-size: 0.9rem; }

.mlm-compliance {
  max-width: 780px;
  margin: 2rem auto 0;
}
.mlm-compliance em { color: var(--color-muted); font-style: italic; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-section { background: var(--color-surface); }

.testimonials-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-style: normal;
}

.stars {
  color: var(--color-gold);
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.testimonial-card p {
  font-style: italic;
  color: var(--color-text);
  font-size: 0.95rem;
  flex: 1;
}
.testimonial-card p::before { content: '"'; }
.testimonial-card p::after  { content: '"'; }

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  border-top: 1px solid var(--color-border);
  padding-top: 0.75rem;
}
.testimonial-card footer strong { display: block; color: var(--color-dark); margin-bottom: 0.2rem; }

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}
.testimonial-disclaimer {
  font-size: 0.75rem;
  color: var(--color-muted);
  font-style: italic;
}

.testimonial-compliance { font-size: 0.82rem; }

/* =========================================
   FAQ
   ========================================= */
.faq-section { background: var(--color-bg); }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item:first-child { border-top: 1px solid var(--color-border); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--color-cta); }
.faq-question[aria-expanded="true"] { color: var(--color-cta); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-cta);
  transition: transform var(--transition);
  flex-shrink: 0;
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  padding: 0 0 1.25rem;
  color: var(--color-muted);
  font-size: 0.93rem;
  line-height: 1.7;
}
.faq-answer:not([hidden]) { display: block; }
.faq-answer strong { color: var(--color-dark); }

/* =========================================
   COMPLIANCE DISCLOSURES
   ========================================= */
.compliance-section {
  background: var(--color-compliance);
  border-top: 2px solid var(--color-comp-border);
  border-bottom: 2px solid var(--color-comp-border);
}

.compliance-section h2 { margin-bottom: 0.5rem; }
.compliance-section .eyebrow-tag { background: var(--color-comp-border); color: var(--color-dark); margin-bottom: 0.75rem; }

.compliance-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (min-width: 640px) { .compliance-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .compliance-grid { grid-template-columns: repeat(3, 1fr); } }

.compliance-card {
  background: var(--color-white);
  border: 1px solid var(--color-comp-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
}
.compliance-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  color: var(--color-dark);
}
.compliance-card p {
  font-size: 0.82rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0;
}

/* =========================================
   CONTACT
   ========================================= */
.contact-section { background: var(--color-dark); }
.contact-section .section-header h2 { color: var(--color-white); }
.contact-section .section-sub { color: rgba(255,255,255,0.65); }
.contact-section .eyebrow-tag { background: rgba(198,156,109,0.3); color: var(--color-gold); }

.contact-grid {
  display: grid;
  gap: 2.5rem;
  max-width: 780px;
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 640px) {
  .contact-grid { grid-template-columns: auto 1fr; }
}

.contact-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-info p { color: rgba(255,255,255,0.65); }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: #1e1410;
  color: rgba(255,255,255,0.6);
  padding: 3rem 0 0;
}

.footer-inner {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 640px) { .footer-inner { grid-template-columns: 1fr auto; align-items: start; } }

.footer-brand p { font-size: 0.83rem; margin-top: 0.5rem; color: rgba(255,255,255,0.45); }

.footer-links ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--color-gold); }

.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: underline; }
.footer-bottom a:hover { color: var(--color-gold); }
.footer-compliance { margin-top: 0.4rem; }

/* =========================================
   BACK TO TOP
   ========================================= */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--color-cta);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 999;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  color: var(--color-white);
  transform: translateY(-3px);
}

/* =========================================
   PRINT / REDUCED MOTION
   ========================================= */
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
  .product-card:hover { transform: none; }
  .mockup-circle { animation: none; }
  .mockup-steam span { animation: none; }
}

@media print {
  .site-header, .back-to-top, .nav-toggle { display: none; }
  .hero-section { background: none; color: #000; }
  .hero-content h1, .mission-content h2 { color: #000; }
}

/* =========================================
   CONTACT FORM PANEL
   ========================================= */
.contact-form-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  opacity: 0;
  margin-top: 0;
}
.contact-form-panel.open {
  max-height: 600px;
  opacity: 1;
  margin-top: 2rem;
}

.contact-form-inner {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 680px;
  margin: 0 auto;
}
.contact-form-inner h3 {
  color: var(--color-white);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}
.form-group label span {
  color: var(--color-gold);
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-white);
  width: 100%;
  transition: border-color var(--transition), background var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.35);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(255,255,255,0.15);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.form-success {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(111,125,92,0.3);
  border: 1px solid var(--color-green);
  border-radius: var(--radius-sm);
  color: #9ab88e;
  font-size: 0.9rem;
}
.form-error {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(210,105,60,0.2);
  border: 1px solid var(--color-cta);
  border-radius: var(--radius-sm);
  color: #e8a080;
  font-size: 0.9rem;
}

/* Toggle button active state */
#toggleContactForm[aria-expanded="true"] {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* =========================================
   COOKIE CONSENT BANNER
   ========================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--color-dark);
  border-top: 3px solid var(--color-gold);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  padding: 1.25rem;
}

.cookie-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .cookie-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.cookie-banner-text strong {
  display: block;
  color: var(--color-gold);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.cookie-banner-text p {
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
}
.cookie-banner-text a {
  color: var(--color-gold);
  text-decoration: underline;
}
.cookie-banner-text strong { font-weight: 600; }
.cookie-banner-text p strong {
  color: rgba(255,255,255,0.9);
  display: inline;
  font-size: inherit;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  flex-shrink: 0;
}
.cookie-btn-manage {
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.2);
  font-size: 0.85rem;
  padding: 0.6rem 1rem;
  min-height: 40px;
}
.cookie-btn-manage:hover {
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.4);
}

/* Manage panel */
.cookie-manage-panel {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 1rem;
  padding-top: 1rem;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cookie-option:last-of-type { border-bottom: none; }

.cookie-option-text strong {
  display: block;
  color: var(--color-white);
  font-size: 0.88rem;
  margin-bottom: 0.2rem;
}
.cookie-option-text span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

.cookie-toggle--always-on {
  font-size: 0.72rem;
  color: var(--color-green);
  background: rgba(111,125,92,0.2);
  border: 1px solid var(--color-green);
  border-radius: 100px;
  padding: 0.25rem 0.65rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Toggle switch */
.cookie-toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}
.cookie-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 24px;
  transition: background 0.25s;
}
.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: var(--color-white);
  border-radius: 50%;
  transition: transform 0.25s;
}
.cookie-toggle-switch input:checked + .cookie-toggle-slider {
  background: var(--color-green);
}
.cookie-toggle-switch input:checked + .cookie-toggle-slider::before {
  transform: translateX(20px);
}

.cookie-manage-actions {
  margin-top: 1rem;
  text-align: right;
}

/* =========================================
   VIDEO CONSENT GATE
   ========================================= */
.video-consent-gate {
  position: absolute;
  inset: 0;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
}
.video-consent-inner {
  text-align: center;
  padding: 2rem;
  max-width: 380px;
}
.video-consent-icon {
  font-size: 3rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
  opacity: 0.7;
}
.video-consent-inner p {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}
.video-consent-note {
  font-size: 0.78rem !important;
  margin-top: 0.75rem !important;
  margin-bottom: 0 !important;
}
.video-consent-note a {
  color: var(--color-gold);
  text-decoration: underline;
}
