@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Source+Sans+3:wght@300;400;500;600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #2F4F4F;
  --primary-dark: #1e3333;
  --primary-light: #3d6363;
  --accent-gold: #D4AF37;
  --accent-sage: #8A9A5B;
  --warm-white: #F5F5DC;
  --warm-white-dim: #ece9cc;
  --neutral-100: #f8f7f2;
  --neutral-200: #edeae0;
  --neutral-300: #d5d0c0;
  --neutral-400: #b0a990;
  --neutral-600: #6b6458;
  --neutral-800: #3a342c;
  --text-dark: #1a1714;
  --text-body: #3a342c;
  --text-muted: #7a7268;
  --shadow-sm: 0 2px 8px rgba(47,79,79,0.08);
  --shadow-md: 0 4px 20px rgba(47,79,79,0.12);
  --shadow-lg: 0 8px 40px rgba(47,79,79,0.18);
  --radius: 4px;
  --radius-lg: 8px;
  --container: 1320px;
  --section-pad: 96px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  color: var(--text-body);
  background-color: var(--neutral-100);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.15;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-body);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--accent-gold);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  padding-left: 1.5rem;
}

li {
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

strong {
  font-weight: 600;
  color: var(--primary);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-pad {
  padding: var(--section-pad) 0;
}

.section-pad-sm {
  padding: 64px 0;
}


header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  background-color: var(--primary);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  box-shadow: var(--shadow-md);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.header-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--warm-white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header-logo span {
  color: var(--accent-gold);
}

.header-logo:hover {
  color: var(--warm-white);
  opacity: 0.9;
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav a {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(245,245,220,0.78);
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

nav a:hover {
  color: var(--accent-gold);
}

nav a:hover::after,
nav a.active::after {
  transform: scaleX(1);
}

nav a.active {
  color: var(--accent-gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--warm-white);
  transition: all 0.3s ease;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  background: var(--primary-dark);
  z-index: 899;
  padding: 16px 0;
  border-bottom: 1px solid rgba(212,175,55,0.12);
}

.nav-mobile.open {
  display: block;
}

.nav-mobile a {
  display: block;
  padding: 12px 32px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(245,245,220,0.78);
  border-bottom: 1px solid rgba(245,245,220,0.06);
  transition: color 0.2s, background 0.2s;
}

.nav-mobile a:hover {
  color: var(--accent-gold);
  background: rgba(212,175,55,0.05);
}

.page-offset {
  padding-top: 68px;
}


.hero-panel {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-color: var(--primary);
  overflow: hidden;
}

.hero-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(47,79,79,0.97) 42%, rgba(47,79,79,0.62) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 32px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-text {
  max-width: 580px;
}

.hero-label {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-gold);
  border: 1px solid rgba(212,175,55,0.4);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.hero-text h1 {
  color: var(--warm-white);
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  margin-bottom: 24px;
  text-wrap: balance;
}

.hero-text h1 span {
  color: var(--accent-gold);
}

.hero-subtitle {
  color: rgba(245,245,220,0.82);
  font-size: 1.12rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-disclaimer {
  font-size: 0.78rem;
  color: rgba(245,245,220,0.45);
  font-style: italic;
  margin-top: 16px;
  line-height: 1.5;
}

.hero-cta-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 32px;
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  border-radius: var(--radius);
  border: 2px solid var(--accent-gold);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent-gold);
  box-shadow: 0 0 0 2px var(--accent-gold) inset;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 32px;
  background-color: transparent;
  color: var(--warm-white);
  border-radius: var(--radius);
  border: 2px solid rgba(245,245,220,0.35);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--warm-white);
  background: rgba(245,245,220,0.05);
  color: var(--warm-white);
}

.btn-outline-dark {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 13px 28px;
  background-color: transparent;
  color: var(--primary);
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline-dark:hover {
  background-color: var(--primary);
  color: var(--warm-white);
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-stat-card {
  background: rgba(245,245,220,0.06);
  border: 1px solid rgba(212,175,55,0.2);
  border-left: 3px solid var(--accent-gold);
  padding: 20px 24px;
  border-radius: var(--radius);
}

.hero-stat-card .stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent-gold);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-card .stat-label {
  font-size: 0.85rem;
  color: rgba(245,245,220,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}


.panel-dark {
  background-color: var(--primary);
  color: var(--warm-white);
}

.panel-dark h2, .panel-dark h3 {
  color: var(--warm-white);
}

.panel-dark p, .panel-dark li {
  color: rgba(245,245,220,0.82);
}

.panel-light {
  background-color: var(--warm-white);
}

.panel-neutral {
  background-color: var(--neutral-200);
}

.panel-accent {
  background-color: var(--primary-dark);
  color: var(--warm-white);
}

.section-label {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-sage);
  margin-bottom: 16px;
}

.panel-dark .section-label {
  color: var(--accent-gold);
}

.section-divider {
  width: 48px;
  height: 3px;
  background: var(--accent-gold);
  margin: 16px 0 32px;
}

.section-divider-sage {
  width: 48px;
  height: 3px;
  background: var(--accent-sage);
  margin: 16px 0 32px;
}

.text-gold { color: var(--accent-gold); }
.text-sage { color: var(--accent-sage); }


.intro-panel {
  background-color: var(--primary-dark);
  position: relative;
  overflow: hidden;
}

.intro-panel::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.03));
  pointer-events: none;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-img-wrap {
  position: relative;
}

.intro-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.intro-img-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(47,79,79,0.9);
  border-left: 3px solid var(--accent-gold);
  padding: 12px 16px;
  border-radius: var(--radius);
}

.intro-img-caption span {
  font-size: 0.8rem;
  color: rgba(245,245,220,0.82);
  font-weight: 500;
}

.intro-text blockquote {
  border-left: 3px solid var(--accent-gold);
  padding-left: 20px;
  margin: 28px 0;
  font-size: 1.05rem;
  color: rgba(245,245,220,0.72);
  font-style: italic;
  line-height: 1.7;
}


.ingredients-panel {
  background-color: var(--neutral-100);
}

.ingredients-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.ingredients-header h2 {
  margin-bottom: 16px;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ingredient-card {
  background: var(--warm-white);
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ingredient-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-sage);
}

.ingredient-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.ingredient-body {
  padding: 24px;
}

.ingredient-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-sage);
  background: rgba(138,154,91,0.1);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.ingredient-body h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.ingredient-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.ingredient-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ingredient-meta span {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: rgba(47,79,79,0.07);
  padding: 3px 9px;
  border-radius: 2px;
}

.study-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-sage);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 12px;
  transition: color 0.2s;
}

.study-link:hover { color: var(--primary); }

.study-link svg {
  width: 14px;
  height: 14px;
}


.comparison-panel {
  background-color: var(--primary);
}

.comparison-panel h2, .comparison-panel h3 {
  color: var(--warm-white);
}

.comparison-panel p {
  color: rgba(245,245,220,0.78);
}

.comparison-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 64px;
}

.comparison-intro img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.comp-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--primary-dark);
  font-size: 0.92rem;
}

.comp-table th {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  padding: 18px 20px;
  text-align: left;
  background: rgba(212,175,55,0.08);
  border-bottom: 2px solid rgba(212,175,55,0.2);
}

.comp-table td {
  padding: 16px 20px;
  color: rgba(245,245,220,0.82);
  border-bottom: 1px solid rgba(245,245,220,0.07);
  vertical-align: top;
  line-height: 1.55;
}

.comp-table tr:last-child td {
  border-bottom: none;
}

.comp-table tr:hover td {
  background: rgba(212,175,55,0.04);
}

.comp-table td:first-child {
  font-weight: 600;
  color: var(--warm-white);
}

.badge-high {
  display: inline-block;
  background: rgba(138,154,91,0.2);
  color: var(--accent-sage);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 2px;
}

.badge-med {
  display: inline-block;
  background: rgba(212,175,55,0.15);
  color: var(--accent-gold);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 2px;
}

.badge-low {
  display: inline-block;
  background: rgba(180,100,60,0.15);
  color: #c07040;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 2px;
}


.principles-panel {
  background-color: var(--warm-white);
}

.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.principles-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.principles-list {
  list-style: none;
  padding: 0;
}

.principles-list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--neutral-300);
  align-items: flex-start;
}

.principles-list li:last-child {
  border-bottom: none;
}

.principle-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(47,79,79,0.06);
  border: 1px solid rgba(47,79,79,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.principle-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-sage);
  fill: none;
  stroke-width: 1.8;
}

.principle-txt strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.principle-txt p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}


.standards-panel {
  background-color: var(--primary-dark);
}

.standards-panel h2, .standards-panel h3 {
  color: var(--warm-white);
}

.standards-panel p {
  color: rgba(245,245,220,0.78);
}

.standards-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.standards-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.std-badge {
  background: rgba(245,245,220,0.04);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  text-align: center;
  transition: border-color 0.25s;
}

.std-badge:hover {
  border-color: var(--accent-gold);
}

.std-badge .badge-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.std-badge .badge-desc {
  font-size: 0.8rem;
  color: rgba(245,245,220,0.55);
  line-height: 1.4;
}

.benefits-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.benefit-card {
  background: rgba(245,245,220,0.04);
  border: 1px solid rgba(245,245,220,0.1);
  border-top: 3px solid var(--accent-sage);
  padding: 24px 20px;
  border-radius: var(--radius);
  transition: border-top-color 0.25s;
}

.benefit-card:hover {
  border-top-color: var(--accent-gold);
}

.benefit-card .bc-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
}

.benefit-card .bc-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--accent-sage);
  fill: none;
  stroke-width: 1.6;
}

.benefit-card h4 {
  font-size: 1.05rem;
  color: var(--warm-white);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.85rem;
  color: rgba(245,245,220,0.62);
  line-height: 1.6;
  margin: 0;
}


.benefits-panel {
  background-color: var(--neutral-100);
}

.benefits-panel .benefits-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.benefits-full-grid img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.benefits-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bitem {
  padding: 20px 18px;
  background: var(--warm-white);
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent-sage);
  transition: border-left-color 0.2s;
}

.bitem:hover {
  border-left-color: var(--accent-gold);
}

.bitem h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.bitem p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}


.stories-panel {
  background-color: var(--primary);
}

.stories-panel h2, .stories-panel h3 {
  color: var(--warm-white);
}

.stories-panel p {
  color: rgba(245,245,220,0.78);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.story-card {
  background: rgba(245,245,220,0.05);
  border: 1px solid rgba(245,245,220,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.story-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  border-color: rgba(212,175,55,0.2);
}

.story-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  opacity: 0.88;
}

.story-body {
  padding: 24px;
}

.story-topic {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  margin-bottom: 10px;
  display: block;
}

.story-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--warm-white);
}

.story-body p {
  font-size: 0.86rem;
  color: rgba(245,245,220,0.62);
  line-height: 1.6;
  margin-bottom: 16px;
}

.story-link {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.story-link:hover {
  color: var(--warm-white);
  gap: 10px;
}


.faq-panel {
  background-color: var(--warm-white);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.faq-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 88px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--warm-white);
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: var(--accent-sage);
}

.faq-item.open {
  border-color: var(--accent-sage);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.45;
  transition: background 0.2s;
}

.faq-q:hover {
  background: rgba(47,79,79,0.03);
}

.faq-q svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  stroke: var(--accent-sage);
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-q svg {
  transform: rotate(45deg);
  stroke: var(--accent-gold);
}

.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--neutral-200);
  padding-top: 14px;
}

.faq-item.open .faq-a {
  display: block;
}


.resources-panel {
  background-color: var(--primary-dark);
}

.resources-panel h2, .resources-panel h3 {
  color: var(--warm-white);
}

.resources-panel p {
  color: rgba(245,245,220,0.78);
}

.resources-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.resource-block {
  background: rgba(245,245,220,0.04);
  border: 1px solid rgba(245,245,220,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.25s;
}

.resource-block:hover {
  border-color: rgba(212,175,55,0.3);
}

.resource-block h3 {
  font-size: 1.25rem;
  color: var(--warm-white);
  margin-bottom: 12px;
}

.resource-block p {
  font-size: 0.88rem;
  color: rgba(245,245,220,0.62);
  line-height: 1.65;
  margin-bottom: 20px;
}

.resource-icon {
  width: 48px;
  height: 48px;
  background: rgba(212,175,55,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.resource-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-gold);
  fill: none;
  stroke-width: 1.8;
}

.contact-mini {
  background: rgba(245,245,220,0.04);
  border: 1px solid rgba(245,245,220,0.1);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  margin-top: 64px;
}

.contact-mini h3 {
  color: var(--warm-white);
  margin-bottom: 8px;
}

.contact-mini p {
  color: rgba(245,245,220,0.65);
  font-size: 0.88rem;
  margin-bottom: 24px;
}

.form-disclaimer {
  font-size: 0.78rem;
  color: rgba(245,245,220,0.42);
  margin-bottom: 20px;
  line-height: 1.55;
  font-style: italic;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245,245,220,0.55);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(245,245,220,0.06);
  border: 1px solid rgba(245,245,220,0.15);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.92rem;
  color: var(--warm-white);
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245,245,220,0.28);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent-gold);
  background: rgba(245,245,220,0.08);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}


.trust-bar {
  background-color: var(--primary);
  padding: 48px 0;
  border-top: 1px solid rgba(212,175,55,0.12);
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
}

.trust-item span {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.trust-item p {
  font-size: 0.75rem;
  color: rgba(245,245,220,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}


footer {
  background-color: var(--primary-dark);
  color: rgba(245,245,220,0.7);
  padding-top: 72px;
  border-top: 1px solid rgba(212,175,55,0.12);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand .brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--warm-white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.footer-brand .brand-name span {
  color: var(--accent-gold);
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(245,245,220,0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-edu-badge {
  display: inline-block;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.75rem;
  color: var(--accent-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-edu-message {
  font-size: 0.78rem;
  color: rgba(245,245,220,0.4);
  font-style: italic;
  margin-top: 8px;
}

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245,245,220,0.42);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(245,245,220,0.62);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--accent-gold);
}

.footer-contact p {
  font-size: 0.86rem;
  color: rgba(245,245,220,0.55);
  line-height: 1.6;
  margin-bottom: 6px;
}

.footer-contact p strong {
  color: rgba(245,245,220,0.72);
  font-weight: 600;
}

.footer-hours {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(245,245,220,0.08);
}

.footer-hours p {
  font-size: 0.82rem;
  color: rgba(245,245,220,0.45);
}

.footer-bottom {
  border-top: 1px solid rgba(245,245,220,0.08);
  padding: 24px 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(245,245,220,0.35);
  line-height: 1.7;
  max-width: 720px;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(245,245,220,0.3);
  white-space: nowrap;
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: var(--primary-dark);
  border-top: 2px solid rgba(212,175,55,0.25);
  padding: 20px 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.cookie-banner.hidden {
  transform: translateY(120%);
}

.cookie-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 0.86rem;
  color: rgba(245,245,220,0.72);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.cookie-banner strong {
  color: rgba(245,245,220,0.9);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-actions button {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}

.cookie-btn-accept {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

.cookie-btn-accept:hover {
  background: #c9a42e;
}

.cookie-btn-reject {
  background: transparent;
  border: 1px solid rgba(245,245,220,0.25) !important;
  color: rgba(245,245,220,0.62);
}

.cookie-btn-reject:hover {
  border-color: rgba(245,245,220,0.5) !important;
  color: var(--warm-white);
}

.cookie-btn-more {
  background: transparent;
  color: var(--accent-gold);
  text-decoration: underline;
  padding: 10px 12px !important;
}

.cookie-btn-more:hover {
  color: var(--warm-white);
}


.page-hero {
  background-color: var(--primary);
  padding: 80px 0 64px;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.page-hero h1 {
  color: var(--warm-white);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.page-hero .breadcrumb {
  font-size: 0.8rem;
  color: rgba(245,245,220,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.page-hero .breadcrumb a {
  color: rgba(245,245,220,0.45);
}

.page-hero .breadcrumb a:hover {
  color: var(--accent-gold);
}

.policy-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 32px;
}

.policy-content h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin: 48px 0 16px;
  padding-top: 16px;
  border-top: 1px solid var(--neutral-300);
}

.policy-content h2:first-of-type {
  margin-top: 24px;
  border-top: none;
  padding-top: 0;
}

.policy-content h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin: 24px 0 10px;
}

.policy-content p {
  font-size: 0.96rem;
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.75;
}

.policy-content ul, .policy-content ol {
  margin-bottom: 20px;
}

.policy-content li {
  font-size: 0.94rem;
  color: var(--text-body);
  margin-bottom: 8px;
  line-height: 1.7;
}

.policy-update {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-sage);
  background: rgba(138,154,91,0.1);
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 32px;
}


.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: var(--section-pad) 0;
}

.about-hero-grid h1 {
  color: var(--warm-white);
}

.about-hero-grid p {
  color: rgba(245,245,220,0.78);
}

.about-hero-grid img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.mission-panel {
  background-color: var(--neutral-100);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.mission-card {
  background: var(--warm-white);
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-lg);
  padding: 32px;
  border-top: 3px solid var(--accent-sage);
}

.mission-card h3 {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.mission-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.timeline-panel {
  background-color: var(--primary);
}

.timeline-panel h2 {
  color: var(--warm-white);
}

.timeline {
  position: relative;
  padding-left: 48px;
  margin-top: 48px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(212,175,55,0.2);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-gold);
  border: 3px solid var(--primary);
  box-shadow: 0 0 0 2px var(--accent-gold);
}

.timeline-item .ti-year {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.timeline-item h4 {
  font-size: 1.1rem;
  color: var(--warm-white);
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 0.88rem;
  color: rgba(245,245,220,0.58);
  line-height: 1.65;
  margin: 0;
}

.team-panel {
  background-color: var(--warm-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.team-card {
  background: var(--neutral-100);
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-sage);
}

.team-avatar {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.team-avatar svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent-gold);
  fill: none;
  stroke-width: 1.6;
}

.team-card h4 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.team-card .team-role {
  font-size: 0.78rem;
  color: var(--accent-sage);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.team-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.ethics-panel {
  background-color: var(--primary-dark);
}

.ethics-panel h2 {
  color: var(--warm-white);
}

.ethics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.ethic-card {
  background: rgba(245,245,220,0.04);
  border: 1px solid rgba(245,245,220,0.08);
  border-radius: var(--radius);
  padding: 24px 20px;
  border-bottom: 3px solid var(--accent-sage);
  transition: border-bottom-color 0.25s;
}

.ethic-card:hover {
  border-bottom-color: var(--accent-gold);
}

.ethic-card h4 {
  color: var(--warm-white);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.ethic-card p {
  font-size: 0.84rem;
  color: rgba(245,245,220,0.55);
  line-height: 1.6;
  margin: 0;
}


.contact-page-panel {
  background-color: var(--neutral-100);
  padding: var(--section-pad) 0;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--warm-white);
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-wrap h2 {
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-form-wrap .form-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.contact-form-light .form-group label {
  color: var(--text-muted);
}

.contact-form-light input,
.contact-form-light textarea {
  background: var(--neutral-100);
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.92rem;
  color: var(--text-body);
  outline: none;
  width: 100%;
  transition: border-color 0.25s, background 0.25s;
}

.contact-form-light input::placeholder,
.contact-form-light textarea::placeholder {
  color: var(--neutral-400);
}

.contact-form-light input:focus,
.contact-form-light textarea:focus {
  border-color: var(--accent-sage);
  background: var(--warm-white);
}

.contact-form-light textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form-light .form-disclaimer {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.6;
}

.contact-info-block {
  padding-top: 16px;
}

.contact-info-block h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 24px;
}

.cinfo-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--neutral-300);
}

.cinfo-item:last-of-type {
  border-bottom: none;
}

.cinfo-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(47,79,79,0.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cinfo-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-sage);
  fill: none;
  stroke-width: 1.8;
}

.cinfo-text strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.cinfo-text p {
  font-size: 0.92rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.55;
}

.context-notice {
  background: rgba(47,79,79,0.05);
  border: 1px solid rgba(47,79,79,0.12);
  border-left: 3px solid var(--accent-sage);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 32px;
}

.context-notice h4 {
  font-size: 0.88rem;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.context-notice p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}


.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  padding: 80px 32px;
}

.thankyou-box {
  background: rgba(245,245,220,0.05);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  max-width: 540px;
  text-align: center;
}

.thankyou-icon {
  width: 72px;
  height: 72px;
  background: rgba(212,175,55,0.1);
  border: 2px solid rgba(212,175,55,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.thankyou-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--accent-gold);
  fill: none;
  stroke-width: 2;
}

.thankyou-box h1 {
  color: var(--warm-white);
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.thankyou-box p {
  color: rgba(245,245,220,0.68);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}


.info-context-box {
  background: rgba(47,79,79,0.04);
  border: 1px solid rgba(47,79,79,0.1);
  border-left: 4px solid var(--accent-sage);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 32px 0;
}

.info-context-box h4 {
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.info-context-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

.info-context-box-dark {
  background: rgba(245,245,220,0.04);
  border: 1px solid rgba(245,245,220,0.08);
  border-left: 4px solid var(--accent-sage);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 32px 0;
}

.info-context-box-dark h4 {
  font-size: 0.9rem;
  color: rgba(245,245,220,0.8);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.info-context-box-dark p {
  font-size: 0.85rem;
  color: rgba(245,245,220,0.55);
  margin: 0;
  line-height: 1.7;
}

.geo-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.2), transparent);
  margin: 0;
}


@media (max-width: 1100px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  :root { --section-pad: 72px; }

  nav { display: none; }
  .nav-toggle { display: flex; }

  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .hero-stat-card { flex: 1; min-width: 140px; }

  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .comparison-intro { grid-template-columns: 1fr; gap: 40px; }
  .principles-grid { grid-template-columns: 1fr; gap: 40px; }
  .principles-img-wrap img { height: 300px; }
  .standards-row { grid-template-columns: 1fr; gap: 40px; }
  .benefits-cards { grid-template-columns: repeat(2, 1fr); }
  .benefits-full-grid { grid-template-columns: 1fr; gap: 40px; }
  .benefits-full-grid img { height: 300px; }
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-inner { grid-template-columns: 1fr; }
  .faq-img-wrap { display: none; }
  .resources-grid { grid-template-columns: 1fr; }
  .about-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-hero-grid img { height: 300px; }
  .mission-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .ethics-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-page-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-bar-inner { gap: 32px; }
}

@media (max-width: 640px) {
  :root { --section-pad: 56px; }
  .container, .container-narrow { padding: 0 20px; }
  .header-inner { padding: 0 20px; }

  .hero-content { padding: 60px 20px; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .benefits-cards { grid-template-columns: 1fr; }
  .benefits-items { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .ethics-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .cookie-banner-inner { flex-direction: column; gap: 16px; }
  .contact-mini { padding: 32px 24px; }
  .thankyou-box { padding: 40px 28px; }
  .standards-badges { grid-template-columns: 1fr 1fr; }
  .about-hero-grid { padding: 56px 0; }
  .contact-form-wrap { padding: 28px 20px; }
}
