/* ============================================================
   GOMA FOODS LTD — GLOBAL STYLESHEET
   Palette: Olive Bark #43452D | Burnished Gold #C9A84C | Warm Parchment #F5EFE0
   Fonts: Cinzel (headings) | Cormorant Garamond (body) | Great Vibes (script)
   ============================================================ */

:root {
  --olive: #43452D;
  --gold: #C9A84C;
  --gold-light: #E8D08A;
  --parchment: #F5EFE0;
  --parchment-dark: #EDE3CE;
  --white: #FFFFFF;
  --text-dark: #2A2B1A;
  --text-mid: #5A5C42;
  --nav-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--parchment);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── Typography helpers ───────────────────────────────────── */
.cinzel { font-family: 'Cinzel', serif; letter-spacing: 0.04em; }
.cormorant { font-family: 'Cormorant Garamond', Georgia, serif; }
.script { font-family: 'Great Vibes', cursive; color: var(--gold); font-weight: 400; }
.text-center { text-align: center; }

/* ── Utility ──────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.bg-parchment { background: var(--parchment-dark); }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--olive);
  margin-bottom: 48px;
  font-weight: 700;
}

/* ── Image placeholders (replace with real images) ────────── */
.img-placeholder {
  background: linear-gradient(135deg, var(--olive) 0%, #6B6E45 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-family: 'Cinzel', serif;
  font-size: 0.75rem; letter-spacing: 0.08em; text-align: center;
  padding: 12px;
}
.img-placeholder--wide { height: 420px; width: 100%; margin-bottom: 48px; border-radius: 4px; }
.img-placeholder--product { height: 220px; width: 100%; }
.img-placeholder--pillar { height: 200px; width: 100%; }
.img-placeholder--tall { height: 480px; width: 100%; border-radius: 4px; }
.img-placeholder--gallery { height: 300px; width: 320px; }
.img-placeholder--hero-page { height: 440px; width: 100%; }
.img-placeholder--cinematic { height: 500px; width: 100%; }
.img-placeholder--half { height: 380px; width: 100%; border-radius: 4px; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  font-weight: 600;
}
.btn-primary {
  background: var(--gold);
  color: var(--olive);
}
.btn-primary:hover { background: var(--gold-light); }
.btn-outline {
  background: transparent;
  color: var(--parchment);
  border: 1.5px solid var(--parchment);
}
.btn-outline:hover { background: rgba(245,239,224,0.15); }
.btn-gold {
  background: var(--gold);
  color: var(--olive);
}
.btn-gold:hover { background: var(--gold-light); }
.btn-nav {
  background: var(--olive);
  color: var(--parchment);
  padding: 10px 22px;
  font-size: 0.72rem;
}
.btn-nav:hover { background: #5A5C3C; }
.btn-sm { padding: 10px 22px; font-size: 0.72rem; }
.btn-olive {
  background: var(--olive);
  color: var(--parchment);
}
.btn-olive:hover { background: #5A5C3C; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--parchment);
  border-bottom: 1.5px solid var(--gold);
  height: var(--nav-h);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  height: 100%;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo-link { text-decoration: none; display: flex; flex-direction: column; }
.nav-wordmark {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--olive);
  letter-spacing: 0.06em;
  line-height: 1;
}
.nav-tagline-script {
  font-family: 'Great Vibes', cursive;
  font-size: 0.95rem;
  color: var(--gold);
  line-height: 1.4;
  margin-top: 1px;
}
.nav-links {
  display: flex; list-style: none; gap: 28px;
  margin: 0 auto;
}
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--olive);
  text-decoration: none;
  text-transform: uppercase;
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { border-bottom-color: var(--gold); color: var(--text-dark); }
.nav-hamburger {
  display: none; background: none; border: none;
  font-size: 1.4rem; color: var(--olive); cursor: pointer; margin-left: auto;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  margin-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--olive) 0%, #7A7D50 50%, #9EA06A 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(30, 32, 18, 0.45);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
  max-width: 800px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--parchment);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 700;
}
.hero-sub {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--parchment);
  margin-bottom: 16px;
  font-weight: 300;
  font-style: italic;
}
.hero-script {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 40px;
  display: block;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-strip {
  background: var(--olive);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 32px;
  animation: marquee 30s linear infinite;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}
.marquee-track .divider { color: var(--gold); opacity: 0.5; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.philosophy {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.philosophy-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #6B6E45 0%, var(--olive) 100%);
}
.philosophy-overlay {
  position: absolute; inset: 0;
  background: rgba(20, 22, 10, 0.5);
}
.philosophy-content {
  position: relative; z-index: 2;
  max-width: 720px; margin: 0 auto; padding: 0 24px;
}
.philosophy-text {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--parchment);
  line-height: 1.9;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 32px;
}
.philosophy-script {
  font-size: clamp(1.5rem, 3vw, 2rem);
  display: block;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products { background: var(--parchment); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  border: 1.5px solid var(--olive);
  background: var(--white);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(67,69,45,0.15);
}
.product-card-body { padding: 20px; }
.product-size {
  font-size: 1rem;
  color: var(--olive);
  margin-bottom: 8px;
  font-weight: 700;
}
.product-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

/* ============================================================
   PILLARS
   ============================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pillar-card {
  background: var(--white);
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
  transition: transform 0.25s;
}
.pillar-card:hover { transform: translateY(-4px); }
.pillar-icon {
  color: var(--gold);
  font-size: 1rem;
  padding: 16px 20px 0;
}
.pillar-title {
  font-size: 0.9rem;
  color: var(--olive);
  padding: 8px 20px 4px;
  font-weight: 700;
}
.pillar-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  padding: 0 20px 20px;
  line-height: 1.6;
  font-style: italic;
}

/* ============================================================
   SOUVENIRS / GIFTS
   ============================================================ */
.souvenirs { background: var(--parchment); }
.souvenirs-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.souvenirs-text .section-title { margin-bottom: 24px; font-size: clamp(1.8rem,3.5vw,2.8rem); line-height: 1.15; }
.souvenirs-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 28px;
}
.occasion-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px;
}
.occasion-tags span {
  background: var(--olive);
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 2px;
  text-transform: uppercase;
}

/* ============================================================
   WHOLESALE STRIP
   ============================================================ */
.wholesale-strip {
  background: var(--olive);
  padding: 80px 0;
}
.wholesale-heading {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--parchment);
  margin-bottom: 24px;
  max-width: 700px; margin-left: auto; margin-right: auto;
}
.wholesale-body {
  font-size: 1.1rem;
  color: var(--parchment);
  max-width: 680px;
  margin: 0 auto 16px;
  line-height: 1.8;
  opacity: 0.9;
}
.wholesale-sub {
  font-size: 1rem;
  color: var(--gold-light);
  max-width: 600px;
  margin: 0 auto 36px;
  font-style: italic;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-strip {
  overflow: hidden;
  padding: 0;
  line-height: 0;
}
.gallery-track {
  display: flex;
  gap: 0;
  animation: galleryScroll 28s linear infinite;
}
.gallery-track:hover { animation-play-state: paused; }
.gallery-item { flex-shrink: 0; }
@keyframes galleryScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--olive); }

.footer-brands-strip {
  background: #353720;
  padding: 24px;
  text-align: center;
  border-bottom: 1px solid rgba(201,168,76,0.25);
}
.footer-brands-label {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.footer-brands-logos {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
}
.footer-brand-logo {
  color: var(--parchment);
  text-decoration: none;
  font-size: 0.95rem;
  font-style: italic;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}
.footer-brand-logo:hover { opacity: 1; color: var(--gold); }

.footer-main {
  max-width: 1160px; margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  gap: 40px;
}
.footer-wordmark {
  font-size: 1.1rem;
  color: var(--parchment);
  font-weight: 700;
  margin-bottom: 6px;
}
.footer-script {
  font-size: 1.4rem;
  display: block;
}
.footer-col-title {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a,
.footer-contact a {
  color: var(--parchment);
  text-decoration: none;
  font-size: 1rem;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}
.footer-links a:hover,
.footer-contact a:hover { opacity: 1; color: var(--gold); }
.footer-contact { list-style: none; }
.footer-contact li {
  color: var(--parchment);
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 8px;
}

.footer-socials { display: flex; gap: 16px; margin-bottom: 12px; }
.footer-socials a {
  color: var(--parchment);
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.footer-socials a:hover { opacity: 1; color: var(--gold); }
.footer-social-handle {
  font-size: 0.9rem;
  color: var(--parchment);
  opacity: 0.6;
  font-style: italic;
}

.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: var(--parchment);
  opacity: 0.5;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

/* ============================================================
   PAGE-SPECIFIC: OUR OIL
   ============================================================ */
.page-hero {
  margin-top: var(--nav-h);
  position: relative;
  min-height: 440px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.page-hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 60px 24px;
  max-width: 800px;
}
.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--parchment);
  margin-bottom: 16px;
}
.page-hero-sub {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--parchment);
  opacity: 0.9;
  margin-bottom: 16px;
}

.credentials-strip {
  background: var(--parchment-dark);
  padding: 40px 24px;
}
.credentials-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
  text-align: center;
}
.credential {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.credential-icon { font-size: 2rem; color: var(--gold); }
.credential-label {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  color: var(--olive);
  letter-spacing: 0.08em;
  font-weight: 700;
}
.credential-sub {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-style: italic;
}

.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.two-col-text h2 { margin-bottom: 20px; }
.two-col-text p {
  font-size: 1.05rem; line-height: 1.9;
  color: var(--text-mid); margin-bottom: 16px;
}

.use-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.use-tags span {
  border: 1px solid var(--gold);
  color: var(--olive);
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  text-transform: uppercase;
}

.nutrition-card {
  background: var(--white);
  border: 1.5px solid var(--olive);
  padding: 40px;
  max-width: 600px; margin: 0 auto;
}
.nutrition-card h3 {
  font-family: 'Cinzel', serif;
  color: var(--olive);
  margin-bottom: 24px;
  font-size: 1rem;
  letter-spacing: 0.08em;
}
.nutrition-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.nutrition-item {
  border-bottom: 1px solid var(--parchment-dark);
  padding-bottom: 12px;
}
.nutrition-label {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--text-mid);
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.nutrition-value {
  font-size: 1.2rem;
  color: var(--olive);
  font-weight: 600;
}

/* ============================================================
   PAGE-SPECIFIC: SHOP
   ============================================================ */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}
.shop-card {
  border: 1.5px solid var(--olive);
  background: var(--white);
  overflow: hidden;
}
.shop-card-body { padding: 20px; }
.shop-card-size {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  color: var(--olive);
  font-weight: 700;
  margin-bottom: 6px;
}
.shop-card-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.5;
}
.qty-row {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.qty-label {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-mid);
  text-transform: uppercase;
}
.qty-input {
  width: 64px;
  border: 1px solid var(--olive);
  padding: 6px 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--olive);
  text-align: center;
}

.order-form-section { background: var(--parchment-dark); padding: 60px 0; }
.order-form-section h2 {
  font-family: 'Cinzel', serif;
  color: var(--olive);
  margin-bottom: 36px;
  font-size: 1.6rem;
  text-align: center;
}
.goma-form {
  max-width: 680px; margin: 0 auto;
  background: var(--white);
  padding: 48px;
  border: 1px solid rgba(67,69,45,0.15);
}
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--olive);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-label span { color: #B33; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  border: 1px solid rgba(67,69,45,0.3);
  padding: 12px 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--text-dark);
  background: var(--parchment);
  transition: border-color 0.2s;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-radio-group { display: flex; gap: 20px; flex-wrap: wrap; }
.form-radio {
  display: flex; align-items: center; gap: 8px;
  font-size: 1rem; color: var(--text-mid); cursor: pointer;
}
.form-radio input { accent-color: var(--gold); cursor: pointer; }
.form-submit {
  background: var(--olive);
  color: var(--parchment);
  border: none;
  width: 100%;
  padding: 16px;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}
.form-submit:hover { background: #5A5C3C; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  font-family: 'Cinzel', serif;
  color: var(--olive);
}
.form-note {
  text-align: center;
  margin-top: 28px;
  font-size: 1rem;
  color: var(--text-mid);
  font-style: italic;
}
.form-note a { color: var(--olive); }

/* ============================================================
   PAGE-SPECIFIC: WHOLESALE
   ============================================================ */
.who-list {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: 32px;
}
.who-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 1.05rem; line-height: 1.6; color: var(--text-mid);
}
.who-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.offer-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
  margin-top: 40px;
}
.offer-card {
  background: var(--white);
  padding: 28px;
  border-top: 3px solid var(--gold);
}
.offer-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--olive);
  margin-bottom: 10px;
  font-weight: 700;
}
.offer-card p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.6;
  font-style: italic;
}

/* ============================================================
   PAGE-SPECIFIC: BRANDS
   ============================================================ */
.brands-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  margin-top: 48px;
}
.brand-card {
  background: var(--white);
  padding: 36px;
  border: 1.5px solid var(--parchment-dark);
  transition: box-shadow 0.25s;
}
.brand-card:hover { box-shadow: 0 8px 32px rgba(67,69,45,0.1); }
.brand-card-name {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--olive);
  font-weight: 700;
  margin-bottom: 10px;
}
.brand-card-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}
.footer-note {
  background: var(--olive);
  color: var(--parchment);
  padding: 32px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.9;
}
.footer-note a { color: var(--gold); text-decoration: none; }

/* ============================================================
   PAGE-SPECIFIC: CONTACT
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px;
}
.contact-info h2 {
  font-family: 'Cinzel', serif;
  color: var(--olive);
  margin-bottom: 32px;
  font-size: 1.6rem;
}
.contact-detail {
  display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
}
.contact-item-icon { color: var(--gold); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.contact-item-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.contact-item-text a { color: var(--olive); text-decoration: none; }
.contact-item-text a:hover { color: var(--gold); }
.contact-social-row { display: flex; gap: 14px; margin-top: 24px; }
.contact-social-row a { color: var(--olive); opacity: 0.7; transition: opacity 0.2s, color 0.2s; }
.contact-social-row a:hover { opacity: 1; color: var(--gold); }
.map-embed {
  width: 100%; height: 400px;
  background: var(--parchment-dark);
  border: 1px solid rgba(67,69,45,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-mid);
  margin: 40px 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .pillars-grid { grid-template-columns: repeat(2,1fr); }
  .souvenirs-inner { grid-template-columns: 1fr; }
  .souvenirs-image { display: none; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .two-col { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .who-list { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr 1fr; }
  .brands-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .credentials-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .nav-links { 
    display: none; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--parchment);
    padding: 20px 24px 32px;
    border-bottom: 1.5px solid var(--gold);
    gap: 20px;
  }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: block; }
  .btn-nav { display: none; }
  .hero { height: 70vh; }
  .product-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .goma-form { padding: 28px 20px; }
  .form-two-col { grid-template-columns: 1fr; }
  .nutrition-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .section-pad { padding: 52px 0; }
  .wholesale-strip { padding: 52px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track, .gallery-track { animation: none; }
}
