@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Source+Sans+3:wght@300;400;500;600&display=swap');

:root {
  --cream: #F8F7F4;
  --forest: #2F4F4F;
  --sage: #8FBC8F;
  --gold: #D4AF37;
  --forest-dark: #1e3535;
  --forest-mid: #3d6060;
  --sage-light: #b8d8b8;
  --sage-dark: #6a9c6a;
  --gold-light: #e8cc6a;
  --gold-dark: #b8931e;
  --text-dark: #1a2a2a;
  --text-mid: #3a5050;
  --text-light: #6a8080;
  --border: #d8d4cc;
  --border-light: #ece8e0;
  --white: #ffffff;
  --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.16);
  --radius: 4px;
  --radius-md: 8px;
  --max-w: 1440px;
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Source Sans 3', 'Helvetica Neue', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
  color: var(--forest);
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 600; letter-spacing: -0.015em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: 'Source Sans 3', sans-serif; }

p { font-size: 1.025rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--forest); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--gold-dark); }

ul, ol { padding-left: 1.5rem; color: var(--text-mid); line-height: 1.8; }
li { margin-bottom: 0.4rem; }

strong { color: var(--text-dark); font-weight: 600; }

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.container--wide {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 5rem 0; }

.section--alt { background-color: var(--white); }
.section--forest { background-color: var(--forest); }
.section--dark { background-color: var(--forest-dark); }

.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1.25rem 0 2rem;
  display: block;
}

.divider--center { margin: 1.25rem auto 2rem; }

.label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 0.75rem;
}

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-cream { color: var(--cream) !important; }
.text-sage { color: var(--sage) !important; }
.text-gold { color: var(--gold) !important; }
.text-light-body { color: rgba(248,247,244,0.78) !important; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.28s ease;
  text-decoration: none;
}

.btn--primary {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.btn--primary:hover {
  background: var(--forest-dark);
  border-color: var(--forest-dark);
  color: var(--cream);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn--outline:hover {
  background: var(--forest);
  color: var(--cream);
  transform: translateY(-1px);
}

.btn--gold {
  background: var(--gold);
  color: var(--forest-dark);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn--outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(248,247,244,0.5);
}
.btn--outline-light:hover {
  background: rgba(248,247,244,0.12);
  border-color: var(--cream);
  color: var(--cream);
}

.btn--sm { padding: 0.6rem 1.4rem; font-size: 0.8rem; }

.btn-arrow::after {
  content: '→';
  font-size: 1rem;
  transition: transform 0.25s ease;
}
.btn-arrow:hover::after { transform: translateX(3px); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248,247,244,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.header-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.02em;
}

.logo-tagline {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 2px;
}

.header-nav { display: flex; align-items: center; gap: 0.25rem; }

.nav-link {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: all 0.22s ease;
  letter-spacing: 0.03em;
  text-decoration: none;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.85rem;
  right: 0.85rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  border-radius: 2px;
}

.nav-link:hover { color: var(--forest); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--forest); font-weight: 600; }

.nav-cta {
  margin-left: 0.75rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  background: transparent;
  border: 1.5px solid var(--forest);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--forest);
  color: var(--cream);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem 1.5rem;
  z-index: 999;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { padding: 0.75rem 0; border-bottom: 1px solid var(--border-light); font-size: 0.95rem; }
.mobile-nav .nav-link:last-child { border-bottom: none; }
.mobile-nav .nav-cta { margin: 0.75rem 0 0; text-align: center; padding: 0.85rem; }

.page-offset { padding-top: 72px; }

.hero {
  padding: 0;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--forest);
  overflow: hidden;
}

.hero-content {
  padding: 6rem 4rem 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(47,79,79,0.95) 0%, rgba(30,53,53,0.98) 100%);
  z-index: -1;
}

.hero-image-col {
  position: relative;
  overflow: hidden;
}

.hero-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  opacity: 0.82;
  mix-blend-mode: luminosity;
  filter: saturate(0.7) contrast(1.05);
}

.hero-image-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--forest) 0%, transparent 30%);
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  width: fit-content;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title { color: var(--cream); margin-bottom: 1.5rem; }
.hero-title em { color: var(--sage); font-style: normal; }

.hero-text { color: rgba(248,247,244,0.78); font-size: 1.05rem; max-width: 480px; margin-bottom: 2.5rem; line-height: 1.8; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-note {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(248,247,244,0.15);
  color: rgba(248,247,244,0.5);
  font-size: 0.8rem;
  line-height: 1.6;
  max-width: 420px;
}

.editorial-section {
  padding: 6rem 0;
  background: var(--cream);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.editorial-grid.reverse { direction: rtl; }
.editorial-grid.reverse > * { direction: ltr; }

.editorial-image {
  position: relative;
}

.editorial-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.editorial-image::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  z-index: 0;
  opacity: 0.5;
}

.editorial-image img { position: relative; z-index: 1; }

.editorial-content { padding: 1rem 0; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }

.info-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.info-card:hover::before { transform: scaleX(1); }

.info-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(47,79,79,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.icon-leaf::before { content: '❧'; font-size: 1.4rem; color: var(--forest); }
.icon-sun::before { content: '☀'; font-size: 1.4rem; color: var(--gold-dark); }
.icon-drop::before { content: '◈'; font-size: 1.4rem; color: var(--sage-dark); }
.icon-book::before { content: '⊞'; font-size: 1.4rem; color: var(--forest); }
.icon-grain::before { content: '◉'; font-size: 1.4rem; color: var(--gold-dark); }
.icon-herb::before { content: '✦'; font-size: 1.4rem; color: var(--sage-dark); }

.info-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.info-card p { font-size: 0.935rem; line-height: 1.7; }

.feature-block {
  background: var(--forest);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.feature-block::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(143,188,143,0.06);
}

.feature-block::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(212,175,55,0.05);
}

.feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.feature-image-wrap { position: relative; }

.feature-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-md);
  opacity: 0.88;
}

.feature-list { list-style: none; padding: 0; margin: 1.75rem 0 2rem; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(248,247,244,0.08);
  color: rgba(248,247,244,0.82);
  font-size: 0.975rem;
  line-height: 1.6;
}
.feature-list li::before {
  content: '—';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.quote-block {
  padding: 5rem 0;
  background: var(--cream);
}

.quote-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.pull-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 500;
  color: var(--forest);
  line-height: 1.5;
  font-style: italic;
  margin: 1.5rem 0;
}

.quote-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.quote-line::before, .quote-line::after {
  content: '';
  height: 1px;
  width: 80px;
  background: var(--border);
}

.glossary-section { padding: 5.5rem 0; background: var(--white); }

.glossary-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  font-size: 0.95rem;
}

.glossary-table thead tr {
  background: var(--forest);
  color: var(--cream);
}

.glossary-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.glossary-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-mid);
  vertical-align: top;
}

.glossary-table tbody tr:last-child td { border-bottom: none; }

.glossary-table tbody tr:hover { background: rgba(47,79,79,0.03); }

.glossary-table .term {
  font-weight: 600;
  color: var(--forest);
  font-family: 'Playfair Display', serif;
}

.glossary-table .origin {
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-style: italic;
}

.notice-block {
  background: rgba(47,79,79,0.05);
  border-left: 4px solid var(--forest);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}

.notice-block--gold {
  background: rgba(212,175,55,0.08);
  border-left-color: var(--gold);
}

.notice-block--sage {
  background: rgba(143,188,143,0.1);
  border-left-color: var(--sage-dark);
}

.notice-block h4 {
  color: var(--forest);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.notice-block p { font-size: 0.9rem; margin: 0; color: var(--text-mid); }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 3rem 0;
}

.stat-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
  display: block;
}

.stat-unit {
  font-size: 1.2rem;
  color: var(--gold-dark);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.4rem;
  display: block;
}

.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .divider { margin: 1.25rem auto 2rem; }

.full-image-section {
  padding: 0;
  position: relative;
  height: 500px;
  overflow: hidden;
}

.full-image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  filter: brightness(0.65);
}

.full-image-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 2rem;
}

.full-image-overlay h2 { color: var(--cream); font-size: clamp(1.8rem, 3.5vw, 3rem); margin-bottom: 1rem; }
.full-image-overlay p { color: rgba(248,247,244,0.85); max-width: 600px; font-size: 1.1rem; }

.img-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.img-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.img-card img { width: 100%; height: 220px; object-fit: cover; border-radius: 0; }

.img-card__body { padding: 1.5rem; }

.img-card__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 0.5rem;
}

.img-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.img-card p { font-size: 0.88rem; line-height: 1.65; }

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest);
  margin-top: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: gap 0.2s ease, color 0.2s ease;
}

.read-more-link::after { content: '→'; }
.read-more-link:hover { gap: 0.7rem; color: var(--gold-dark); }

.text-column-section { padding: 5.5rem 0; }

.two-col-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.text-narrow { max-width: 640px; }
.text-narrow.centered { margin: 0 auto; }

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-content {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.timeline-content.right { text-align: right; }

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--gold);
  flex-shrink: 0;
  z-index: 1;
}

.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest);
  display: block;
  margin-bottom: 0.3rem;
}

.timeline-desc { font-size: 0.9rem; color: var(--text-mid); margin: 0; }

.site-footer {
  background: var(--forest-dark);
  color: var(--cream);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(248,247,244,0.1);
}

.footer-brand .logo-name { color: var(--cream); font-size: 1.7rem; }
.footer-brand .logo-tagline { color: rgba(248,247,244,0.45); }

.footer-brand p {
  color: rgba(248,247,244,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 1.25rem 0;
}

.footer-note {
  font-size: 0.78rem;
  color: rgba(248,247,244,0.4);
  line-height: 1.65;
  padding-top: 1rem;
  border-top: 1px solid rgba(248,247,244,0.08);
}

.footer-col h4 {
  color: var(--cream);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(248,247,244,0.6);
  font-size: 0.88rem;
  transition: color 0.22s ease;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.footer-contact-item .c-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.2rem;
}

.footer-contact-item a, .footer-contact-item span {
  color: rgba(248,247,244,0.75);
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-hours { margin-top: 1rem; }
.footer-hours .c-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.4rem;
  display: block;
}

.footer-hours p {
  color: rgba(248,247,244,0.6);
  font-size: 0.85rem;
  margin: 0;
}

.footer-bottom {
  padding: 1.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(248,247,244,0.38);
  font-size: 0.78rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: rgba(248,247,244,0.4);
  font-size: 0.75rem;
  transition: color 0.22s ease;
}
.footer-bottom-links a:hover { color: rgba(248,247,244,0.8); }

.disclaimer-footer {
  background: rgba(0,0,0,0.15);
  padding: 2rem 0;
  border-top: 1px solid rgba(248,247,244,0.06);
}

.disclaimer-footer p {
  font-size: 0.75rem;
  color: rgba(248,247,244,0.35);
  line-height: 1.65;
  margin: 0;
}

.disclaimer-footer p + p { margin-top: 0.75rem; }

.educational-bar {
  background: var(--gold);
  padding: 0.6rem 0;
  text-align: center;
}

.educational-bar p {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest-dark);
  margin: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--forest-dark);
  color: var(--cream);
  padding: 1.25rem 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 3px solid var(--gold);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-text { flex: 1; min-width: 260px; }
.cookie-text p { color: rgba(248,247,244,0.82); font-size: 0.85rem; margin: 0; line-height: 1.6; }

.cookie-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; flex-shrink: 0; }

.cookie-btn {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.cookie-btn--accept { background: var(--gold); color: var(--forest-dark); border-color: var(--gold); }
.cookie-btn--accept:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }

.cookie-btn--decline { background: transparent; color: rgba(248,247,244,0.7); border-color: rgba(248,247,244,0.3); }
.cookie-btn--decline:hover { border-color: rgba(248,247,244,0.7); color: var(--cream); }

.cookie-btn--learn { background: transparent; color: var(--sage); border-color: var(--sage); }
.cookie-btn--learn:hover { background: rgba(143,188,143,0.15); }

.page-hero {
  background: var(--forest);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(143,188,143,0.07);
}

.page-hero h1 { color: var(--cream); }
.page-hero p { color: rgba(248,247,244,0.7); max-width: 580px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
  color: rgba(248,247,244,0.45);
}

.breadcrumb a { color: rgba(248,247,244,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

.breadcrumb-sep { color: rgba(248,247,244,0.25); }

.policy-content { padding: 5rem 0; }
.policy-content h2 { margin: 2.5rem 0 1rem; padding-top: 0.5rem; }
.policy-content h2:first-child { margin-top: 0; }
.policy-content h3 { margin: 1.75rem 0 0.75rem; }
.policy-content ul, .policy-content ol { margin-bottom: 1.25rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.5rem;
}

.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(47,79,79,0.1);
  background: var(--white);
}

.form-textarea { resize: vertical; min-height: 140px; }

.form-disclaimer {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.65;
  padding: 1rem;
  background: rgba(47,79,79,0.04);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.contact-info-block { padding: 0; }
.contact-info-block h3 { margin-bottom: 1.75rem; }

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-detail:last-child { border-bottom: none; }

.contact-detail .c-type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.contact-detail a, .contact-detail span {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.map-placeholder {
  background: var(--forest);
  border-radius: var(--radius-md);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.75rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(143,188,143,0.05),
    rgba(143,188,143,0.05) 10px,
    transparent 10px,
    transparent 20px
  );
}

.map-placeholder span {
  position: relative;
  z-index: 1;
  color: var(--sage);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(143,188,143,0.4);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  transition: background 0.25s;
}

.map-placeholder:hover span { background: rgba(143,188,143,0.1); }

.thankyou-section {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  background: var(--cream);
}

.thankyou-box {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 3.5rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.thankyou-icon {
  width: 72px;
  height: 72px;
  background: rgba(143,188,143,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  border: 2px solid var(--sage);
}

.thankyou-icon svg { width: 32px; height: 32px; stroke: var(--sage-dark); fill: none; stroke-width: 2.5; }

.about-hero-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.principle-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  background: var(--white);
  position: relative;
}

.principle-num {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(47,79,79,0.06);
  line-height: 1;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem 0;
}

.faq-question {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--forest);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold-dark);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 300px; padding-top: 0.85rem; }

.img-feature-wide {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.25rem 0; }

.tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(47,79,79,0.07);
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: var(--border-light);
  margin: 0;
}

.two-thirds-one-third {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.sidebar-module {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: sticky;
  top: 96px;
}

.sidebar-module h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

.sidebar-link {
  display: block;
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.2s, padding-left 0.2s;
}

.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { color: var(--forest); padding-left: 0.5rem; }

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-col { height: 400px; }
  .hero-content { padding: 5rem 2.5rem; }
  .hero-image-col::after { background: linear-gradient(to top, var(--forest) 0%, transparent 40%); }
  .editorial-grid { gap: 3rem; }
  .feature-inner { gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stats-row .stat-item:nth-child(2) { border-right: none; }
  .stats-row .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .header-nav { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 4rem 1.5rem; }
  .editorial-grid, .editorial-grid.reverse { grid-template-columns: 1fr; direction: ltr; gap: 2rem; }
  .editorial-image img { height: 280px; }
  .editorial-image::before { display: none; }
  .feature-inner { grid-template-columns: 1fr; }
  .feature-image-wrap img { height: 300px; }
  .card-grid { grid-template-columns: 1fr; }
  .card-grid--4 { grid-template-columns: 1fr; }
  .card-grid--2 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .two-col-text { grid-template-columns: 1fr; }
  .two-thirds-one-third { grid-template-columns: 1fr; }
  .timeline::before { left: 20px; }
  .timeline-item { grid-template-columns: auto 1fr; grid-template-rows: auto auto; }
  .timeline-content.right { text-align: left; grid-column: 2; }
  .timeline-content:not(.right) { grid-column: 2; grid-row: 1; }
  .timeline-dot { grid-row: 1; }
  .full-image-section { height: 350px; }
  .cookie-banner { flex-direction: column; gap: 1rem; }
  .cookie-actions { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  section { padding: 3rem 0; }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.8rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .thankyou-box { padding: 2rem 1.5rem; }
}
