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

/* =============================================
   VARIABLES & RESET
   ============================================= */
:root {
  --navy:   #1A365D;
  --cream:  #F5E6D3;
  --teal:   #3E8E7E;
  --sand:   #C19A6B;
  --white:  #FFFFFF;
  --dark:   #0F2240;
  --text-body: #2C2C2C;
  --text-muted: #6B6B6B;
  --border: #D9CCBC;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Montserrat', Arial, sans-serif;
  --container: 1200px;
  --section-pad: 110px;
  --radius: 2px;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3 {
  font-family: var(--font-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: var(--font-sans);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
  font-weight: 300;
}

.text-muted { color: var(--text-muted); }
.text-sand  { color: var(--sand); }
.text-teal  { color: var(--teal); }
.text-navy  { color: var(--navy); }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

section {
  padding: var(--section-pad) 0;
}

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 54, 93, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(245, 230, 211, 0.15);
  height: 72px;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.logo span { color: var(--sand); }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(245, 230, 211, 0.8);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--cream); }

.nav-links a.active { border-bottom: 1px solid var(--sand); padding-bottom: 2px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: 0.3s;
}

.page-body { padding-top: 72px; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(15,34,64,0.72) 40%, rgba(26,54,93,0.28) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 60px 40px;
}

.hero-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 24px;
  border-left: 2px solid var(--sand);
  padding-left: 12px;
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 24px;
}

.hero .subtitle {
  color: rgba(245, 230, 211, 0.82);
  font-size: 1.05rem;
  margin-bottom: 16px;
  font-weight: 300;
}

.hero-disclaimer {
  font-size: 0.72rem;
  color: rgba(245, 230, 211, 0.5);
  margin-top: 16px;
  font-weight: 300;
  max-width: 520px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid var(--cream);
  color: var(--cream);
  background: transparent;
  cursor: pointer;
  transition: opacity 0.25s, background 0.25s;
  margin-top: 32px;
}

.btn:hover { opacity: 0.75; }

.btn-navy {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

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

.btn-teal:hover { opacity: 0.82; }

/* =============================================
   SECTION LABELS
   ============================================= */
.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 16px;
  border-left: 2px solid var(--sand);
  padding-left: 12px;
}

.section-line {
  width: 48px;
  height: 1px;
  background: var(--sand);
  margin: 20px 0 36px;
}

/* =============================================
   GALLERY GRID (INDEX)
   ============================================= */
.gallery-section {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.exhibit-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

.exhibit-card:hover { transform: translateY(-4px); }

.exhibit-img-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy);
}

.exhibit-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.exhibit-caption {
  padding: 24px;
  border-top: 1px solid var(--border);
}

.exhibit-tag {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 500;
  margin-bottom: 8px;
}

.exhibit-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.exhibit-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   SPLIT SECTIONS (text + image)
   ============================================= */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
}

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

.split-text {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy);
}

.split-text h2 { color: var(--cream); margin-bottom: 20px; }
.split-text p  { color: rgba(245,230,211,0.8); margin-bottom: 16px; font-weight: 300; }
.split-text .section-label { color: var(--sand); }

.split-img {
  overflow: hidden;
  background: var(--dark);
}

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

/* cream variant */
.split-section.cream .split-text {
  background: var(--cream);
}

.split-section.cream .split-text h2 { color: var(--navy); }
.split-section.cream .split-text p  { color: var(--text-body); }

/* =============================================
   TIMELINE / SCIENCE STAND
   ============================================= */
.timeline-section {
  background: var(--white);
  padding: var(--section-pad) 0;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--border);
}

.timeline-step {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  position: relative;
}

.timeline-step:last-child { border-right: none; }

.step-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.timeline-step h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.timeline-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================
   QUOTES / TESTIMONIALS
   ============================================= */
.quotes-section {
  background: var(--navy);
  padding: var(--section-pad) 0;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.quote-card {
  border: 1px solid rgba(245,230,211,0.2);
  padding: 40px 32px;
  position: relative;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--sand);
  line-height: 0.8;
  margin-bottom: 20px;
  display: block;
}

.quote-card p {
  color: rgba(245,230,211,0.85);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.75;
  font-weight: 300;
}

.quote-author {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: 24px;
  font-style: normal;
  font-weight: 500;
}

/* =============================================
   FULL-WIDTH PHOTO PANEL
   ============================================= */
.photo-panel {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: var(--dark);
}

.photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.photo-panel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15,34,64,0.38);
}

.photo-panel-overlay blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--cream);
  text-align: center;
  max-width: 680px;
  font-style: italic;
  line-height: 1.45;
  padding: 0 40px;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero {
  background: var(--navy);
  padding: 100px 0 70px;
  text-align: center;
}

.about-hero h1 { color: var(--cream); margin-bottom: 20px; }
.about-hero p  { color: rgba(245,230,211,0.8); max-width: 640px; margin: 0 auto; font-weight: 300; }

.about-exhibit {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.about-exhibit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-exhibit-img {
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--dark);
  border: 1px solid var(--border);
}

.about-exhibit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-exhibit-text h2 { margin-bottom: 20px; }
.about-exhibit-text p  { margin-bottom: 16px; }

.about-values {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.value-item {
  border-top: 2px solid var(--sand);
  padding-top: 24px;
}

.value-item h3 { margin-bottom: 12px; font-size: 1rem; color: var(--navy); }
.value-item p  { font-size: 0.9rem; color: var(--text-muted); }

/* =============================================
   FAQ PAGE
   ============================================= */
.faq-hero {
  background: var(--navy);
  padding: 100px 0 70px;
  text-align: center;
}

.faq-hero h1 { color: var(--cream); margin-bottom: 20px; }
.faq-hero p  { color: rgba(245,230,211,0.8); max-width: 600px; margin: 0 auto; font-weight: 300; }

.faq-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.faq-list { margin-top: 48px; }

.faq-item {
  border-top: 1px solid var(--border);
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 600;
  font-family: var(--font-serif);
  padding-right: 24px;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.1rem;
  transition: 0.25s;
}

.faq-item.open .faq-icon { background: var(--navy); color: var(--cream); }

.faq-answer {
  display: none;
  padding-bottom: 28px;
}

.faq-item.open .faq-answer { display: block; }

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-hero {
  background: var(--navy);
  padding: 100px 0 70px;
  text-align: center;
}

.contact-hero h1 { color: var(--cream); margin-bottom: 20px; }
.contact-hero p  { color: rgba(245,230,211,0.8); max-width: 600px; margin: 0 auto; font-weight: 300; }

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.contact-form-col {
  padding: 80px 64px;
  background: var(--white);
}

.contact-form-col h2 { margin-bottom: 8px; }
.contact-form-col > p { color: var(--text-muted); margin-bottom: 40px; font-size: 0.9rem; }

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 8px;
  font-family: var(--font-sans);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid var(--border);
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-body);
  background: var(--white);
  outline: none;
  transition: border-color 0.25s;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--navy); }

.form-group textarea { height: 140px; resize: vertical; }

.contact-info-col {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.contact-info-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  position: absolute;
  inset: 0;
}

.contact-info-inner {
  position: relative;
  z-index: 2;
  padding: 80px 56px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-inner h3 { color: var(--cream); margin-bottom: 32px; font-size: 1.5rem; }

.contact-detail {
  margin-bottom: 28px;
}

.contact-detail-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 500;
  margin-bottom: 6px;
  font-family: var(--font-sans);
}

.contact-detail p {
  color: rgba(245,230,211,0.85);
  font-size: 0.95rem;
  font-weight: 300;
}

/* =============================================
   THANK YOU
   ============================================= */
.thankyou-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  background: var(--cream);
}

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

.thankyou-box h1 { margin-bottom: 20px; font-size: 2.4rem; }
.thankyou-box p  { margin-bottom: 32px; color: var(--text-muted); }

/* =============================================
   POLICY PAGES
   ============================================= */
.policy-hero {
  background: var(--navy);
  padding: 100px 0 60px;
  text-align: center;
}

.policy-hero h1 { color: var(--cream); margin-bottom: 16px; }
.policy-hero p  { color: rgba(245,230,211,0.7); font-size: 0.9rem; font-weight: 300; }

.policy-body {
  padding: 80px 0 100px;
  background: var(--white);
}

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

.policy-content h2 {
  font-size: 1.25rem;
  margin: 44px 0 14px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  color: var(--navy);
}

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

.policy-content p {
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.policy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.policy-content li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(245,230,211,0.1);
  padding: 72px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245,230,211,0.1);
}

.footer-brand .logo { font-size: 1.3rem; margin-bottom: 16px; display: block; }

.footer-brand p {
  font-size: 0.83rem;
  color: rgba(245,230,211,0.5);
  line-height: 1.75;
  font-weight: 300;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(245,230,211,0.6);
  transition: color 0.22s;
  font-weight: 300;
}

.footer-col ul li a:hover { color: var(--cream); }

.footer-contact p {
  font-size: 0.83rem;
  color: rgba(245,230,211,0.6);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 6px;
}

.footer-contact a { color: rgba(245,230,211,0.6); transition: color 0.22s; }
.footer-contact a:hover { color: var(--cream); }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.78rem;
  color: rgba(245,230,211,0.35);
  line-height: 1.75;
  font-weight: 300;
  max-width: 760px;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(245,230,211,0.35);
  font-weight: 300;
  white-space: nowrap;
}

.footer-editorial {
  font-size: 0.72rem;
  color: var(--sand);
  letter-spacing: 0.06em;
  font-weight: 500;
  margin-top: 4px;
}

/* =============================================
   COOKIE BANNER
   ============================================= */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(15,34,64,0.97);
  border-top: 1px solid rgba(245,230,211,0.15);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

#cookie-banner p {
  font-size: 0.83rem;
  color: rgba(245,230,211,0.75);
  font-weight: 300;
  flex: 1;
}

#cookie-banner a { color: var(--sand); text-decoration: underline; }

.cookie-actions { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }

.cookie-btn {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  cursor: pointer;
  border: 1px solid rgba(245,230,211,0.4);
  background: transparent;
  color: var(--cream);
  transition: background 0.25s, opacity 0.25s;
}

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

.cookie-btn:hover { opacity: 0.75; }

/* =============================================
   FADE-IN ANIMATION
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   404 (inline styles backup)
   ============================================= */
.not-found-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  background: var(--cream);
  text-align: center;
}

.not-found-wrap h1 {
  font-size: clamp(3rem, 10vw, 7rem);
  color: var(--navy);
  opacity: 0.15;
  line-height: 1;
}

.not-found-wrap h2 { margin: 16px 0 20px; }
.not-found-wrap p  { color: var(--text-muted); margin-bottom: 32px; max-width: 480px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-grid { grid-template-columns: repeat(2, 1fr); }
  .quotes-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }

  .split-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .split-section.reverse { direction: ltr; }
  .split-img { aspect-ratio: 16/7; }
  .split-text { padding: 60px 48px; }

  .about-exhibit-inner { gap: 48px; }
  .contact-split { grid-template-columns: 1fr; }
  .contact-info-col { min-height: 360px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; }

  .container { padding: 0 24px; }
  .header-inner { padding: 0 24px; }

  .nav-links { display: none; flex-direction: column; gap: 0; }

  .nav-links.open {
    display: flex;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--dark);
    padding: 24px 0 32px;
    border-bottom: 1px solid rgba(245,230,211,0.1);
  }

  .nav-links.open a {
    padding: 14px 32px;
    width: 100%;
    border-bottom: 1px solid rgba(245,230,211,0.07);
  }

  .nav-toggle { display: flex; }

  .hero { min-height: 85vh; }
  .hero-content { padding: 40px 24px; }

  .gallery-grid { grid-template-columns: 1fr; gap: 24px; }
  .timeline-grid { grid-template-columns: 1fr 1fr; }
  .quotes-grid   { grid-template-columns: 1fr; gap: 20px; }

  .about-exhibit-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-exhibit-img { aspect-ratio: 16/9; }
  .values-grid { grid-template-columns: 1fr; gap: 28px; }

  .contact-form-col { padding: 56px 28px; }
  .contact-info-inner { padding: 48px 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 16px; }

  #cookie-banner { padding: 20px 24px; flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }

  .photo-panel { height: 340px; }
}

@media (max-width: 480px) {
  .timeline-grid { grid-template-columns: 1fr; }
  .timeline-step { border-right: none; border-bottom: 1px solid var(--border); }
  .timeline-step:last-child { border-bottom: none; }
  .split-text { padding: 48px 24px; }
}
