@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300;400;600;700&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg: #F0F4E8;
  --color-white: #FFFFFF;
  --color-accent-green: #87BBA2;
  --color-accent-yellow: #FFD166;
  --color-accent-blue: #D6E3E0;
  --color-text-primary: #2E2E2E;
  --color-text-secondary: #666666;
  --color-text-muted: #888888;
  --color-border: #D8DDD0;
  --color-border-light: #E8EDE0;
  --font-heading: 'Source Sans 3', sans-serif;
  --font-body: 'Lora', serif;
  --max-width: 1440px;
  --container-width: 1200px;
  --section-padding-v: 96px;
  --section-padding-v-sm: 64px;
  --border-radius: 4px;
  --border-radius-md: 8px;
  --shadow-sm: 0 2px 8px rgba(46, 46, 46, 0.06);
  --shadow-md: 0 4px 20px rgba(46, 46, 46, 0.10);
  --shadow-lg: 0 8px 40px rgba(46, 46, 46, 0.13);
  --transition-base: all 0.4s ease;
  --transition-slow: all 0.6s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-text-primary);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
}

p {
  margin-bottom: 1.25rem;
  color: var(--color-text-primary);
}

p:last-child {
  margin-bottom: 0;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

.container--wide {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-top: 2px solid var(--color-accent-green);
  padding: 20px 40px;
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(46,46,46,0.12);
  display: none;
}

#cookie-banner.visible {
  display: block;
}

.cookie-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 300px;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-cookie {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition-base);
  border: 1.5px solid transparent;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.btn-cookie--accept {
  background: var(--color-accent-green);
  color: var(--color-white);
  border-color: var(--color-accent-green);
}

.btn-cookie--accept:hover {
  background: #6fa98e;
  border-color: #6fa98e;
}

.btn-cookie--refuse {
  background: transparent;
  color: var(--color-text-secondary);
  border-color: var(--color-border);
}

.btn-cookie--refuse:hover {
  border-color: var(--color-text-secondary);
  color: var(--color-text-primary);
}

.btn-cookie--learn {
  background: transparent;
  color: var(--color-accent-green);
  border-color: transparent;
  padding: 9px 12px;
  text-decoration: underline;
  text-transform: none;
  letter-spacing: 0;
}

.btn-cookie--learn:hover {
  color: #6fa98e;
}

/* ===== HEADER / NAV ===== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(240, 244, 232, 0.97);
  border-bottom: 1px solid var(--color-border-light);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition-base);
}

#site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.logo span {
  color: var(--color-accent-green);
}

.logo:hover {
  color: var(--color-accent-green);
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-main a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-secondary);
  padding: 8px 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.nav-main a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--color-accent-green);
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left center;
}

.nav-main a:hover {
  color: var(--color-text-primary);
}

.nav-main a:hover::after,
.nav-main a.active::after {
  transform: scaleX(1);
}

.nav-main a.active {
  color: var(--color-text-primary);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  transition: var(--transition-base);
  border-radius: 2px;
}

.nav-mobile {
  display: none;
  background: var(--color-white);
  border-top: 1px solid var(--color-border-light);
  padding: 16px 0;
}

.nav-mobile a {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-secondary);
  padding: 12px 40px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-left: 3px solid transparent;
  transition: var(--transition-base);
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--color-text-primary);
  border-left-color: var(--color-accent-green);
  background: rgba(135, 187, 162, 0.06);
}

.nav-mobile.open {
  display: block;
}

/* ===== PAGE TOP OFFSET ===== */
.page-content {
  padding-top: 70px;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(30, 38, 28, 0.78) 0%,
    rgba(30, 38, 28, 0.52) 55%,
    rgba(30, 38, 28, 0.18) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0 100px;
}

.hero-content .container {
  max-width: var(--container-width);
}

.hero-content__inner {
  max-width: 680px;
}

.hero-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-yellow);
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 209, 102, 0.4);
  border-radius: 2px;
}

.hero-content h1 {
  color: var(--color-white);
  margin-bottom: 24px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-edu-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
}

.hero-edu-note::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent-green);
  flex-shrink: 0;
}

.btn-read {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid var(--color-white);
  color: var(--color-white);
  border-radius: var(--border-radius);
  transition: var(--transition-base);
  margin-right: 16px;
  margin-bottom: 16px;
}

.btn-read:hover {
  background: var(--color-white);
  color: var(--color-text-primary);
}

.btn-read--accent {
  border-color: var(--color-accent-green);
  color: var(--color-accent-green);
}

.btn-read--accent:hover {
  background: var(--color-accent-green);
  color: var(--color-white);
}

.btn-read--solid {
  background: var(--color-accent-green);
  border-color: var(--color-accent-green);
  color: var(--color-white);
}

.btn-read--solid:hover {
  background: #6fa98e;
  border-color: #6fa98e;
  color: var(--color-white);
}

.btn-read--dark {
  border-color: var(--color-text-primary);
  color: var(--color-text-primary);
}

.btn-read--dark:hover {
  background: var(--color-text-primary);
  color: var(--color-white);
}

/* ===== PANEL SYSTEM ===== */
.panel {
  padding: var(--section-padding-v) 0;
}

.panel--white {
  background: var(--color-white);
}

.panel--bg {
  background: var(--color-bg);
}

.panel--green {
  background: var(--color-accent-green);
}

.panel--blue {
  background: var(--color-accent-blue);
}

.panel--yellow-tint {
  background: #FFFBF0;
}

.panel--dark {
  background: #2A2F26;
  color: var(--color-white);
}

.panel--dark h1,
.panel--dark h2,
.panel--dark h3 {
  color: var(--color-white);
}

.panel--dark p {
  color: rgba(255,255,255,0.8);
}

.panel--border-top {
  border-top: 1px solid var(--color-border-light);
}

.panel-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-green);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-accent-green);
}

.panel-label--yellow {
  color: #B38A00;
  border-bottom-color: var(--color-accent-yellow);
}

.panel-label--white {
  color: rgba(255,255,255,0.7);
  border-bottom-color: rgba(255,255,255,0.3);
}

.section-intro {
  max-width: 680px;
  margin-bottom: 64px;
}

.section-intro h2 {
  margin-bottom: 16px;
}

.section-intro p {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.85;
}

/* ===== GRID LAYOUTS ===== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.grid-2--img-left .grid-2__img {
  order: -1;
}

.grid-2--img-right .grid-2__img {
  order: 1;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.grid-2__img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
}

.grid-2__img img.tall {
  height: 580px;
}

.grid-2__img img.medium {
  height: 400px;
}

/* ===== SEASON CARDS ===== */
.season-card {
  background: var(--color-white);
  border-radius: var(--border-radius-md);
  padding: 36px 32px;
  border: 1px solid var(--color-border-light);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.season-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.season-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.season-card--printemps::before { background: var(--color-accent-green); }
.season-card--ete::before { background: var(--color-accent-yellow); }
.season-card--automne::before { background: #C9A96E; }
.season-card--hiver::before { background: var(--color-accent-blue); }

.season-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.season-card--printemps .season-card__icon { background: rgba(135, 187, 162, 0.15); }
.season-card--ete .season-card__icon { background: rgba(255, 209, 102, 0.2); }
.season-card--automne .season-card__icon { background: rgba(201, 169, 110, 0.15); }
.season-card--hiver .season-card__icon { background: rgba(214, 227, 224, 0.4); }

.season-card h3 {
  margin-bottom: 12px;
}

.season-card p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ===== PILLAR CARDS ===== */
.pillar-card {
  padding: 40px 32px;
  border-radius: var(--border-radius-md);
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pillar-card__num {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-accent-green);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pillar-card h3 {
  margin-bottom: 14px;
}

.pillar-card p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: 0;
}

/* ===== INGREDIENT CARDS ===== */
.ingredient-card {
  background: var(--color-bg);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ingredient-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ingredient-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.ingredient-card__body {
  padding: 24px 24px 28px;
}

.ingredient-card__tag {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent-green);
  margin-bottom: 8px;
}

.ingredient-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.ingredient-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ===== GLOSSARY RAIL ===== */
.glossary-rail {
  background: var(--color-white);
  border-left: 4px solid var(--color-accent-green);
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  padding: 40px 48px;
  margin: 64px 0;
}

.glossary-rail__title {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-green);
  margin-bottom: 32px;
}

.glossary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 48px;
}

.glossary-item dt {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--color-border-light);
}

.glossary-item dd {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

/* ===== FULL WIDTH IMAGE BAND ===== */
.img-band {
  width: 100%;
  height: 480px;
  overflow: hidden;
  position: relative;
}

.img-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-band--short {
  height: 320px;
}

.img-band--tall {
  height: 560px;
}

/* ===== QUOTE PANEL ===== */
.quote-panel {
  background: var(--color-accent-blue);
  padding: var(--section-padding-v-sm) 0;
}

.quote-panel blockquote {
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic;
  color: var(--color-text-primary);
  line-height: 1.65;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 0 40px;
}

.quote-panel blockquote::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--color-accent-green);
  line-height: 1;
  display: block;
  margin-bottom: -16px;
  font-family: Georgia, serif;
}

/* ===== STAT ROW ===== */
.stat-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  background: var(--color-white);
}

.stat-item {
  flex: 1;
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid var(--color-border-light);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item__num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-accent-green);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.stat-item__label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-text-secondary);
  text-transform: uppercase;
}

/* ===== INFO DISCLAIMER BOX ===== */
.info-box {
  background: rgba(135, 187, 162, 0.1);
  border: 1px solid rgba(135, 187, 162, 0.4);
  border-left: 4px solid var(--color-accent-green);
  border-radius: var(--border-radius);
  padding: 28px 32px;
  margin: 48px 0;
}

.info-box--yellow {
  background: rgba(255, 209, 102, 0.1);
  border-color: rgba(255, 209, 102, 0.4);
  border-left-color: var(--color-accent-yellow);
}

.info-box p {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: 0;
}

.info-box strong {
  color: var(--color-text-primary);
  font-weight: 700;
}

/* ===== TWO COL TEXT ===== */
.text-2col {
  columns: 2;
  column-gap: 48px;
  column-rule: 1px solid var(--color-border-light);
}

/* ===== HARMONY PATH ===== */
.path-steps {
  display: flex;
  gap: 0;
  position: relative;
}

.path-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: var(--color-border-light);
  z-index: 0;
}

.path-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.path-step__circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-accent-green);
}

.path-step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.path-step p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===== LARGE IMAGE WITH CAPTION ===== */
.img-caption-block {
  position: relative;
}

.img-caption-block img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
}

.img-caption-block figcaption {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-top: 12px;
  padding-left: 16px;
  border-left: 2px solid var(--color-border);
}

/* ===== FOOTER ===== */
#site-footer {
  background: #1E221A;
  color: rgba(255,255,255,0.75);
}

.footer-warning {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
}

.footer-warning p {
  font-family: var(--font-heading);
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 0;
}

.footer-edu-bar {
  background: var(--color-accent-green);
  padding: 14px 0;
}

.footer-edu-bar p {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 0;
}

.footer-main {
  padding: 72px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px 40px;
}

.footer-col__brand {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.footer-col__brand span {
  color: var(--color-accent-green);
}

.footer-col p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-family: var(--font-heading);
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--color-accent-green);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.footer-contact-item__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.5;
}

.footer-contact-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0;
  line-height: 1.6;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: var(--color-accent-green);
}

.footer-hours {
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255,255,255,0.08);
}

.footer-hours p {
  font-family: var(--font-heading);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}

.footer-hours strong {
  color: rgba(255,255,255,0.7);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-family: var(--font-heading);
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-family: var(--font-heading);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--color-accent-green);
}

/* ===== POLICY PAGES ===== */
.policy-hero {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border-light);
  padding: 80px 0 56px;
}

.policy-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.policy-hero .date-note {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
}

.policy-body {
  padding: 72px 0 96px;
}

.policy-content {
  max-width: 820px;
}

.policy-content h2 {
  font-size: 1.5rem;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border-light);
  color: var(--color-text-primary);
}

.policy-content h2:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.policy-content h3 {
  font-size: 1.1rem;
  margin-top: 28px;
  margin-bottom: 12px;
}

.policy-content p {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.85;
  margin-bottom: 16px;
}

.policy-content ul,
.policy-content ol {
  list-style: none;
  margin: 16px 0 24px;
  padding-left: 0;
}

.policy-content ul li,
.policy-content ol li {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  padding: 6px 0 6px 22px;
  position: relative;
}

.policy-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent-green);
}

.policy-content ol {
  counter-reset: policy-counter;
}

.policy-content ol li {
  counter-increment: policy-counter;
}

.policy-content ol li::before {
  content: counter(policy-counter) '.';
  position: absolute;
  left: 0;
  top: 6px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent-green);
}

.policy-content a {
  color: var(--color-accent-green);
  text-decoration: underline;
}

.policy-content a:hover {
  color: #6fa98e;
}

/* ===== ABOUT PAGE ===== */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent-green), var(--color-accent-blue));
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid var(--color-accent-green);
  z-index: 1;
}

.timeline-item__year {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-accent-green);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.timeline-item h3 {
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

/* ===== VALUE CARDS ===== */
.value-card {
  padding: 36px;
  background: var(--color-bg);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-border-light);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-card__num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(135,187,162,0.25);
  line-height: 1;
  margin-bottom: 16px;
}

.value-card h3 {
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: 0;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--color-white);
  border-radius: var(--border-radius-md);
  padding: 48px;
  border: 1px solid var(--color-border-light);
}

.form-disclaimer {
  background: rgba(135, 187, 162, 0.08);
  border: 1px solid rgba(135, 187, 162, 0.3);
  border-radius: var(--border-radius);
  padding: 20px 24px;
  margin-bottom: 36px;
}

.form-disclaimer p {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

.field-group {
  margin-bottom: 24px;
}

.field-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.field-group input,
.field-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-primary);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--border-radius);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  resize: vertical;
}

.field-group input:focus,
.field-group textarea:focus {
  border-color: var(--color-accent-green);
  box-shadow: 0 0 0 3px rgba(135, 187, 162, 0.15);
}

.field-group textarea {
  min-height: 140px;
}

.btn-submit {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 36px;
  background: var(--color-accent-green);
  color: var(--color-white);
  border: 2px solid var(--color-accent-green);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition-base);
  width: 100%;
  text-align: center;
}

.btn-submit:hover {
  background: #6fa98e;
  border-color: #6fa98e;
}

.contact-info-panel {
  padding: 48px 0;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(135, 187, 162, 0.15);
  border: 1.5px solid rgba(135, 187, 162, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-accent-green);
  fill: none;
}

.contact-info-item h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

.map-placeholder {
  width: 100%;
  height: 240px;
  background: var(--color-accent-blue);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.map-placeholder svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-accent-green);
  fill: none;
  opacity: 0.6;
}

.map-placeholder p {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-bottom: 0;
  text-align: center;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-panel {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
}

.thank-you-box {
  max-width: 560px;
  width: 100%;
  text-align: center;
  padding: 72px 56px;
  background: var(--color-white);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-md);
}

.checkmark-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(135, 187, 162, 0.15);
  border: 2px solid var(--color-accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  animation: scaleIn 0.6s ease forwards;
}

.checkmark-wrap svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-accent-green);
  fill: none;
  stroke-width: 2.5;
}

@keyframes scaleIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.thank-you-box h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.thank-you-box p {
  font-size: 15.5px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ===== SCROLL FADE ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in--delay-1 { transition-delay: 0.1s; }
.fade-in--delay-2 { transition-delay: 0.2s; }
.fade-in--delay-3 { transition-delay: 0.3s; }
.fade-in--delay-4 { transition-delay: 0.4s; }
.fade-in--delay-5 { transition-delay: 0.5s; }

/* ===== SEPARATOR ===== */
.sep {
  width: 48px;
  height: 3px;
  background: var(--color-accent-green);
  margin: 20px 0 32px;
  border-radius: 2px;
}

.sep--center {
  margin-left: auto;
  margin-right: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .glossary-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --section-padding-v: 72px;
    --section-padding-v-sm: 48px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .grid-2--img-left .grid-2__img,
  .grid-2--img-right .grid-2__img {
    order: 0;
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .stat-row {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 0 0 50%;
    border-right: none;
    border-bottom: 1px solid var(--color-border-light);
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--color-border-light);
  }

  .path-steps {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .path-steps::before {
    display: none;
  }

  .text-2col {
    columns: 1;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding-v: 56px;
    --section-padding-v-sm: 40px;
  }

  .container,
  .container--wide {
    padding: 0 24px;
  }

  .header-inner {
    padding: 0 24px;
  }

  .nav-main {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: 80vh;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .glossary-rail {
    padding: 28px 24px;
  }

  .glossary-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cookie-inner {
    flex-direction: column;
    gap: 16px;
  }

  #cookie-banner {
    padding: 20px 24px;
  }

  .thank-you-box {
    padding: 48px 28px;
  }

  .contact-form-wrap {
    padding: 32px 24px;
  }

  .img-band {
    height: 280px;
  }

  .grid-2__img img {
    height: 320px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .hero {
    min-height: 75vh;
  }

  .stat-item {
    flex: 0 0 100%;
    border-right: none;
  }
}
