@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #224229;
  --primary-dark: #172e1c;
  --primary-light: #2e5937;
  --sandstone: #D4C5A0;
  --sandstone-light: #e8dfc7;
  --teal: #5A7E8C;
  --teal-light: #7aa0af;
  --terracotta: #B17D65;
  --terracotta-light: #c99a86;
  --neutral-100: #f8f6f1;
  --neutral-200: #edeae2;
  --neutral-300: #ddd8cc;
  --neutral-400: #b5b0a5;
  --neutral-600: #6b665e;
  --neutral-800: #2e2c28;
  --white: #ffffff;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --container: 1440px;
  --content-max: 1200px;
  --radius-sm: 2px;
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.28s ease;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--neutral-100);
  color: var(--neutral-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

.container {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.container--wide {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 600; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--neutral-600);
  margin-bottom: 1.25rem;
}

p:last-child { margin-bottom: 0; }

.text-serif { font-family: var(--font-serif); }
.text-primary { color: var(--primary); }
.text-sandstone { color: var(--sandstone); }
.text-teal { color: var(--teal); }

.section {
  padding: 5rem 0;
}

.section--lg {
  padding: 7rem 0;
}

.section--sm {
  padding: 3rem 0;
}

.section--dark {
  background-color: var(--primary);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--sandstone);
}

.section--dark p {
  color: var(--sandstone-light);
}

.section--sand {
  background-color: var(--sandstone-light);
}

.section--sand h2,
.section--sand h3 {
  color: var(--primary);
}

.section--neutral {
  background-color: var(--neutral-200);
}

.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }

.w-full { width: 100%; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(34, 66, 41, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(212, 197, 160, 0.15);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background-color: var(--sandstone);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-mark span {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  line-height: 1;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--sandstone);
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(212, 197, 160, 0.8);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius);
  transition: color var(--transition), background-color var(--transition);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--sandstone);
  background-color: rgba(212, 197, 160, 0.1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--sandstone);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background-color: var(--primary-dark);
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid rgba(212, 197, 160, 0.1);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(212, 197, 160, 0.85);
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(212, 197, 160, 0.08);
  transition: color var(--transition);
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--sandstone); }

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--primary);
  color: var(--sandstone);
  border-color: var(--primary);
}

.btn--primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--sandstone);
}

.btn--outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline:hover {
  background-color: var(--primary);
  color: var(--sandstone);
}

.btn--outline-light {
  background-color: transparent;
  color: var(--sandstone);
  border-color: rgba(212, 197, 160, 0.6);
}

.btn--outline-light:hover {
  background-color: rgba(212, 197, 160, 0.12);
  border-color: var(--sandstone);
}

.btn--teal {
  background-color: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn--teal:hover {
  background-color: #4d6d7a;
  border-color: #4d6d7a;
}

.btn--sm {
  font-size: 0.8rem;
  padding: 0.55rem 1.25rem;
}

.btn--lg {
  font-size: 0.95rem;
  padding: 0.9rem 2.2rem;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  width: 100%;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 68px;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(23, 46, 28, 0.82) 0%,
    rgba(34, 66, 41, 0.65) 50%,
    rgba(34, 66, 41, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sandstone);
  background-color: rgba(212, 197, 160, 0.15);
  border: 1px solid rgba(212, 197, 160, 0.3);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.75rem;
}

.hero h1 {
  color: var(--white);
  max-width: 760px;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.2);
}

.hero-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(212, 197, 160, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
}

.hero-scroll svg {
  width: 18px;
  height: 18px;
  stroke: rgba(212, 197, 160, 0.7);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */

.page-hero {
  background-color: var(--primary);
  padding: 7rem 0 4rem;
  margin-top: 68px;
}

.page-hero--has-image {
  position: relative;
  overflow: hidden;
}

.page-hero--has-image .page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero--has-image .page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.25;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--sandstone);
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(212, 197, 160, 0.8);
  font-size: 1.05rem;
  max-width: 620px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.breadcrumb a,
.breadcrumb span {
  font-size: 0.8rem;
  color: rgba(212, 197, 160, 0.6);
  letter-spacing: 0.04em;
}

.breadcrumb a:hover {
  color: var(--sandstone);
}

.breadcrumb-sep {
  color: rgba(212, 197, 160, 0.35);
  font-size: 0.7rem;
}

/* =========================================================
   DIVIDER
   ========================================================= */

.divider {
  width: 56px;
  height: 3px;
  background-color: var(--sandstone);
  margin-bottom: 1.75rem;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

.divider--teal {
  background-color: var(--teal);
}

.divider--terracotta {
  background-color: var(--terracotta);
}

/* =========================================================
   SECTION HEADER
   ========================================================= */

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.center {
  text-align: center;
}

.section-header.center .divider {
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section-label--light {
  color: var(--sandstone);
}

/* =========================================================
   CARDS
   ========================================================= */

.card {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--neutral-200);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: 0 8px 32px rgba(34, 66, 41, 0.1);
  transform: translateY(-3px);
}

.card-image {
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.card:hover .card-image img {
  transform: scale(1.04);
}

.card-body {
  padding: 1.75rem;
}

.card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 1rem;
  transition: gap var(--transition), color var(--transition);
}

.card-link:hover {
  gap: 0.7rem;
  color: var(--teal);
}

/* =========================================================
   TWO-COLUMN SPLIT BLOCKS
   ========================================================= */

.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 480px;
}

.split-block--reverse {
  direction: rtl;
}

.split-block--reverse > * {
  direction: ltr;
}

.split-image {
  position: relative;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-content {
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--white);
}

.split-content--dark {
  background-color: var(--primary);
}

.split-content--dark h2,
.split-content--dark h3 {
  color: var(--sandstone);
}

.split-content--dark p {
  color: rgba(212, 197, 160, 0.82);
}

.split-content--sand {
  background-color: var(--sandstone-light);
}

/* =========================================================
   STAT STRIP
   ========================================================= */

.stat-strip {
  background-color: var(--primary);
  padding: 3rem 0;
}

.stat-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  border-right: 1px solid rgba(212, 197, 160, 0.15);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sandstone);
  line-height: 1;
  display: block;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(212, 197, 160, 0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =========================================================
   TIMELINE
   ========================================================= */

.timeline {
  position: relative;
  padding-left: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--sandstone), var(--teal), var(--terracotta));
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-year {
  text-align: right;
  padding-top: 0.25rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  padding-right: 0;
}

.timeline-body {
  padding-left: 2.5rem;
  position: relative;
}

.timeline-body::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--primary);
  border: 3px solid var(--sandstone);
  box-shadow: 0 0 0 3px rgba(34,66,41,0.15);
}

.timeline-body h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.timeline-body p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* =========================================================
   FAQ ACCORDION
   ========================================================= */

.faq-list {
  border-top: 1px solid var(--neutral-300);
}

.faq-item {
  border-bottom: 1px solid var(--neutral-300);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  transition: color var(--transition);
}

.faq-question:hover { color: var(--teal); }

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition), border-color var(--transition);
}

.faq-icon svg {
  width: 10px;
  height: 10px;
  stroke: var(--primary);
  transition: transform var(--transition);
}

.faq-item.open .faq-icon {
  background-color: var(--primary);
  border-color: var(--primary);
}

.faq-item.open .faq-icon svg {
  stroke: var(--sandstone);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding var(--transition);
}

.faq-answer-inner {
  padding-bottom: 1.25rem;
}

.faq-answer-inner p {
  font-size: 0.95rem;
  color: var(--neutral-600);
  line-height: 1.75;
  margin-bottom: 0;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

/* =========================================================
   TOPIC CARDS (overview grid)
   ========================================================= */

.topic-card {
  background-color: var(--white);
  border: 1px solid var(--neutral-200);
  border-top: 3px solid var(--sandstone);
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  transition: border-top-color var(--transition), box-shadow var(--transition);
}

.topic-card:hover {
  border-top-color: var(--primary);
  box-shadow: 0 6px 24px rgba(34,66,41,0.08);
}

.topic-card-icon {
  width: 40px;
  height: 40px;
  background-color: var(--neutral-200);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.topic-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
}

.topic-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.topic-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* =========================================================
   MYTH BLOCK
   ========================================================= */

.myth-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.myth-card {
  background-color: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}

.myth-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.myth-badge--myth {
  background-color: rgba(177, 125, 101, 0.12);
  color: var(--terracotta);
  border: 1px solid rgba(177, 125, 101, 0.25);
}

.myth-badge--fact {
  background-color: rgba(90, 126, 140, 0.12);
  color: var(--teal);
  border: 1px solid rgba(90, 126, 140, 0.25);
}

.myth-card h4 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: var(--neutral-800);
}

.myth-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* =========================================================
   CONTACT FORM
   ========================================================= */

.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(--primary);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--neutral-800);
  background-color: var(--white);
  border: 1.5px solid var(--neutral-300);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(34, 66, 41, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-control::placeholder {
  color: var(--neutral-400);
}

/* =========================================================
   CONTACT INFO
   ========================================================= */

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--sandstone);
}

.contact-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neutral-400);
  margin-bottom: 0.2rem;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--neutral-800);
  line-height: 1.5;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background-color: var(--primary-dark);
  color: rgba(212, 197, 160, 0.75);
}

.footer-main {
  padding: 4.5rem 0 3rem;
  border-bottom: 1px solid rgba(212, 197, 160, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(212, 197, 160, 0.65);
  margin-top: 1rem;
  max-width: 300px;
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sandstone);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(212, 197, 160, 0.65);
  transition: color var(--transition);
  line-height: 1.4;
}

.footer-links a:hover { color: var(--sandstone); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--sandstone);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item span {
  font-size: 0.83rem;
  color: rgba(212, 197, 160, 0.65);
  line-height: 1.5;
}

.footer-hours {
  font-size: 0.8rem;
  color: rgba(212, 197, 160, 0.5);
  margin-top: 0.4rem;
}

.footer-bottom {
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(212, 197, 160, 0.45);
}

.footer-editorial {
  font-size: 0.78rem;
  color: rgba(212, 197, 160, 0.5);
  font-style: italic;
}

/* =========================================================
   COOKIE BANNER
   ========================================================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: var(--primary-dark);
  border-top: 2px solid rgba(212, 197, 160, 0.2);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner p {
  font-size: 0.85rem;
  color: rgba(212, 197, 160, 0.8);
  margin-bottom: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-banner p a {
  color: var(--sandstone);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* =========================================================
   LEGAL PAGES
   ========================================================= */

.legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin-top: 2.5rem;
  margin-bottom: 0.9rem;
  padding-top: 2rem;
  border-top: 1px solid var(--neutral-200);
}

.legal-content h2:first-of-type {
  border-top: none;
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.legal-content ul li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--neutral-600);
  margin-bottom: 0.4rem;
}

.legal-date {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--neutral-400);
  background-color: var(--neutral-200);
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-item {
  padding: 2rem;
  background-color: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
}

.value-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neutral-300);
  line-height: 1;
  margin-bottom: 1rem;
}

.value-item h3 { margin-bottom: 0.6rem; font-size: 1rem; }
.value-item p { font-size: 0.9rem; margin-bottom: 0; }

/* =========================================================
   THANK YOU PAGE
   ========================================================= */

.thankyou-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  background-color: var(--neutral-100);
}

.thankyou-box {
  text-align: center;
  max-width: 480px;
}

.thankyou-icon {
  width: 64px;
  height: 64px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.thankyou-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--sandstone);
}

.thankyou-box h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.thankyou-box p {
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* =========================================================
   404 PAGE
   ========================================================= */

.error-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  background-color: var(--neutral-100);
}

.error-box {
  text-align: center;
  max-width: 520px;
}

.error-code {
  font-family: var(--font-serif);
  font-size: 7rem;
  font-weight: 700;
  color: var(--neutral-300);
  line-height: 1;
  margin-bottom: 1rem;
}

.error-box h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.error-box p {
  margin-bottom: 2rem;
}

/* =========================================================
   INLINE IMAGE BLOCK
   ========================================================= */

.img-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  line-height: 0;
}

.img-frame--tall img {
  height: 520px;
  width: 100%;
  object-fit: cover;
}

.img-frame--medium img {
  height: 380px;
  width: 100%;
  object-fit: cover;
}

.img-frame--short img {
  height: 260px;
  width: 100%;
  object-fit: cover;
}

.img-caption {
  font-size: 0.78rem;
  color: var(--neutral-400);
  letter-spacing: 0.04em;
  padding-top: 0.6rem;
  line-height: 1;
}

/* =========================================================
   PULL QUOTE
   ========================================================= */

.pull-quote {
  border-left: 4px solid var(--sandstone);
  padding: 1rem 2rem;
  margin: 2rem 0;
  background-color: var(--neutral-100);
}

.pull-quote p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--primary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .split-block { grid-template-columns: 1fr; }
  .split-block--reverse { direction: ltr; }
  .split-image { min-height: 320px; }
  .split-image img { height: 320px; }
  .stat-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(212,197,160,0.15); }
  .stat-item:nth-child(2n) { border-right: none; }
  .timeline::before { left: 80px; }
  .timeline-item { grid-template-columns: 80px 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .myth-block { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 3.5rem 0; }
  .section--lg { padding: 4.5rem 0; }
  .container { padding-left: 1.25rem; padding-right: 1.25rem; }
  .hero { min-height: 80vh; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stat-strip-inner { grid-template-columns: 1fr 1fr; }
  .timeline::before { left: 0; display: none; }
  .timeline-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .timeline-year { text-align: left; font-size: 0.85rem; color: var(--teal); }
  .timeline-body { padding-left: 0; }
  .timeline-body::before { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .split-content { padding: 2.5rem 1.5rem; }
  .img-frame--tall img { height: 280px; }
  .img-frame--medium img { height: 240px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .stat-strip-inner { grid-template-columns: 1fr; }
  .stat-item { border-bottom: 1px solid rgba(212,197,160,0.12); }
  .error-code { font-size: 5rem; }
}
