/* ==========================================================================
   Eminent Exim International — styles.css
   Pure CSS — no build step required
   ========================================================================== */

/* 1. Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* 2. CSS Custom Properties */
:root {
  --color-cream:        #FDFBF7;
  --color-beige:        #F5F2EB;
  --color-gold:         #C5A059;
  --color-gold-dark:    #A68444;
  --color-charcoal:     #1C1C1C;
  --color-charcoal-lt:  #333333;
  --color-brown:        #4A3C31;
  --color-muted:        #A0A0A0;
  --color-border:       rgba(28,28,28,0.06);
  --color-gold-border:  rgba(197,160,89,0.2);
  --font-sans:  'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-serif: 'Playfair Display', ui-serif, Georgia, serif;
  --shadow-premium: 0 10px 40px -10px rgba(28,28,28,0.08);
  --shadow-xl:      0 20px 60px -15px rgba(28,28,28,0.15);
  --max-w:   1280px;
  --max-w-5: 1024px;
  --max-w-4:  896px;
  --px: 1.5rem;
}

/* 3. Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background-color: var(--color-cream);
  color: var(--color-charcoal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex-grow: 1; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-serif); color: var(--color-charcoal); line-height: 1.25; }

/* 4. Utility Classes */
.premium-shadow { box-shadow: var(--shadow-premium); }
.subtle-border  { border: 1px solid var(--color-border); }
.glass-card {
  background: rgba(253,251,247,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(197,160,89,0.1);
}
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}
.container-narrow {
  max-width: var(--max-w-5);
  margin-inline: auto;
  padding-inline: var(--px);
}
.container-narrower {
  max-width: var(--max-w-4);
  margin-inline: auto;
  padding-inline: var(--px);
}
.section-pad { padding-block: 4rem; }
.section-pad-lg { padding-block: 6rem; }
.text-center { text-align: center; }
.hidden { display: none !important; }

/* 5. ===== HEADER ===== */
#site-header header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--color-cream);
  padding-block: 1.25rem;
  transition: padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
#site-header header.scrolled {
  padding-block: 0.75rem;
  box-shadow: 0 2px 20px rgba(28,28,28,0.06);
  background: rgba(253,251,247,0.95);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo-wrap img {
  width: 280px;
  height: 90px;
  object-fit: contain;
  object-position: left;
}
/* Desktop Nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.25rem;
}
.nav-desktop .nav-item {
  position: relative;
}
.nav-desktop .nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-charcoal-lt);
  transition: color 0.2s;
  padding-block: 0.5rem;
  white-space: nowrap;
}
.nav-desktop .nav-link:hover,
.nav-desktop .nav-link.active { color: var(--color-gold); }
.nav-desktop .nav-link .chevron {
  width: 0.9rem;
  height: 0.9rem;
  transition: transform 0.25s;
}
.nav-item:hover .chevron { transform: rotate(180deg); }
/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 0.5rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  z-index: 200;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
}
.nav-dropdown-inner {
  background: #fff;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding-block: 0.5rem;
}
.nav-dropdown-inner a {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-charcoal-lt);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-dropdown-inner a:hover,
.nav-dropdown-inner a.active {
  background: var(--color-beige);
  color: var(--color-gold);
}
/* Header Buttons */
.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}
.btn-outline-dark {
  padding: 0.45rem 1rem;
  border: 1.5px solid var(--color-charcoal);
  color: var(--color-charcoal);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}
.btn-outline-dark:hover { background: var(--color-charcoal); color: #fff; }
.btn-solid-dark {
  padding: 0.45rem 1rem;
  background: var(--color-charcoal);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: background 0.25s;
  white-space: nowrap;
}
.btn-solid-dark:hover { background: var(--color-gold-dark); }
/* Hamburger */
.hamburger {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  color: var(--color-charcoal);
}
.hamburger svg { width: 1.5rem; height: 1.5rem; }
/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  width: 100%;
  background: var(--color-cream);
  box-shadow: 0 10px 30px rgba(28,28,28,0.12);
  border-top: 1px solid var(--color-border);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu-inner { padding: 1.5rem var(--px) 2rem; }
.mobile-nav-item { border-bottom: 1px solid var(--color-border); }
.mobile-nav-item > a {
  display: block;
  padding-block: 0.85rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-charcoal-lt);
  transition: color 0.2s;
}
.mobile-nav-item > a:hover,
.mobile-nav-item > a.active { color: var(--color-gold); }
.mobile-subnav { padding-left: 1rem; padding-bottom: 0.75rem; }
.mobile-subnav a {
  display: block;
  padding-block: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #666;
  transition: color 0.2s;
}
.mobile-subnav a:hover,
.mobile-subnav a.active { color: var(--color-gold); }
.mobile-actions { padding-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.mobile-actions a {
  display: block;
  text-align: center;
  padding: 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .header-actions { display: flex; }
  .hamburger { display: none; }
}

/* 6. ===== PAGE BANNER ===== */
.page-banner {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
/* When banner is inside a page with padding-top for fixed header */
.page-with-banner { padding-top: 0; }
.page-with-banner .page-banner { margin-top: 0; }
.page-content { padding-top: 0; }

/* 7. ===== FOOTER ===== */
#site-footer footer {
  background: var(--color-charcoal);
  color: #fff;
  padding-top: 4rem;
  padding-bottom: 2rem;
  border-top: 3px solid var(--color-gold);
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo img {
  width: 260px;
  height: 85px;
  object-fit: contain;
  object-position: left;
  margin-bottom: 0.75rem;
}
.footer-tagline { color: var(--color-muted); font-size: 0.875rem; line-height: 1.7; max-width: 280px; }
.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}
.footer-contact li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: var(--color-muted); margin-bottom: 1rem; }
.footer-contact li svg { width: 1.1rem; height: 1.1rem; color: var(--color-gold); flex-shrink: 0; margin-top: 0.15rem; }
.footer-contact a { color: var(--color-muted); transition: color 0.2s; }
.footer-contact a:hover { color: #fff; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { font-size: 0.875rem; color: var(--color-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--color-gold); }
.footer-socials { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.social-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: #333;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background 0.25s;
}
.social-icon:hover { background: var(--color-gold); }
.social-icon svg { width: 1.1rem; height: 1.1rem; }
.footer-cta { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-cta a {
  display: inline-block;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
  transition: background 0.25s, color 0.25s;
}
.footer-cta a:hover { background: var(--color-gold); color: var(--color-charcoal); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #333;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #666;
}
.footer-bottom a:hover { color: var(--color-gold); }
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 0.8fr 1fr; }
}

/* 8. ===== BUTTONS (global) ===== */
.btn {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.875rem 2rem;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-charcoal);
  color: #fff;
  box-shadow: 0 8px 30px rgba(28,28,28,0.1);
}
.btn-primary:hover { background: var(--color-gold); }
.btn-outline {
  border: 1.5px solid var(--color-charcoal);
  color: var(--color-charcoal);
  background: transparent;
}
.btn-outline:hover { background: var(--color-charcoal); color: #fff; }
.btn-gold-outline {
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  background: transparent;
}
.btn-gold-outline:hover { background: var(--color-gold); color: #fff; }
.btn-gold {
  background: var(--color-gold);
  color: #fff;
}
.btn-gold:hover { background: #fff; color: var(--color-charcoal); }
.btn-pair { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 640px) { .btn-pair { flex-direction: row; } }

/* 9. ===== HOME PAGE ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.5rem 4rem;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-beige) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: rgba(197,160,89,0.05);
  border-radius: 0 0 0 9999px;
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 33%; height: 50%;
  background: rgba(197,160,89,0.05);
  border-radius: 0 9999px 0 0;
  pointer-events: none;
  z-index: 0;
}
.hero-inner { max-width: 56rem; margin-inline: auto; text-align: center; position: relative; z-index: 1; }
.hero-eyebrow {
  color: var(--color-gold);
  font-weight: 500;
  letter-spacing: 0.12em;
  font-size: 0.8125rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  color: var(--color-charcoal-lt);
  font-weight: 500;
  margin-bottom: 2rem;
}
.hero-body { color: var(--color-brown); font-size: 1.0625rem; line-height: 1.8; max-width: 50rem; margin-inline: auto; }
.hero-body p + p { margin-top: 1rem; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1.5rem;
  color: var(--color-gold-dark);
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: 0.875rem;
  padding-block: 1.5rem 2rem;
}
.hero-badge-sep { display: none; }
@media (min-width: 640px) { .hero-badge-sep { display: inline; } }
.about-preview { padding-block: 6rem; background: #fff; }
.about-preview-inner { max-width: 64rem; margin-inline: auto; padding-inline: var(--px); text-align: center; }
.section-eyebrow {
  color: var(--color-gold);
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.about-preview h2 {
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 52rem;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}
.about-preview h2 span { color: var(--color-gold); }
.about-preview p {
  color: var(--color-brown);
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 48rem;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
.btn-spaced { letter-spacing: 0.15em; }

/* 10. ===== PAGE HEADERS ===== */
.page-header { text-align: center; margin-bottom: 4rem; }
.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.page-header .subtitle {
  color: var(--color-gold);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.page-header p { color: var(--color-brown); font-size: 1.0625rem; line-height: 1.75; max-width: 40rem; margin-inline: auto; }

/* 11. ===== ABOUT PAGE ===== */
.about-intro {
  background: #fff;
  padding: 2.5rem 3rem;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  margin-bottom: 4rem;
}
.about-intro p { color: var(--color-brown); font-size: 1.0625rem; line-height: 1.8; }
.about-intro p + p { margin-top: 1rem; }
.vision-mission { display: flex; flex-direction: column; gap: 3rem; margin-bottom: 4rem; }
.vm-block h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-gold);
  border-bottom: 2px solid rgba(197,160,89,0.2);
  padding-bottom: 1rem;
  display: inline-block;
  margin-bottom: 1rem;
}
.vm-block p { color: var(--color-brown); font-size: 1.0625rem; line-height: 1.8; }
.mission-list { display: flex; flex-direction: column; gap: 1rem; }
.mission-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 1.0625rem; color: var(--color-brown); line-height: 1.7; }
.mission-item svg { width: 1.375rem; height: 1.375rem; color: var(--color-gold-dark); flex-shrink: 0; margin-top: 0.2rem; }

/* 12. ===== CERTIFICATION STRIP ===== */
.cert-strip {
  width: 100%;
  padding-block: 3rem;
  border-top: 1px solid var(--color-border);
  background: #fff;
  overflow: hidden;
}
.cert-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2.5rem;
  opacity: 0.9;
  transition: opacity 0.5s;
}
.cert-strip-inner:hover { opacity: 1; }
.cert-logo {
  position: relative;
  height: 4rem;
  width: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.cert-logo:hover { transform: scale(1.05); }
.cert-logo img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }

/* 13. ===== PRODUCTS PAGE ===== */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 800px;
  margin-inline: auto;
}
@media (min-width: 768px) { .product-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.product-card {
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.product-card-img {
  height: 20rem;
  background: var(--color-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  max-width: 280px;
  margin-inline: auto;
}
.product-card-body {
  padding: 2rem;
  text-align: center;
  background: #fff;
  border-top: 2px solid var(--color-gold);
}
.product-card-body h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.product-card:hover .product-card-body h2 { color: var(--color-gold); }
.product-card-body .variety { color: var(--color-gold-dark); font-weight: 500; font-size: 0.875rem; letter-spacing: 0.04em; margin-bottom: 1rem; }
.product-card-body .view-link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-charcoal);
  padding-bottom: 2px;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.product-card:hover .view-link { border-color: var(--color-gold); color: var(--color-gold); }

/* 14. ===== PRODUCT DETAIL PAGES ===== */
.product-page { background: var(--color-cream); min-height: 100vh; }
.product-page-content { padding: 4rem 0; }
.product-variants-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .product-variants-grid { grid-template-columns: repeat(3, 1fr); } }
.variant-card {
  background: #fff;
  padding: 1.5rem;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--color-border);
  border-radius: 2px;
}
.variant-card-img {
  height: 12rem;
  background: var(--color-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.variant-card-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; mix-blend-mode: multiply; }
.variant-card h3 { font-size: 1.0625rem; font-weight: 700; color: var(--color-gold); text-transform: uppercase; margin-bottom: 0.5rem; }
.variant-card p { font-size: 0.875rem; color: var(--color-brown); line-height: 1.7; }
.variant-note { font-size: 0.875rem; color: var(--color-muted); font-style: italic; margin-top: 1.5rem; text-align: center; }
/* Format Cards */
.format-list { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.format-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.25s;
}
.format-card:hover { transform: translateY(-2px); }
@media (min-width: 768px) { .format-card { flex-direction: row; } }
.format-card-img {
  width: 100%;
  min-height: 200px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
@media (min-width: 768px) { .format-card-img { width: 30%; } }
.format-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.format-card:hover .format-card-img img { transform: scale(1.05); }
.format-card-body {
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}
.format-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--color-beige);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.format-card-header h3 {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  transition: color 0.2s;
}
.format-card:hover .format-card-header h3 { color: var(--color-gold); }
.format-badge {
  background: var(--color-beige);
  padding: 0.35rem 1rem;
  border-radius: 2px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-gold);
  border: 1px solid rgba(197,160,89,0.2);
  white-space: nowrap;
  flex-shrink: 0;
}
.format-details { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .format-details { grid-template-columns: 1fr 1fr; } }
.format-detail-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold-dark);
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.format-detail-text { font-size: 0.9375rem; color: var(--color-brown); line-height: 1.7; }
/* Spec Table */
.spec-table-wrap {
  width: 100%;
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  box-shadow: var(--shadow-premium);
  margin-top: 2rem;
  margin-bottom: 3rem;
}
.spec-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.spec-table thead tr { background: var(--color-beige); border-bottom: 1px solid rgba(197,160,89,0.3); }
.spec-table th { padding: 1rem 1.5rem; font-family: var(--font-serif); font-weight: 700; font-size: 0.9375rem; color: var(--color-charcoal); text-align: left; white-space: nowrap; }
.spec-table tbody tr { border-bottom: 1px solid rgba(28,28,28,0.05); transition: background 0.15s; }
.spec-table tbody tr:hover { background: var(--color-cream); }
.spec-table td { padding: 1.25rem 1.5rem; font-size: 0.875rem; color: var(--color-brown); }
.spec-table td:first-child { font-weight: 500; color: var(--color-charcoal); }
.section-title-underline {
  font-size: 1.375rem;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(197,160,89,0.2);
  padding-bottom: 0.5rem;
  display: inline-block;
  margin-bottom: 0;
}
.buyer-specific-box {
  background: #fff;
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-gold);
  margin-bottom: 4rem;
}
.buyer-specific-box h2 { font-size: 1.375rem; font-weight: 700; text-transform: uppercase; margin-bottom: 1rem; }
.buyer-specific-box p { color: var(--color-brown); line-height: 1.75; }
.buyer-specific-box p + p { margin-top: 0.75rem; }
.cert-compliance-box {
  background: #fff;
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--color-border);
  margin-bottom: 4rem;
}
.cert-compliance-box h2 { font-size: 1.375rem; font-weight: 700; text-transform: uppercase; margin-bottom: 1rem; }
.cert-compliance-box p { color: var(--color-brown); line-height: 1.75; }
.cert-compliance-box p.note { font-style: italic; font-size: 0.875rem; color: #666; }
.cert-compliance-box a { color: var(--color-gold); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; transition: color 0.2s; display: inline-block; margin-top: 1rem; }
.cert-compliance-box a:hover { color: var(--color-charcoal); }
.section-mb { margin-bottom: 4rem; }
.section-mb-lg { margin-bottom: 5rem; }

/* 15. ===== QUALITY PAGE ===== */
.assurance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .assurance-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .assurance-grid { grid-template-columns: 1fr 1fr 1fr; } }
.assurance-card {
  background: #fff;
  padding: 2rem;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.assurance-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--color-gold); }
.assurance-card:hover { transform: translateY(-4px); }
.assurance-card-num {
  position: absolute;
  right: -4px;
  top: -4px;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-beige);
  opacity: 0.5;
  pointer-events: none;
  select: none;
  line-height: 1;
}
.assurance-card-icon { margin-bottom: 1.5rem; }
.assurance-card-icon svg { width: 2rem; height: 2rem; color: var(--color-gold); }
.assurance-card h3 { font-family: var(--font-serif); font-size: 1.0625rem; font-weight: 700; margin-bottom: 1rem; line-height: 1.35; }
.assurance-card p { font-size: 0.875rem; color: var(--color-brown); line-height: 1.7; margin-bottom: 1.5rem; }
.assurance-card-footer { border-top: 1px solid var(--color-border); padding-top: 1rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; color: var(--color-gold); }
.how-eminent-box {
  background: #fff;
  padding: 3rem;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--color-border);
  margin-bottom: 5rem;
}
.how-eminent-steps {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 1rem 0;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .how-eminent-steps { flex-direction: row; justify-content: space-between; align-items: center; }
  .how-eminent-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-beige);
    transform: translateY(-50%);
    z-index: 0;
  }
}
.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  background: #fff;
  padding-inline: 0.5rem;
  border-bottom: 1px solid var(--color-beige);
  padding-bottom: 1.25rem;
}
@media (min-width: 768px) { .how-step { border-bottom: none; padding-bottom: 0; } }
.how-step::last-child { border-bottom: none; }
.how-step-dot { width: 0.9rem; height: 0.9rem; border-radius: 50%; background: var(--color-gold); margin-bottom: 1rem; display: none; outline: 4px solid #fff; }
@media (min-width: 768px) { .how-step-dot { display: block; } }
.how-step span { font-family: var(--font-serif); font-weight: 700; font-size: 1.0625rem; }
.how-eminent-note { text-align: center; color: var(--color-brown); font-style: italic; max-width: 48rem; margin-inline: auto; }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 64rem; margin-inline: auto; }
@media (min-width: 768px) { .why-grid { grid-template-columns: 1fr 1fr; } }
.why-card {
  background: #fff;
  padding: 2rem;
  border-left: 4px solid var(--color-gold);
  box-shadow: var(--shadow-premium);
}
.why-card h3 { font-family: var(--font-serif); font-weight: 700; font-size: 1.0625rem; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.9375rem; color: var(--color-brown); line-height: 1.7; }
.cta-dark {
  background: var(--color-charcoal);
  color: #fff;
  text-align: center;
  padding: 3.5rem 2rem;
  border-radius: 2px;
  box-shadow: var(--shadow-xl);
}
.cta-dark h2 { color: var(--color-gold); font-size: 1.875rem; font-weight: 700; text-transform: uppercase; margin-bottom: 1rem; }
.cta-dark p.lead { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 1rem; }
.cta-dark p.body { color: var(--color-muted); max-width: 40rem; margin-inline: auto; margin-bottom: 2.5rem; }

/* 16. ===== CERTIFICATIONS PAGE ===== */
.cert-page { padding-top: 10rem; padding-bottom: 6rem; }
.cert-eminent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  background: #fff;
  padding: 3rem;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--color-border);
  margin-bottom: 4rem;
}
.cert-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
.cert-circle {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e5e0d5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.3s;
}
.cert-circle:hover { transform: scale(1.05); }
.cert-circle img { width: 6rem; height: 6rem; object-fit: contain; mix-blend-mode: multiply; }
.cert-item span { font-weight: 500; font-size: 0.9375rem; text-align: center; }
.cert-partner-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  background: #fff;
  padding: 3rem;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--color-border);
  margin-bottom: 3rem;
}
.cert-partner-item { display: flex; flex-direction: column; align-items: center; gap: 1rem; width: 8rem; }
.cert-partner-item span { font-weight: 500; font-size: 0.875rem; text-align: center; line-height: 1.3; }
.cert-note-box {
  text-align: center;
  max-width: 56rem;
  margin-inline: auto;
  background: #fff;
  padding: 2rem 3rem;
  border-left: 4px solid var(--color-gold);
  border-right: 4px solid var(--color-gold);
  box-shadow: var(--shadow-premium);
}
.cert-note-box p { color: var(--color-brown); line-height: 1.75; }
.cert-note-box p.small { font-style: italic; font-size: 0.875rem; margin-top: 0.75rem; }

/* 17. ===== CONTACT PAGE ===== */
.contact-card {
  background: #fff;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-gold);
  padding: 3rem 2rem;
  margin-bottom: 4rem;
}
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-section h2 { font-family: var(--font-serif); font-size: 1.375rem; font-weight: 700; margin-bottom: 1.5rem; }
.address-row { display: flex; align-items: flex-start; gap: 1rem; color: var(--color-brown); margin-bottom: 2rem; }
.address-row svg { width: 1.375rem; height: 1.375rem; color: var(--color-gold); flex-shrink: 0; margin-top: 0.2rem; }
.address-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-gold-dark); font-weight: 700; margin-bottom: 0.35rem; }
.address-text p { font-size: 1rem; line-height: 1.7; }
.contact-detail-row { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); }
.contact-detail-row svg { width: 1.375rem; height: 1.375rem; color: var(--color-gold); flex-shrink: 0; margin-top: 0.2rem; }
.contact-detail-row a { font-size: 1.0625rem; color: var(--color-brown); transition: color 0.2s; }
.contact-detail-row a:hover { color: var(--color-gold); }
.contact-socials { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.contact-social-icon {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--color-beige);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-charcoal);
  transition: background 0.25s, color 0.25s;
}
.contact-social-icon:hover { background: var(--color-gold); color: #fff; }
.contact-social-icon svg { width: 1.375rem; height: 1.375rem; }
.map-embed {
  width: 100%;
  min-height: 300px;
  height: 100%;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  flex-grow: 1;
}
.map-embed iframe { width: 100%; height: 100%; min-height: 300px; border: 0; display: block; }
.contact-right { display: flex; flex-direction: column; height: 100%; }

/* 18. ===== FORMS ===== */
.form-page { padding-top: 7rem; padding-bottom: 6rem; background: var(--color-cream); min-height: 100vh; }
.form-card {
  background: #fff;
  padding: 2.5rem;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-gold);
}
@media (min-width: 640px) { .form-card { padding: 3.5rem; } }
.form-section-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-beige);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}
.form-grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 0.875rem; font-weight: 500; color: var(--color-charcoal); }
.form-input {
  width: 100%;
  border: 1px solid #e5e0d5;
  background: var(--color-cream);
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  color: var(--color-charcoal);
}
.form-input:focus { border-color: var(--color-gold); box-shadow: 0 0 0 3px rgba(197,160,89,0.12); }
.form-input::placeholder { color: #b0a898; }
textarea.form-input { resize: vertical; min-height: 7rem; }
.form-input-wrap { position: relative; }
.form-input-suffix {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-muted);
  font-weight: 500;
  font-size: 0.9rem;
  pointer-events: none;
}
.checkbox-group { display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; }
.checkbox-group.col-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.checkbox-group.col-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.75rem; }
.radio-group { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.check-item, .radio-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9375rem;
  color: var(--color-brown);
  transition: color 0.15s;
}
.check-item:hover, .radio-item:hover { color: var(--color-charcoal); }
.check-item input, .radio-item input { width: 1rem; height: 1rem; accent-color: var(--color-gold); cursor: pointer; flex-shrink: 0; }
.other-row { display: flex; align-items: center; gap: 0.75rem; grid-column: 1 / -1; flex-wrap: wrap; }
.other-label { white-space: nowrap; }
.other-input {
  border: none;
  border-bottom: 1px solid #e5e0d5;
  background: transparent;
  flex-grow: 1;
  min-width: 120px;
  padding: 0.25rem 0.5rem;
  outline: none;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--color-charcoal);
  transition: border-color 0.2s;
}
.other-input:focus { border-color: var(--color-gold); }
.custom-arrow { color: var(--color-muted); }
.form-section { margin-bottom: 3rem; }
.form-section:last-child { margin-bottom: 0; }
.form-error { padding: 1rem 1.25rem; background: #fff5f5; color: #c53030; border: 1px solid #fed7d7; border-radius: 2px; font-size: 0.9375rem; }
.form-success {
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
}
.form-success-icon {
  width: 5rem; height: 5rem;
  background: var(--color-beige);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.form-success-icon svg { width: 2.5rem; height: 2.5rem; color: #25D366; }
.form-success h2 { font-family: var(--font-serif); font-size: 1.875rem; font-weight: 700; }
.form-success p { color: var(--color-brown); font-size: 1.0625rem; max-width: 36rem; line-height: 1.7; }
.form-submit-row {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: flex-end;
}
.btn-submit {
  padding: 1rem 2.5rem;
  background: var(--color-charcoal);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-family: var(--font-sans);
  box-shadow: 0 8px 30px rgba(28,28,28,0.1);
  transition: background 0.25s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
}
@media (min-width: 640px) { .btn-submit { width: auto; } }
.btn-submit:hover:not(:disabled) { background: var(--color-gold); }
.btn-submit:disabled { opacity: 0.65; cursor: not-allowed; }
.spinner {
  width: 1rem; height: 1rem;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.spinner.spinning { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }
.sample-policy {
  background: var(--color-beige);
  padding: 1.5rem;
  border-left: 4px solid var(--color-gold);
  border-radius: 2px;
  margin-bottom: 2rem;
}
.sample-policy h4 { font-family: var(--font-serif); font-weight: 700; text-transform: uppercase; margin-bottom: 0.5rem; }
.sample-policy p { font-size: 0.9375rem; color: var(--color-brown); line-height: 1.7; }
/* Honeypot */
.hp-field { display: none !important; }

/* 19. ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 500;
  width: 3.5rem;
  height: 3.5rem;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.4s ease, opacity 0.4s ease;
  focus-ring: 4px solid rgba(37,211,102,0.4);
}
.whatsapp-btn.visible { opacity: 1; transform: translateY(0); }
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-btn svg { width: 1.75rem; height: 1.75rem; }

/* 20. ===== SCROLL ANIMATIONS =====
   Progressive enhancement: elements are VISIBLE by default.
   animations.js adds 'js-animate' to <html> before observing,
   so only when JS runs successfully do elements start hidden and animate in.
   If JS fails for any reason, content is always visible. */
.js-animate [data-animate] { opacity: 0; transform: translateY(1.5rem); transition: opacity 0.6s ease, transform 0.6s ease; }
.js-animate [data-animate].visible { opacity: 1; transform: translateY(0); }
.js-animate [data-animate-delay="1"] { transition-delay: 0.1s; }
.js-animate [data-animate-delay="2"] { transition-delay: 0.2s; }
.js-animate [data-animate-delay="3"] { transition-delay: 0.3s; }
.js-animate [data-animate-delay="4"] { transition-delay: 0.4s; }
.js-animate [data-animate-delay="5"] { transition-delay: 0.5s; }

/* 21. ===== MISC HELPERS ===== */
.space-y > * + * { margin-top: var(--space, 1rem); }
.italic { font-style: italic; }
.text-muted { color: var(--color-muted); }
.text-gold { color: var(--color-gold); }
.text-brown { color: var(--color-brown); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.8125rem; }
.fw-bold { font-weight: 700; }
.fw-500 { font-weight: 500; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
