@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.1rem;
  line-height: 1.75;
  color: #333333;
  background-color: #FAF8F5;
  -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;
  transition: color 0.3s ease;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

table {
  border-collapse: collapse;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  font-weight: 700;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #2C3E50;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #2C3E50;
}

h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.4rem;
  color: #2C3E50;
}

h4 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.15rem;
  color: #2C3E50;
}

p {
  margin-bottom: 1.2em;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FAF8F5;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader .spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(44, 62, 80, 0.15);
  border-top-color: #8B6914;
  border-radius: 50%;
  animation: loaderSpin 0.8s linear infinite;
}

#page-loader.loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(26, 26, 46, 0.97);
  color: #f0f0f0;
  padding: 20px 0;
  z-index: 8000;
  backdrop-filter: blur(8px);
  transform: translateY(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

#cookie-banner.cookie-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

#cookie-banner .cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

#cookie-banner .cookie-text {
  flex: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
}

#cookie-banner .cookie-text a {
  color: #8B6914;
  text-decoration: underline;
}

#cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

#cookie-banner .cookie-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
}

#cookie-banner .cookie-btn:active {
  transform: scale(0.96);
}

#cookie-banner .cookie-accept {
  background: #8B6914;
  color: #fff;
}

#cookie-banner .cookie-accept:hover {
  background: #a47d1a;
}

#cookie-banner .cookie-reject {
  background: transparent;
  color: #f0f0f0;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

#cookie-banner .cookie-reject:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5000;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44, 62, 80, 0.06);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #2C3E50;
  letter-spacing: -0.02em;
}

.site-logo span {
  color: #8B6914;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #2C3E50;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #8B6914;
  transition: width 0.3s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
}

.desktop-nav a:hover {
  color: #8B6914;
}

.desktop-nav a.active {
  color: #8B6914;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #2C3E50;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-dropdown-toggle:hover {
  color: #8B6914;
}

.nav-dropdown-toggle svg {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}

.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: #333;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown-menu a:hover {
  background: rgba(139, 105, 20, 0.06);
  color: #8B6914;
}

.nav-dropdown-menu a::after {
  display: none;
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 6000;
}

.burger-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background: #2C3E50;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger-menu span:nth-child(1) {
  margin-bottom: 6px;
}

.burger-menu span:nth-child(3) {
  margin-top: 6px;
}

.burger-menu.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: #fff;
  z-index: 5500;
  padding: 90px 30px 40px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #2C3E50;
  padding: 14px 0;
  border-bottom: 1px solid rgba(44, 62, 80, 0.08);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: #8B6914;
  padding-left: 8px;
}

.mobile-nav-dropdown-items {
  padding-left: 16px;
}

.mobile-nav-dropdown-items a {
  font-size: 1rem;
  color: #555;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 5400;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.7) 0%, rgba(139, 105, 20, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 60px 20px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  color: #fff;
  font-size: 3.2rem;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  opacity: 0.92;
  margin-bottom: 28px;
}

.hero-content .btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 36px;
  background: #8B6914;
  color: #fff;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.hero-content .btn:hover {
  background: #a47d1a;
  transform: translateY(-2px);
}

.hero-small {
  min-height: 320px;
}

.hero-small .hero-content h1 {
  font-size: 2.4rem;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  margin-bottom: 12px;
}

.section-title p {
  font-size: 1.1rem;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.articles-grid .card:nth-child(1) {
  grid-column: span 2;
}

.articles-grid .card:nth-child(4) {
  grid-column: span 2;
}

.card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.card-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

.card-category {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8B6914;
  margin-bottom: 8px;
  display: inline-block;
}

.card-body h3 {
  margin-bottom: 10px;
}

.card-body h3 a {
  color: #2C3E50;
  transition: color 0.3s ease;
}

.card-body h3 a:hover {
  color: #8B6914;
}

.card-body p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 16px;
}

.card-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: #999;
  display: flex;
  align-items: center;
  gap: 16px;
}

.article-page {
  padding: 48px 0 80px;
}

.article-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.article-toc {
  position: sticky;
  top: 100px;
  align-self: start;
}

.article-toc-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 16px;
}

.article-toc ul {
  border-left: 2px solid rgba(44, 62, 80, 0.1);
}

.article-toc li {
  margin-bottom: 2px;
}

.article-toc a {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: #666;
  padding: 6px 16px;
  border-left: 2px solid transparent;
  margin-left: -2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.article-toc a:hover,
.article-toc a.active {
  color: #8B6914;
  border-left-color: #8B6914;
}

.article-content {
  max-width: 780px;
}

.article-content h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.article-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-content p:first-of-type::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 3.6em;
  float: left;
  line-height: 0.8;
  margin-right: 10px;
  margin-top: 6px;
  color: #2C3E50;
  font-weight: 700;
}

.article-content h2 {
  margin-top: 48px;
  margin-bottom: 18px;
  padding-top: 20px;
}

.article-content h3 {
  margin-top: 32px;
  margin-bottom: 14px;
}

.article-content img {
  border-radius: 10px;
  margin: 32px 0;
  width: 100%;
  object-fit: cover;
}

.article-content ul,
.article-content ol {
  margin: 20px 0;
  padding-left: 28px;
}

.article-content ul {
  list-style: disc;
}

.article-content ol {
  list-style: decimal;
}

.article-content li {
  margin-bottom: 8px;
}

.article-content a {
  color: #8B6914;
  text-decoration: underline;
  text-decoration-color: rgba(139, 105, 20, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.3s ease;
}

.article-content a:hover {
  text-decoration-color: #8B6914;
}

blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 4px solid #C0392B;
  background: rgba(192, 57, 43, 0.04);
  border-radius: 0 8px 8px 0;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: #444;
  line-height: 1.8;
}

blockquote cite {
  display: block;
  margin-top: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-style: normal;
  color: #888;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.split-image {
  border-radius: 12px;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.split-text h2 {
  margin-bottom: 16px;
}

.split-text p {
  color: #555;
}

.breadcrumbs {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: #999;
  padding: 16px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.breadcrumbs a {
  color: #666;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: #8B6914;
}

.breadcrumbs .separator {
  color: #ccc;
  margin: 0 2px;
}

.breadcrumbs .current {
  color: #2C3E50;
  font-weight: 500;
}

.site-footer {
  background: #1a1a2e;
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 48px;
}

.footer-brand .site-logo {
  color: #fff;
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #8B6914;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  position: relative;
  margin-bottom: 32px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 0;
  font-size: 1rem;
  color: #333;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(44, 62, 80, 0.15);
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group label {
  position: absolute;
  top: 14px;
  left: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: #999;
  pointer-events: none;
  transition: top 0.3s ease, font-size 0.3s ease, color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: #8B6914;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  font-size: 0.78rem;
  color: #8B6914;
}

.form-submit {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 48px;
  background: #2C3E50;
  color: #fff;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.form-submit:hover {
  background: #3d566e;
  transform: translateY(-2px);
}

.btn-primary {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 36px;
  background: #8B6914;
  color: #fff;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background: #a47d1a;
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 32px;
  background: transparent;
  color: #2C3E50;
  border: 2px solid #2C3E50;
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-outline:hover {
  background: #2C3E50;
  color: #fff;
  transform: translateY(-2px);
}

#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: #2C3E50;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
  z-index: 3000;
  cursor: pointer;
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top:hover {
  background: #8B6914;
}

img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.4s ease;
}

img[loading="lazy"].loaded,
img.loaded {
  opacity: 1;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  font-family: 'DM Sans', sans-serif;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #666;
  transition: background 0.3s ease, color 0.3s ease;
}

.pagination a:hover {
  background: rgba(139, 105, 20, 0.08);
  color: #8B6914;
}

.pagination .active {
  background: #2C3E50;
  color: #fff;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }

  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .articles-grid .card:nth-child(1) {
    grid-column: span 2;
  }

  .articles-grid .card:nth-child(4) {
    grid-column: span 1;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .article-toc {
    position: relative;
    top: auto;
    margin-bottom: 32px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 1rem;
  }

  h1 {
    font-size: 1.9rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .desktop-nav {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .header-inner {
    height: 62px;
  }

  .hero {
    min-height: 380px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1.05rem;
  }

  .hero-small {
    min-height: 240px;
  }

  .hero-small .hero-content h1 {
    font-size: 1.8rem;
  }

  .section {
    padding: 48px 0;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .articles-grid .card:nth-child(1),
  .articles-grid .card:nth-child(4) {
    grid-column: span 1;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .split-section.reverse {
    direction: ltr;
  }

  .article-content h1 {
    font-size: 2rem;
  }

  .article-content p:first-of-type::first-letter {
    font-size: 3em;
  }

  blockquote {
    padding: 20px;
    margin: 24px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  #cookie-banner .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  #back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }

  .contact-form {
    padding: 0 10px;
  }

  .form-submit {
    width: 100%;
  }
}

.section-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-hero {
  background: #2C3E50;
  padding: 64px 0 48px;
  text-align: center;
}

.page-hero h1 {
  color: #fff;
  font-size: 2.6rem;
}

.article-header {
  padding: 32px 0 24px;
  text-align: center;
}

.article-subtitle {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.15rem;
  color: #666;
  margin-top: 8px;
  margin-bottom: 16px;
}

.article-hero {
  margin: 0 auto 40px;
  max-width: 1000px;
  padding: 0 20px;
}

.article-hero img,
.article-figure img,
.article-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.article-hero figcaption,
.article-figure figcaption,
.article-image figcaption {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: #888;
  margin-top: 10px;
  text-align: center;
}

.article-body,
.article-content .section-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

.article-section {
  margin-bottom: 40px;
}

.article-figure,
.article-image {
  margin: 32px 0;
}

.breadcrumb {
  padding: 16px 0;
}

.breadcrumb ul,
.breadcrumb ol,
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: #999;
  padding: 0;
  margin: 0;
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  color: #ccc;
}

.breadcrumb a {
  color: #666;
}

.breadcrumb a:hover {
  color: #8B6914;
}

.breadcrumb li[aria-current="page"] {
  color: #2C3E50;
  font-weight: 500;
}

.about-detail-section {
  padding: 64px 0;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-image-wrapper img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.contact-section {
  padding: 64px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-block {
  padding: 32px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-info-block h3 {
  margin-bottom: 16px;
}

.contact-info-block p {
  font-size: 1rem;
  color: #555;
}

.related-articles,
.external-references,
.article-references {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(44, 62, 80, 0.1);
}

.related-articles ul,
.external-references ul,
.article-references ul {
  list-style: none;
  padding: 0;
}

.related-articles li,
.external-references li,
.article-references li {
  margin-bottom: 8px;
}

.related-articles a,
.external-references a,
.article-references a {
  color: #8B6914;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section .hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-section .hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.7) 0%, rgba(139, 105, 20, 0.4) 100%);
}

.hero-section .hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 60px 20px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.hero-section .hero-content h1 {
  color: #fff;
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 20px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  margin-top: 28px;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .about-split {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.6rem;
  }

  .hero-content h1 {
    font-size: 1.7rem;
  }

  .hero-content .btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }

  .card-body {
    padding: 18px;
  }

  .site-logo {
    font-size: 1.35rem;
  }
}
