/* ============================================================
   UroBloom Design System
   Colors: Forest Green #1A4D2E | Gold #C9A84C | Cream #F8F5EE
   Fonts: Poppins (headings) | Inter (body)
   ============================================================ */

/* --- Variables --- */
:root {
  --green-dark:   #0F2A18;
  --green-primary:#1A4D2E;
  --green-mid:    #2E7D4F;
  --green-light:  #4CAF77;
  --gold:         #C9A84C;
  --gold-light:   #E2C476;
  --cream:        #F8F5EE;
  --cream-dark:   #EDE9DE;
  --white:        #FFFFFF;
  --text-dark:    #1C1C1C;
  --text-mid:     #3D3D3D;
  --text-muted:   #6B7280;
  --border:       #D8D3C8;
  --shadow-sm:    0 2px 8px rgba(26,77,46,.08);
  --shadow-md:    0 6px 24px rgba(26,77,46,.12);
  --shadow-lg:    0 16px 48px rgba(26,77,46,.16);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    40px;
  --transition:   0.3s ease;
  --max-width:    1200px;
  --font-head:    'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--text-dark);
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.15rem; }
h6 { font-size: 0.95rem; }
p  { font-size: 1rem; color: var(--text-mid); }

/* --- Logo image --- */
.logo-img {
  height: 170px;
  width: auto;
  display: block;
  object-fit: contain;
}
/* Footer variant */
.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
}
.footer-logo-wrap .logo-img {
  height: 140px;
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 80px 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-green {
  background: var(--green-primary);
  color: var(--white);
  border-color: var(--green-primary);
}
.btn-green:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 186px;
}
.logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

/* Desktop nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.2px;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--green-primary); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links .btn { margin-left: 8px; padding: 10px 24px; font-size: 0.88rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--green-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-dark);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--green-primary); }
.mobile-nav .btn { margin-top: 12px; text-align: center; justify-content: center; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 55%, var(--green-mid) 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 40%, rgba(201,168,76,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  margin-bottom: 24px;
}
.hero-badge svg { width: 14px; height: 14px; fill: var(--gold-light); }
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 .gold { color: var(--gold); }
.hero p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-stack {
  position: relative;
  width: 360px;
  height: 420px;
}
.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--white);
}
.hero-card.main {
  width: 300px;
  bottom: 0; left: 0;
  background: rgba(255,255,255,0.12);
}
.hero-card.accent {
  width: 220px;
  top: 20px; right: 0;
  background: rgba(201,168,76,0.2);
  border-color: rgba(201,168,76,0.3);
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.hero-icon-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.hero-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.hero-icon svg { width: 18px; height: 18px; fill: var(--gold-light); }
.hero-card-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.hero-card-desc { font-size: 0.82rem; color: rgba(255,255,255,0.72); line-height: 1.5; }

/* ============================================================
   SECTION: PILLARS (Why UroBloom)
   ============================================================ */
.pillars { background: var(--cream); }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-primary);
  background: rgba(26,77,46,0.08);
  padding: 5px 12px;
  border-radius: var(--radius-xl);
  margin-bottom: 14px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.3);
}
.card-num {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-mid));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.card h5 { margin-bottom: 10px; color: var(--text-dark); font-size: 1.05rem; }
.card p { font-size: 0.93rem; line-height: 1.65; }

/* ============================================================
   SECTION: NATURAL FOODS
   ============================================================ */
.foods { background: var(--white); }
.foods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.food-card {
  text-align: center;
  padding: 24px 16px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--cream);
  transition: var(--transition);
}
.food-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.food-img-wrap {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--cream-dark);
}
.food-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.food-card:hover .food-img-wrap img { transform: scale(1.05); }
.food-card h4 { margin-bottom: 10px; font-size: 1.1rem; color: var(--green-primary); }
.food-card p { font-size: 0.9rem; line-height: 1.65; }

/* ============================================================
   SECTION: STATS
   ============================================================ */
.stats {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  color: var(--white);
  padding: 80px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.stats-text h3 { color: var(--white); margin-bottom: 16px; }
.stats-text p { color: rgba(255,255,255,0.8); margin-bottom: 0; font-size: 1rem; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stat-item {
  text-align: center;
  padding: 28px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
  line-height: 1.4;
}

/* ============================================================
   SECTION: DUAL INFO
   ============================================================ */
.dual {
  background: var(--cream);
  padding: 0;
}
.dual-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.dual-col {
  padding: 80px 64px;
}
.dual-col:first-child {
  background: var(--green-primary);
  color: var(--white);
}
.dual-col:first-child h3 { color: var(--white); margin-bottom: 16px; }
.dual-col:first-child p { color: rgba(255,255,255,0.82); }
.dual-col:last-child { background: var(--cream-dark); }
.dual-col:last-child h3 { margin-bottom: 16px; }

/* ============================================================
   SECTION: PRODUCT (UroBloom)
   ============================================================ */
.product { background: var(--white); }
.product-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.product-content h2 { margin-bottom: 20px; }
.product-content h5 {
  color: var(--green-primary);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.5;
}
.product-content p { margin-bottom: 24px; }
.product-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.product-img-wrap img { width: 100%; height: 420px; object-fit: cover; }
.product-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feature-icon {
  width: 24px; height: 24px;
  background: rgba(26,77,46,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-icon svg { width: 12px; height: 12px; fill: var(--green-primary); }
.feature-text { font-size: 0.93rem; color: var(--text-mid); line-height: 1.5; }

/* ============================================================
   SECTION: FAQ
   ============================================================ */
.faq { background: var(--cream); }
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.faq-header h2 { margin-bottom: 14px; }
.faq-header p { font-size: 0.95rem; }
.accordion { display: flex; flex-direction: column; gap: 12px; }
.accordion-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.accordion-item.open { border-color: var(--green-primary); }
.accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color var(--transition);
}
.accordion-btn:hover { color: var(--green-primary); }
.accordion-icon {
  width: 24px; height: 24px;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.accordion-icon svg {
  width: 12px; height: 12px;
  stroke: var(--green-primary);
  fill: none;
  stroke-width: 2.5;
  transition: transform var(--transition);
}
.accordion-item.open .accordion-icon { background: var(--green-primary); }
.accordion-item.open .accordion-icon svg { stroke: var(--white); transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.accordion-body.open { max-height: 600px; }
.accordion-body-inner {
  padding: 0 24px 20px;
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============================================================
   SECTION: CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-mid) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 100%, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p {
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}

/* ============================================================
   SECTION: CONTACT FORM
   ============================================================ */
.contact-form-section { background: var(--white); }
.form-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.form-info h3 { margin-bottom: 14px; }
.form-info p { margin-bottom: 28px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-icon {
  width: 42px; height: 42px;
  background: rgba(26,77,46,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; fill: var(--green-primary); }
.contact-detail-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.contact-detail-text span { font-size: 0.9rem; color: var(--text-muted); }
.contact-detail-text a { color: var(--green-primary); transition: color var(--transition); }
.contact-detail-text a:hover { color: var(--green-mid); }

/* Form styles */
.form-box {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.3px;
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(26,77,46,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; }
.form-msg {
  display: none;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 16px;
  text-align: center;
}
.form-msg.success { background: rgba(26,77,46,0.08); color: var(--green-primary); border: 1px solid rgba(26,77,46,0.2); }
.form-msg.error   { background: rgba(220,38,38,0.06); color: #DC2626; border: 1px solid rgba(220,38,38,0.2); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.72);
  padding-top: 60px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { font-size: 0.92rem; line-height: 1.75; max-width: 300px; color: rgba(255,255,255,0.85); }
.footer-col h6 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item svg { width: 15px; height: 15px; fill: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 0.9rem; color: rgba(255,255,255,0.85); line-height: 1.5; }
.footer-contact-item a { color: rgba(255,255,255,0.85); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.footer-disclaimer {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  max-width: 820px;
  line-height: 1.7;
}
.footer-legal {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}
.footer-copyright {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
.footer-refs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}
.footer-refs a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}
.footer-refs a:hover { color: var(--white); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  color: var(--white);
  padding: 80px 0 72px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto; }

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
  padding: 80px 0;
}
.info-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 36px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.info-card h4 {
  font-size: 1rem;
  color: var(--green-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-card h4 svg { width: 18px; height: 18px; fill: var(--green-primary); }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-body { background: var(--white); padding: 64px 0 80px; }
.legal-container { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.legal-container h2 { margin-bottom: 32px; }
.legal-container h3 {
  font-size: 1.1rem;
  color: var(--green-primary);
  margin: 28px 0 10px;
  font-weight: 700;
}
.legal-container p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.legal-container ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-container ul li {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 6px;
}
.legal-info-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin-top: 32px;
}
.legal-info-box h4 {
  font-size: 0.95rem;
  color: var(--green-primary);
  margin-bottom: 12px;
}
.legal-info-box p { margin-bottom: 4px; font-size: 0.9rem; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-gold    { color: var(--gold); }
.text-green   { color: var(--green-primary); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

/* Scroll animation base */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .dual-col { padding: 60px 40px; }
  .hero-card-stack { width: 300px; height: 360px; }
  .hero-card.main { width: 260px; }
  .hero-card.accent { width: 190px; }
}

@media (max-width: 900px) {
  .foods-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .product-inner { grid-template-columns: 1fr; }
  .product-img-wrap { order: -1; }
  .product-img-wrap img { height: 300px; }
  .faq-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .form-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .hero { padding: 72px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .dual-inner { grid-template-columns: 1fr; }
  .dual-col { padding: 48px 28px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .form-box { padding: 28px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 560px) {
  .foods-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}
