@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --navy: #1A2A3A;
  --rose: #D3BDB0;
  --mustard: #C3A04D;
  --stone: #8D99AE;
  --off-white: #F5F2EE;
  --white: #FFFFFF;
  --text-dark: #1A2A3A;
  --text-mid: #4A5568;
  --text-light: #8D99AE;
  --border: #E2D9D0;
  --section-gap: 100px;
  --radius: 4px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }

p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
}

p:last-child { margin-bottom: 0; }

a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover { color: var(--mustard); }

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}

li {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-gap {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

.section-gap-sm {
  padding-top: 60px;
  padding-bottom: 60px;
}

.bg-navy { background-color: var(--navy); }
.bg-rose { background-color: var(--rose); }
.bg-off-white { background-color: var(--off-white); }
.bg-stone-light { background-color: #EEF0F3; }
.bg-mustard-light { background-color: #F7F0E0; }
.bg-white { background-color: var(--white); }

.text-white { color: var(--white) !important; }
.text-navy { color: var(--navy) !important; }
.text-mustard { color: var(--mustard) !important; }
.text-stone { color: var(--stone) !important; }
.text-mid { color: var(--text-mid) !important; }

.label-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 1rem;
}

.section-rule {
  width: 48px;
  height: 3px;
  background-color: var(--mustard);
  margin-bottom: 1.5rem;
  display: block;
}

.section-rule-center {
  margin-left: auto;
  margin-right: auto;
}

.btn-outline {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  border-radius: var(--radius);
}

.btn-outline:hover {
  background-color: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  text-decoration: none;
}

.btn-outline-white {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid var(--white);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  border-radius: var(--radius);
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--navy);
  text-decoration: none;
}

.btn-mustard {
  display: inline-block;
  padding: 13px 36px;
  background-color: var(--mustard);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid var(--mustard);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  border-radius: var(--radius);
}

.btn-mustard:hover {
  background-color: transparent;
  color: var(--mustard);
  text-decoration: none;
}

.btn-navy {
  display: inline-block;
  padding: 13px 36px;
  background-color: var(--navy);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  border-radius: var(--radius);
}

.btn-navy:hover {
  background-color: transparent;
  color: var(--navy);
  text-decoration: none;
}

.divider-line {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3rem 0;
}

.divider-line-navy {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin: 3rem 0;
}

.exhibit-frame {
  border: 1px solid var(--border);
  padding: 2.5rem;
  background: var(--white);
}

.exhibit-frame-navy {
  border: 1px solid rgba(255,255,255,0.12);
  padding: 2.5rem;
  background: rgba(255,255,255,0.04);
}

.card-exhibit {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  height: 100%;
}

.card-exhibit:hover {
  box-shadow: 0 12px 40px rgba(26,42,58,0.1);
  transform: translateY(-4px);
}

.card-exhibit-img {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  height: 100%;
}

.card-exhibit-img:hover {
  box-shadow: 0 12px 40px rgba(26,42,58,0.12);
  transform: translateY(-3px);
}

.card-exhibit-img .card-img-wrap {
  overflow: hidden;
  height: 220px;
}

.card-exhibit-img .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-exhibit-img:hover .card-img-wrap img {
  transform: scale(1.04);
}

.card-exhibit-img .card-body-inner {
  padding: 1.5rem;
}

.icon-geo {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  margin-bottom: 1.2rem;
}

.icon-geo svg {
  width: 24px;
  height: 24px;
  stroke: var(--mustard);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blockquote-museum {
  border-left: 4px solid var(--mustard);
  padding: 1.5rem 2rem;
  background: var(--off-white);
  margin: 2rem 0;
}

.blockquote-museum p {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin: 0;
}

.stat-strip {
  display: flex;
  gap: 2px;
  background: var(--border);
}

.stat-strip-item {
  flex: 1;
  background: var(--white);
  padding: 2rem 1.5rem;
  text-align: center;
}

.stat-strip-item .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-strip-item .stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.5rem 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s ease;
}

.faq-question:hover { color: var(--mustard); }

.faq-question .faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s ease;
}

.faq-question .faq-icon::before,
.faq-question .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--mustard);
  border-radius: 2px;
}

.faq-question .faq-icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-question .faq-icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.faq-item.open .faq-icon::after {
  opacity: 0;
}

.faq-answer {
  display: none;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  margin: 0;
}

.faq-item.open .faq-answer {
  display: block;
}

.glossary-rail {
  background: var(--off-white);
  border-left: 3px solid var(--mustard);
  padding: 1.5rem 2rem;
}

.glossary-term {
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
}

.glossary-term:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.glossary-term dt {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.glossary-term dd {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

.info-disclaimer {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--mustard);
  padding: 2rem 2.5rem;
  margin: 3rem 0;
}

.info-disclaimer h3 {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.8rem;
}

.info-disclaimer p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.65;
}

.philosophy-box {
  background: var(--navy);
  padding: 3rem;
  color: var(--white);
}

.philosophy-box h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.philosophy-box p {
  color: rgba(255,255,255,0.8);
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.75;
}

.timeline-block {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2.5rem;
}

.timeline-block::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: -2.5rem;
  width: 2px;
  background: var(--border);
}

.timeline-block:last-child::before { display: none; }

.timeline-dot {
  position: absolute;
  left: 0;
  top: 6px;
  width: 24px;
  height: 24px;
  background: var(--white);
  border: 3px solid var(--mustard);
  border-radius: 50%;
}

.timeline-block h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
}

.matrix-table th {
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.matrix-table td {
  padding: 12px 16px;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.55;
}

.matrix-table tr:nth-child(even) td {
  background: var(--off-white);
}

.matrix-table tr:last-child td {
  border-bottom: none;
}

.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,42,58,0.88) 0%, rgba(26,42,58,0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content h1 {
  color: var(--white);
  max-width: 700px;
  margin-bottom: 1.5rem;
}

.hero-content .hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mustard);
  border: 1px solid rgba(195,160,77,0.4);
  padding: 7px 16px;
  margin-bottom: 1.8rem;
  background: rgba(195,160,77,0.08);
}

.page-header-section {
  background: var(--navy);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-header-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--mustard);
}

.page-header-section h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-header-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0;
}

.two-col-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
  align-items: center;
}

.two-col-grid.reverse {
  grid-template-columns: 7fr 5fr;
}

.three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.two-col-grid-equal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.img-museum {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.img-museum-sm {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.img-museum-tall {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
}

.section-number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  height: 100%;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
  background: var(--rose);
  box-shadow: 0 8px 32px rgba(26,42,58,0.08);
}

.pillar-card h3 {
  margin: 1.2rem 0 0.8rem;
}

.pillar-card p {
  font-size: 0.95rem;
}

.contact-info-block {
  background: var(--navy);
  padding: 3rem;
  color: var(--white);
}

.contact-info-block h3 {
  color: var(--white);
  margin-bottom: 2rem;
  font-size: 1.3rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-info-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--mustard);
  fill: none;
  stroke-width: 1.5;
  margin-top: 2px;
}

.contact-info-item span {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.form-museum input,
.form-museum textarea,
.form-museum select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
  outline: none;
  transition: border-color 0.25s ease;
  border-radius: var(--radius);
  margin-bottom: 1.2rem;
}

.form-museum input:focus,
.form-museum textarea:focus {
  border-color: var(--navy);
}

.form-museum textarea {
  min-height: 160px;
  resize: vertical;
}

.form-museum label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-disclaimer {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.blog-hero {
  position: relative;
  height: 460px;
  overflow: hidden;
  background: var(--navy);
}

.blog-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.blog-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 3rem 0;
}

.blog-hero-content h1 {
  color: var(--white);
}

.article-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: var(--navy);
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.article-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 3rem 0;
}

.article-hero-content h1 {
  color: var(--white);
  max-width: 700px;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.article-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-body {
  max-width: 760px;
}

.article-body h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-body h3 {
  margin-top: 1.8rem;
  margin-bottom: 0.7rem;
}

.sidebar-concepts {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 2rem;
  position: sticky;
  top: 100px;
}

.sidebar-concepts h3 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.sidebar-concept-item {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.sidebar-concept-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sidebar-concept-item dt {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.sidebar-concept-item dd {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin: 0;
}

.two-col-article {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}

.topic-filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.topic-tag {
  padding: 7px 18px;
  border: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--white);
  cursor: default;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.topic-tag.active,
.topic-tag:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.policy-sidebar {
  position: sticky;
  top: 100px;
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 2rem;
}

.policy-sidebar h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.2rem;
}

.policy-sidebar nav a {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}

.policy-sidebar nav a:hover {
  color: var(--navy);
  padding-left: 6px;
}

.policy-sidebar nav a:last-child {
  border-bottom: none;
}

.health-banner {
  background: var(--off-white);
  border: 2px solid var(--rose);
  border-top: 5px solid var(--mustard);
  padding: 2.5rem 3rem;
  margin-bottom: 3rem;
}

.health-banner h2 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.health-banner p {
  font-size: 0.95rem;
  margin: 0;
}

.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--off-white);
}

.thank-you-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.thank-you-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: checkDraw 0.6s ease 0.3s forwards;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
}

@keyframes checkDraw {
  to { stroke-dashoffset: 0; }
}

.soft-cta-section {
  background: #F7F0E0;
  padding: 80px 0;
  text-align: center;
}

.soft-cta-section h2 {
  margin-bottom: 1rem;
}

.soft-cta-section p {
  max-width: 520px;
  margin: 0 auto 2rem;
}

.legal-text h2 { font-size: 1.4rem; margin-top: 2.5rem; margin-bottom: 0.8rem; }
.legal-text h3 { font-size: 1.1rem; margin-top: 1.8rem; margin-bottom: 0.6rem; }
.legal-text p { font-size: 0.95rem; }
.legal-text ul { font-size: 0.95rem; }
.legal-text ol { font-size: 0.95rem; }

.cookie-table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
}

.disclaimer-hero-block {
  background: var(--rose);
  border-left: 6px solid var(--mustard);
  padding: 3rem;
}

.disclaimer-hero-block h2 {
  margin-bottom: 1rem;
}

.geo-context-block {
  background: var(--navy);
  padding: 2.5rem;
  color: var(--white);
  margin-top: 2rem;
}

.geo-context-block h3 {
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.geo-line {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.7rem;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.geo-line strong {
  color: var(--white);
  font-weight: 600;
  min-width: 100px;
  display: inline-block;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(26,42,58,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease;
}

.site-header.scrolled {
  background: var(--navy);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.header-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.2s;
}

.header-logo:hover { color: var(--rose); text-decoration: none; }

.header-logo span {
  color: var(--mustard);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li a {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  display: block;
  transition: color 0.2s ease;
  position: relative;
}

.main-nav li a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--mustard);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.main-nav li a:hover {
  color: var(--white);
  text-decoration: none;
}

.main-nav li a:hover::after,
.main-nav li a.active::after {
  transform: scaleX(1);
}

.main-nav li a.active {
  color: var(--white);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  display: block;
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0;
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 12px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, background 0.2s;
}

.mobile-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
  text-decoration: none;
}

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-footer {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  display: block;
}

.footer-brand .logo-footer span { color: var(--mustard); }

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.footer-edu-badge {
  display: inline-block;
  background: rgba(195,160,77,0.12);
  border: 1px solid rgba(195,160,77,0.35);
  color: var(--mustard);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-contact-item {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
  line-height: 1.55;
}

.footer-contact-item strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.75); }

.working-hours {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.working-hours strong {
  color: rgba(255,255,255,0.8);
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: var(--navy);
  border-top: 3px solid var(--mustard);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}

#cookie-banner p {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
  flex: 1;
  min-width: 260px;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 9px 20px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: var(--radius);
}

.cookie-btn-accept {
  background: var(--mustard);
  color: var(--white);
  border-color: var(--mustard);
}

.cookie-btn-accept:hover {
  background: transparent;
  color: var(--mustard);
}

.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.3);
}

.cookie-btn-decline:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.cookie-btn-learn {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-btn-learn:hover {
  color: var(--white);
}

.main-content {
  padding-top: 72px;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .container-wide { padding: 0 24px; }
  .container { padding: 0 24px; }
  .container-narrow { padding: 0 24px; }
  .two-col-grid,
  .two-col-grid.reverse { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col-article { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col-grid-equal { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-gap: 60px; }
  .three-col-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .nav-hamburger { display: flex; }
  .header-inner { padding: 0 20px; }
  .container-wide { padding: 0 20px; }
  .container { padding: 0 20px; }
  .container-narrow { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-section { min-height: 75vh; }
  .stat-strip { flex-wrap: wrap; }
  .stat-strip-item { min-width: 48%; }
  .exhibit-frame { padding: 1.5rem; }
  .philosophy-box { padding: 2rem; }
  .two-col-article { grid-template-columns: 1fr; }
  .sidebar-concepts { position: static; margin-top: 2rem; }
  .policy-sidebar { position: static; margin-bottom: 2rem; }
  .footer-bottom { flex-direction: column; }
  .img-museum { height: 280px; }
  .img-museum-tall { height: 320px; }
  .blog-hero { height: 300px; }
  .article-hero { height: 280px; }
  #cookie-banner { padding: 1rem 1.25rem; }
  .health-banner { padding: 1.5rem; }
  .geo-context-block { padding: 1.5rem; }
  .contact-info-block { padding: 2rem; }
}

@media (max-width: 480px) {
  .three-col-grid { grid-template-columns: 1fr; }
  .topic-filter-bar { gap: 0.4rem; }
  .cookie-actions { width: 100%; justify-content: flex-start; }
  .footer-bottom-links { gap: 1rem; }
}
