@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #34495E;
  --primary-dark: #2C3E50;
  --primary-light: #435f78;
  --accent-green: #2ECC71;
  --accent-orange: #E67E22;
  --neutral: #BDC3C7;
  --neutral-light: #ECF0F1;
  --neutral-dark: #95A5A6;
  --white: #FFFFFF;
  --text-main: #2C3E50;
  --text-secondary: #566573;
  --text-light: #7F8C8D;
  --border: #D5D8DC;
  --bg-light: #F4F6F7;
  --bg-section: #EAF0F1;
  --shadow-sm: 0 2px 8px rgba(52,73,94,0.08);
  --shadow-md: 0 4px 20px rgba(52,73,94,0.12);
  --shadow-lg: 0 8px 40px rgba(52,73,94,0.16);
  --radius: 4px;
  --radius-md: 8px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-main);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--primary);
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1.25rem; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; color: var(--text-secondary); line-height: 1.75; }

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-green); }

img { max-width: 100%; height: auto; display: block; }

ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.5rem; color: var(--text-secondary); line-height: 1.7; }

.container-wide { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.container { max-width: 960px; margin: 0 auto; padding: 0 40px; }

.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.section-pad-lg { padding: 120px 0; }

.bg-primary { background-color: var(--primary); }
.bg-primary-dark { background-color: var(--primary-dark); }
.bg-light { background-color: var(--bg-light); }
.bg-section { background-color: var(--bg-section); }
.bg-white { background-color: var(--white); }

.text-white { color: var(--white) !important; }
.text-white h1, .text-white h2, .text-white h3, .text-white p, .text-white li { color: var(--white); }

.divider { width: 60px; height: 3px; background: var(--accent-green); margin: 1.25rem 0 1.75rem; }
.divider-center { margin: 1.25rem auto 1.75rem; }
.divider-orange { background: var(--accent-orange); }

.tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 0.75rem;
}

.tag-orange { color: var(--accent-orange); }

/* ===================== HEADER ===================== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(44, 62, 80, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(189,195,199,0.15);
  transition: background var(--transition), box-shadow var(--transition);
}

#site-header.scrolled {
  background: rgba(44, 62, 80, 1);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color var(--transition);
}

.site-logo span { color: var(--accent-green); }
.site-logo:hover { color: var(--neutral); text-decoration: none; }

.main-nav { display: flex; align-items: center; gap: 0; }

.main-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
  position: relative;
  letter-spacing: 0.02em;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 1.5px;
  background: var(--accent-green);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.main-nav a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--primary-dark);
  padding: 12px 0 20px;
  border-top: 1px solid rgba(189,195,199,0.12);
}

.mobile-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 12px 40px;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.mobile-nav a:hover { background: rgba(255,255,255,0.06); color: var(--white); }

/* ===================== FOOTER ===================== */
#site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
  border-top: 3px solid var(--accent-green);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand-name span { color: var(--accent-green); }

.footer-tagline {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
  border-left: 2px solid var(--accent-green);
  padding-left: 12px;
}

.footer-disclaimer-inline {
  font-size: 0.78rem;
  color: var(--accent-orange);
  font-weight: 500;
  font-style: italic;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neutral);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--accent-green); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.85rem;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  fill: var(--accent-green);
}

.footer-contact-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}

.footer-hours-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neutral-dark);
  margin-bottom: 0.5rem;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom-policies { display: flex; gap: 20px; }
.footer-bottom-policies a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-bottom-policies a:hover { color: var(--accent-green); }

.footer-wrapper { padding-bottom: 0; }

/* ===================== HERO ===================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--primary-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.38;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44,62,80,0.65) 0%, rgba(44,62,80,0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 40px;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

.hero-content .hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46,204,113,0.15);
  border: 1px solid rgba(46,204,113,0.35);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 0.82rem;
  color: var(--accent-green);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===================== SECTION HEADER ===================== */
.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header.center .divider { margin: 1.25rem auto 1.75rem; }

/* ===================== CARDS ===================== */
.card-grid { display: grid; gap: 28px; }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-green);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.info-card:hover::before { transform: scaleX(1); }

.info-card-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.info-card-icon svg { width: 24px; height: 24px; fill: var(--accent-green); }

.card-img-top {
  background: var(--bg-light);
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.card-img-top img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-img-top img:hover { transform: scale(1.03); }

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.blog-card-body { padding: 24px; }

.blog-card-meta {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.blog-card-body h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }

.blog-card-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.read-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.03em;
  text-decoration: none;
  border-bottom: 1px solid var(--accent-green);
  padding-bottom: 1px;
  transition: color var(--transition), border-color var(--transition);
}

.read-link:hover { color: var(--accent-green); }

/* ===================== TWO COLUMN ===================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col-img {
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.two-col-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.two-col-img img:hover { transform: scale(1.03); }

.three-col-img-text { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }

.img-text-block .img-wrap {
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
}

.img-text-block .img-wrap img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.img-text-block .img-wrap img:hover { transform: scale(1.04); }

/* ===================== IMAGE DOMINANT ===================== */
.img-dominant-block { position: relative; }

.img-dominant-block .main-img-wrap {
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-md);
}

.img-dominant-block .main-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* ===================== WIDE TEXT BLOCK ===================== */
.wide-text-integrated {
  display: grid;
  grid-template-columns: 1fr 320px 1fr;
  gap: 40px;
  align-items: start;
}

.wide-text-integrated .col-text { }

.wide-text-integrated .col-img {
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.wide-text-integrated .col-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* ===================== ACCORDION / FAQ ===================== */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  gap: 16px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}

.faq-icon svg { width: 14px; height: 14px; fill: var(--primary); transition: transform var(--transition); }
.faq-item.open .faq-icon { background: var(--accent-green); border-color: var(--accent-green); }
.faq-item.open .faq-icon svg { fill: var(--white); transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 0 22px;
}

.faq-answer p { color: var(--text-secondary); margin: 0; }
.faq-item.open .faq-answer { display: block; }

/* ===================== STAT STRIP ===================== */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--primary);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.stat-item {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child { border-right: none; }

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent-green);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ===================== TIMELINE ===================== */
.timeline { position: relative; padding-left: 32px; }

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-green);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent-green);
}

.timeline-time {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 0.35rem;
}

.timeline-item h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }

/* ===================== GLOSSARY RAIL ===================== */
.glossary-layout { display: grid; grid-template-columns: 1fr 280px; gap: 60px; align-items: start; }

.glossary-rail {
  position: sticky;
  top: 100px;
  background: var(--bg-light);
  border-left: 3px solid var(--accent-green);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 28px 24px;
}

.glossary-rail h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.glossary-term {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.glossary-term:last-child { border-bottom: none; }

.glossary-term-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.glossary-term-def { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; margin: 0; }

/* ===================== MATRIX ===================== */
.matrix-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); border-radius: var(--radius-md); overflow: hidden; }

.matrix-cell {
  background: var(--white);
  padding: 28px 24px;
  transition: background var(--transition);
}

.matrix-cell:hover { background: var(--bg-light); }

.matrix-cell-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.matrix-cell-icon svg { width: 18px; height: 18px; fill: var(--accent-green); }

.matrix-cell h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.matrix-cell p { font-size: 0.85rem; color: var(--text-secondary); margin: 0; }

/* ===================== CHECKLIST ===================== */
.checklist { list-style: none; padding: 0; }

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--bg-section);
}

.checklist li::before {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--bg-light);
  border: 2px solid var(--accent-green);
  border-radius: 4px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%232ECC71' d='M13.485 1.431a1.473 1.473 0 0 0-2.084 0l-6.91 6.955-2.218-2.211a1.473 1.473 0 0 0-2.085 2.086l3.26 3.202a1.473 1.473 0 0 0 2.084 0l7.953-7.961a1.473 1.473 0 0 0 0-2.071z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}

/* ===================== BLOCK QUOTE ===================== */
.block-quote {
  border-left: 4px solid var(--accent-orange);
  padding: 20px 28px;
  background: var(--bg-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2rem 0;
}

.block-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--primary);
  margin: 0;
  line-height: 1.7;
}

/* ===================== INFOGRAPHIC ===================== */
.food-groups-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.food-group-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.food-group-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.food-group-label { font-size: 0.875rem; font-weight: 500; color: var(--text-main); }
.food-group-pct { font-size: 0.78rem; color: var(--text-light); }

/* ===================== TABLE ===================== */
.styled-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }

.styled-table th {
  background: var(--primary);
  color: var(--white);
  padding: 14px 18px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.styled-table td { padding: 13px 18px; color: var(--text-secondary); border-bottom: 1px solid var(--border); }
.styled-table tr:last-child td { border-bottom: none; }
.styled-table tr:nth-child(even) td { background: var(--bg-light); }
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--border); }

/* ===================== FULL-WIDTH SECTION ===================== */
.full-width-cta {
  position: relative;
  background: var(--primary);
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
}

.full-width-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 80px
  );
}

.full-width-cta h2 { color: var(--white); position: relative; }
.full-width-cta p { color: rgba(255,255,255,0.75); max-width: 580px; margin: 0 auto 2rem; position: relative; }

.btn-outline-light {
  display: inline-block;
  padding: 13px 36px;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  position: relative;
}

.btn-outline-light:hover {
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: var(--white);
  text-decoration: none;
}

.btn-primary {
  display: inline-block;
  padding: 13px 36px;
  background: var(--accent-green);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover { background: #27ae60; box-shadow: 0 4px 20px rgba(46,204,113,0.3); color: var(--white); text-decoration: none; }

.btn-secondary {
  display: inline-block;
  padding: 12px 32px;
  background: transparent;
  border: 1.5px solid var(--primary);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-secondary:hover { background: var(--primary); color: var(--white); text-decoration: none; }

/* ===================== VISUAL SEPARATOR ===================== */
.vs { height: 1px; background: var(--border); margin: 0; }

.vs-primary {
  height: 3px;
  background: linear-gradient(to right, var(--accent-green), transparent);
  margin: 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 2rem;
}

.section-label-line { flex: 1; height: 1px; background: var(--border); }
.section-label-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
}

/* ===================== DISCLAIMER BOX ===================== */
.disclaimer-box {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-left: 4px solid var(--neutral-dark);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin: 2rem 0;
}

.disclaimer-box p { font-size: 0.85rem; color: var(--text-light); margin: 0; line-height: 1.65; }

/* ===================== FORM ===================== */
.form-group { margin-bottom: 1.5rem; }

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-control {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(52,73,94,0.1); }

textarea.form-control { min-height: 150px; resize: vertical; line-height: 1.6; }

.contact-info-block { padding: 36px 32px; background: var(--bg-light); border-radius: var(--radius-md); height: 100%; }

.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 1.5rem; }

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg { width: 18px; height: 18px; fill: var(--accent-green); }

.contact-info-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
.contact-info-value { font-size: 0.9rem; color: var(--text-secondary); }

/* ===================== PAGE HERO (inner pages) ===================== */
.page-hero {
  background: var(--primary);
  padding: 130px 40px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-green);
}

.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero .lead { color: rgba(255,255,255,0.72); max-width: 680px; margin: 0 auto; font-size: 1.05rem; }

/* ===================== ABOUT ===================== */
.about-two-col {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 70px;
  align-items: center;
}

.mission-card {
  background: var(--bg-light);
  border-left: 4px solid var(--accent-green);
  padding: 24px 28px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 1.5rem;
}

.mission-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.mission-card p { font-size: 0.9rem; margin: 0; }

/* ===================== LEGAL PAGES ===================== */
.legal-content { max-width: 860px; margin: 0 auto; padding: 80px 40px; }
.legal-content h2 { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.legal-content h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content h3 { color: var(--primary); margin-top: 1.5rem; }

.warning-block {
  background: #FEF9F0;
  border: 1px solid #F0A500;
  border-left: 4px solid var(--accent-orange);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 22px 28px;
  margin: 2rem 0;
}

.warning-block p { color: var(--text-main); font-weight: 500; margin: 0; }

/* ===================== THANK YOU ===================== */
.thank-you-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: rgba(46,204,113,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  border: 2px solid var(--accent-green);
}

.thank-you-icon svg { width: 36px; height: 36px; fill: var(--accent-green); }

/* ===================== BLOG ===================== */
.blog-hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 3rem;
  box-shadow: var(--shadow-lg);
}

.blog-content { max-width: 820px; margin: 0 auto; }
.blog-content p { font-size: 1rem; line-height: 1.85; margin-bottom: 1.25rem; }
.blog-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.blog-content h3 { margin-top: 1.75rem; margin-bottom: 0.75rem; }
.blog-content ul, .blog-content ol { margin-bottom: 1.25rem; }
.blog-content li { line-height: 1.75; }

.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 2.5rem;
  transition: color var(--transition);
}

.blog-back:hover { color: var(--primary); }

.blog-back svg { width: 16px; height: 16px; fill: currentColor; }

/* ===================== NUMBER LIST STYLED ===================== */
.styled-ol { counter-reset: item; list-style: none; padding: 0; }

.styled-ol li {
  counter-increment: item;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--bg-section);
}

.styled-ol li::before {
  content: counter(item);
  min-width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===================== COOKIE BANNER ===================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--primary-dark);
  border-top: 2px solid var(--accent-green);
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.25);
  transform: translateY(0);
  transition: transform 0.4s ease;
}

#cookie-banner.hidden { transform: translateY(110%); }

.cookie-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  flex: 1;
}

.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

.cookie-btn {
  padding: 9px 20px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition);
}

.cookie-btn-accept { background: var(--accent-green); color: var(--white); border-color: var(--accent-green); }
.cookie-btn-accept:hover { background: #27ae60; }

.cookie-btn-reject {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.25);
}

.cookie-btn-reject:hover { border-color: rgba(255,255,255,0.55); color: var(--white); }

.cookie-btn-more {
  background: transparent;
  color: var(--accent-green);
  border-color: transparent;
  padding: 9px 12px;
  text-decoration: underline;
  font-size: 0.8rem;
}

.cookie-btn-more:hover { color: #27ae60; }

/* ===================== UTILITIES ===================== */
.mb-0 { margin-bottom: 0 !important; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }
.mb-5 { margin-bottom: 2rem; }
.text-center { text-align: center; }

.highlight-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-green);
  line-height: 1;
  display: block;
}

.intro-lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 300;
}

.bg-stripe {
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(52,73,94,0.025) 10px,
    rgba(52,73,94,0.025) 20px
  );
}

.number-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* ===================== FADE-IN ANIMATION ===================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===================== BREADCRUMB ===================== */
.breadcrumb-wrap {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.breadcrumb-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-light);
}

.breadcrumb-inner a { color: var(--text-secondary); text-decoration: none; }
.breadcrumb-inner a:hover { color: var(--primary); }
.breadcrumb-inner span { color: var(--neutral-dark); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .container-wide, .header-inner { padding: 0 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .two-col.reverse { direction: ltr; }
  .about-two-col { grid-template-columns: 1fr; }
  .glossary-layout { grid-template-columns: 1fr; }
  .glossary-rail { position: static; }
  .wide-text-integrated { grid-template-columns: 1fr; }
  .wide-text-integrated .col-img { order: -1; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .main-nav { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 0 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; padding: 18px 24px; }
  .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .three-col-img-text { grid-template-columns: 1fr; }
  .matrix-grid { grid-template-columns: 1fr; }
  .food-groups-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .section-pad { padding: 60px 0; }
  .page-hero { padding: 110px 28px 50px; }
  .legal-content { padding: 50px 24px; }
  #cookie-banner { flex-direction: column; align-items: flex-start; padding: 18px 24px; }
  .two-col-img img { height: 280px; }
  .hero-content h1 { font-size: 2rem; }
  .blog-hero-img { height: 280px; }
  .container-wide { padding: 0 20px; }
  .container { padding: 0 20px; }
}

@media (max-width: 480px) {
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .cookie-actions { flex-wrap: wrap; }
}

/* ===================== LEGAL PAGES EXTENDED ===================== */
.legal-header { margin-bottom: 3rem; }
.legal-intro {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 780px;
  background: var(--bg-light);
  border-left: 4px solid var(--accent-green);
  padding: 18px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 1rem;
}

.legal-body h2 {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.legal-body h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.legal-body h3 { margin-top: 1.5rem; }

/* ===================== COOKIE TABLE ===================== */
.cookie-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin: 1.5rem 0 2rem;
}

.cookie-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }

.cookie-table th {
  background: var(--primary);
  color: var(--white);
  padding: 14px 18px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cookie-table td {
  padding: 13px 18px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.6;
}

.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table tr:nth-child(even) td { background: var(--bg-light); }
.cookie-table code {
  font-family: monospace;
  font-size: 0.82rem;
  background: var(--bg-section);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--primary);
}

/* ===================== DISCLAIMER PROMINENT ===================== */
.disclaimer-prominent {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #FEF9F0;
  border: 1px solid rgba(230,126,34,0.3);
  border-left: 5px solid var(--accent-orange);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  margin: 2rem 0 3rem;
}

.disclaimer-prominent-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(230,126,34,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.disclaimer-prominent-icon svg { width: 22px; height: 22px; fill: var(--accent-orange); }

.disclaimer-prominent-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-main);
}

/* ===================== PROBLEM-SOLUTION BLOCKS ===================== */
.problem-solution-block { display: flex; flex-direction: column; gap: 16px; }

.ps-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 4px;
  width: fit-content;
}

.ps-label-problem { background: rgba(231,76,60,0.1); color: #c0392b; }
.ps-label-solution { background: rgba(46,204,113,0.12); color: #27ae60; }

.ps-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  transition: box-shadow var(--transition);
}

.ps-item:hover { box-shadow: var(--shadow-sm); }
.ps-item h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.ps-item p { font-size: 0.875rem; color: var(--text-secondary); margin: 0; line-height: 1.65; }

/* ===================== BLOG INFOGRAPHIC ===================== */
.blog-infographic {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 28px;
  margin: 2rem 0;
  border: 1px solid var(--border);
}

.infographic-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.infographic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.infographic-cell {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.infographic-cell:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }

.infographic-cell-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.infographic-cell-icon svg { width: 20px; height: 20px; fill: var(--accent-green); }

.infographic-cell-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.infographic-cell-desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }

/* ===================== BLOCK QUOTE SOURCE ===================== */
.block-quote-source {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  font-style: normal;
  font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
  .infographic-grid { grid-template-columns: 1fr 1fr; }
  .disclaimer-prominent { flex-direction: column; gap: 14px; }
  .two-col .problem-solution-block { width: 100%; }
}

@media (max-width: 480px) {
  .infographic-grid { grid-template-columns: 1fr; }
}
