/* ===================================================
   SUVARNA FARM FOODS — Design System v3
   =================================================== */

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

:root {
  --green-deep:  #1a3a2a;
  --green-mid:   #2d6a4f;
  --green-light: #52b788;
  --gold:        #c8960c;
  --gold-warm:   #e8b84b;
  --cream:       #faf7f0;
  --cream-dark:  #f0ebe0;
  --white:       #ffffff;
  --text-dark:   #2a2118;
  --text-mid:    #4a4038;
  --text-light:  #7a6e66;
  --border:      #e4ddd4;
  --transition:  all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.75;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
p { color: var(--text-mid); }

/* ── Scroll reveal ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity:0; transform:translateX(-44px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal-right { opacity:0; transform:translateX(44px);  transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal-left.visible, .reveal-right.visible { opacity:1; transform:translateX(0); }

/* ── Layout ────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
section { padding: 96px 0; }
.eyebrow {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.section-heading {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--green-deep);
  margin-bottom: 28px;
}
.section-heading em { font-style: italic; color: var(--green-mid); }

/* ===================================================
   NAVBAR — always solid
   =================================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; flex-direction: column; gap: 1px; }
.nav-logo .brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-deep);
}
.nav-logo .brand-sub {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-deep); }
.nav-links .nav-shop {
  background: var(--green-deep);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-links .nav-shop:hover { background: var(--green-mid) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--green-deep); border-radius: 2px; }

/* ===================================================
   HERO — with staggered animations
   =================================================== */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/hero_farm.png');
  background-size: cover;
  background-position: center;
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.09); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(12, 30, 18, 0.93) 0%,
    rgba(12, 30, 18, 0.78) 45%,
    rgba(12, 30, 18, 0.30) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  padding-bottom: 48px;
}

/* ── Hero animations ── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-warm);
  font-weight: 600;
  margin-bottom: 22px;
  opacity: 0;
  animation: slideRight 0.7s 0.2s ease forwards;
}
.hero-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold-warm);
}
.hero-title {
  font-size: clamp(3rem, 7vw, 5.2rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeDown 0.8s 0.45s ease forwards;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title-sub {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.45rem);
  color: rgba(255,255,255,0.78);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeDown 0.8s 0.65s ease forwards;
}
.hero-desc {
  max-width: 500px;
  font-size: 0.97rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.85;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.8s 0.85s ease forwards;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1.05s ease forwards;
}
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--green-deep);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--gold-warm); transform: translateY(-2px); }
.btn-outline {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.88);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.92rem;
  transition: var(--transition);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.75); transform: translateY(-2px); }

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 1s 1.3s ease forwards;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-warm);
  line-height: 1;
}
.stat-lbl {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.55);
  margin-top: 5px;
  letter-spacing: 0.05em;
}

/* ===================================================
   ABOUT SECTION
   =================================================== */
#about { background: var(--white); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.col-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 2px;
}
.col-text {}
.col-text p {
  font-size: 0.97rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.pull-quote {
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  margin: 32px 0;
  background: var(--cream);
}
.pull-quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin: 0;
}
.pull-quote cite {
  display: block;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 10px;
}
.founders-line {
  display: flex;
  gap: 36px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.f-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-deep);
}
.f-role { font-size: 0.78rem; color: var(--text-light); margin-top: 2px; }

/* ===================================================
   INCEPTION / OUR STORY
   =================================================== */
#inception { background: var(--cream); padding: 96px 0; }
.inception-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.inception-text {}
.inception-text p {
  font-size: 0.97rem;
  line-height: 1.92;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.inception-text p:last-child { margin-bottom: 0; }
.inception-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 2px;
}

/* ===================================================
   MISSION
   =================================================== */
#mission { background: var(--green-deep); padding: 96px 0; }
.mission-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.mission-inner .eyebrow { color: var(--gold-warm); }
.mission-inner .section-heading { color: #fff; margin-bottom: 36px; }
.mission-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.82);
  line-height: 2;
  margin-bottom: 52px;
}
.mission-divider { width: 48px; height: 2px; background: var(--gold-warm); margin: 0 auto 48px; }
.mission-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.mv-item {
  padding: 36px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.mv-item:last-child { border-right: none; }
.mv-icon { font-size: 1.8rem; margin-bottom: 14px; }
.mv-title { font-family:'Playfair Display',serif; font-size:1rem; color:#fff; margin-bottom:10px; }
.mv-text { font-size:0.84rem; color:rgba(255,255,255,0.55); line-height:1.75; }

/* ===================================================
   CONTACT — dark split layout
   =================================================== */
#contact {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,184,75,0.10) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
#contact::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(82,183,136,0.10) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.contact-left {}
.contact-left .eyebrow { color: var(--gold-warm); }
.contact-left .section-heading { color: #fff; margin-bottom: 20px; }
.contact-left .contact-desc {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.9;
  margin-bottom: 36px;
}
.contact-tagline {
  border-left: 3px solid var(--gold-warm);
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
}
.contact-tagline p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin: 0;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  padding: 24px 28px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.contact-card:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(232,184,75,0.35);
  transform: translateX(6px);
}
.cc-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.cc-wa   { background: rgba(37,211,102,0.18); }
.cc-ph   { background: rgba(82,183,136,0.18); }
.cc-info { flex: 1; }
.cc-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  margin-bottom: 4px;
}
.cc-value {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
}
.cc-arrow {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s, transform 0.2s;
}
.contact-card:hover .cc-arrow {
  color: var(--gold-warm);
  transform: translateX(4px);
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  margin-top: 4px;
  text-decoration: none;
}
.wa-btn:hover { background: #1ebe5b; transform: translateY(-3px); box-shadow: 0 10px 32px rgba(37,211,102,0.3); }

/* ===================================================
   FOOTER
   =================================================== */
footer { background: #0f2019; padding: 56px 0 32px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.footer-brand .fb-name { font-family:'Playfair Display',serif; font-size:1.35rem; color:#fff; margin-bottom:6px; }
.footer-brand .fb-sub { font-size:0.68rem; color:var(--gold-warm); letter-spacing:0.14em; text-transform:uppercase; margin-bottom:16px; display:block; }
.footer-brand p { font-size:0.86rem; color:rgba(255,255,255,0.45); line-height:1.8; max-width:280px; }
.footer-col h5 { font-family:'Playfair Display',serif; color:#fff; font-size:0.95rem; margin-bottom:20px; }
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:10px; }
.footer-col ul li a { font-size:0.86rem; color:rgba(255,255,255,0.4); transition:color 0.2s; }
.footer-col ul li a:hover { color:var(--gold-warm); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; font-size:0.8rem; color:rgba(255,255,255,0.28); flex-wrap:wrap; gap:8px; }

/* ===================================================
   SHOP PAGE — ecommerce style
   =================================================== */
.shop-hero {
  background: var(--green-deep);
  padding: 96px 0 72px;
  margin-top: 68px;
  position: relative;
  overflow: hidden;
}
.shop-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,184,75,0.12) 0%, transparent 65%);
  border-radius: 50%;
}
.shop-hero-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; position: relative; z-index:1; }
.shop-hero .eyebrow { color: var(--gold-warm); }
.shop-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}
.shop-hero-desc {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.62);
  max-width: 520px;
  line-height: 1.85;
}

/* ─ Product grid ─ */
.products-section { background: var(--cream); padding: 72px 0 96px; }
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}
.shop-toolbar-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--green-deep);
  margin-bottom: 4px;
}
.shop-toolbar-left p { font-size: 0.85rem; color: var(--text-light); }
.shop-toolbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sort-label { font-size: 0.82rem; color: var(--text-light); }
.shop-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--green-mid);
  color: var(--green-mid);
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}
.shop-contact-pill:hover { background: var(--green-mid); color: #fff; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ─ Product Card ─ */
.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26,58,42,0.13);
}

/* Card illustration header */
.card-visual {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  position: relative;
  overflow: hidden;
}
.card-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  transform: scale(1.05);
  position: relative;
  z-index: 1;
}
.card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.04);
}

/* Color themes per product category */
.cv-green   { background: linear-gradient(135deg, #d8f3dc, #b7e4c7); }
.cv-amber   { background: linear-gradient(135deg, #fdf3c9, #f8e196); }
.cv-pink    { background: linear-gradient(135deg, #ffe4e1, #ffc4c4); }
.cv-sage    { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.cv-earth   { background: linear-gradient(135deg, #f0e6d8, #ddd0bc); }
.cv-red     { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
.cv-orange  { background: linear-gradient(135deg, #fff3e0, #ffe0b2); }
.cv-gold    { background: linear-gradient(135deg, #fffde7, #fff59d); }
.cv-lavender{ background: linear-gradient(135deg, #ede7f6, #d1c4e9); }
.cv-deepgreen{background: linear-gradient(135deg, #e8f5e9, #a5d6a7); }

/* Card body */
.card-body { padding: 24px 24px 28px; }
.card-num {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 600;
}
.card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  color: var(--green-deep);
  margin-bottom: 10px;
  line-height: 1.35;
}
.card-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 24px;
  min-height: 48px;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.card-tag {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
  font-weight: 600;
}
.btn-order {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-deep);
  color: #fff;
  padding: 9px 18px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-order:hover { background: var(--green-mid); }
.btn-order svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ─ Shop bottom CTA ─ */
.shop-cta-strip {
  margin-top: 72px;
  padding: 56px 48px;
  background: var(--green-deep);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.shop-cta-strip h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 8px;
}
.shop-cta-strip p { font-size: 0.9rem; color: rgba(255,255,255,0.6); max-width: 380px; line-height: 1.8; }
.shop-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ===================================================
   MODAL
   =================================================== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(10,26,16,0.72);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.open { opacity:1; pointer-events:all; }
.modal-box {
  background: var(--white);
  border-radius: 8px;
  padding: 48px;
  max-width: 460px;
  width: 100%;
  position: relative;
  transform: translateY(16px) scale(0.97);
  transition: transform 0.3s ease;
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 18px; right: 20px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); font-size: 1rem; cursor: pointer;
}
.modal-close:hover { color: var(--text-dark); }
.modal-for { font-size:0.7rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--gold); font-weight:600; margin-bottom:10px; display:block; }
.modal-title { font-family:'Playfair Display',serif; font-size:1.6rem; color:var(--green-deep); margin-bottom:8px; }
.modal-subtitle { font-size:0.88rem; color:var(--text-light); line-height:1.75; margin-bottom:36px; }
.modal-contacts { border-top:1px solid var(--border); border-bottom:1px solid var(--border); margin-bottom:28px; }
.mci {
  display:flex; align-items:center; gap:16px;
  padding:18px 0; border-bottom:1px solid var(--border); text-decoration:none;
  transition: padding-left 0.2s;
}
.mci:last-child { border-bottom:none; }
.mci:hover { padding-left: 4px; }
.mci-label { font-size:0.7rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--text-light); font-weight:600; width:90px; }
.mci-value { font-weight:600; font-size:0.97rem; color:var(--text-dark); transition:color 0.2s; }
.mci:hover .mci-value { color:var(--green-mid); }
.modal-wa {
  display:flex; align-items:center; justify-content:center; gap:10px;
  background:#25d366; color:#fff; padding:15px; border-radius:4px;
  font-weight:700; font-size:0.95rem; text-decoration:none; transition:background 0.2s;
}
.modal-wa:hover { background:#1ebe5b; }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width:960px) {
  .two-col, .inception-grid, .contact-grid { grid-template-columns:1fr; gap:48px; }
  .col-img img, .inception-img img { height:320px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-values { grid-template-columns:1fr; }
  .mv-item { border-right:none; border-bottom:1px solid rgba(255,255,255,0.1); }
  .mv-item:last-child { border-bottom:none; }
  .footer-top { grid-template-columns:1fr 1fr; }
  .shop-cta-strip { flex-direction:column; padding:40px 32px; }
}
@media (max-width:768px) {
  section { padding:64px 0; }
  .nav-links { display:none; }
  .nav-links.open {
    display:flex; flex-direction:column;
    position:absolute; top:100%; left:0; right:0;
    background:var(--cream); border-bottom:1px solid var(--border);
    padding:20px 32px; gap:18px;
  }
  .hamburger { display:flex; }
  .products-grid { grid-template-columns:1fr; }
  .hero-stats { gap:28px; }
  .modal-box { padding:32px 22px; }
  .footer-top { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .founders-line { flex-direction:column; gap:20px; }
  .contact-row { flex-direction:column; gap:6px; }
  .cr-label { width:auto; }
  .shop-toolbar { flex-direction:column; align-items:flex-start; }
}
