/* ============================================
   PRIMOARCADEVISTA — NORDIC CULTURAL ELEGANCE
   ============================================ */

/* --- CSS VARIABLES --- */
:root {
  /* Colors */
  --bg-primary: #f4f4f5;
  --bg-secondary: #e5e7eb;
  --bg-white: #ffffff;
  --accent-primary: #111827;
  --accent-secondary: #d6d3d1;
  --accent-highlight: #3b82f6;
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-light: #6b7280;
  --text-white: #ffffff;
  --border-color: #d1d5db;
  --border-light: #e5e7eb;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-slower: 0.8s ease;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
}

/* --- UTILITIES --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-alt {
  background-color: var(--bg-secondary);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-highlight);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
}

.section-header {
  margin-bottom: 60px;
}

.section-footer {
  text-align: center;
  margin-top: 60px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 12px 28px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background-color: var(--accent-primary);
  color: var(--text-white);
  border-color: var(--accent-primary);
}

.btn-primary:hover {
  background-color: #1f2937;
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background-color: var(--accent-primary);
  color: var(--text-white);
}

.btn-ghost {
  background-color: rgba(255,255,255,0.15);
  color: var(--text-white);
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background-color: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.7);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.8125rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 0.9375rem;
}

.btn-full {
  width: 100%;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent-primary);
  position: relative;
  transition: color var(--transition-base);
}

.btn-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-primary);
  transition: width var(--transition-base);
}

.btn-link:hover {
  color: var(--accent-highlight);
}

.btn-link:hover::after {
  width: 100%;
  background-color: var(--accent-highlight);
}

/* --- HEADER --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background-color: rgba(244, 244, 245, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--accent-primary);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 4px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent-primary);
}

.main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

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

.nav-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-base);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--accent-primary);
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--accent-primary);
  transition: all var(--transition-base);
}

/* --- MOBILE PANEL --- */
.mobile-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  pointer-events: none;
  visibility: hidden;
}

.mobile-panel.open {
  pointer-events: all;
  visibility: visible;
}

.mobile-panel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(17, 24, 39, 0.4);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mobile-panel.open .mobile-panel-overlay {
  opacity: 1;
}

.mobile-panel-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background-color: var(--bg-white);
  padding: 32px;
  transform: translateX(100%);
  transition: transform var(--transition-base);
}

.mobile-panel.open .mobile-panel-content {
  transform: translateX(0);
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-primary);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 60px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  padding: 12px 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition-base);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--accent-primary);
}

/* --- HERO --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero.in-view .hero-bg-image {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(17, 24, 39, 0.3) 0%,
    rgba(17, 24, 39, 0.55) 50%,
    rgba(17, 24, 39, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 0 24px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* --- PAGE HERO --- */
.page-hero {
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-light);
}

.page-hero-sm {
  padding-bottom: 40px;
}

.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 12px;
}

.page-hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  font-weight: 300;
}

/* --- INTRO SECTION --- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.intro-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* --- MUSEUM CARDS --- */
.museum-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.museum-grid-full {
  grid-template-columns: repeat(2, 1fr);
}

.museum-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  overflow: hidden;
  transition: all var(--transition-base);
}

.museum-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-4px);
}

.museum-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.museum-card-image-wrap {
  position: relative;
  padding-top: 62%;
  overflow: hidden;
}

.museum-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.museum-card:hover .museum-card-image {
  transform: scale(1.06);
}

.museum-card-body {
  padding: 28px;
}

.museum-card-location {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-highlight);
  margin-bottom: 8px;
}

.museum-card-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.museum-card-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* --- EDITORIAL SECTION --- */
.editorial-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.editorial-image-wrap {
  border-radius: 6px;
  overflow: hidden;
}

.editorial-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.editorial-image-wrap:hover .editorial-image {
  transform: scale(1.03);
}

.editorial-content {
  padding: 20px 0;
}

.exhibition-list {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.exhibition-item {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.exhibition-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.exhibition-date {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-highlight);
}

.exhibition-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 4px 0;
}

.exhibition-venue {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* --- STATS --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  padding: 40px 0;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

/* --- CTA BLOCK --- */
.cta-block {
  text-align: center;
  background-color: var(--accent-primary);
  padding: 80px 60px;
  border-radius: 8px;
}

.cta-block-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--text-white);
  margin-bottom: 16px;
}

.cta-block-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 32px;
  font-weight: 300;
}

.cta-block .btn-primary {
  background-color: var(--text-white);
  color: var(--accent-primary);
  border-color: var(--text-white);
}

.cta-block .btn-primary:hover {
  background-color: rgba(255,255,255,0.9);
}

.cta-block .btn-outline {
  color: var(--text-white);
  border-color: rgba(255,255,255,0.4);
}

.cta-block .btn-outline:hover {
  background-color: var(--text-white);
  color: var(--accent-primary);
}

.cta-block-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- DETAIL PAGES --- */
.detail-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  max-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.detail-hero-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.detail-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(17,24,39,0.8) 0%, rgba(17,24,39,0.2) 60%, transparent 100%);
}

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

.back-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  transition: color var(--transition-base);
}

.back-link:hover {
  color: var(--text-white);
}

.detail-location {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-highlight);
  margin-bottom: 8px;
}

.detail-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--text-white);
  max-width: 700px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

.detail-main h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.detail-main h3 {
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 16px;
}

.detail-main p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.detail-list {
  list-style: none;
  margin: 16px 0;
}

.detail-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-highlight);
}

.detail-list li strong {
  color: var(--text-primary);
}

/* --- INFO CARD --- */
.info-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 32px;
  margin-bottom: 24px;
}

.info-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.info-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.info-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
}

.info-value {
  font-size: 0.9375rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.exhibition-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.exhibition-card-date {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

/* --- EXHIBITIONS PAGE --- */
.exhibitions-section h2 {
  margin-bottom: 40px;
}

.exhibition-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.exhibition-card {
  display: grid;
  grid-template-columns: 400px 1fr;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  overflow: hidden;
  transition: all var(--transition-base);
}

.exhibition-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.exhibition-card-image-wrap {
  overflow: hidden;
}

.exhibition-card-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.exhibition-card-body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.exhibition-card-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  background-color: var(--accent-primary);
  color: var(--text-white);
  border-radius: 3px;
  margin-bottom: 16px;
  width: fit-content;
}

.exhibition-card-badge.upcoming {
  background-color: var(--accent-highlight);
}

.exhibition-card-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.exhibition-card-venue {
  font-size: 0.875rem;
  color: var(--accent-highlight);
  font-weight: 500;
  margin-bottom: 4px;
}

.exhibition-card-dates {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.exhibition-card-description {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* --- ABOUT PAGE --- */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}

.about-content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.about-content h3 {
  font-size: 1.3rem;
  margin-top: 36px;
  margin-bottom: 14px;
}

.about-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-image-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.about-img-1,
.about-img-2 {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 6px;
}

/* --- CONTACT PAGE --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}

.contact-form-wrap h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

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

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-primary);
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
}

.form-input:focus {
  border-color: var(--accent-highlight);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input::placeholder {
  color: var(--text-light);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234b5563' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  padding: 20px;
  background-color: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 4px;
  margin-top: 16px;
}

.form-success p {
  color: #065f46;
  font-weight: 500;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 24px;
}

.contact-info-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.contact-info-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-info-card a {
  color: var(--accent-highlight);
  transition: color var(--transition-base);
}

.contact-info-card a:hover {
  color: var(--accent-primary);
}

/* --- LEGAL PAGES --- */
.legal-content {
  max-width: 780px;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content ul {
  margin: 12px 0;
  padding-left: 20px;
}

.legal-content li {
  list-style: disc;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 4px;
}

.legal-content a {
  color: var(--accent-highlight);
  transition: color var(--transition-base);
}

.legal-content a:hover {
  color: var(--accent-primary);
}

/* --- FOOTER --- */
.site-footer {
  background-color: var(--accent-primary);
  padding: 80px 0 40px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo .logo-mark {
  background-color: var(--text-white);
  color: var(--accent-primary);
}

.footer-logo .logo-text {
  color: var(--text-white);
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  line-height: 1.6;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition-base);
}

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

.footer-bottom {
  padding-top: 32px;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

/* --- ANIMATIONS --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-slower), transform var(--transition-slower);
}

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

.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-slower), transform var(--transition-slower);
}

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

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-actions .btn {
    display: none;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .museum-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .editorial-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .editorial-image {
    height: 360px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .detail-sidebar {
    order: -1;
  }

  .exhibition-card {
    grid-template-columns: 1fr;
  }

  .exhibition-card-img {
    min-height: 220px;
    max-height: 280px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-stack {
    position: static;
    flex-direction: row;
  }

  .about-img-1,
  .about-img-2 {
    flex: 1;
    height: 240px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .museum-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .cta-block {
    padding: 50px 30px;
  }

  .detail-hero {
    height: 50vh;
    min-height: 320px;
  }

  .hero {
    min-height: 500px;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image-stack {
    flex-direction: column;
  }

  .about-img-1,
  .about-img-2 {
    height: 220px;
  }

  .exhibition-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
  }

  .cta-block-btns {
    flex-direction: column;
    align-items: center;
  }

  .cta-block-btns .btn {
    width: 100%;
    max-width: 280px;
  }
}