/*
Theme Name: Gemmacol
Theme URI: https://www.gemmacol.com
Author: Gemmacol
Author URI: https://www.gemmacol.com
Description: Premium WordPress theme for Gemmacol — Direct Colombian Emerald Supply. Clean & Modern luxury aesthetic with video hero, full navigation, and all custom page templates.
Version: 1.0.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gemmacol
Tags: luxury, clean, modern, emerald, jewelry, ecommerce
*/

/* ============================================================
   CSS DESIGN TOKENS
   ============================================================ */
:root {
  /* ── Option A: Forest & Stone ── */

  /* Greens — natural forest from logo */
  --emerald:        #2b5444;
  --emerald-light:  #3d7a62;
  --emerald-pale:   #72a896;
  --emerald-mist:   #e8ede9;

  /* Stone accent — warm slate, replaces gold */
  --stone:          #9e9488;
  --stone-light:    #b8afa4;
  --stone-pale:     #d8d2ca;

  /* Gold aliased to stone so all existing refs work */
  --gold:           #9e9488;
  --gold-light:     #b8afa4;

  /* Neutrals */
  --cream:          #f6f3ee;
  --ivory:          #ffffff;

  /* Dark backgrounds — deep forest, not black */
  --dark:           #1b2e26;
  --dark-mid:       #21382e;
  --dark-soft:      #2a4438;

  /* Text */
  --text-muted:     #7a9e8c;

  /* Borders */
  --border:         rgba(158,148,136,0.22);

  /* Topbar */
  --topbar-text:    #1b2e26;
  --topbar-muted:   #5a7068;

  --radius:         0px;
  --transition:     0.25s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.serif   { font-family: 'Spectral', serif; }
.gold    { color: var(--gold-light); }
.em      { color: var(--emerald-pale); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 80px; }

.section-eyebrow {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
  display: block;
  flex-shrink: 0;
}
.section-eyebrow.center { justify-content: center; }
.section-eyebrow.center::before { display: none; }

.section-title {
  font-family: 'Spectral', serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 20px;
}
.section-title.dark  { color: #1a1a1a; }
.section-title.light { color: var(--cream); }

.section-sub {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.9;
}
.section-sub.dark { color: #555; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-solid {
  display: inline-block;
  padding: 13px 32px;
  background: var(--emerald);
  border: 1px solid var(--emerald-light);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background var(--transition);
  cursor: pointer;
}
.btn-solid:hover { background: var(--emerald-light); color: var(--cream); }

.btn-outline {
  display: inline-block;
  padding: 13px 32px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-outline:hover { background: rgba(184,148,63,0.1); color: var(--gold-light); }

.btn-gold {
  display: inline-block;
  padding: 13px 32px;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background var(--transition);
  cursor: pointer;
}
.btn-gold:hover { background: var(--gold-light); color: var(--dark); }

/* ============================================================
   TOP BAR
   ============================================================ */
.site-topbar {
  background: var(--ivory);
  border-bottom: 1px solid rgba(184,148,63,0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: sticky;
  top: 0;
  z-index: 999;
}

.site-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}
.logo-name {
  font-family: 'Spectral', serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--topbar-text);
  text-transform: uppercase;
  line-height: 1;
}
.logo-sub {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
}

.topbar-right {
  display: flex;
  gap: 18px;
  align-items: center;
}
.topbar-social {
  color: var(--topbar-muted);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-social:hover            { color: var(--gold); }
.topbar-social.whatsapp:hover   { color: #25D366; }
.topbar-social.instagram:hover  { color: #C13584; }
.topbar-social.linkedin:hover   { color: #0077B5; }

/* ============================================================
   MAIN NAV
   ============================================================ */
.site-nav {
  background: var(--dark-mid);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 61px;
  z-index: 998;
}

.nav-group {
  position: relative;
}
.nav-group > .nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 16px 24px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color var(--transition), background var(--transition);
  cursor: pointer;
  font-weight: 400;
  white-space: nowrap;
}
.nav-group > .nav-link:hover,
.nav-group > .nav-link.current { color: var(--gold-light); background: rgba(184,148,63,0.06); }
.nav-chevron {
  font-size: 8px;
  transition: transform var(--transition);
  opacity: 0.5;
}
.nav-group:hover > .nav-link .nav-chevron { transform: rotate(180deg); }

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark-soft);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  min-width: 210px;
  z-index: 1000;
  padding: 8px 0;
}
.nav-group:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  padding: 10px 24px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}
.nav-dropdown a:hover { color: var(--gold-light); background: rgba(184,148,63,0.08); }

.nav-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
  margin: 0 4px;
  flex-shrink: 0;
}

.nav-cta {
  margin-left: 16px;
  padding: 10px 24px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  font-weight: 600;
  transition: background var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); color: var(--dark); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--topbar-text);
  transition: all var(--transition);
}

/* ============================================================
   TICKER
   ============================================================ */
.site-ticker {
  background: var(--ivory);
  padding: 10px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(184,148,63,0.25);
  border-top: 1px solid rgba(184,148,63,0.25);
}
.ticker-track {
  display: flex;
  gap: 60px;
  animation: tickerMove 28s linear infinite;
  white-space: nowrap;
}
@keyframes tickerMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #2a2a2a;
  display: flex;
  align-items: center;
  gap: 14px;
}
.ticker-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* ============================================================
   VIDEO HERO (Homepage)
   ============================================================ */
.video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.video-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.video-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,22,16,0.88) 0%,
    rgba(13,22,16,0.55) 55%,
    rgba(26,92,58,0.35) 100%
  );
  z-index: 1;
}

.video-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 120px;
  max-width: 700px;
}

.video-hero__eyebrow {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.video-hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  display: block;
  flex-shrink: 0;
}

.video-hero__title {
  font-family: 'Spectral', serif;
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 300;
  line-height: 1.04;
  color: var(--cream);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.video-hero__title em {
  font-style: italic;
  color: var(--emerald-pale);
}

.video-hero__text {
  font-size: 13px;
  color: rgba(245,240,232,0.75);
  max-width: 480px;
  line-height: 1.9;
  margin-bottom: 44px;
}

.video-hero__actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.video-hero__stats {
  position: absolute;
  bottom: 56px;
  right: 120px;
  display: flex;
  gap: 48px;
  z-index: 2;
}
.stat-block { text-align: center; }
.stat-num {
  font-family: 'Spectral', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}
.stat-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

.video-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245,240,232,0.4);
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.video-hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(184,148,63,0.5), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   PAGE HERO (Inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, rgba(13,22,16,0.97) 0%, rgba(26,92,58,0.3) 100%), #0d1610;
  padding: 80px 80px 70px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before,
.page-hero::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(184,148,63,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero::before { right: 80px; top: 50%; transform: translateY(-50%); width: 300px; height: 300px; }
.page-hero::after  { right: 120px; top: 50%; transform: translateY(-50%); width: 200px; height: 200px; }

.page-hero__eyebrow {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.page-hero__eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
  display: block;
  flex-shrink: 0;
}

.page-hero h1 {
  font-family: 'Spectral', serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  max-width: 700px;
}
.page-hero h1 em { font-style: italic; color: var(--emerald-pale); }

.page-hero p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 540px;
}

/* ============================================================
   PRODUCT / BATCH CARDS
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.products-grid.col-3 { grid-template-columns: repeat(3, 1fr); }

.product-card {
  background: var(--dark-soft);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.product-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--dark-soft), var(--emerald) 200%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img.light-bg { background: #f8f8f8; }

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}

.gem-shape {
  width: 80px;
  height: 80px;
  background: radial-gradient(ellipse at 35% 35%, rgba(74,171,116,0.9), rgba(26,92,58,0.6) 60%, rgba(13,22,16,0.8));
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  transition: transform 0.4s ease;
}
.product-card:hover .gem-shape { transform: scale(1.1) rotate(5deg); }

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(13,22,16,0.95));
  padding: 32px 24px 24px;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.product-card:hover .product-overlay { opacity: 1; transform: translateY(0); }

.product-info {
  padding: 20px 20px 24px;
  border-top: 1px solid rgba(184,148,63,0.2);
  background: #ffffff;
}
.product-ct {
  font-family: 'Spectral', serif;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.product-name {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #1a1a1a;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.product-origin {
  font-size: 9px;
  letter-spacing: 0.25em;
  color: #888;
  text-transform: uppercase;
}

/* ============================================================
   EVENT CARDS
   ============================================================ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.event-card {
  background: var(--dark-soft);
  padding: 36px 32px;
  border: 1px solid transparent;
  transition: border-color var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.event-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px;
  height: 0;
  background: var(--gold);
  transition: height 0.3s ease;
}
.event-card:hover::before { height: 100%; }
.event-card:hover { border-color: rgba(184,148,63,0.15); }
.event-card.white-bg { background: #f8f8f6; border-color: rgba(0,0,0,0.06); }
.event-card.emerald-bg {
  background: var(--emerald);
  border-color: var(--emerald-light);
}

.event-type {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--emerald-pale);
  margin-bottom: 14px;
}
.event-card.white-bg .event-type { color: var(--emerald); }
.event-card.emerald-bg .event-type { color: rgba(245,240,232,0.6); }

.event-title {
  font-family: 'Spectral', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.2;
}
.event-card.white-bg .event-title { color: #1a1a1a; }
.event-card.emerald-bg .event-title { color: var(--cream); }

.event-date {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.event-card.white-bg .event-date { color: #888; }
.event-card.emerald-bg .event-date { color: rgba(245,240,232,0.6); }

.event-desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.8;
}
.event-card.white-bg .event-desc { color: #555; }
.event-card.emerald-bg .event-desc { color: rgba(245,240,232,0.7); }

/* ============================================================
   ARTICLE CARDS
   ============================================================ */
.articles-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2px;
}
.article-card {
  background: var(--dark-soft);
  overflow: hidden;
  cursor: pointer;
}
.article-card.featured { grid-row: span 2; }

.article-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--dark), var(--emerald));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.article-card.featured .article-thumb { aspect-ratio: 4/3; }
.article-thumb img { width: 100%; height: 100%; object-fit: cover; }

.article-body { padding: 24px; }
.article-tag {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--emerald-pale);
  margin-bottom: 10px;
}
.article-title {
  font-family: 'Spectral', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 12px;
}
.article-card.featured .article-title { font-size: 26px; }
.article-excerpt { font-size: 11px; color: var(--text-muted); line-height: 1.8; }
.article-read-more {
  display: inline-block;
  margin-top: 16px;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color var(--transition);
}
.article-read-more:hover { color: var(--gold-light); }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  gap: 0;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--emerald-light), var(--gold), transparent);
  opacity: 0.3;
  pointer-events: none;
}

.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.step-circle {
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: var(--dark-mid);
  position: relative;
  z-index: 2;
}
.step-num {
  font-family: 'Spectral', serif;
  font-size: 20px;
  color: var(--gold-light);
}
.step-title {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 10px;
}
.step-desc { font-size: 11px; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   VALUE PROPOSITION
   ============================================================ */
.value-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.value-list { margin-top: 40px; }
.value-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(26,92,58,0.12);
  align-items: flex-start;
}
.value-num {
  font-family: 'Spectral', serif;
  font-size: 20px;
  color: var(--gold);
  opacity: 0.6;
  min-width: 30px;
  line-height: 1;
  padding-top: 2px;
}
.value-text strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1a1a1a;
  font-weight: 500;
  margin-bottom: 4px;
}
.value-text span { font-size: 12px; color: #555; line-height: 1.7; }

.value-visual {
  position: relative;
  height: 560px;
  background: linear-gradient(160deg, #f0f4f1, #e8efe9);
  border: 1px solid rgba(26,92,58,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gem-large {
  width: 200px;
  height: 200px;
  background: radial-gradient(ellipse at 35% 30%, rgba(74,171,116,0.95), rgba(26,92,58,0.7) 55%, rgba(13,22,16,0.9));
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  animation: gemFloat 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
.gem-halo {
  position: absolute;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(184,148,63,0.12);
  border-radius: 50%;
  animation: haloExpand 6s ease-in-out infinite;
}
@keyframes gemFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-16px) rotate(2deg); }
}
@keyframes haloExpand {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.05); opacity: 1; }
}
.value-visual-label {
  position: absolute;
  bottom: 32px;
  left: 32px;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #888;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.testimonial-card {
  background: var(--dark-soft);
  padding: 40px 36px;
  position: relative;
}
.testimonial-card.featured { background: var(--emerald); }
.testimonial-quote {
  font-family: 'Spectral', serif;
  font-size: 48px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}
.testimonial-text {
  font-family: 'Spectral', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-author { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.testimonial-role   { font-size: 10px; color: var(--text-muted); margin-top: 4px; }

/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.team-card { background: var(--dark-soft); overflow: hidden; }
.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--dark), var(--emerald));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-placeholder {
  font-family: 'Spectral', serif;
  font-size: 72px;
  color: rgba(74,171,116,0.15);
  line-height: 1;
}
.team-photo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(13,22,16,0.9));
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  text-align: center;
}
.team-info { padding: 24px 22px 28px; }
.team-name {
  font-family: 'Spectral', serif;
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 4px;
}
.team-role {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.team-divider { width: 24px; height: 1px; background: rgba(184,148,63,0.3); margin-bottom: 12px; }
.team-desc { font-size: 11px; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   CERTIFICATIONS
   ============================================================ */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.cert-card {
  background: var(--dark-soft);
  padding: 48px 44px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  border: 1px solid transparent;
  transition: border-color var(--transition);
}
.cert-card:hover { border-color: var(--border); }
.cert-badge {
  width: 72px;
  height: 72px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Spectral', serif;
  font-size: 24px;
  color: var(--gold);
}
.cert-title {
  font-family: 'Spectral', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 12px;
}
.cert-desc { font-size: 12px; color: var(--text-muted); line-height: 1.9; }
.cert-org  { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-top: 14px; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 48px;
}
.contact-col { padding: 0 48px; }
.contact-col:first-child { padding-left: 0; }
.contact-col:last-child  { padding-right: 0; }
.contact-divider { background: var(--border); width: 1px; }

.contact-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.contact-name {
  font-family: 'Spectral', serif;
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 14px;
  line-height: 1.3;
}
.contact-address { font-size: 12px; color: var(--text-muted); line-height: 2; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 18px;
  transition: opacity var(--transition);
}
.contact-item:hover { opacity: 0.8; }
.contact-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2px; }
.contact-item-value { font-size: 13px; color: var(--cream); }

.map-container {
  border: 1px solid var(--border);
  overflow: hidden;
  width: 100%;
}
.map-container iframe { display: block; }

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter-section {
  background: var(--dark-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 70px 80px;
}
.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 36px auto 0;
}
.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  outline: none;
}
.newsletter-input::placeholder { color: var(--text-muted); }
.newsletter-btn {
  padding: 14px 28px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.newsletter-btn:hover { background: var(--gold-light); }
.newsletter-note { font-size: 9px; color: var(--text-muted); letter-spacing: 0.1em; margin-top: 16px; }

/* ============================================================
   REQUEST AVAILABILITY FORM
   ============================================================ */
.ra-wrap {
  background: var(--ivory);
  padding: 80px 80px 100px;
  max-width: 800px;
  margin: 0 auto;
}
.ra-eyebrow {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.ra-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--emerald); display: block; }
.ra-h1 {
  font-family: 'Spectral', serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1.05;
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}
.ra-h1 em { font-style: italic; color: var(--emerald); }

.f-divider {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(26,92,58,0.15);
  padding-bottom: 12px;
  margin: 36px 0 24px;
}
.fg { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fg label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: #555; font-weight: 500; }
.fg input,
.fg select,
.fg textarea {
  padding: 13px 16px;
  border: 1px solid rgba(26,92,58,0.2);
  background: #fafafa;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color var(--transition);
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus { border-color: var(--emerald); }
.fg textarea { min-height: 120px; resize: vertical; }
.sel-wrap { position: relative; }
.sel-wrap select { width: 100%; appearance: none; cursor: pointer; }
.fg input::placeholder,
.fg textarea::placeholder { color: #aaa; }
.ra-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: var(--emerald);
  color: var(--cream);
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  margin-top: 32px;
}
.ra-btn:hover { background: var(--emerald-light); }
.ra-note { font-size: 10px; color: #888; margin-top: 12px; letter-spacing: 0.05em; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 60px 80px 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer-logo-name {
  font-family: 'Spectral', serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--cream);
  margin-bottom: 4px;
}
.footer-tagline {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-desc { font-size: 11px; color: var(--text-muted); line-height: 1.9; max-width: 260px; }

.footer-col h4 {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col a {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--cream); }

.footer-legal {
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.footer-legal a {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 16px;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold-light); }

.footer-bottom {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-align: center;
}

/* ============================================================
   SECTION BACKGROUNDS
   ============================================================ */
.bg-dark     { background: var(--dark); }
.bg-dark-mid { background: var(--dark-mid); border-top: 1px solid var(--border); }
.bg-dark-soft { background: var(--dark-soft); }
.bg-white    { background: #ffffff; }
.bg-ivory    { background: #f5f5f2; }
.bg-emerald  { background: var(--emerald); }

.section-pad { padding: 100px 80px; }
.section-pad-sm { padding: 70px 80px; }

/* ============================================================
   WORDPRESS SPECIFIC
   ============================================================ */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 11px; color: var(--text-muted); margin-top: 8px; }
.aligncenter { display: block; margin: 0 auto; }
.alignleft  { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.sticky { /* WP sticky post */ }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .container { padding: 0 48px; }
  .section-pad, .section-pad-sm { padding-left: 48px; padding-right: 48px; }
  .page-hero, .site-topbar, .site-footer { padding-left: 48px; padding-right: 48px; }
  .video-hero__content { padding: 0 80px; }
  .video-hero__stats { right: 80px; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .site-topbar { padding: 12px 24px; }
  .site-nav { overflow-x: auto; justify-content: flex-start; padding: 0 16px; top: 57px; }
  .section-pad, .section-pad-sm, .page-hero, .site-footer, .ra-wrap { padding-left: 24px; padding-right: 24px; }
  .video-hero__content { padding: 0 32px; }
  .video-hero__stats { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .value-section { grid-template-columns: 1fr; }
  .value-visual { height: 300px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .events-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .article-card.featured { grid-row: auto; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-col { padding: 0; }
  .contact-divider { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .fg-row { grid-template-columns: 1fr; }
  .nav-toggle { display: flex; }
}

@media (max-width: 600px) {
  .logo-name { font-size: 22px; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .video-hero { height: 80vh; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid var(--border); border-bottom: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ── FULL-WIDTH CONTENT FIX ─────────────────────────────────────────────
   WordPress wraps page content in .entry-content with a max-width.
   Our templates handle their own layout so we remove all constraints.
   ─────────────────────────────────────────────────────────────────────── */
.entry-content,
.entry-content > *,
.wp-block-post-content,
.wp-block-post-content > * {
  max-width: 100% !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box;
}

/* But keep prose content readable on pure text pages */
.entry-content p,
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content ul,
.entry-content ol,
.entry-content blockquote {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Sections inside entry-content must always be full width */
.entry-content section,
.entry-content .section-pad,
.entry-content .page-hero,
.entry-content .bg-white,
.entry-content .bg-dark,
.entry-content .bg-dark-mid,
.entry-content .bg-dark-soft,
.entry-content .bg-emerald,
.entry-content > div[style*="background"],
.entry-content > section {
  max-width: 100% !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: inherit;
  padding-right: inherit;
}

/* ============================================================
   v2 DESIGN UPDATES
   — Logo image styles
   — Split hero (CTA left / video right)
   — Color palette refinements
   — Ticker removed
   ============================================================ */

/* ── LOGO IMAGE ────────────────────────────────────────────── */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo__img {
  height: 52px;
  width: auto;
  display: block;
  max-width: 240px;
}

/* Support WP custom logo */
.site-logo .custom-logo-link {
  display: flex;
  align-items: center;
}
.site-logo .custom-logo-link img,
.site-logo .custom-logo {
  height: 52px !important;
  width: auto !important;
  max-width: 240px !important;
  display: block !important;
}

@media (max-width: 768px) {
  .site-logo__img,
  .site-logo .custom-logo-link img,
  .site-logo .custom-logo {
    height: 38px !important;
  }
}

/* ── TOPBAR REFINEMENTS ────────────────────────────────────── */
.site-topbar {
  padding: 10px 48px;
  gap: 0;
  min-height: 72px;
}
.topbar-right {
  gap: 20px;
}
.topbar-social {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--topbar-muted);
  gap: 7px;
}
.topbar-social i { font-size: 12px; }
.topbar-social:hover { color: var(--emerald); }

/* ── NAV — stone accent instead of gold ───────────────────── */
.nav-group > .nav-link:hover,
.nav-group > .nav-link.current {
  color: var(--stone-light);
  background: rgba(140,132,120,0.07);
}
.nav-dropdown {
  border-top: 2px solid var(--stone);
}
.nav-dropdown a:hover {
  color: var(--stone-light);
  background: rgba(140,132,120,0.08);
}
.nav-cta {
  background: var(--emerald);
  color: var(--cream);
  border: none;
}
.nav-cta:hover {
  background: var(--emerald-light);
  color: var(--cream);
}

/* ── SPLIT HERO ───────────────────────────────────────────── */
.split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
  background: var(--dark);
  overflow: hidden;
}

/* Left panel */
.split-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  position: relative;
  z-index: 2;
  background: var(--dark);
}

.split-hero__eyebrow {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.split-hero__eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--stone);
  display: block;
  flex-shrink: 0;
}

.split-hero__title {
  font-family: 'Spectral', serif;
  font-size: clamp(40px, 4.5vw, 72px);
  font-weight: 300;
  line-height: 1.06;
  color: var(--cream);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.split-hero__title em {
  font-style: italic;
  color: var(--emerald-pale);
}

.split-hero__text {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.9;
  margin-bottom: 44px;
}

.split-hero__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.split-hero__stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

/* Right panel: video */
.split-hero__video-wrap {
  position: relative;
  overflow: hidden;
  background: var(--dark-soft);
}
.split-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.split-hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20,31,26,0.45) 0%,
    rgba(20,31,26,0.1) 60%,
    transparent 100%
  );
  z-index: 1;
}

/* Split hero responsive */
@media (max-width: 960px) {
  .split-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .split-hero__content {
    padding: 64px 32px 48px;
    order: 2;
  }
  .split-hero__video-wrap {
    order: 1;
    height: 55vw;
    min-height: 280px;
    max-height: 480px;
    position: relative;
  }
  .split-hero__stats {
    gap: 28px;
    padding-top: 28px;
  }
}
@media (max-width: 540px) {
  .split-hero__content { padding: 48px 20px 40px; }
  .split-hero__title { font-size: clamp(36px, 9vw, 52px); }
  .split-hero__actions { flex-direction: column; align-items: flex-start; }
  .split-hero__stats { gap: 20px; flex-wrap: wrap; }
}

/* ── BUTTONS — updated to new palette ─────────────────────── */
.btn-solid {
  background: var(--emerald);
  border-color: var(--emerald-light);
}
.btn-solid:hover {
  background: var(--emerald-light);
}
.btn-outline {
  border-color: var(--stone);
  color: var(--stone-light);
}
.btn-outline:hover {
  background: rgba(140,132,120,0.12);
  color: var(--stone-light);
}
.btn-gold {
  background: var(--emerald);
  color: var(--cream);
}
.btn-gold:hover {
  background: var(--emerald-light);
  color: var(--cream);
}

/* ── SECTION EYEBROWS ─────────────────────────────────────── */
.section-eyebrow {
  color: var(--stone);
}
.section-eyebrow::before {
  background: var(--stone);
}

/* ── PAGE HERO ────────────────────────────────────────────── */
.page-hero__eyebrow { color: var(--stone-light); }
.page-hero__eyebrow::before { background: var(--stone); }

/* ── PRODUCT CARDS ────────────────────────────────────────── */
.product-info { background: #ffffff; }
.product-ct   { color: var(--stone); }

/* ── EVENT CARDS ──────────────────────────────────────────── */
.event-type { color: var(--emerald-pale); }
.event-card.emerald-bg { background: var(--emerald); }

/* ── ARTICLE CARDS ────────────────────────────────────────── */
.article-tag         { color: var(--emerald-pale); }
.article-read-more   { color: var(--stone); }
.article-read-more:hover { color: var(--stone-light); }

/* ── PROCESS STEPS ────────────────────────────────────────── */
.step-circle  { border-color: var(--stone); }
.step-num     { color: var(--stone-light); }
.process-steps::before {
  background: linear-gradient(90deg, transparent, var(--stone), var(--emerald-pale), var(--stone), transparent);
}

/* ── VALUE LIST ───────────────────────────────────────────── */
.value-num { color: var(--stone); }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer-tagline { color: var(--stone); }
.footer-col h4  { color: var(--stone); }

/* ── CONTACT SECTION ──────────────────────────────────────── */
.contact-label  { color: var(--stone); }
.contact-icon svg { stroke: var(--stone); }

/* ── TICKER — hidden (removed from header.php, 
   but safeguard in case it's still in markup) ──────────────── */
.site-ticker { display: none !important; }

/* ── GEM ANIMATIONS — updated to new greens ──────────────────*/
.gem-large {
  background: radial-gradient(ellipse at 35% 30%, rgba(106,171,144,0.95), rgba(41,83,69,0.7) 55%, rgba(20,31,26,0.9));
}
.gem-shape {
  background: radial-gradient(ellipse at 35% 35%, rgba(106,171,144,0.9), rgba(41,83,69,0.6) 60%, rgba(20,31,26,0.8));
}

/* ============================================================
   CLASSIC EDITOR — FULL WIDTH FIX
   When HTML is pasted via Classic Editor Text tab, WP wraps
   it in .entry-content. These rules ensure sections inside
   it always break out to full width.
   ============================================================ */

/* The wrapper itself — zero it out completely */
.entry-content {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Every direct child that is a section or div — full width */
.entry-content > section,
.entry-content > div,
.entry-content > header,
.entry-content > footer,
.entry-content > article {
  max-width: 100% !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box;
}

/* Sections with background styles pasted inline — always full width */
.entry-content > [style*="background"],
.entry-content > [style*="padding"],
.entry-content > .section-pad,
.entry-content > .bg-white,
.entry-content > .bg-dark,
.entry-content > .bg-dark-mid,
.entry-content > .bg-dark-soft,
.entry-content > .bg-emerald,
.entry-content > .page-hero,
.entry-content > .team-grid,
.entry-content > .products-grid,
.entry-content > .events-grid,
.entry-content > .articles-grid,
.entry-content > .value-section,
.entry-content > .process-steps,
.entry-content > .cert-grid,
.entry-content > .contact-grid {
  max-width: 100% !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Only constrain actual prose text elements, not layout elements */
.entry-content > p,
.entry-content > h1,
.entry-content > h2,
.entry-content > h3,
.entry-content > h4,
.entry-content > ul,
.entry-content > ol,
.entry-content > blockquote,
.entry-content > table {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Kill wpautop empty paragraphs that get injected between sections */
.entry-content > p:empty,
.entry-content > p:blank {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* White section backgrounds need their own text color context */
.entry-content > section[style*="#ffffff"],
.entry-content > section[style*="white"],
.entry-content > div[style*="#ffffff"],
.entry-content > div[style*="white"] {
  color: #333;
}

/* ── WP BLOCK EDITOR SAFETY NET ───────────────────────────── */
/* In case someone ever switches to Gutenberg */
.wp-block-post-content {
  max-width: 100% !important;
  padding: 0 !important;
}
.wp-site-blocks {
  padding: 0 !important;
}

/* ============================================================
   v4 — Option A palette + bigger logo + video hero restore
   ============================================================ */

/* ── VIDEO HERO ──────────────────────────────────────────── */
.video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--dark);
}
.video-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.video-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27,46,38,0.88) 0%,
    rgba(27,46,38,0.55) 55%,
    rgba(43,84,68,0.30) 100%
  );
  z-index: 1;
}
.video-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 120px;
  max-width: 720px;
}
.video-hero__eyebrow {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.video-hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--stone);
  display: block;
  flex-shrink: 0;
}
.video-hero__title {
  font-family: 'Spectral', serif;
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 300;
  line-height: 1.04;
  color: var(--cream);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.video-hero__title em {
  font-style: italic;
  color: var(--emerald-pale);
}
.video-hero__text {
  font-size: 13px;
  color: rgba(246,243,238,0.75);
  max-width: 480px;
  line-height: 1.9;
  margin-bottom: 44px;
}
.video-hero__actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.video-hero__stats {
  position: absolute;
  bottom: 56px;
  right: 120px;
  display: flex;
  gap: 48px;
  z-index: 2;
}
.video-hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(246,243,238,0.35);
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: scrollBounce 2.4s ease-in-out infinite;
}
.video-hero__scroll::after {
  content: '';
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(158,148,136,0.5), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ── VIDEO HERO RESPONSIVE ───────────────────────────────── */
@media (max-width: 1100px) {
  .video-hero__content { padding: 0 80px; }
  .video-hero__stats   { right: 80px; }
}
@media (max-width: 768px) {
  .video-hero__content { padding: 0 32px; max-width: 100%; }
  .video-hero__stats   { display: none; }
  .video-hero          { min-height: 80vh; height: 80vh; }
  .video-hero__title   { font-size: clamp(38px, 9vw, 60px); }
  .video-hero__actions { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 480px) {
  .video-hero__content { padding: 0 20px; }
  .video-hero          { min-height: 75vh; height: 75vh; }
}

/* ── OPTION A — PALETTE OVERRIDES ────────────────────────── */

/* Section eyebrows */
.section-eyebrow,
.section-eyebrow::before,
.page-hero__eyebrow,
.page-hero__eyebrow::before { color: var(--stone); }
.section-eyebrow::before,
.page-hero__eyebrow::before { background: var(--stone); }

/* Nav CTA — solid emerald */
.nav-cta {
  background: var(--emerald) !important;
  color: var(--cream) !important;
}
.nav-cta:hover {
  background: var(--emerald-light) !important;
}

/* Buttons */
.btn-solid  { background: var(--emerald); border-color: var(--emerald-light); }
.btn-solid:hover { background: var(--emerald-light); }
.btn-outline { border-color: var(--stone); color: var(--stone-light); }
.btn-outline:hover { background: rgba(158,148,136,0.12); }
.btn-gold { background: var(--emerald); color: var(--cream); }
.btn-gold:hover { background: var(--emerald-light); color: var(--cream); }

/* Gem visuals updated to new greens */
.gem-large {
  background: radial-gradient(ellipse at 35% 30%,
    rgba(114,168,150,0.95),
    rgba(43,84,68,0.7) 55%,
    rgba(27,46,38,0.9));
}
.gem-shape {
  background: radial-gradient(ellipse at 35% 35%,
    rgba(114,168,150,0.9),
    rgba(43,84,68,0.6) 60%,
    rgba(27,46,38,0.8));
}
.gem-halo { border-color: rgba(158,148,136,0.15); }

/* Product card info */
.product-ct  { color: var(--stone); }
.product-info { background: #fff; border-top-color: rgba(158,148,136,0.2); }

/* Process steps */
.step-circle { border-color: var(--stone); background: var(--dark-mid); }
.step-num    { color: var(--stone-light); }
.process-steps::before {
  background: linear-gradient(90deg,
    transparent, var(--stone), var(--emerald-pale), var(--stone), transparent);
}

/* Footer */
.footer-tagline { color: var(--stone); }
.footer-col h4  { color: var(--stone); }
.site-footer    { background: var(--dark); border-color: var(--border); }

/* Stat blocks */
.stat-label { color: var(--text-muted); }

/* Light section backgrounds use mist */
.bg-emerald-mist { background: var(--emerald-mist); }

/* Nav hover */
.nav-group > .nav-link:hover { color: var(--stone-light); }
.nav-dropdown a:hover         { color: var(--stone-light); }
.nav-dropdown { border-top-color: var(--stone); }

/* Topbar social hover */
.topbar-social:hover { color: var(--emerald); }

/* Contact icons */
.contact-label { color: var(--stone); }

/* Article cards */
.article-tag       { color: var(--emerald-pale); }
.article-read-more { color: var(--stone); }
.article-read-more:hover { color: var(--stone-light); }

/* Value list */
.value-num { color: var(--stone); }

/* ── CLEAN UP SPLIT HERO (replaced by video hero) ────────── */
.split-hero { display: none !important; }

/* ============================================================
   CONTENT PAGE FIX — v5
   Fixes inline styles from paste guide content that use
   old hardcoded colors or expect specific variable values
   ============================================================ */

/* ── White sections: ensure dark text ───────────────────────── */
.white-section,
section[style*="background:#ffffff"],
section[style*="background: #ffffff"],
section[style*="background:#f5f5f2"],
section[style*="background:#f5f5f2"],
section[style*="background: #f5f5f2"] {
  color: #333 !important;
}

.white-section h2,
.white-section h3,
.white-section h4,
section[style*="background:#ffffff"] h2,
section[style*="background:#ffffff"] h3,
section[style*="background:#f5f5f2"] h2,
section[style*="background:#f5f5f2"] h3 {
  color: #1a1a1a !important;
}

.white-section p,
.white-section div,
section[style*="background:#ffffff"] p,
section[style*="background:#f5f5f2"] p {
  color: inherit;
}

/* ── Dark sections: ensure cream text ───────────────────────── */
section[style*="background:var(--dark"],
section[style*="background:var(--dark"] h2,
section[style*="background:var(--dark"] h3,
section[style*="background:var(--dark"] p,
section[style*="background:var(--dark"] div {
  color: var(--cream);
}

/* ── Fix old gold rgba borders → new stone ──────────────────── */
[style*="rgba(184,148,63,0.2)"] { border-color: rgba(158,148,136,0.22) !important; }
[style*="rgba(184,148,63,0.3)"] { border-color: rgba(158,148,136,0.3) !important; }
[style*="rgba(184,148,63,0.15)"] { border-color: rgba(158,148,136,0.15) !important; }
[style*="2px solid var(--gold)"] { border-color: var(--stone) !important; }
[style*="3px solid var(--gold)"] { border-color: var(--stone) !important; }
[style*="border-top:2px solid var(--gold)"] { border-top-color: var(--stone) !important; }

/* ── Fix old dark hardcoded backgrounds ─────────────────────── */
[style*="background:linear-gradient(transparent, rgba(13,22,16"] {
  background: linear-gradient(transparent, rgba(27,46,38,0.9)) !important;
}
[style*="rgba(13,22,16,0.9)"] { background-color: rgba(27,46,38,0.9) !important; }
[style*="rgba(74,171,116,0.15)"] { color: rgba(106,171,144,0.15) !important; }

/* ── Knowledge hub cards ─────────────────────────────────────── */
.kh-card {
  background: var(--dark-soft);
  padding: 36px 32px;
  color: var(--cream);
}
.kh-tag {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--emerald-pale);
  margin-bottom: 14px;
}
.kh-card-title {
  font-family: 'Spectral', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 12px;
}
.kh-card-body {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.8;
}
.kh-divider {
  width: 24px;
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}
.kh-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 40px;
}
.kh-quote {
  font-family: 'Spectral', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 20px;
}
.kh-attr {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.7;
}
.kh-attr strong {
  display: block;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 2px;
}
.kh-cta-strip {
  margin-top: 60px;
  padding: 40px 48px;
  background: var(--dark-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.kh-press-row {
  display: flex;
  gap: 48px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.kh-press-pub {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 4px;
}
.kh-press-date {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.kh-press-excerpt {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 8px;
}
.kh-video-card {
  background: var(--dark-soft);
  overflow: hidden;
  cursor: pointer;
}
.kh-video-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--dark), var(--emerald));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.kh-play {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(158,148,136,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kh-play::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent var(--stone-light);
  margin-left: 3px;
}
.kh-video-info { padding: 20px 24px; }

/* ── Article page styles ─────────────────────────────────────── */
.article-prose {
  font-size: 15px;
  color: #333;
  line-height: 1.95;
}
.article-prose h3 {
  font-family: 'Spectral', serif;
  font-size: 26px;
  font-weight: 300;
  color: #1a1a1a;
  margin: 48px 0 16px;
  line-height: 1.2;
}
.article-prose p { margin-bottom: 20px; }
.article-pull {
  font-family: 'Spectral', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--emerald);
  border-left: 3px solid var(--emerald-pale);
  padding: 20px 28px;
  margin: 40px 0;
  line-height: 1.5;
}
.article-fact {
  background: var(--emerald-mist);
  border-left: 3px solid var(--emerald);
  padding: 24px 28px;
  margin: 40px 0;
}
.article-fact-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 10px;
  font-weight: 500;
}
.article-fact p { font-size: 13px; color: #444; line-height: 1.9; margin: 0; }
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  margin-bottom: 48px;
  transition: color var(--transition);
}
.article-back:hover { color: var(--emerald); }
.article-next-item {
  display: block;
  background: var(--dark-soft);
  padding: 28px 32px;
  text-decoration: none;
  transition: background var(--transition);
}
.article-next-item:hover { background: var(--emerald); }
.article-next-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}
.article-next-title {
  font-family: 'Spectral', serif;
  font-size: 18px;
  color: var(--cream);
  line-height: 1.3;
}

/* ── Custom sourcing cards ───────────────────────────────────── */
.batches-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.custom-card {
  background: var(--dark-soft);
  padding: 36px 32px;
}

/* ── Responsive fixes for content pages ─────────────────────── */
@media (max-width: 860px) {
  .kh-grid-3 { grid-template-columns: 1fr; }
  .batches-grid-2 { grid-template-columns: 1fr; }
  .kh-cta-strip { flex-direction: column; align-items: flex-start; }
  .kh-press-row { flex-direction: column; gap: 16px; }
  section[style*="grid-template-columns:1fr 1fr"],
  section[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 600px) {
  .kh-grid-3,
  .batches-grid-2,
  [style*="grid-template-columns:repeat(5,1fr)"],
  [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:repeat(2,1fr)"] {
    grid-template-columns: 1fr !important;
  }
}
