/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  --bg-primary: #F9F6F0;
  --bg-secondary: #EFECE6;
  --text-main: #1C1B1A;
  --text-muted: #686461;
  --accent-terracotta: #B85233;
  --accent-terracotta-hover: #A04429;
  --accent-sage: #5B6E58;
  --border-color: rgba(28, 27, 26, 0.1);
  --border-light: rgba(28, 27, 26, 0.08);
  
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  --radius-card: 12px;
  --radius-btn: 8px;
  
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.03);
  --shadow-card-hover: 0 18px 40px rgba(0, 0, 0, 0.07);
  --shadow-modal: 0 20px 40px rgba(0, 0, 0, 0.12);
  
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-reveal: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-main);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-subtitle {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-terracotta);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.75rem;
  letter-spacing: -0.02em;
}

/* BUTTONS & UI */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: var(--accent-terracotta);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background-color: var(--accent-terracotta-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  border-color: var(--accent-terracotta);
  color: var(--accent-terracotta);
  background-color: transparent;
}

.btn-secondary:hover {
  background-color: rgba(184, 82, 51, 0.08);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-xs {
  padding: 8px 16px;
  font-size: 0.8rem;
}

.btn-link-sm {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
  text-decoration: underline;
  padding: 4px 8px;
}

.btn-link-sm:hover {
  color: var(--text-main);
}

/* CARDS */
.card {
  background-color: var(--bg-primary);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(184, 82, 51, 0.3);
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-reveal);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  height: 72px;
  background-color: rgba(249, 246, 240, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
}

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

.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent-terracotta);
  margin-top: 2px;
}

.nav-list {
  display: flex;
  gap: 32px;
}

.nav-link {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent-terracotta);
  transition: width 0.3s ease;
}

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

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

.lang-indicator {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* ==========================================================================
   SECTION 1: HERO
   ========================================================================== */
.hero-section {
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-content {
  grid-column: span 7;
  animation: fadeInDown 0.8s ease forwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.editorial-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-sage);
  margin-bottom: 16px;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 90%;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.hero-collage {
  grid-column: span 5;
  position: relative;
  height: 480px;
  animation: scaleIn 0.8s ease forwards;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.collage-item {
  position: absolute;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-main {
  width: 85%;
  height: 360px;
  top: 0;
  left: 0;
  z-index: 1;
}

.item-secondary {
  width: 55%;
  height: 280px;
  bottom: 0;
  right: 0;
  z-index: 2;
  border: 6px solid var(--bg-primary);
}

/* ==========================================================================
   SECTION 2: HISTORIA
   ========================================================================== */
.historia-section {
  background-color: var(--bg-secondary);
}

.historia-grid {
  display: flex;
  gap: 48px;
}

.timeline-wrapper,
.historia-card-wrapper {
  flex: 1;
}

.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  padding-left: 24px;
  border-left: 2px solid var(--border-color);
}

.timeline-item {
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.timeline-item.active,
.timeline-item:hover {
  background-color: rgba(184, 82, 51, 0.05);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-terracotta);
  display: block;
  margin-bottom: 4px;
}

.timeline-heading {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.timeline-text {
  font-size: 0.925rem;
  color: var(--text-muted);
}

.historia-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.historia-card .card-image-wrap {
  height: 260px;
  overflow: hidden;
}

.historia-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.historia-card .card-body {
  padding: 32px;
  display: flex;
  flex-direction: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.card-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-terracotta);
  margin-bottom: 8px;
}

.historia-card .card-title {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.card-footer-info {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.info-badge {
  font-size: 0.75rem;
  background-color: var(--bg-secondary);
  padding: 6px 12px;
  border-radius: 20px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   SECTION 3: NATURALEZA
   ========================================================================== */
.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.nature-card .card-image-wrap {
  height: 220px;
  overflow: hidden;
}

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

.nature-card:hover img {
  transform: scale(1.05);
}

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

.nature-card .card-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.nature-card .card-text {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SECTION 4: CULTURA
   ========================================================================== */
.cultura-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.cultura-card {
  position: relative;
  height: 380px;
}

.card-wide {
  grid-column: span 8;
}

.card-narrow {
  grid-column: span 4;
}

.card-half {
  grid-column: span 6;
}

.cultura-card .card-image-wrap {
  width: 100%;
  height: 100%;
}

.cultura-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-quote {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 27, 26, 0.82);
  color: var(--bg-primary);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.overlay-quote blockquote {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 12px;
}

.overlay-quote cite {
  font-size: 0.85rem;
  font-style: normal;
  color: var(--accent-terracotta);
}

.cultura-card:hover .overlay-quote {
  opacity: 1;
}

.card-body-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 32px;
  background: linear-gradient(to top, rgba(28,27,26,0.9), transparent);
  z-index: 1;
}

.card-tag-light {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #D2927D;
}

.card-title-light {
  color: #F9F6F0;
  font-size: 1.6rem;
  margin: 4px 0 8px;
}

.card-text-light {
  color: #EFECE6;
  font-size: 0.9rem;
}

/* ==========================================================================
   SECTION 5: TURISMO LENTO
   ========================================================================== */
.turismo-section {
  background-color: var(--bg-secondary);
  overflow: hidden;
}

.slider-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.slider-header-wrapper .section-header {
  text-align: left;
  margin-bottom: 0;
}

.slider-controls {
  display: flex;
  gap: 12px;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-arrow:hover {
  background-color: var(--accent-sage);
  color: #FFFFFF;
  border-color: var(--accent-sage);
}

.carousel-container {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 20px;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  gap: 28px;
}

.carousel-card {
  flex: 0 0 320px;
}

.carousel-card .card-image-wrap {
  height: 200px;
}

.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-card .card-body {
  padding: 24px;
}

.card-category {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-sage);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.carousel-card .card-title {
  font-size: 1.4rem;
  margin: 6px 0 10px;
}

.carousel-card .card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SECTION 6: MANIFESTO
   ========================================================================== */
.manifesto-section {
  background-color: var(--bg-secondary);
  padding: 100px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.manifesto-container {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.manifesto-subtitle {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-terracotta);
  font-weight: 600;
}

.manifesto-title {
  font-size: 2.5rem;
  margin: 16px 0 28px;
}

.manifesto-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.manifesto-signature {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--accent-sage);
}

/* ==========================================================================
   SECTION 7: FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--text-main);
  color: var(--bg-primary);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col {
  grid-column: span 3;
}

.footer-logo {
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.footer-logo .logo-main {
  color: var(--bg-primary);
}

.footer-about-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--bg-primary);
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

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

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(249, 246, 240, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   COOKIE MODAL
   ========================================================================== */
.cookie-modal {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 340px;
  background-color: var(--bg-primary);
  border: 1px solid rgba(28, 27, 26, 0.15);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-modal);
  padding: 20px;
  z-index: 1000;
  transform: translateX(120%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-modal.active {
  transform: translateX(0);
}

.cookie-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.cookie-text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-content {
    grid-column: span 1;
  }
  .hero-collage {
    grid-column: span 1;
    height: 380px;
  }
  .cultura-grid {
    grid-template-columns: 1fr;
  }
  .card-wide, .card-narrow, .card-half {
    grid-column: span 1;
  }
  .footer-col {
    grid-column: span 6;
  }
}

@media (max-width: 768px) {
  .nav-list {
    display: none; /* Simplificado para móviles */
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .historia-grid {
    flex-direction: column;
  }
  .grid-3-col {
    grid-template-columns: 1fr;
  }
  .footer-col {
    grid-column: span 12;
  }
  .cookie-modal {
    left: 16px;
    right: 16px;
    width: auto;
    bottom: 16px;
  }
}
/* Inner page styles */
/* ==========================================================================
   ARTICLE PAGE & TYPOGRAPHY EXTRA STYLES
   ========================================================================== */
.article-page {
  padding: 40px 0 80px;
}

.article-container {
  max-width: 920px;
}

/* Breadcrumbs */
.breadcrumb {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

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

/* Article Header */
.article-header {
  margin-bottom: 32px;
}

.article-title {
  font-size: 3.25rem;
  line-height: 1.15;
  margin: 12px 0 20px;
  color: var(--text-main);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
}

/* Responsive Images for Article */
.article-featured-image {
  margin-bottom: 40px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
}

.article-featured-image img,
.article-inline-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

figcaption {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  padding: 12px 16px;
  background-color: var(--bg-secondary);
  font-style: italic;
}

.article-inline-image {
  margin: 40px 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

/* Table of Contents (Oglavlenie) */
.table-of-contents {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--accent-terracotta);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  padding: 28px 36px;
  margin-bottom: 48px;
}

.toc-title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.toc-list {
  list-style: decimal inside;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toc-list li {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.toc-list a {
  color: var(--accent-terracotta);
  font-weight: 500;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.toc-list a:hover {
  color: var(--accent-terracotta-hover);
  text-decoration: underline;
}

/* Article Typography: H1-H6, P, SPAN, A */
.article-content {
  line-height: 1.8;
  font-size: 1.0625rem;
}

.article-content h1 {
  font-size: 2.5rem;
  margin: 40px 0 20px;
}

.article-content h2 {
  font-size: 2.1rem;
  margin: 38px 0 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-main);
}

.article-content h3 {
  font-size: 1.75rem;
  margin: 32px 0 16px;
  color: var(--accent-terracotta);
}

.article-content h4 {
  font-size: 1.4rem;
  margin: 28px 0 14px;
  color: var(--text-main);
}

.article-content h5 {
  font-size: 1.2rem;
  margin: 24px 0 12px;
  font-family: var(--font-body);
  font-weight: 700;
}

.article-content h6 {
  font-size: 1rem;
  margin: 20px 0 10px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-sage);
}

.article-content p {
  margin-bottom: 24px;
  color: var(--text-main);
}

.article-content span.highlight-text {
  background-color: rgba(184, 82, 51, 0.12);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
  color: var(--accent-terracotta-hover);
}

.article-content span.quote-span {
  font-style: italic;
  font-family: var(--font-heading);
  font-size: 1.2em;
  color: var(--accent-sage);
}

.article-content span.badge-inline {
  font-size: 0.75rem;
  background-color: var(--accent-sage);
  color: #FFFFFF;
  padding: 2px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  vertical-align: middle;
  margin-right: 6px;
}

/* Article Inline Links */
.article-content a.inline-link {
  color: var(--accent-terracotta);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.article-content a.inline-link:hover {
  color: var(--accent-terracotta-hover);
  background-color: rgba(184, 82, 51, 0.08);
}

/* Lists: UL & OL */
.article-content ul,
.article-content ol {
  margin: 0 0 28px 24px;
}

.article-content ul {
  list-style-type: disc;
}

.article-content ol {
  list-style-type: decimal;
}

.article-content li {
  margin-bottom: 10px;
  padding-left: 6px;
}

/* Table Styling */
.article-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 36px 0;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
  background-color: var(--bg-primary);
}

.article-table th,
.article-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
}

.article-table th {
  background-color: var(--bg-secondary);
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.article-table tbody tr:nth-child(even) {
  background-color: rgba(239, 236, 230, 0.4);
}

.article-table tbody tr:hover {
  background-color: rgba(184, 82, 51, 0.05);
}

/* Interlinking / Related Articles Block */
.related-articles-section {
  margin-top: 72px;
  padding-top: 48px;
  border-top: 2px solid var(--border-color);
}

.related-title {
  font-size: 2.2rem;
  margin-bottom: 32px;
  text-align: center;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.related-card .card-image-wrap {
  height: 160px;
}

.related-card .card-body {
  padding: 20px;
}

.related-card .card-title {
  font-size: 1.25rem;
  margin: 6px 0 10px;
}

.related-card .card-title a {
  transition: color 0.2s ease;
}

.related-card .card-title a:hover {
  color: var(--accent-terracotta);
}

/* Comments Section & Form Styling */
.comments-section,
.contact-section {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border-light);
}

.section-title-left {
  font-size: 2rem;
  margin-bottom: 24px;
}

.comments-list {
  margin-bottom: 40px;
}

.comment-item {
  background-color: var(--bg-secondary);
  padding: 20px 24px;
  border-radius: var(--radius-card);
  margin-bottom: 16px;
  border: 1px solid var(--border-light);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.comment-author {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--accent-terracotta);
}

.comment-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.comment-text {
  font-size: 0.95rem;
  color: var(--text-main);
  margin: 0;
}

.comment-form-wrapper {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.comments-form,
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-terracotta);
  box-shadow: 0 0 0 3px rgba(184, 82, 51, 0.15);
}

/* Contact Form Section Layout */
.contact-card {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-card);
  padding: 40px;
  border: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-title {
  font-size: 2.2rem;
  margin: 12px 0 16px;
}

.contact-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .article-title {
    font-size: 2.2rem;
  }
  .form-grid,
  .contact-card,
  .related-grid {
    grid-template-columns: 1fr;
  }
  .contact-card {
    padding: 24px;
  }
  .table-of-contents {
    padding: 20px;
  }
}
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-slides-container {
  display: flex;
  width: 100%;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
}
/* ==========================================================================
   WELCOME SECTION
   ========================================================================== */
.welcome-section {
  padding: 96px 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.welcome-content {
  max-width: 920px;
  margin: 0 auto;
  padding-left: 36px;
  border-left: 4px solid var(--accent-terracotta);
}

.welcome-title {
  max-width: 760px;
  margin: 0 0 24px;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--text-main);
  overflow-wrap: anywhere;
}

.welcome-text {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-muted);
}

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

  .welcome-content {
    padding-left: 20px;
  }

  .welcome-title {
    font-size: 2.35rem;
    line-height: 1.1;
  }

  .welcome-text {
    font-size: 1rem;
    line-height: 1.7;
  }
}