/* ═══════════════════════════════════════════════════════════
   MILLCO — SHARED STYLESHEET
   Forest Green + Muted Gold + Warm White Design System
   millco.in | Sulphur-Free Food Products | Kerala, India
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,700&family=DM+Sans:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  --green-deep:   #0c3d26;
  --green-mid:    #0f4f32;
  --green-light:  #155f3e;
  --green-xlight: #1a7548;
  --green-pale:   #e8f0eb;
  --green-pale2:  #f0f5f2;
  --gold:         #b8923f;
  --gold2:        #c9a84c;
  --gold-light:   #e2c47e;
  --gold-pale:    rgba(184,146,63,0.1);
  --white:        #ffffff;
  --off-white:    #f7f5f1;
  --neutral:      #f0ede7;
  --cream:        #faf8f4;
  --text:         #242424;
  --text2:        #585858;
  --text3:        #8a8a8a;
  --border:       rgba(12,61,38,0.09);
  --border2:      rgba(12,61,38,0.17);
  --shadow-sm:    0 2px 16px rgba(12,61,38,0.06);
  --shadow-md:    0 8px 40px rgba(12,61,38,0.10);
  --shadow-lg:    0 20px 80px rgba(12,61,38,0.14);
  --red-warn:     #c0392b;
  --radius:       2px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── BASE ── */
body {
  background: var(--white);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.08;
  color: var(--green-deep);
}

/* ── LAYOUT ── */
.container     { max-width: 1240px; margin: 0 auto; padding: 0 48px; }
.container-sm  { max-width: 960px;  margin: 0 auto; padding: 0 48px; }
.section-pad   { padding: 100px 0; }
.section-pad-sm{ padding: 72px 0; }

/* ── EYEBROW / LABELS ── */
.eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.67rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.eyebrow-light { color: rgba(226,196,126,0.85); }

.divider-gold  { width: 48px; height: 3px; background: var(--gold); margin-bottom: 24px; }
.divider-white { width: 48px; height: 3px; background: rgba(255,255,255,0.3); margin-bottom: 24px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green-deep); color: var(--white);
  font-family: 'DM Sans', sans-serif; font-weight: 600;
  font-size: 0.85rem; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 15px 32px; text-decoration: none; border: none; cursor: pointer;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--white);
  font-family: 'DM Sans', sans-serif; font-weight: 600;
  font-size: 0.85rem; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 15px 32px; text-decoration: none; border: none; cursor: pointer;
  transition: background .25s, transform .2s;
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--green-deep);
  font-family: 'DM Sans', sans-serif; font-weight: 600;
  font-size: 0.85rem; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 14px 32px; text-decoration: none;
  border: 1.5px solid var(--green-deep); cursor: pointer;
  transition: background .25s, color .25s, transform .2s;
}
.btn-outline:hover { background: var(--green-deep); color: var(--white); transform: translateY(-2px); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: rgba(255,255,255,0.85);
  font-family: 'DM Sans', sans-serif; font-weight: 600;
  font-size: 0.85rem; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 14px 32px; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.3); cursor: pointer;
  transition: border-color .25s, color .25s, transform .2s;
}
.btn-outline-white:hover { border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-2px); }

.retail-link {
  font-family: 'DM Mono', monospace; font-size: 0.72rem;
  color: var(--text3); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  letter-spacing: 0.08em; transition: color .2s;
}
.retail-link:hover { color: var(--gold); }

/* ── HEADER ── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--border2);
  backdrop-filter: blur(16px);
  transition: box-shadow .3s;
}
.header-bar {
  background: var(--green-deep); padding: 6px 0; text-align: center;
}
.header-bar p {
  font-family: 'DM Mono', monospace; font-size: 0.64rem;
  color: rgba(255,255,255,0.7); letter-spacing: 0.15em; text-transform: uppercase;
}
.header-bar span { color: var(--gold-light); font-weight: 500; }

.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; padding: 0 48px;
}
.site-logo { text-decoration: none; display: flex; flex-direction: column; }
.logo-main {
  font-family: 'Playfair Display', serif; font-weight: 800;
  font-size: 1.5rem; color: var(--green-deep); line-height: 1;
}
.logo-sub {
  font-family: 'DM Mono', monospace; font-size: 0.53rem;
  color: var(--gold); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 3px;
}
.main-nav { display: flex; align-items: center; gap: 22px; list-style: none; }
.main-nav a {
  font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.82rem;
  letter-spacing: 0.02em; color: var(--text2); text-decoration: none;
  transition: color .2s; white-space: nowrap; position: relative; padding-bottom: 2px;
}
.main-nav a:hover { color: var(--green-deep); }
.main-nav a.active { color: var(--green-deep); }
.main-nav a.active::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--gold);
}

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-retail {
  font-family: 'DM Mono', monospace; font-size: 0.66rem;
  color: var(--text3); text-decoration: none;
  border: 1px solid var(--border2); padding: 6px 14px;
  letter-spacing: 0.08em; transition: border-color .2s, color .2s;
}
.nav-retail:hover { border-color: var(--gold); color: var(--gold); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; border: none; background: none; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--green-deep); transition: all .3s; }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none; position: fixed; inset: 0;
  background: var(--green-deep); z-index: 999;
  padding: 100px 48px 48px; flex-direction: column; gap: 4px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.6rem;
  color: rgba(255,255,255,0.85); text-decoration: none;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); transition: color .2s;
}
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-nav .mob-divider {
  height: 1px; background: rgba(255,255,255,0.12); margin: 12px 0;
}
.mobile-nav .mob-sub {
  font-size: 1rem; color: rgba(255,255,255,0.55); padding: 7px 0 7px 16px;
  border-left: 2px solid rgba(184,146,63,0.4);
}

/* ── BREADCRUMB ── */
.breadcrumb { padding: 108px 0 0; background: var(--off-white); border-bottom: 1px solid var(--border); }
.bc-inner {
  display: flex; align-items: center; gap: 8px; padding: 18px 0;
  font-family: 'DM Mono', monospace; font-size: 0.65rem;
  letter-spacing: 0.1em; color: var(--text3);
}
.bc-inner a { color: var(--text3); text-decoration: none; transition: color .2s; }
.bc-inner a:hover { color: var(--gold); }
.bc-sep { color: var(--border2); }
.bc-current { color: var(--green-deep); font-weight: 500; }

/* ── SECTION HEADINGS / INTRO ── */
.section-intro { max-width: 640px; }
.section-intro h2 { font-size: clamp(2rem, 4vw, 3rem); }

/* ── FEATURE CARDS ── */
.feat-card {
  background: var(--off-white); border: 1px solid var(--border);
  padding: 28px; position: relative; overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.feat-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.feat-card:hover::before { transform: scaleX(1); }
.feat-card h4 {
  font-family: 'DM Sans', sans-serif; font-weight: 700;
  font-size: 0.92rem; color: var(--green-deep); margin-bottom: 8px;
}
.feat-card p { font-size: 0.82rem; color: var(--text2); line-height: 1.65; }

/* ── GRID UTILITIES ── */
.two-col   { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.four-col  { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ── COMPARISON TABLE ── */
.compare-table { width: 100%; border-collapse: collapse; margin-top: 32px; font-size: 0.85rem; }
.compare-table th {
  background: var(--green-deep); color: var(--white);
  font-family: 'DM Mono', monospace; font-size: 0.65rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 20px; text-align: left; font-weight: 500;
}
.compare-table th:first-child { color: rgba(255,255,255,0.55); }
.compare-table td { padding: 13px 20px; border-bottom: 1px solid var(--border); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--off-white); }
.td-param { font-family: 'DM Mono', monospace; font-size: 0.68rem; color: var(--text3); letter-spacing: 0.08em; }
.td-val   { font-weight: 600; color: var(--green-deep); }
.td-good  { font-weight: 600; color: #1a7a32; }
.td-note  { font-size: 0.78rem; color: var(--text2); }

/* ── SPEC PANEL ── */
.prod-hero-panel { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.panel-hdr {
  background: var(--gold); padding: 14px 26px;
  font-family: 'DM Mono', monospace; font-size: 0.66rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green-deep); font-weight: 500;
}
.spec-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 14px 22px; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 0.85rem; }
.spec-row:last-child { border-bottom: none; }
.spec-key { font-family: 'DM Mono', monospace; font-size: 0.65rem; color: rgba(255,255,255,0.42); letter-spacing: 0.1em; text-transform: uppercase; flex-shrink: 0; width: 130px; }
.spec-val { color: rgba(255,255,255,0.82); font-weight: 500; text-align: right; }

/* ── PRODUCT TAGS ── */
.prod-hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.prod-tag {
  font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.12em;
  text-transform: uppercase; border: 1px solid rgba(184,146,63,0.3);
  color: var(--gold-light); padding: 5px 12px;
}
.prod-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── INSIGHT CARDS ── */
.insight-card {
  border: 1px solid var(--border); background: var(--white);
  text-decoration: none; display: block;
  transition: box-shadow .3s, transform .3s;
  position: relative; overflow: hidden;
}
.insight-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.insight-img {
  height: 200px; background: var(--green-pale);
  display: flex; align-items: flex-end; justify-content: flex-start;
  border-bottom: 1px solid var(--border); position: relative; overflow: hidden;
}
.insight-img-inner {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  position: absolute; inset: 0;
}
.insight-cat {
  position: absolute; bottom: 12px; left: 12px;
  font-family: 'DM Mono', monospace; font-size: 0.58rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--green-deep); color: var(--white); padding: 4px 9px; z-index: 2;
}
.insight-body { padding: 22px; }
.insight-body h3 {
  font-family: 'DM Sans', sans-serif; font-weight: 700;
  font-size: 0.97rem; color: var(--green-deep);
  line-height: 1.35; margin-bottom: 10px;
}
.insight-body p { font-size: 0.8rem; color: var(--text2); line-height: 1.6; }
.insight-meta {
  display: flex; justify-content: space-between;
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border);
}
.insight-date { font-family: 'DM Mono', monospace; font-size: 0.62rem; color: var(--text3); }
.insight-read { font-family: 'DM Mono', monospace; font-size: 0.62rem; color: var(--gold); }

/* ── PRODUCT CARDS (index) ── */
.prod-card {
  background: var(--white); border: 1px solid var(--border);
  text-decoration: none; display: block;
  transition: box-shadow .3s, transform .3s, border-color .3s;
  position: relative; overflow: hidden; cursor: pointer;
}
.prod-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: var(--gold); }
.prod-img {
  height: 190px; background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border); position: relative; overflow: hidden;
}
.prod-img-icon { font-size: 3.5rem; opacity: 0.7; }
.prod-badge {
  position: absolute; top: 12px; left: 12px;
  font-family: 'DM Mono', monospace; font-size: 0.58rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--green-deep); color: var(--white); padding: 4px 10px;
}
.prod-img-svg {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.prod-body { padding: 22px; }
.prod-body h3 { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1rem; color: var(--green-deep); margin-bottom: 8px; }
.prod-body p { font-size: 0.81rem; color: var(--text2); line-height: 1.6; margin-bottom: 14px; }
.prod-link {
  font-family: 'DM Mono', monospace; font-size: 0.66rem;
  color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px; transition: gap .2s;
}
.prod-card:hover .prod-link { gap: 10px; }

/* ── FORM ELEMENTS ── */
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-family: 'DM Mono', monospace; font-size: 0.63rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--text3); margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--off-white); border: 1px solid var(--border2);
  color: var(--text); padding: 11px 14px;
  font-family: 'DM Sans', sans-serif; font-size: 0.86rem;
  outline: none; transition: border-color .2s; appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green-deep); background: var(--white); }
.form-group textarea { min-height: 90px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.radio-group { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 6px; }
.radio-label { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 0.85rem; color: var(--text2); }
.radio-label input[type="radio"] { accent-color: var(--green-deep); width: 15px; height: 15px; }

/* ── CONTACT INFO BLOCKS ── */
.cblock-row { display: flex; align-items: center; gap: 16px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.cblock-row:last-child { border-bottom: none; }
.cb-icon {
  width: 38px; height: 38px; background: rgba(184,146,63,0.14);
  border: 1px solid rgba(184,146,63,0.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; flex-shrink: 0;
}
.cb-label { font-family: 'DM Mono', monospace; font-size: 0.6rem; color: rgba(255,255,255,0.38); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 2px; }
.cb-val a { color: rgba(255,255,255,0.78); text-decoration: none; font-size: 0.9rem; transition: color .2s; }
.cb-val a:hover { color: var(--gold-light); }

/* ── CERTIFICATION CARDS ── */
.cert-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 32px 28px; transition: box-shadow .3s, border-color .3s;
}
.cert-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.cert-badge {
  font-family: 'Playfair Display', serif; font-weight: 800;
  font-size: 1.45rem; color: var(--green-deep); margin-bottom: 8px;
}
.cert-title { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.88rem; color: var(--text); margin-bottom: 8px; }
.cert-desc { font-size: 0.81rem; color: var(--text2); line-height: 1.65; }
.cert-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'DM Mono', monospace; font-size: 0.6rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: #1a7a32; margin-top: 16px;
}
.c-dot { width: 7px; height: 7px; border-radius: 50%; background: #1a7a32; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ opacity:1; } 50%{ opacity:0.35; } }

/* ── TICKER ── */
.ticker-wrap { background: var(--off-white); border-bottom: 1px solid var(--border); padding: 14px 0; overflow: hidden; }
.ticker-inner { display: flex; gap: 56px; white-space: nowrap; animation: ticker 28s linear infinite; }
.ticker-inner:hover { animation-play-state: paused; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-item {
  display: flex; align-items: center; gap: 12px;
  font-family: 'DM Mono', monospace; font-size: 0.67rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text3);
}
.t-sep { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ── FOOTER ── */
footer { background: var(--green-deep); padding: 68px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 52px; }
.footer-brand p { font-size: 0.83rem; color: rgba(255,255,255,0.42); line-height: 1.7; margin-top: 14px; max-width: 255px; }
.cert-badges { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.cert-badge-sm {
  font-family: 'DM Mono', monospace; font-size: 0.56rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.38); padding: 4px 9px;
}
.footer-col h5 {
  font-family: 'DM Mono', monospace; font-size: 0.63rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.38); margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 0.83rem; color: rgba(255,255,255,0.58); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-family: 'DM Mono', monospace; font-size: 0.62rem; color: rgba(255,255,255,0.28); letter-spacing: 0.06em; }

/* ── SCROLL ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fd1 { transition-delay: .08s; }
.fd2 { transition-delay: .16s; }
.fd3 { transition-delay: .24s; }
.fd4 { transition-delay: .32s; }
.fd5 { transition-delay: .40s; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); cursor: pointer; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; padding: 20px 0;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.95rem;
  color: var(--green-deep); transition: color .2s;
}
.faq-item:hover .faq-q { color: var(--gold); }
.faq-icon { font-size: 1.3rem; color: var(--gold); font-weight: 300; transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; font-size: 0.88rem;
  color: var(--text2); line-height: 1.75; padding: 0;
  transition: max-height .4s ease, padding .3s;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* ── RELATED PRODUCTS ── */
.related-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 36px; }
.rel-card {
  border: 1px solid var(--border); background: var(--white);
  text-decoration: none; display: block;
  transition: box-shadow .3s, transform .3s; padding: 22px;
}
.rel-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.rel-card-img {
  height: 80px; background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; border: 1px solid var(--border);
}
.rel-card h4 { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--green-deep); margin-bottom: 6px; }
.rel-card p { font-size: 0.78rem; color: var(--text2); line-height: 1.6; }
.rel-link { font-family: 'DM Mono', monospace; font-size: 0.65rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 12px; display: block; }

/* ── MAP EMBED ── */
.map-embed { width: 100%; height: 320px; border: 1px solid var(--border); margin-top: 36px; overflow: hidden; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(0.7) contrast(1.05); }

/* ── FLOATING WHATSAPP BUTTON ── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 998;
  width: 54px; height: 54px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none; transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ── ARTICLE CONTENT (insight pages) ── */
.article-wrap { max-width: 780px; margin: 0 auto; padding: 0 48px; }
.article-hero { background: var(--green-deep); padding: 72px 0; position: relative; overflow: hidden; }
.article-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(ellipse at 70% 40%, rgba(184,146,63,0.09) 0%, transparent 60%),
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
}
.article-hero-inner { position: relative; z-index: 2; max-width: 860px; }
.article-cat-badge {
  font-family: 'DM Mono', monospace; font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light); background: rgba(184,146,63,0.12); border: 1px solid rgba(184,146,63,0.28);
  padding: 5px 14px; display: inline-block; margin-bottom: 22px;
}
.article-hero h1 { font-size: clamp(2rem,4vw,3rem); color: var(--white); line-height: 1.1; margin-bottom: 22px; }
.article-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.meta-pill {
  font-family: 'DM Mono', monospace; font-size: 0.63rem; color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em; text-transform: uppercase; display: flex; align-items: center; gap: 7px;
}
.m-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

.article-content { padding: 72px 0 0; }
.article-content p { font-size: 1rem; color: var(--text2); line-height: 1.88; margin-bottom: 24px; font-weight: 300; }
.article-content p strong { color: var(--text); font-weight: 600; }
.article-content h2 { font-size: clamp(1.5rem,2.5vw,2rem); color: var(--green-deep); margin: 52px 0 18px; border-top: 1px solid var(--border); padding-top: 36px; }
.article-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 32px; }
.article-content h3 { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--green-deep); margin: 28px 0 10px; }
.article-content ul, .article-content ol { padding-left: 22px; margin-bottom: 24px; }
.article-content li { font-size: 0.95rem; color: var(--text2); line-height: 1.75; margin-bottom: 8px; }
.article-callout {
  background: var(--green-pale); border-left: 4px solid var(--green-deep);
  padding: 20px 24px; margin: 28px 0; font-size: 0.92rem;
  color: var(--text2); line-height: 1.7;
}
.article-callout strong { color: var(--green-deep); }
.article-infobox {
  background: var(--off-white); border: 1px solid var(--border2);
  padding: 24px 28px; margin: 32px 0;
}
.article-infobox h4 { font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 700; color: var(--green-deep); margin-bottom: 12px; }

/* ── UTILITY ── */
.text-white   { color: #fff; }
.text-gold    { color: var(--gold); }
.text-green   { color: var(--green-deep); }
.text-muted   { color: var(--text3); }
.text-center  { text-align: center; }
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }

/* ══════════════════
   RESPONSIVE
   ══════════════════ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .four-col { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .container, .article-wrap { padding: 0 24px; }
  .nav-wrap { padding: 0 24px; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .nav-actions .btn-primary { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .three-col { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .cert-card-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .section-pad   { padding: 64px 0; }
  .section-pad-sm{ padding: 48px 0; }
  .three-col, .four-col { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .mobile-nav { padding: 100px 28px 48px; }
  .mobile-nav a { font-size: 1.4rem; }
  .whatsapp-float { bottom: 20px; right: 20px; }
}
