:root {
  color-scheme: dark;
  --bg: #050403;
  --bg-soft: #090705;
  --panel: rgba(13, 11, 9, 0.92);
  --panel-strong: rgba(17, 13, 10, 0.97);
  --border: #6c4728;
  --border-soft: rgba(122, 82, 47, 0.38);
  --gold: #d4ae72;
  --gold-light: #f0d6a5;
  --text: #e9dfd1;
  --muted: #aa9d8d;
  --ember: #9f2f1c;
  --ember-light: #e9682e;
  --page: 1680px;
  --header-height: 74px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 50% 0%, rgba(92, 46, 22, 0.08), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
}
main { flex: 1 0 auto; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, select { cursor: pointer; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

.page-width {
  width: min(var(--page), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 5000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border: 1px solid var(--gold);
  background: #080604;
  color: var(--gold-light);
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  min-height: var(--header-height);
  border-bottom: 1px solid #332419;
  background: rgba(4, 4, 3, 0.97);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 28px;
  min-height: var(--header-height);
}
.brand {
  justify-self: start;
  color: var(--gold-light);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
}
.main-navigation {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 34px;
  width: max-content;
}
.main-navigation a {
  position: relative;
  padding: 29px 0 25px;
  color: #d0c2b1;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.main-navigation a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  transform: translateX(-50%);
  background: var(--ember-light);
  box-shadow: 0 0 14px rgba(233, 104, 46, 0.72);
  transition: width 180ms ease;
}
.main-navigation a:hover,
.main-navigation a:focus-visible,
.main-navigation a.active { color: #ffc471; }
.main-navigation a:hover::after,
.main-navigation a:focus-visible::after,
.main-navigation a.active::after { width: 100%; }
.header-button {
  grid-column: 3;
  justify-self: end;
  padding: 13px 21px;
  border: 1px solid #934220;
  color: #f1deca;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.65px;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.header-button:hover,
.header-button:focus-visible {
  border-color: #bd5b2d;
  background: rgba(130, 47, 24, 0.2);
  color: #ffd19b;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--gold);
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Hero */
.news-hero {
  position: relative;
  min-height: clamp(340px, 39vw, 610px);
  overflow: hidden;
  border-bottom: 1px solid rgba(118, 76, 43, 0.42);
  background: #080604;
}
.news-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  filter: saturate(0.82) contrast(1.05);
}
.news-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 3, 2, 0.93) 0%, rgba(3, 3, 2, 0.74) 30%, rgba(3, 3, 2, 0.26) 58%, rgba(3, 3, 2, 0.42) 100%),
    linear-gradient(0deg, #050403 0%, rgba(5, 4, 3, 0.2) 40%, rgba(5, 4, 3, 0.1) 100%);
}
.news-hero__content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 58px 36px 64px;
}
.news-hero h1 {
  margin: 0;
  color: #f3dfbc;
  font-size: clamp(60px, 7.3vw, 126px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.66), 0 0 26px rgba(205, 89, 37, 0.11);
}
.news-hero p {
  width: min(660px, 100%);
  margin: 27px 0 0;
  color: #c9baaa;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.75;
}
.eyebrow {
  margin: 0 0 13px;
  color: #b87a4d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

/* News area */
.news-section {
  position: relative;
  padding: 72px 0 112px;
  background:
    linear-gradient(180deg, rgba(12, 8, 5, 0.72), rgba(5, 4, 3, 0) 250px),
    repeating-linear-gradient(90deg, transparent 0, transparent 119px, rgba(158, 105, 58, 0.016) 120px);
}
.news-section__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 580px);
  align-items: end;
  gap: 50px;
  margin-bottom: 34px;
}
.news-section__header h2,
.search-results__heading h2 {
  margin: 0;
  color: #e8d3b0;
  font-size: clamp(34px, 3vw, 52px);
  font-weight: 500;
  line-height: 1.05;
}
.news-section__intro {
  margin: 0;
  color: #9f9386;
  font-size: 15px;
  line-height: 1.8;
}

.news-tools {
  position: relative;
  z-index: 2;
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid var(--border-soft);
  background: rgba(9, 7, 5, 0.84);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18), inset 0 1px rgba(255, 255, 255, 0.018);
}
.search-field {
  position: relative;
  margin-bottom: 16px;
}
.search-field__icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-52%);
  color: #9f7956;
  font-size: 22px;
  pointer-events: none;
}
.search-field input {
  width: 100%;
  min-height: 50px;
  padding: 0 50px 0 48px;
  border: 1px solid rgba(132, 88, 50, 0.47);
  outline: none;
  background: rgba(4, 4, 3, 0.74);
  color: var(--text);
  font-size: 15px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.search-field input::placeholder { color: #776e63; }
.search-field input:focus {
  border-color: #a56a3a;
  box-shadow: 0 0 0 2px rgba(191, 103, 46, 0.1), inset 0 0 28px rgba(126, 55, 26, 0.08);
}
.search-field__clear {
  position: absolute;
  top: 50%;
  right: 11px;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #bd9c76;
  font-size: 24px;
  line-height: 1;
}
.search-field__clear:hover,
.search-field__clear:focus-visible { color: #ffd09c; }

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.category-filter {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(116, 78, 45, 0.36);
  background: rgba(16, 12, 9, 0.64);
  color: #a99b8b;
  font-size: 12px;
  letter-spacing: 0.025em;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}
.category-filter:hover,
.category-filter:focus-visible {
  border-color: rgba(177, 112, 62, 0.7);
  color: #e2c9a6;
}
.category-filter.is-active {
  border-color: #8f512d;
  background: linear-gradient(180deg, rgba(103, 43, 22, 0.5), rgba(59, 28, 17, 0.44));
  color: #efc28f;
  box-shadow: inset 0 0 18px rgba(202, 78, 31, 0.06);
}
.category-select-wrap { display: none; }
.news-status {
  min-height: 22px;
  margin: 0 2px 10px;
  color: #918577;
  font-size: 12px;
}

/* Archive accordions */
.news-archive { border-top: 1px solid rgba(121, 79, 44, 0.35); }
.year-block { border-bottom: 1px solid rgba(121, 79, 44, 0.35); }
.year-block__heading,
.month-block__heading,
.news-entry__heading { margin: 0; }
.year-block__toggle,
.month-block__toggle,
.news-entry__toggle {
  width: 100%;
  border: 0;
  text-align: left;
}
.year-block__toggle {
  display: grid;
  grid-template-columns: auto minmax(40px, 1fr) auto 18px;
  align-items: center;
  gap: 20px;
  min-height: 106px;
  padding: 0 22px;
  background: transparent;
  color: inherit;
}
.year-block__toggle:hover,
.year-block__toggle:focus-visible { background: rgba(114, 61, 29, 0.045); }
.year-block__year {
  color: #e5c99f;
  font-size: clamp(40px, 4.2vw, 68px);
  line-height: 1;
}
.year-block__line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(145, 92, 49, 0.66), rgba(145, 92, 49, 0.08));
}
.year-block__count,
.month-block__count {
  color: #7f7468;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.accordion-chevron,
.news-entry__chevron {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-right: 1px solid #b58b61;
  border-bottom: 1px solid #b58b61;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}
[aria-expanded="true"] > .accordion-chevron { transform: rotate(225deg) translate(-2px, -2px); }
.year-block__panel { padding: 0 22px 34px; }

.month-block {
  margin: 0 0 14px;
  border: 1px solid rgba(107, 71, 40, 0.35);
  background: linear-gradient(180deg, rgba(16, 12, 9, 0.65), rgba(8, 7, 5, 0.72));
}
.month-block__toggle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 18px;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  padding: 0 22px;
  background: transparent;
  color: #d7c4aa;
}
.month-block__toggle:hover,
.month-block__toggle:focus-visible { background: rgba(111, 56, 27, 0.07); }
.month-block__toggle > span:first-child {
  font-size: 22px;
  letter-spacing: 0.035em;
}
.month-block__panel { border-top: 1px solid rgba(107, 71, 40, 0.32); }

.news-entry + .news-entry { border-top: 1px solid rgba(96, 69, 48, 0.27); }
.news-entry {
  scroll-margin-top: calc(var(--header-height) + 28px);
  background: rgba(6, 5, 4, 0.28);
}
.news-entry.is-targeted {
  box-shadow: inset 3px 0 0 #9f512c, inset 0 0 42px rgba(128, 49, 22, 0.06);
}
.news-entry__toggle {
  position: relative;
  display: grid;
  grid-template-columns: 225px minmax(0, 1fr) 22px;
  grid-template-areas:
    "meta title chevron"
    "meta preview chevron";
  align-items: center;
  column-gap: 30px;
  min-height: 104px;
  padding: 18px 22px;
  background: transparent;
  color: inherit;
  transition: background 160ms ease;
}
.news-entry__toggle:hover,
.news-entry__toggle:focus-visible { background: rgba(121, 65, 34, 0.055); }
.news-entry__meta {
  grid-area: meta;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.news-entry__meta time {
  color: #d5b58a;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.news-entry__category {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 8px;
  border: 1px solid rgba(133, 83, 45, 0.42);
  background: rgba(93, 43, 22, 0.13);
  color: #9f8b76;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.news-entry__title {
  grid-area: title;
  align-self: end;
  color: #e0d2bf;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.35;
}
.news-entry__preview {
  grid-area: preview;
  align-self: start;
  margin-top: 8px;
  color: #8f8478;
  font-size: 13px;
  line-height: 1.55;
}
.news-entry__preview:empty { display: none; }
.news-entry__chevron {
  grid-area: chevron;
  justify-self: end;
}
.news-entry__toggle[aria-expanded="true"] .news-entry__chevron { transform: rotate(225deg) translate(-2px, -2px); }
.news-entry__panel { background: rgba(9, 7, 5, 0.7); }
.news-entry__content {
  margin-left: 247px;
  padding: 0 44px 24px 30px;
}
.article-nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(111, 76, 48, 0.3);
}
.article-nav__link {
  color: #b99a76;
  font-size: 12px;
  letter-spacing: 0.03em;
}
a.article-nav__link:hover,
a.article-nav__link:focus-visible { color: #efbd85; }
.article-nav__link--next { text-align: right; }
.article-nav__link.is-disabled { color: #554e46; }

/* Search result replacement */
.search-results {
  min-height: 300px;
  padding-top: 18px;
}
.search-results__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(116, 77, 43, 0.4);
}
.search-results__heading [data-result-count] {
  color: #8c8073;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.search-result {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 20px;
  gap: 28px;
  align-items: center;
  width: 100%;
  min-height: 94px;
  padding: 17px 20px;
  border: 0;
  border-bottom: 1px solid rgba(102, 72, 49, 0.28);
  background: rgba(10, 8, 6, 0.38);
  color: inherit;
  text-align: left;
}
.search-result:hover,
.search-result:focus-visible { background: rgba(116, 59, 28, 0.07); }
.search-result__meta { color: #9f876d; font-size: 11px; line-height: 1.7; text-transform: uppercase; }
.search-result__title { color: #ddcdb7; font-size: 18px; }
.search-result__arrow { color: #a76d43; font-size: 18px; text-align: right; }
.empty-state {
  padding: 70px 20px;
  text-align: center;
  color: #83796e;
}
.empty-state > span { color: #8d5c38; font-size: 32px; }
.empty-state h3 { margin: 16px 0 8px; color: #cbb69a; font-size: 24px; font-weight: 500; }
.empty-state p { margin: 0; font-size: 14px; }

/* Footer */
.site-footer {
  flex: 0 0 auto;
  border-top: 1px solid rgba(105, 71, 42, 0.42);
  background: #040403;
  color: #928679;
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(360px, 1fr);
  align-items: center;
  gap: 30px;
  min-height: 92px;
}
.footer-newsletter {
  justify-self: start;
  padding: 0;
  border: 0;
  background: none;
  color: #c8ad88;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.footer-newsletter:hover,
.footer-newsletter:focus-visible { color: #efbd84; }
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
}
.footer-links a:hover,
.footer-links a:focus-visible { color: #d7ba95; }
.footer-links span { color: #554b42; }
.footer-social-language {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}
.footer-social { display: flex; gap: 14px; font-size: 11px; }
.footer-social span[aria-disabled="true"] { color: #5f574f; cursor: default; }
.footer-language {
  padding-left: 18px;
  border-left: 1px solid #34281f;
  color: #a9947d;
  font-size: 12px;
}
.footer-separator { height: 1px; background: rgba(96, 68, 45, 0.28); }
.footer-legal { min-height: 58px; display: flex; align-items: center; justify-content: center; }
.footer-copyright {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6f665d;
  font-size: 11px;
  letter-spacing: 0.03em;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: min(360px, calc(100vw - 32px));
  max-width: min(520px, calc(100vw - 32px));
  transform: translate(-50%, 18px);
  padding: 13px 13px 13px 17px;
  border: 1px solid rgba(164, 92, 48, 0.72);
  background: rgba(8, 7, 6, 0.98);
  box-shadow: 0 0 28px rgba(192, 75, 29, 0.12), 0 18px 55px rgba(0, 0, 0, 0.5);
  color: #ddcbb5;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.toast button {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #ae8a69;
  font-size: 20px;
  line-height: 1;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:focus-visible { outline: 2px solid #c97940; outline-offset: 3px; }

@media (max-width: 1320px) {
  .main-navigation { gap: 23px; }
  .main-navigation a { font-size: 12px; }
  .header-button { padding-inline: 15px; font-size: 12px; }
}

@media (max-width: 1050px) {
  .page-width { width: min(var(--page), calc(100% - 34px)); }
  .header-inner { position: relative; display: flex; gap: 16px; }
  .brand { margin-right: auto; font-size: 23px; }
  .menu-toggle { display: block; order: 3; }
  .header-button { display: none; }
  .main-navigation {
    position: absolute;
    top: 100%;
    right: -17px;
    left: -17px;
    display: none;
    width: auto;
    padding: 9px 24px 18px;
    border-top: 1px solid #2c2018;
    border-bottom: 1px solid #3a281b;
    background: rgba(4, 4, 3, 0.995);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.38);
  }
  .main-navigation.open { display: grid; }
  .main-navigation a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    font-size: 13px;
  }
  .main-navigation a::after { display: none; }

  .news-hero__content { padding-inline: 20px; }
  .news-section { padding-top: 52px; }
  .news-section__header { grid-template-columns: 1fr; gap: 16px; }

  .category-filters { display: none; }
  .category-select-wrap { display: grid; gap: 7px; }
  .category-select-wrap label { color: #8c8073; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }
  .category-select-wrap select {
    width: 100%;
    min-height: 46px;
    padding: 0 40px 0 13px;
    border: 1px solid rgba(132, 88, 50, 0.47);
    border-radius: 0;
    background: #080604;
    color: #d4c1a8;
  }

  .news-entry__toggle {
    grid-template-columns: 175px minmax(0, 1fr) 18px;
    column-gap: 22px;
  }
  .news-entry__content { margin-left: 197px; padding-left: 22px; }

  .footer-main { grid-template-columns: 1fr auto 1fr; }
  .footer-social { display: none; }
}

@media (max-width: 760px) {
  .page-width { width: calc(100% - 24px); }
  .main-navigation { right: -12px; left: -12px; }
  .news-hero { min-height: 370px; }
  .news-hero__image { object-position: 58% center; }
  .news-hero__shade {
    background:
      linear-gradient(90deg, rgba(3, 3, 2, 0.88), rgba(3, 3, 2, 0.48)),
      linear-gradient(0deg, #050403 0%, rgba(5, 4, 3, 0.32) 48%, rgba(5, 4, 3, 0.18));
  }
  .news-hero__content { justify-content: flex-end; padding: 48px 8px 55px; }
  .news-hero h1 { font-size: clamp(54px, 18vw, 82px); }
  .news-hero p { margin-top: 20px; font-size: 15px; line-height: 1.65; }
  .news-section { padding: 38px 0 78px; }
  .news-section__header { margin-bottom: 24px; }
  .news-tools { padding: 12px; }

  .year-block__toggle {
    grid-template-columns: auto minmax(20px, 1fr) 16px;
    gap: 13px;
    min-height: 84px;
    padding-inline: 9px;
  }
  .year-block__count { display: none; }
  .year-block__panel { padding: 0 0 24px; }
  .month-block { margin-bottom: 10px; }
  .month-block__toggle { min-height: 64px; padding-inline: 14px; }
  .month-block__count { font-size: 9px; }

  .news-entry__toggle {
    grid-template-columns: minmax(0, 1fr) 18px;
    grid-template-areas:
      "meta chevron"
      "title chevron"
      "preview chevron";
    row-gap: 9px;
    min-height: 0;
    padding: 18px 15px;
  }
  .news-entry__meta { flex-direction: row; align-items: center; gap: 9px; }
  .news-entry__title { align-self: auto; font-size: 17px; }
  .news-entry__content { margin-left: 0; padding: 0 15px 19px; }
  .article-nav { gap: 10px; }
  .article-nav__link { font-size: 11px; }

  .search-result { grid-template-columns: 1fr 18px; gap: 12px; padding-inline: 14px; }
  .search-result__meta { grid-column: 1; }
  .search-result__title { grid-column: 1; font-size: 16px; }
  .search-result__arrow { grid-column: 2; grid-row: 1 / span 2; }
  .search-results__heading { align-items: flex-start; flex-direction: column; }

  /* Confirmed reduced mobile footer */
  .footer-main { display: none; }
  .footer-legal { min-height: 64px; }
  .footer-links { flex-wrap: wrap; gap: 7px; font-size: 11px; }
  .footer-copyright { min-height: 54px; text-align: center; }
}

@media (min-width: 2200px) {
  .page-width { width: min(1880px, calc(100% - 112px)); }
  .news-hero__content { padding-left: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@keyframes page-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

body {
  animation: page-in 500ms ease both;
  transition: opacity 500ms ease;
}

body.is-leaving { opacity: 0; }

@media (max-width: 1050px) {
  .footer-main { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  body { animation: none; transition: none; }
  body.is-leaving { opacity: 1; }
}


/* Full approved news copy */
.article-copy {
  max-width: 900px;
  padding: 8px 0 6px;
}
.article-copy p {
  margin: 0 0 1.05rem;
  color: #c9bdaf;
  font-size: 1rem;
  line-height: 1.8;
}
.article-copy p:last-child { margin-bottom: 0; }
@media (max-width: 680px) {
  .article-copy p { font-size: .96rem; line-height: 1.72; }
}

/* =========================================================
   YASHARIEL FINAL HEADER + FOOTER ALIGNMENT FIX
   ========================================================= */

/* ---------- HEADER ---------- */

.site-header {
    min-height: 74px !important;
}

.site-header .header-inner {
    display: grid !important;
    grid-template-columns: minmax(200px, 1fr) auto minmax(260px, 1fr) !important;
    align-items: center !important;
    gap: 24px !important;
    min-height: 74px !important;
}

.site-header .brand {
    grid-column: 1 !important;
    justify-self: start !important;
}

.site-header .main-navigation {
    grid-column: 2 !important;
    justify-self: center !important;
    align-self: center !important;
    margin: 0 !important;
}

.site-header .header-actions {
    grid-column: 3 !important;
    justify-self: end !important;
    align-self: center !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;

    gap: 22px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.site-header .header-login {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    padding: 10px 0 !important;

    color: #e5d5c1 !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 16px !important;
    line-height: 1 !important;

    text-decoration: none !important;
    white-space: nowrap !important;
}

.site-header .header-login:hover,
.site-header .header-login:focus-visible {
    color: #ffc471 !important;
}

.site-header .header-button {
    position: static !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-height: 48px !important;
    margin: 0 !important;
    padding: 0 24px !important;

    border: 1px solid #934220 !important;
    background: rgba(10, 7, 5, 0.55) !important;

    color: #f1deca !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 15px !important;
    line-height: 1 !important;
    letter-spacing: .7px !important;

    text-decoration: none !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;

    transform: none !important;
    inset: auto !important;
}

.site-header .header-button:hover,
.site-header .header-button:focus-visible {
    border-color: #c46330 !important;
    background: rgba(130, 47, 24, .20) !important;
}


/* ---------- DESKTOP FOOTER ---------- */

.integrated-site-footer {
    width: 100% !important;
    margin-top: auto !important;

    border-top: 1px solid rgba(177, 128, 72, .28) !important;
    background: #050403 !important;

    color: #c8c0b6 !important;
    font-size: 14px !important;
}

.integrated-site-footer .isf-top {
    width: 100% !important;

    display: grid !important;
    grid-template-columns:
        minmax(420px, 1.25fr)
        minmax(300px, auto)
        minmax(420px, 1.25fr) !important;

    align-items: center !important;
    gap: 40px !important;

    padding: 28px clamp(32px, 5vw, 96px) !important;
}

.integrated-site-footer .isf-title {
    margin: 0 0 9px !important;

    color: #dfc5a3 !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 14px !important;
    line-height: 1.2 !important;

    letter-spacing: .08em !important;
    text-transform: uppercase !important;
}

.integrated-site-footer .isf-newsletter {
    display: flex !important;
    align-items: stretch !important;

    width: min(100%, 430px) !important;
    height: 42px !important;

    margin: 0 !important;
}

.integrated-site-footer .isf-newsletter input {
    flex: 1 1 auto !important;
    min-width: 0 !important;

    height: 42px !important;
    margin: 0 !important;
    padding: 0 14px !important;

    border: 1px solid #493224 !important;
    border-right: 0 !important;

    background: #0c0907 !important;
    color: #eee0ce !important;

    font-size: 14px !important;
}

.integrated-site-footer .isf-newsletter button {
    flex: 0 0 auto !important;

    height: 42px !important;
    margin: 0 !important;
    padding: 0 18px !important;

    border: 1px solid #7d4b2c !important;
    background: #16100c !important;
    color: #d8b188 !important;

    font-size: 12px !important;
    line-height: 1 !important;

    text-transform: uppercase !important;
    letter-spacing: .06em !important;
}

.integrated-site-footer .isf-links {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 24px !important;

    margin: 0 !important;
    padding: 0 !important;

    white-space: nowrap !important;
}

.integrated-site-footer .isf-right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;

    gap: 28px !important;

    margin: 0 !important;
    padding: 0 !important;

    text-align: right !important;
}

.integrated-site-footer .isf-social {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;

    gap: 20px !important;

    margin: 0 !important;
    padding: 0 !important;

    white-space: nowrap !important;
}

.integrated-site-footer .isf-language {
    display: inline-block !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #d2b27e !important;

    white-space: nowrap !important;
}

.integrated-site-footer .isf-links a,
.integrated-site-footer .isf-social span,
.integrated-site-footer .isf-social a,
.integrated-site-footer .isf-language {
    font-size: 12px !important;
    line-height: 1.3 !important;
}


/* ---------- LEGAL FOOTER: EINE LINIE ---------- */

.integrated-site-footer .isf-bottom {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 18px !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 15px clamp(32px, 5vw, 96px) 17px !important;

    border-top: 1px solid rgba(177, 128, 72, .18) !important;

    font-size: 11px !important;
    line-height: 1.4 !important;

    text-align: center !important;
}

.integrated-site-footer .isf-legal {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 10px !important;

    margin: 0 !important;
    padding: 0 !important;

    white-space: nowrap !important;
}

.integrated-site-footer .isf-copyright {
    margin: 0 !important;
    padding: 0 !important;

    white-space: nowrap !important;
}


/* ---------- KLEINERE DESKTOPS ---------- */

@media (max-width: 1450px) {

    .site-header .header-inner {
        grid-template-columns: minmax(170px, .8fr) auto minmax(230px, .8fr) !important;
        gap: 18px !important;
    }

    .site-header .main-navigation {
        gap: 24px !important;
    }

    .site-header .main-navigation a {
        font-size: 12px !important;
    }

    .site-header .header-actions {
        gap: 14px !important;
    }

    .site-header .header-login {
        font-size: 14px !important;
    }

    .site-header .header-button {
        min-height: 42px !important;
        padding: 0 16px !important;
        font-size: 12px !important;
    }

    .integrated-site-footer .isf-top {
        grid-template-columns: minmax(350px, 1fr) auto minmax(350px, 1fr) !important;
        gap: 26px !important;
    }
}


/* ---------- TABLET / MOBILE ---------- */

@media (max-width: 1050px) {

    .site-header .header-inner {
        display: flex !important;
        align-items: center !important;
    }

    .site-header .brand {
        margin-right: auto !important;
    }

    .site-header .header-actions {
        display: none !important;
    }

    .site-header .menu-toggle {
        display: block !important;
        margin-left: auto !important;
    }

    .site-header .main-navigation {
        position: absolute !important;

        top: 100% !important;
        left: 0 !important;
        right: 0 !important;

        display: none !important;
        width: 100% !important;

        padding: 10px 24px 18px !important;

        background: rgba(4, 4, 3, .99) !important;
    }

    .site-header .main-navigation.open,
    .site-header .main-navigation.is-open {
        display: grid !important;
    }

    .integrated-site-footer .isf-top {
        display: none !important;
    }

    .integrated-site-footer .isf-bottom {
        display: flex !important;
        flex-direction: column !important;

        gap: 12px !important;

        padding: 20px 18px !important;
    }

    .integrated-site-footer .isf-legal {
        flex-wrap: wrap !important;
    }
}


/* ---------- REDUCED MOTION ---------- */

@media (prefers-reduced-motion: reduce) {
    .site-header *,
    .integrated-site-footer * {
        transition: none !important;
    }
}

/* =========================================================
   END YASHARIEL FINAL HEADER + FOOTER ALIGNMENT FIX
   ========================================================= */


/* ============================================================
   YASHARIEL HEADER + FOOTER FINAL FIX
   ============================================================ */

/* ---------- HEADER ---------- */

.site-header {
    width: 100%;
    min-height: 94px !important;
    background: rgba(2, 2, 2, .97) !important;
    border-bottom: 1px solid rgba(164, 101, 49, .28);
}

.site-header .header-inner {
    width: 100% !important;
    max-width: none !important;

    display: grid !important;
    grid-template-columns:
        minmax(260px, 1fr)
        auto
        minmax(360px, 1fr) !important;

    align-items: center !important;

    min-height: 94px !important;

    padding-left: clamp(22px, 2.5vw, 58px) !important;
    padding-right: clamp(22px, 2.5vw, 42px) !important;

    gap: 30px !important;
}

.site-header .brand {
    justify-self: start !important;
    margin: 0 !important;
}

.site-header .main-navigation {
    justify-self: center !important;

    display: flex !important;
    align-items: center !important;

    gap: clamp(25px, 2.3vw, 52px) !important;

    margin: 0 !important;
    padding: 0 !important;
}

.site-header .main-navigation a {
    white-space: nowrap !important;
}


/* ---------- RIGHT HEADER AREA ---------- */

.site-header .header-actions {
    justify-self: end !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;

    gap: 26px !important;

    margin: 0 !important;
    padding: 0 !important;
}

.site-header .header-login {
    position: static !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-height: 52px !important;

    margin: 0 !important;
    padding: 0 19px !important;

    border: 1px solid rgba(145, 102, 55, .45) !important;
    background:
        linear-gradient(
            180deg,
            rgba(36, 27, 18, .48),
            rgba(10, 8, 6, .68)
        ) !important;

    color: #dfc7a4 !important;

    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 15px !important;
    letter-spacing: .11em !important;
    line-height: 1 !important;

    text-decoration: none !important;
    text-transform: uppercase !important;

    white-space: nowrap !important;

    transition:
        border-color .25s ease,
        color .25s ease,
        background .25s ease,
        box-shadow .25s ease !important;
}

.site-header .header-login:hover,
.site-header .header-login:focus-visible {
    color: #f5d8aa !important;
    border-color: rgba(206, 130, 66, .8) !important;

    background:
        linear-gradient(
            180deg,
            rgba(64, 38, 20, .58),
            rgba(15, 9, 6, .82)
        ) !important;

    box-shadow:
        0 0 18px rgba(177, 72, 25, .12),
        inset 0 0 14px rgba(198, 117, 55, .04) !important;
}

.site-header .header-button {
    position: static !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-height: 60px !important;

    margin: 0 !important;
    padding: 0 30px !important;

    border: 1px solid #8d3519 !important;

    background:
        linear-gradient(
            180deg,
            rgba(35, 16, 10, .35),
            rgba(5, 4, 3, .78)
        ) !important;

    color: #f1dec7 !important;

    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 15px !important;
    letter-spacing: .09em !important;
    line-height: 1 !important;

    text-transform: uppercase !important;
    text-decoration: none !important;

    white-space: nowrap !important;

    inset: auto !important;
    transform: none !important;

    transition:
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease !important;
}

.site-header .header-button:hover,
.site-header .header-button:focus-visible {
    border-color: #c35b29 !important;

    background:
        linear-gradient(
            180deg,
            rgba(95, 35, 16, .35),
            rgba(12, 6, 4, .88)
        ) !important;

    box-shadow:
        0 0 24px rgba(185, 67, 25, .12) !important;
}


/* ============================================================
   FOOTER
   ============================================================ */

.integrated-site-footer {
    width: 100% !important;
    max-width: none !important;

    margin-top: auto !important;

    background:
        linear-gradient(
            180deg,
            rgba(8, 7, 6, .98),
            #030303
        ) !important;

    border-top:
        1px solid rgba(162, 110, 59, .28) !important;

    color: #bdb4aa !important;
}


/* ---------- MAIN FOOTER ROW ---------- */

.integrated-site-footer .isf-top {
    width: 100% !important;

    display: grid !important;
    grid-template-columns:
        minmax(390px, 1.2fr)
        auto
        minmax(390px, 1.2fr) !important;

    align-items: center !important;

    gap: 48px !important;

    padding:
        28px
        clamp(34px, 5vw, 110px) !important;
}


/* NEWSLETTER LEFT */

.integrated-site-footer .isf-newsletter-wrap {
    justify-self: start !important;
}

.integrated-site-footer .isf-title {
    margin: 0 0 8px !important;

    color: #d6bb96 !important;

    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 13px !important;
    letter-spacing: .08em !important;
    line-height: 1.2 !important;

    text-transform: uppercase !important;
}

.integrated-site-footer .isf-newsletter {
    display: flex !important;
    align-items: stretch !important;

    width: 400px !important;
    max-width: 100% !important;

    height: 40px !important;

    margin: 0 !important;
}

.integrated-site-footer .isf-newsletter input {
    flex: 1 !important;
    min-width: 0 !important;

    margin: 0 !important;
    padding: 0 14px !important;

    border: 1px solid #413126 !important;
    border-right: 0 !important;

    background: #0b0908 !important;
    color: #e3d9cb !important;

    font-size: 13px !important;
}

.integrated-site-footer .isf-newsletter button {
    flex: 0 0 auto !important;

    margin: 0 !important;
    padding: 0 18px !important;

    border: 1px solid #764529 !important;

    background: #17100c !important;

    color: #d4aa7d !important;

    font-size: 11px !important;
    letter-spacing: .06em !important;

    text-transform: uppercase !important;
}


/* CENTER */

.integrated-site-footer .isf-links {
    justify-self: center !important;

    display: flex !important;
    align-items: center !important;

    gap: 26px !important;

    margin: 0 !important;
    padding: 0 !important;

    white-space: nowrap !important;
}


/* RIGHT */

.integrated-site-footer .isf-right {
    justify-self: end !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;

    gap: 27px !important;

    margin: 0 !important;
    padding: 0 !important;
}

.integrated-site-footer .isf-social {
    display: flex !important;
    align-items: center !important;

    gap: 20px !important;

    margin: 0 !important;
    padding: 0 !important;

    white-space: nowrap !important;
}

.integrated-site-footer .isf-language {
    margin: 0 !important;

    color: #c9a978 !important;

    white-space: nowrap !important;
}


/* SMALL FOOTER TYPOGRAPHY */

.integrated-site-footer a,
.integrated-site-footer span {
    font-size: 12px !important;
}


/* ============================================================
   LEGAL ROW — ONE SINGLE LINE
   ============================================================ */

.integrated-site-footer .isf-bottom {
    width: 100% !important;

    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 20px !important;

    margin: 0 !important;

    padding:
        14px
        clamp(30px, 5vw, 110px)
        16px !important;

    border-top:
        1px solid rgba(162, 110, 59, .14) !important;

    font-size: 11px !important;
    line-height: 1.3 !important;
}

.integrated-site-footer .isf-legal {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;

    gap: 11px !important;

    margin: 0 !important;
    padding: 0 !important;

    white-space: nowrap !important;
}

.integrated-site-footer .isf-copyright {
    display: inline-block !important;

    margin: 0 !important;
    padding: 0 !important;

    white-space: nowrap !important;
}


/* ============================================================
   1440PX
   ============================================================ */

@media (max-width: 1500px) {

    .site-header .header-inner {
        grid-template-columns:
            minmax(210px, .75fr)
            auto
            minmax(300px, .75fr) !important;

        gap: 20px !important;
    }

    .site-header .main-navigation {
        gap: 28px !important;
    }

    .site-header .main-navigation a {
        font-size: 12px !important;
    }

    .site-header .header-actions {
        gap: 14px !important;
    }

    .site-header .header-login {
        min-height: 46px !important;
        padding: 0 14px !important;
        font-size: 12px !important;
    }

    .site-header .header-button {
        min-height: 52px !important;
        padding: 0 20px !important;
        font-size: 12px !important;
    }

    .integrated-site-footer .isf-top {
        grid-template-columns:
            minmax(330px, 1fr)
            auto
            minmax(330px, 1fr) !important;

        gap: 28px !important;
    }
}


/* ============================================================
   MOBILE / TABLET
   ============================================================ */

@media (max-width: 1050px) {

    .site-header .header-inner {
        display: flex !important;
        align-items: center !important;

        min-height: 72px !important;
    }

    .site-header .brand {
        margin-right: auto !important;
    }

    .site-header .header-actions {
        display: none !important;
    }

    .site-header .main-navigation {
        position: absolute !important;

        top: 100% !important;
        left: 0 !important;
        right: 0 !important;

        display: none !important;

        width: 100% !important;

        padding: 15px 24px 22px !important;

        background: rgba(3, 3, 3, .99) !important;
    }

    .site-header .main-navigation.open,
    .site-header .main-navigation.is-open {
        display: grid !important;
    }

    /* bestätigt:
       Mobile Footer nur Legal + Copyright */

    .integrated-site-footer .isf-top {
        display: none !important;
    }

    .integrated-site-footer .isf-bottom {
        flex-direction: column !important;

        gap: 11px !important;

        padding: 19px 16px !important;
    }

    .integrated-site-footer .isf-legal {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    .site-header *,
    .integrated-site-footer * {
        transition: none !important;
        animation: none !important;
    }
}

/* ============================================================
   END HEADER + FOOTER FIX
   ============================================================ */

