/* =============================================
   OmaCrown Global Services Inc — Stylesheet
   Brand: Forest Green (#1B5E20) + Gold (#C8960A)
   ============================================= */

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

:root {
  --green-dark:   #1B5E20;
  --green:        #2E7D32;
  --green-light:  #4CAF50;
  --gold:         #C8960A;
  --gold-light:   #F0B429;
  --gold-pale:    #FFF8E1;
  --dark:         #0F1B10;
  --text:         #1C2A1D;
  --text-muted:   #5A6B5B;
  --border:       #D8E8D9;
  --bg-light:     #F4F8F4;
  --white:        #FFFFFF;
  --shadow:       0 4px 24px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 40px rgba(0,0,0,0.12);
  --radius:       12px;
  --radius-sm:    8px;
  --transition:   0.25s ease;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

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

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

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* --- CONTAINER --- */
.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* --- TYPOGRAPHY HELPERS --- */
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--text-muted);
  max-width: 560px;
  margin-inline: auto;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gold-text  { color: var(--gold); }
.green-text { color: var(--green-dark); }
.green-bg   { background: var(--green); }
.gold-bg    { background: var(--gold); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,150,10,0.35);
}
.btn-green {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}
.btn-green:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,94,32,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--green-dark);
    border-color: var(--green-dark);
}
.btn-outline:hover {
  background: rgba(27, 94, 32, 0.08);
    border-color: var(--green-dark);
}
.btn-full { width: 100%; justify-content: center; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-block: 0.85rem;
}
.logo-link { flex-shrink: 0; }
.logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
}
.main-nav { margin-left: auto; }
.nav-list {
  display: flex;
  gap: 0.25rem;
}
.nav-link {
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--green-dark);
  background: var(--bg-light);
}
.nav-cta { margin-left: 1rem; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: flex-start;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
    color: var(--text);
    padding-block: 2rem 1.5rem;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 100%;
}
.hero-eyebrow {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(200, 150, 10, 0.15);
    border: 1px solid rgba(200, 150, 10, 0.35);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--green-dark);
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  margin-top: 0.25rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}
.hero-scroll-hint {
  display: none;
}
.hero-scroll-hint span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(27, 94, 32, 0.35);
  border-radius: 12px;
  margin: 0 auto;
}
.hero-scroll-hint span::after {
  content: '';
  display: block;
  width: 4px;
  height: 8px;
  background: rgba(27, 94, 32, 0.55);
  border-radius: 2px;
  margin: 6px auto 0;
  animation: scrollHint 1.6s ease infinite;
}
@keyframes scrollHint {
  0%   { opacity: 1;   transform: translateY(0); }
  100% { opacity: 0;   transform: translateY(12px); }
}

/* =============================================
   MARQUEE STRIP
   ============================================= */
.marquee-strip {
  background: var(--green-dark);
  padding: 0.8rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 1.5rem;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.marquee-track .dot { color: var(--white); opacity: 0.4; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   SECTIONS — COMMON
   ============================================= */
.section { padding-block: 5rem; }
.bg-light { background: var(--bg-light); }
.bg-dark  { background: var(--dark); }

/* =============================================
   SERVICES GRID
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}
.service-card p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 1.25rem; }
.card-link { font-size: 0.88rem; font-weight: 600; color: var(--gold); }
.card-link:hover { color: var(--gold-light); }

/* =============================================
   PRODUCTS GRID
   ============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.product-icon { font-size: 2.2rem; margin-bottom: 0.75rem; }
.product-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}
.product-card p { font-size: 0.83rem; color: var(--text-muted); }
.products-cta { text-align: center; }
.products-cta p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.95rem; }

/* =============================================
   WHY SECTION
   ============================================= */
.why-section { background: var(--white); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-text p { color: var(--text-muted); margin-bottom: 1.5rem; }
.why-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.why-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
}
.check {
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-visual {
  position: relative;
  height: 340px;
}
.why-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  border-top: 4px solid var(--gold);
  min-width: 180px;
}
.why-card--top  { top: 0;    left: 0; }
.why-card--mid  { top: 50%;  right: 0; transform: translateY(-50%); border-color: var(--green); }
.why-card--bot  { bottom: 0; left: 20%; }
.why-num  { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; }
.why-label { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-top: 0.25rem; }

/* =============================================
   HOW IT WORKS / STEPS
   ============================================= */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.step { text-align: center; max-width: 200px; }
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.step h4 { font-size: 1rem; font-weight: 600; color: var(--green-dark); margin-bottom: 0.5rem; }
.step p  { font-size: 0.85rem; color: var(--text-muted); }
.step-arrow { font-size: 1.5rem; color: var(--gold); align-self: center; margin-top: -1.5rem; }

/* =============================================
   ABOUT
   ============================================= */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}
.about-visual { display: flex; justify-content: center; }
.about-badge {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 4px solid var(--border);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
}
.about-logo { width: 220px; object-fit: contain; }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.95rem; }
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.value {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
}
.value strong { display: block; font-size: 1rem; margin-bottom: 0.25rem; }
.value span   { font-size: 0.8rem; color: var(--text-muted); }

/* =============================================
   CONTACT
   ============================================= */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-title.light   { color: var(--white); }
.light-sub { color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 0.95rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-details li { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.85); font-size: 0.92rem; }
.contact-icon { font-size: 1.1rem; }

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group:last-of-type { margin-bottom: 0; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46,125,50,0.12);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #d32f2f;
  box-shadow: 0 0 0 3px rgba(211,47,47,0.1);
}
.form-group textarea { resize: vertical; }
.form-error { font-size: 0.78rem; color: #d32f2f; min-height: 1rem; }
.form-success { text-align: center; color: var(--green); font-weight: 600; font-size: 0.92rem; margin-top: 1rem; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: #0a120b; color: rgba(255,255,255,0.75); padding-top: 3.5rem; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 52px; width: auto; object-fit: contain; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-links h5, .footer-contact h5 { color: var(--white); font-size: 0.88rem; font-weight: 600; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.87rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact p { font-size: 0.87rem; margin-bottom: 0.4rem; }
.social-links { display: flex; gap: 0.6rem; margin-top: 1rem; }
.social-links a {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: grid; place-items: center; font-size: 0.85rem; font-weight: 700; color: var(--white);
  transition: background var(--transition), border-color var(--transition);
}
.social-links a:hover { background: var(--gold); border-color: var(--gold); }
.footer-bottom {
  text-align: center;
  padding: 1.25rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(200,150,10,0.4);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
  z-index: 99;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--gold-light); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .why-inner, .about-inner { grid-template-columns: 1fr; }
  .why-visual { height: 220px; margin-top: 2rem; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .about-badge   { width: 220px; height: 220px; }
  .about-logo    { width: 160px; }
  .about-values  { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .main-nav, .nav-cta { display: none; }
  .burger { display: flex; }

  /* Mobile nav drawer */
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 1rem 1.5rem 1.5rem;
    z-index: 99;
  }
  .main-nav.open .nav-list { flex-direction: column; gap: 0; }
  .main-nav.open .nav-link { padding: 0.75rem 0.5rem; font-size: 1rem; border-bottom: 1px solid var(--border); }

  .hero-headline { font-size: 2.1rem; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .stat-divider { display: none; }

  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }

  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }

  .why-visual { display: none; }
  .why-card { position: static; transform: none; margin-bottom: 1rem; }
}

@media (max-width: 480px) {
  .services-grid  { grid-template-columns: 1fr; }
  .products-grid  { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   WHAT WE DO — Two-column checklist
   ============================================= */
.what-we-do-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.what-we-do-text p { color: var(--text-muted); line-height: 1.7; }
.what-we-do-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding-top: 0.5rem;
}
.what-we-do-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.96rem;
  color: var(--text);
  line-height: 1.5;
}
.what-we-do-list .check {
  background: var(--green-dark);
  color: var(--white);
  flex-shrink: 0;
  margin-top: 1px;
}

/* =============================================
   FOUR PILLARS
   ============================================= */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
}
.pillar-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.4rem; }
.pillar-card p  { font-size: 0.84rem; color: var(--text-muted); }

/* =============================================
   MISSION + PROMISE BAND
   ============================================= */
.mission-band {
  background: var(--green-dark);
  padding-block: 4rem;
  color: var(--white);
}
.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  width: min(1200px, 92%);
  margin-inline: auto;
}
.mission-block h3,
.promise-block h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.mission-block p { color: rgba(255,255,255,0.85); line-height: 1.75; }
.promise-list { display: flex; flex-direction: column; gap: 0.75rem; }
.promise-list li { display: flex; align-items: flex-start; gap: 0.75rem; color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.check-light { color: var(--gold-light); font-size: 0.6rem; flex-shrink: 0; margin-top: 5px; }

/* =============================================
   PRODUCT COLOUR MODIFIERS (replaces inline --p-color)
   ============================================= */
.product--cocoa-beans     { background: #4a2c0a; }
.product--cashew-nuts     { background: #7d5a2a; }
.product--sesame-seeds    { background: #b09050; }
.product--hibiscus-flower { background: #8b1a3a; }
.product--shea-butter     { background: #c8a86a; }
.product--ginger          { background: #8a6020; }

/* =============================================
   BREADCRUMB BAR
   ============================================= */
.breadcrumb-bar {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
}
.breadcrumb-bar .container { font-size: 0.82rem; color: var(--text-muted); }
.breadcrumb-bar a { color: var(--green-dark); }

/* =============================================
   MISSION CTA BANNER INNER
   ============================================= */
.mission-cta-inner {
  text-align: center;
  padding-block: 1rem;
}
.mission-cta-inner h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.mission-cta-inner p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-inline: auto;
}

/* What We Do — button spacing */
.what-we-do-text .btn { margin-top: 1.5rem; }

/* Detail page — specs title with top gap */
.detail-specs-title + .uses-list { margin-top: 0; }
.detail-specs-title.top-gap { margin-top: 1.5rem; }

/* Related section header reduced margin */
.section-header.compact { margin-bottom: 2rem; }

/* =============================================
   FEATURED PRODUCTS GRID
   ============================================= */
.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.feat-product-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
}
.feat-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.feat-product-img {
  position: relative;
  height: 200px;
  background: var(--p-color, var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.feat-product-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.feat-product-emoji {
  font-size: 3.5rem;
  z-index: 0;
  opacity: 0.6;
}
.feat-product-img img + .feat-product-emoji { display: none; }
.feat-product-info {
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.feat-product-info h4 { font-size: 1rem; font-weight: 600; color: var(--green-dark); }

/* =============================================
   GALLERY SECTION
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.gallery-card { text-align: center; }
.gallery-img {
  position: relative;
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}
.gallery-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-placeholder {
  font-size: 3.5rem;
  opacity: 0.35;
}
.gallery-card p { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }

/* =============================================
   PAGE HERO (for products.html inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, rgba(200,150,10,0.4) 100%);
  padding: 5rem 0 3.5rem;
  color: var(--white);
  text-align: center;
}
.page-hero .section-eyebrow { color: var(--gold-light); }
.page-hero .section-title   { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1rem; }

/* Product detail specs table */
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table td { padding: 0.65rem 0.5rem; font-size: 0.9rem; }
.specs-table td:first-child { font-weight: 600; color: var(--green-dark); width: 40%; }
.specs-table td:last-child { color: var(--text-muted); }

/* Product uses tags */
.uses-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.use-tag {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  font-size: 0.82rem;
  color: var(--green-dark);
  font-weight: 500;
}

/* Related products row */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

/* =============================================
   PRODUCTS.HTML — Full product listing cards
   ============================================= */
.product-full-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding-block: 3.5rem;
  border-bottom: 1px solid var(--border);
}
.product-full-card:last-of-type { border-bottom: none; }
.product-full-card.reverse { direction: rtl; }
.product-full-card.reverse > * { direction: ltr; }

.product-full-img {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--p-color, var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-full-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.product-full-img .feat-product-emoji {
  font-size: 5rem;
  opacity: 0.45;
  z-index: 0;
}
.product-full-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--green-dark);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}
.product-full-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1rem;
}
.product-full-desc {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.product-uses-label { margin-bottom: 0.5rem; font-size: 0.85rem; color: var(--text); }
.product-full-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

@media (max-width: 768px) {
  .product-full-card,
  .product-full-card.reverse { grid-template-columns: 1fr; direction: ltr; }
}

/* =============================================
   RESPONSIVE — NEW COMPONENTS
   ============================================= */
@media (max-width: 900px) {
  .what-we-do-inner  { grid-template-columns: 1fr; gap: 2rem; }
  .pillars-grid      { grid-template-columns: repeat(2, 1fr); }
  .mission-inner     { grid-template-columns: 1fr; gap: 2.5rem; }
  .featured-products-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid      { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .featured-products-grid { grid-template-columns: 1fr; }
  .gallery-grid           { grid-template-columns: 1fr; }
  .pillars-grid           { grid-template-columns: repeat(2, 1fr); }
}
