@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Merriweather:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #2F4F4F;
  --primary-dark: #1a2f2f;
  --primary-light: #3d6363;
  --accent-orange: #CC5500;
  --accent-gold: #DAA520;
  --accent-sage: #8FBC8F;
  --accent-sage-light: #b8d8b8;
  --white: #FAFAF8;
  --off-white: #F5F2ED;
  --light-gray: #E8E4DE;
  --mid-gray: #C8C2B8;
  --text-dark: #1C2A2A;
  --text-body: #2E3E3E;
  --text-muted: #5A6E6E;
  --border: #D4CEC6;
  --shadow-sm: 0 2px 8px rgba(47,79,79,0.08);
  --shadow-md: 0 6px 24px rgba(47,79,79,0.12);
  --shadow-lg: 0 16px 48px rgba(47,79,79,0.16);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --max-width: 1440px;
  --content-width: 1200px;
  --spacing-unit: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.02em;
  font-weight: 800;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: -0.01em;
  font-weight: 700;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
}

p {
  margin-bottom: 1.25rem;
  max-width: 72ch;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-orange);
}

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 96px 0;
}

.section-pad-sm {
  padding: 64px 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }
.text-orange { color: var(--accent-orange); }
.text-gold { color: var(--accent-gold); }
.text-primary { color: var(--primary); }

.bg-primary { background-color: var(--primary); }
.bg-dark { background-color: var(--primary-dark); }
.bg-off-white { background-color: var(--off-white); }
.bg-sage { background-color: var(--accent-sage-light); }
.bg-light { background-color: var(--light-gray); }

.label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-orange);
  display: block;
  margin-bottom: 12px;
}

.divider {
  width: 64px;
  height: 3px;
  background: var(--accent-orange);
  margin: 24px 0;
}

.divider-center {
  margin: 24px auto;
}

.divider-gold {
  background: var(--accent-gold);
}

.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--accent-orange);
  color: var(--white);
  border-color: var(--accent-orange);
}

.btn-primary:hover {
  background-color: #b34a00;
  border-color: #b34a00;
  color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-dark:hover {
  background-color: var(--primary);
  color: var(--white);
}

.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--primary-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo span {
  color: var(--accent-gold);
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--accent-orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-mark svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background-color: rgba(255,255,255,0.08);
}

.nav-links a.active {
  color: var(--accent-gold);
}

.nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
  background-color: var(--accent-orange);
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.04em;
}

.nav-cta:hover {
  background-color: #b34a00;
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background-color: var(--primary-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 999;
  padding: 16px 24px 24px;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu ul li a {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.mobile-menu ul li a:hover {
  color: var(--accent-gold);
}

.mobile-menu .nav-cta {
  display: inline-block;
  margin-top: 16px;
  width: 100%;
  text-align: center;
}

.page-offset {
  padding-top: 72px;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--primary-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,47,47,0.85) 0%, rgba(47,79,79,0.6) 60%, rgba(26,47,47,0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 80px 0;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.hero h1 em {
  font-style: normal;
  color: var(--accent-gold);
}

.hero-subtitle {
  font-family: 'Merriweather', serif;
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.trust-bar {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 24px 32px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  backdrop-filter: blur(4px);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.trust-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.trust-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.3;
  max-width: 120px;
}

.social-proof-bar {
  background-color: var(--primary);
  padding: 32px 0;
  border-top: 3px solid var(--accent-gold);
}

.social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.sp-item {
  text-align: center;
  flex: 1;
  min-width: 180px;
}

.sp-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 6px;
}

.sp-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}

.sp-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
}

.stories-section {
  padding: 96px 0;
  background-color: var(--off-white);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0 auto;
  line-height: 1.75;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.story-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(24px);
}

.story-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.story-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.story-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.story-card-body {
  padding: 28px;
}

.story-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.story-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
}

.story-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.story-location {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.story-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.star {
  width: 14px;
  height: 14px;
  fill: var(--accent-gold);
}

.story-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background-color: var(--accent-sage-light);
  color: var(--primary);
  margin-bottom: 14px;
}

.story-quote {
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 14px;
  border-left: 3px solid var(--accent-orange);
  padding-left: 16px;
}

.story-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.stats-section {
  padding: 96px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 40px solid rgba(218,165,32,0.08);
}

.stats-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 30px solid rgba(143,188,143,0.08);
}

.stats-header {
  text-align: center;
  margin-bottom: 64px;
}

.stats-header h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.stats-header p {
  color: rgba(255,255,255,0.7);
  max-width: 52ch;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 48px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  transition: background 0.3s ease;
}

.stat-card:hover {
  background: rgba(255,255,255,0.08);
}

.stat-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.stat-icon-wrap svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.stat-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 0;
}

.quote-section {
  padding: 80px 0;
  background-color: var(--primary-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20rem;
  font-family: 'Merriweather', serif;
  color: rgba(218,165,32,0.06);
  line-height: 1;
  pointer-events: none;
}

.big-quote {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 24px;
}

.quote-author {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benefits-section {
  padding: 96px 0;
  background-color: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

.benefits-image-wrap {
  position: relative;
}

.benefits-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.benefits-image-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 160px;
  height: 160px;
  border-radius: var(--radius-md);
  background: var(--accent-gold);
  opacity: 0.12;
  z-index: -1;
}

.benefit-item {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.benefit-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--off-white);
  border: 2px solid var(--accent-sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}

.benefit-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.benefit-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
}

.benefit-quote {
  font-style: italic;
  font-size: 0.875rem;
  color: var(--accent-orange);
  line-height: 1.6;
  margin-bottom: 0;
}

.ingredients-section {
  padding: 96px 0;
  background: var(--off-white);
  position: relative;
}

.ingredients-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}

.ingredients-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ingredient-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.ingredient-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.ingredient-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.ingredient-body {
  padding: 20px;
}

.ingredient-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.ingredient-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.why-us-section {
  padding: 96px 0;
  background-color: var(--white);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-points {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-point {
  display: flex;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.why-point:hover {
  border-color: var(--accent-sage);
  box-shadow: var(--shadow-sm);
}

.why-point-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-sage-light);
  line-height: 1;
  flex-shrink: 0;
}

.why-point-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.why-point-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.why-us-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.faq-section {
  padding: 96px 0;
  background: var(--off-white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 28px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: var(--off-white);
}

.faq-question.open {
  color: var(--accent-orange);
  background: var(--off-white);
}

.faq-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-question.open .faq-arrow {
  transform: rotate(180deg);
  fill: var(--accent-orange);
}

.faq-answer {
  display: none;
  padding: 0 28px 24px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-answer.open {
  display: block;
}

.faq-answer p {
  margin-bottom: 0;
}

.explore-section {
  padding: 96px 0;
  background: var(--primary);
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.explore-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  position: relative;
}

.explore-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(218,165,32,0.4);
  transform: translateY(-2px);
}

.explore-card.featured {
  border-color: var(--accent-gold);
  background: rgba(218,165,32,0.08);
}

.explore-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-orange);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

.explore-period {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.explore-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.explore-topics {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.explore-topics li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}

.explore-topics li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-sage);
  flex-shrink: 0;
}

.explore-cta {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-gold);
  border: 1px solid rgba(218,165,32,0.4);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
  transition: all 0.2s;
  text-decoration: none;
}

.explore-cta:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

.community-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  text-align: center;
}

.community-count {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 16px;
}

.community-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.community-section > .container > p {
  color: rgba(255,255,255,0.75);
  max-width: 52ch;
  margin: 0 auto 40px;
  font-size: 1.0625rem;
}

.context-block {
  background: var(--off-white);
  border-left: 4px solid var(--accent-sage);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 28px 32px;
  margin: 48px 0;
}

.context-block h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.context-block p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.context-block p:not(:last-child) {
  margin-bottom: 10px;
}

.edu-notice {
  background: rgba(47,79,79,0.06);
  border: 1px solid rgba(47,79,79,0.12);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--primary);
  text-align: center;
  letter-spacing: 0.02em;
}

.edu-notice strong {
  color: var(--accent-orange);
}

footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 0;
}

.footer-top {
  padding: 72px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 34ch;
}

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  display: block;
}

.footer-logo span {
  color: var(--accent-gold);
}

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

.footer-hours {
  margin-top: 16px;
  padding: 14px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.06);
}

.footer-hours-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.footer-hours p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}

.footer-disclaimer {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-disclaimer-text {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 0;
}

.footer-disclaimer-text strong {
  color: rgba(255,255,255,0.65);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-edu-notice {
  padding: 16px 20px;
  background: rgba(204,85,0,0.12);
  border: 1px solid rgba(204,85,0,0.25);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,200,160,0.9);
  text-align: center;
  letter-spacing: 0.03em;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

.footer-policy-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-policy-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-policy-links a:hover {
  color: var(--accent-gold);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--primary-dark);
  border-top: 2px solid var(--accent-orange);
  padding: 20px 24px;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.3);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  flex-wrap: wrap;
}

.cookie-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  flex: 1;
  min-width: 240px;
  line-height: 1.6;
}

.cookie-text strong {
  color: var(--accent-gold);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  letter-spacing: 0.04em;
}

.cookie-btn-accept {
  background: var(--accent-orange);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background: #b34a00;
}

.cookie-btn-reject {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.25);
}

.cookie-btn-reject:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.cookie-btn-more {
  background: transparent;
  color: var(--accent-gold);
  text-decoration: underline;
  padding: 9px 8px;
}

.cookie-btn-more:hover {
  color: var(--accent-orange);
}

.page-hero {
  background: var(--primary-dark);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-gold), var(--accent-sage));
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.0625rem;
  max-width: 56ch;
}

.page-hero .label {
  color: var(--accent-gold);
}

.policy-content {
  padding: 80px 0;
}

.policy-wrap {
  max-width: 840px;
  margin: 0 auto;
}

.policy-section {
  margin-bottom: 56px;
}

.policy-section h2 {
  font-size: 1.375rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  color: var(--primary);
}

.policy-section h3 {
  font-size: 1.125rem;
  margin: 24px 0 12px;
  color: var(--text-dark);
}

.policy-section p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-body);
  max-width: none;
}

.policy-section ul {
  margin-bottom: 1.25rem;
}

.policy-section ul li {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.75;
}

.policy-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  margin-right: 12px;
  flex-shrink: 0;
}

.highlight-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 24px 28px;
  margin: 28px 0;
}

.highlight-box h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.highlight-box p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.warning-box {
  background: rgba(204,85,0,0.06);
  border: 1px solid rgba(204,85,0,0.2);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 24px 0;
}

.warning-box p {
  font-size: 0.9rem;
  color: var(--accent-orange);
  margin-bottom: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.timeline {
  position: relative;
  padding-left: 32px;
  margin: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-orange), var(--accent-gold), var(--accent-sage));
}

.timeline-item {
  position: relative;
  margin-bottom: 36px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-orange);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent-orange);
}

.timeline-year {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-orange);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.timeline-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.timeline-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.mission-panel {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin: 56px 0;
  position: relative;
  overflow: hidden;
}

.mission-panel::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 32px solid rgba(218,165,32,0.1);
}

.mission-panel h2 {
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.mission-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.mission-item {
  padding: 24px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.1);
}

.mission-item-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.mission-item p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info-block {
  padding: 40px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.contact-info-block h3 {
  margin-bottom: 24px;
  color: var(--primary);
}

.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.contact-info-item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.contact-info-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.9375rem;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.contact-form-wrap {
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.form-disclaimer {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: 0.8375rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-family: 'Montserrat', sans-serif;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Merriweather', serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(47,79,79,0.12);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.thank-you-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.thank-you-icon svg {
  width: 36px;
  height: 36px;
  fill: var(--primary);
}

.thank-you-page h1 {
  margin-bottom: 16px;
}

.thank-you-page p {
  color: var(--text-muted);
  max-width: 50ch;
  margin: 0 auto 32px;
}

@media (max-width: 1100px) {
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .explore-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid,
  .why-us-grid,
  .ingredients-intro,
  .about-two-col,
  .contact-layout,
  .mission-items {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .benefits-image-wrap img,
  .why-us-image,
  .about-image {
    height: 320px;
  }
  .hero-content {
    padding: 60px 0;
  }
  .trust-bar {
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .stories-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .ingredients-grid {
    grid-template-columns: 1fr;
  }
  .section-pad {
    padding: 64px 0;
  }
  .social-proof-inner {
    flex-direction: column;
    text-align: center;
  }
  .sp-divider {
    display: none;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .trust-bar {
    flex-direction: column;
    gap: 16px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.375rem;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
