:root {
  --primary-color: #2C3E50;
  --accent-teal: #4A9090;
  --accent-gold: #B8860B;
  --bg-light: #F5F5DC;
  --neutral-light: #f9f9f9;
  --neutral-gray: #7a8b99;
  --text-primary: #2C3E50;
}

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

html, body {
  font-family: 'Merriweather', serif;
  color: var(--text-primary);
  background-color: #ffffff;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

h1 {
  color: var(--primary-color);
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
}

h3 {
  color: var(--accent-teal);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-primary);
}

a {
  color: var(--accent-teal);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-content {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
  margin: 0;
}

.section-spacing {
  margin-bottom: 5rem;
}

.hero-section {
  width: 100%;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 62, 80, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
  color: white;
}

.hero-content h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--bg-light);
  font-style: italic;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.two-column-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.two-column-layout.reversed {
  direction: rtl;
}

.two-column-layout.reversed > * {
  direction: ltr;
}

.column-image {
  position: relative;
}

.column-image img {
  width: 100%;
  height: auto;
  display: block;
  border: 3px solid var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.column-text h2 {
  margin-top: 0;
}

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

.card {
  background: var(--bg-light);
  padding: 2rem;
  border-left: 4px solid var(--accent-teal);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card h3 {
  margin-top: 0;
}

.divider {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
  margin: 3rem 0;
}

.disclaimer-box {
  background-color: #e8f4f8;
  border-left: 5px solid var(--accent-teal);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 2px;
}

.disclaimer-box strong {
  color: var(--primary-color);
}

ul, ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

ul li, ol li {
  margin-bottom: 0.8rem;
  line-height: 1.8;
}

ul li:before {
  content: "■ ";
  color: var(--accent-teal);
  margin-right: 0.8rem;
}

.button {
  display: inline-block;
  background-color: var(--accent-gold);
  color: var(--primary-color);
  padding: 0.9rem 2.2rem;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  border-radius: 2px;
}

.button:hover {
  background-color: var(--primary-color);
  color: var(--bg-light);
}

.button-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

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

.text-balance {
  text-wrap: balance;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .two-column-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-section {
    min-height: 400px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

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

.highlight-gold {
  color: var(--accent-gold);
}

.highlight-teal {
  color: var(--accent-teal);
}

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

.quote-block {
  border-left: 5px solid var(--accent-gold);
  padding-left: 2rem;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--accent-teal);
  line-height: 1.8;
}

.archive-timeline {
  position: relative;
  padding: 2rem 0;
}

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

.timeline-date {
  font-weight: 700;
  color: var(--accent-teal);
  font-size: 1.1rem;
}

.timeline-content {
  padding-left: 1rem;
  border-left: 2px solid var(--accent-gold);
}

.full-width-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 4rem 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--primary-color);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  background: var(--primary-color);
  color: white;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 2px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.stat-label {
  font-size: 0.95rem;
  margin-top: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.concept-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.concept-cell {
  background: var(--bg-light);
  padding: 1.5rem;
  border-top: 3px solid var(--accent-teal);
  text-align: center;
}

.concept-cell h4 {
  color: var(--accent-teal);
  margin-bottom: 0.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-color);
  color: white;
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1000;
}

.cookie-banner.active {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content {
  flex: 1;
  min-width: 250px;
}

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

.cookie-btn {
  padding: 0.6rem 1.5rem;
  background: var(--accent-gold);
  color: var(--primary-color);
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 2px;
  font-family: 'Montserrat', sans-serif;
}

.cookie-btn:hover {
  background: var(--accent-teal);
  color: white;
}

.cookie-btn.secondary {
  background: transparent;
  border: 1px solid white;
  color: white;
}

.cookie-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}
