@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lora:ital,wght@0,400;0,500;1,400&family=Raleway:wght@300;400;500;600;700&family=Nunito+Sans:wght@300;400;600;700&display=swap');

:root {
  --bg: #f2ede3;
  --bg-dark: #e5dfd2;
  --header-bg: #162c0c;
  --primary: #24490e;
  --secondary: #3d6b28;
  --accent: #7faa36;
  --gold: #9a6e1f;
  --gold-light: #c49437;
  --text: #1a2614;
  --text-mid: #3d4f35;
  --text-light: #6b7d60;
  --white: #ffffff;
  --card-bg: #faf8f4;
  --border: #c8c0ac;
  --border-light: #e0d8c8;
  --shadow-sm: 0 2px 8px rgba(22,44,12,0.10);
  --shadow: 0 4px 18px rgba(22,44,12,0.14);
  --shadow-lg: 0 10px 36px rgba(22,44,12,0.18);
  --ff-head: 'Playfair Display', Georgia, serif;
  --ff-body: 'Lora', Georgia, serif;
  --ff-nav: 'Raleway', sans-serif;
  --ff-sans: 'Nunito Sans', sans-serif;
  --max-w: 1160px;
  --hdr: 70px;
  --radius: 4px;
  --radius-lg: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--secondary); text-decoration: none; transition: color .22s; }
a:hover { color: var(--accent); }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* PAGE LOADER */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--header-bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.loader-leaf {
  width: 52px; height: 52px;
  border: 3px solid rgba(127,170,54,.3);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin .9s linear infinite;
}
.loader-inner span {
  font-family: var(--ff-nav);
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(127,170,54,.7);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* HEADER */
#site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--hdr);
  background: var(--header-bg);
  border-bottom: 1px solid rgba(127,170,54,.18);
  transition: box-shadow .3s;
}
#site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.35); }

.hdr-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 16px;
}

.site-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 22px; height: 22px; fill: #fff; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--ff-nav);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .06em;
  color: #fff;
  text-transform: uppercase;
}
.logo-tagline {
  font-family: var(--ff-sans);
  font-size: .67rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: .85;
}

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  font-family: var(--ff-nav);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color .22s, background .22s;
}
.main-nav a:hover, .main-nav a.active { color: var(--accent); background: rgba(127,170,54,.1); }

.nav-articles-toggle {
  font-family: var(--ff-nav);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  padding: 6px 12px;
  border-radius: var(--radius);
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  transition: color .22s, background .22s;
  position: relative;
}
.nav-articles-toggle:hover { color: var(--accent); background: rgba(127,170,54,.1); }
.nav-articles-toggle svg { width: 12px; height: 12px; fill: currentColor; transition: transform .22s; }
.nav-articles-toggle.open svg { transform: rotate(180deg); }

.articles-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 240px;
  background: var(--header-bg);
  border: 1px solid rgba(127,170,54,.22);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .22s, visibility .22s, transform .22s;
  z-index: 200;
}
.articles-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.articles-dropdown a {
  display: block;
  padding: 12px 18px;
  font-family: var(--ff-sans);
  font-size: .84rem;
  color: rgba(255,255,255,.78);
  border-bottom: 1px solid rgba(127,170,54,.12);
  transition: background .18s, color .18s;
}
.articles-dropdown a:last-child { border-bottom: none; }
.articles-dropdown a:hover { background: rgba(127,170,54,.12); color: var(--accent); }

.nav-articles-wrap { position: relative; }

.burger-btn {
  display: none;
  flex-direction: column; gap: 5px;
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  border-radius: var(--radius);
  transition: background .22s;
}
.burger-btn:hover { background: rgba(127,170,54,.12); }
.burger-btn span {
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
  display: block;
}
.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--hdr);
  left: 0; right: 0;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(127,170,54,.2);
  box-shadow: var(--shadow-lg);
  z-index: 99;
  padding: 16px 0;
  opacity: 0; visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .28s, visibility .28s, transform .28s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a {
  display: block;
  padding: 11px 28px;
  font-family: var(--ff-nav);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(127,170,54,.1);
  transition: background .18s, color .18s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { background: rgba(127,170,54,.1); color: var(--accent); }
.mobile-menu .mobile-articles-label {
  padding: 11px 28px 4px;
  font-family: var(--ff-sans);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: .8;
}

/* MAIN CONTENT OFFSET */
main { padding-top: var(--hdr); }

/* HERO */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--header-bg);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(22,44,12,.18) 0%,
    rgba(22,44,12,.38) 40%,
    rgba(22,44,12,.82) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 64px 0 72px;
  max-width: 760px;
}
.hero-kicker {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(127,170,54,.15);
  border: 1px solid rgba(127,170,54,.38);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.18;
  color: #fff;
  margin-bottom: 18px;
}
.hero-desc {
  font-family: var(--ff-sans);
  font-size: 1.06rem;
  line-height: 1.68;
  color: rgba(255,255,255,.84);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-meta {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.hero-meta span {
  font-family: var(--ff-sans);
  font-size: .78rem;
  color: rgba(255,255,255,.62);
  letter-spacing: .05em;
  display: flex; align-items: center; gap: 6px;
}
.hero-meta svg { width: 14px; height: 14px; fill: var(--accent); flex-shrink: 0; }

/* SECTION HEADERS */
.section-label {
  font-family: var(--ff-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
}
.section-label::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--accent);
}
.section-title {
  font-family: var(--ff-head);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.22;
  margin-bottom: 14px;
}
.section-intro {
  font-family: var(--ff-sans);
  font-size: .98rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.72;
}
.section-header { margin-bottom: 42px; }

/* ARTICLES GRID SECTION */
.articles-section { padding: 80px 0; }

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.article-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .28s, box-shadow .28s;
  display: flex; flex-direction: column;
}
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.article-card:hover .card-img-wrap img { transform: scale(1.06); }
.card-category {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--ff-sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--secondary);
  padding: 4px 10px;
  border-radius: 20px;
}
.card-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.card-meta {
  font-family: var(--ff-sans);
  font-size: .74rem;
  color: var(--text-light);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 14px;
}
.card-meta svg { width: 12px; height: 12px; fill: var(--accent); }
.card-title {
  font-family: var(--ff-head);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.32;
  margin-bottom: 10px;
  transition: color .22s;
}
.article-card:hover .card-title { color: var(--secondary); }
.card-excerpt {
  font-family: var(--ff-sans);
  font-size: .86rem;
  color: var(--text-mid);
  line-height: 1.66;
  flex: 1;
  margin-bottom: 18px;
}
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ff-nav);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--secondary);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  align-self: flex-start;
  transition: color .22s, gap .22s;
}
.card-link:hover { color: var(--accent); gap: 10px; }
.card-link svg { width: 14px; height: 14px; fill: currentColor; }

/* HIGHLIGHT STRIP */
.highlight-strip {
  background: var(--primary);
  padding: 56px 0;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.highlight-item {
  padding: 32px 28px;
  background: rgba(255,255,255,.04);
  border-right: 1px solid rgba(127,170,54,.16);
  text-align: center;
}
.highlight-item:last-child { border-right: none; }
.hl-number {
  font-family: var(--ff-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.hl-label {
  font-family: var(--ff-sans);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}

/* SPLIT FEATURE */
.split-feature {
  padding: 90px 0;
  background: var(--bg-dark);
}
.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-inner.reversed .split-text { order: 2; }
.split-inner.reversed .split-visual { order: 1; }
.split-text {}
.split-visual {
  position: relative;
}
.split-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-img-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.split-img-badge {
  position: absolute;
  bottom: 20px; right: 20px;
  background: var(--header-bg);
  border: 1px solid rgba(127,170,54,.3);
  border-radius: var(--radius-lg);
  padding: 12px 18px;
  font-family: var(--ff-sans);
  font-size: .76rem;
  color: rgba(255,255,255,.8);
  text-align: center;
}
.split-img-badge strong {
  display: block;
  font-size: 1.3rem;
  color: var(--accent);
  font-family: var(--ff-head);
  line-height: 1.1;
}
.split-text .section-title { font-size: clamp(1.5rem, 2.5vw, 2.1rem); }
.split-body {
  font-family: var(--ff-body);
  font-size: .96rem;
  color: var(--text-mid);
  line-height: 1.78;
  margin-bottom: 24px;
}
.split-facts {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 28px;
}
.fact-tag {
  font-family: var(--ff-sans);
  font-size: .76rem;
  font-weight: 600;
  color: var(--secondary);
  background: rgba(61,107,40,.1);
  border: 1px solid rgba(61,107,40,.22);
  padding: 5px 12px;
  border-radius: 20px;
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-nav);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--secondary);
  border: 1.5px solid var(--secondary);
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: background .22s, color .22s;
}
.btn-outline:hover { background: var(--secondary); color: #fff; }
.btn-outline svg { width: 15px; height: 15px; fill: currentColor; }

/* FOOTER */
#site-footer {
  background: var(--header-bg);
  border-top: 1px solid rgba(127,170,54,.15);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(127,170,54,.15);
}
.footer-brand .logo-name { font-size: .92rem; }
.footer-brand .logo-tagline { opacity: .6; }
.footer-desc {
  font-family: var(--ff-sans);
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  line-height: 1.68;
  margin-top: 14px;
  margin-bottom: 20px;
}
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 8px;
  font-family: var(--ff-sans);
  font-size: .78rem;
  color: rgba(255,255,255,.52);
  margin-bottom: 7px;
}
.footer-contact-item svg { width: 13px; height: 13px; fill: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.52); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-col-title {
  font-family: var(--ff-nav);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  font-family: var(--ff-sans);
  font-size: .82rem;
  color: rgba(255,255,255,.54);
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
  padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy {
  font-family: var(--ff-sans);
  font-size: .76rem;
  color: rgba(255,255,255,.36);
}
.footer-legal {
  display: flex; gap: 18px;
}
.footer-legal a {
  font-family: var(--ff-sans);
  font-size: .76rem;
  color: rgba(255,255,255,.36);
}
.footer-legal a:hover { color: var(--accent); }

/* COOKIE BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(22,44,12,.97);
  border-top: 1px solid rgba(127,170,54,.25);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform .38s ease;
}
#cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.cookie-text {
  font-family: var(--ff-sans);
  font-size: .84rem;
  color: rgba(255,255,255,.76);
  line-height: 1.6;
  flex: 1; min-width: 220px;
}
.cookie-text a { color: var(--accent); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  font-family: var(--ff-nav);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: background .22s, color .22s;
}
.cookie-btn.accept {
  background: var(--accent);
  color: var(--header-bg);
}
.cookie-btn.accept:hover { background: #96c83f; }
.cookie-btn.reject {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.2);
}
.cookie-btn.reject:hover { background: rgba(255,255,255,.16); }

/* ARTICLE PAGE */
.article-hero {
  position: relative;
  height: 62vh;
  min-height: 420px;
  overflow: hidden;
}
.article-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.article-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(22,44,12,.1) 0%, rgba(22,44,12,.7) 100%);
}
.article-hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 0 48px;
}
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 16px;
  font-family: var(--ff-sans);
  font-size: .76rem;
  color: rgba(255,255,255,.6);
}
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb svg { width: 12px; height: 12px; fill: currentColor; }
.article-hero-title {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 14px;
  max-width: 780px;
}
.article-hero-meta {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.article-hero-meta span {
  font-family: var(--ff-sans);
  font-size: .78rem;
  color: rgba(255,255,255,.62);
  display: flex; align-items: center; gap: 5px;
}
.article-hero-meta svg { width: 13px; height: 13px; fill: var(--accent); }

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding: 60px 0 80px;
  align-items: start;
}
.article-content {}
.article-content h2 {
  font-family: var(--ff-head);
  font-size: 1.56rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.28;
  margin: 38px 0 14px;
  padding-top: 8px;
}
.article-content h2:first-child { margin-top: 0; }
.article-content h3 {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin: 24px 0 10px;
}
.article-content p {
  font-family: var(--ff-body);
  font-size: .97rem;
  color: var(--text-mid);
  line-height: 1.82;
  margin-bottom: 18px;
}
.article-content ul, .article-content ol {
  margin: 0 0 18px 18px;
}
.article-content li {
  font-family: var(--ff-body);
  font-size: .96rem;
  color: var(--text-mid);
  line-height: 1.72;
  margin-bottom: 6px;
  list-style: disc;
}
.article-content ol li { list-style: decimal; }
.article-content a { color: var(--secondary); border-bottom: 1px solid rgba(61,107,40,.3); }
.article-content a:hover { color: var(--accent); }
.article-img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin: 28px 0;
  box-shadow: var(--shadow);
}
.article-caption {
  font-family: var(--ff-sans);
  font-size: .76rem;
  color: var(--text-light);
  text-align: center;
  margin-top: -20px;
  margin-bottom: 28px;
  font-style: italic;
}
.info-box {
  background: rgba(127,170,54,.07);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 18px 22px;
  margin: 24px 0;
}
.info-box p { margin: 0; font-size: .9rem; }
.info-box strong { color: var(--primary); }

.article-sidebar {}
.sidebar-sticky { position: sticky; top: calc(var(--hdr) + 24px); }
.sidebar-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 22px;
}
.sidebar-card-title {
  font-family: var(--ff-nav);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}
.sidebar-fact-list li {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  gap: 10px;
}
.sidebar-fact-list li:last-child { border-bottom: none; }
.sf-key {
  font-family: var(--ff-sans);
  font-size: .78rem;
  color: var(--text-light);
}
.sf-val {
  font-family: var(--ff-sans);
  font-size: .78rem;
  font-weight: 600;
  color: var(--primary);
  text-align: right;
}
.sidebar-toc li {
  padding: 5px 0;
  border-bottom: 1px solid var(--border-light);
}
.sidebar-toc li:last-child { border-bottom: none; }
.sidebar-toc a {
  font-family: var(--ff-sans);
  font-size: .82rem;
  color: var(--text-mid);
  display: flex; align-items: center; gap: 6px;
}
.sidebar-toc a:hover { color: var(--secondary); }
.sidebar-toc svg { width: 10px; height: 10px; fill: var(--accent); flex-shrink: 0; }
.sidebar-related a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-light);
  font-family: var(--ff-sans);
  font-size: .82rem;
  color: var(--text-mid);
}
.sidebar-related a:last-child { border-bottom: none; }
.sidebar-related a:hover { color: var(--secondary); }
.sidebar-related svg { width: 14px; height: 14px; fill: var(--accent); flex-shrink: 0; }

/* INNER PAGE HERO */
.page-hero {
  background: var(--primary);
  padding: 56px 0 54px;
}
.page-hero-kicker {
  font-family: var(--ff-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.page-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.22;
  margin-bottom: 12px;
}
.page-hero p {
  font-family: var(--ff-sans);
  font-size: .96rem;
  color: rgba(255,255,255,.7);
  max-width: 560px;
  line-height: 1.66;
}

/* CONTACT FORM */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  padding: 70px 0 80px;
  align-items: start;
}
.contact-info-block { margin-bottom: 36px; }
.contact-info-block h2 {
  font-family: var(--ff-head);
  font-size: 1.48rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.contact-info-block p {
  font-family: var(--ff-body);
  font-size: .94rem;
  color: var(--text-mid);
  line-height: 1.76;
  margin-bottom: 22px;
}
.contact-detail {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px;
}
.cd-icon {
  width: 36px; height: 36px;
  background: rgba(127,170,54,.12);
  border: 1px solid rgba(127,170,54,.22);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cd-icon svg { width: 15px; height: 15px; fill: var(--accent); }
.cd-text { font-family: var(--ff-sans); font-size: .86rem; color: var(--text-mid); line-height: 1.5; }
.cd-text strong { display: block; font-weight: 600; color: var(--primary); font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 2px; }
.cd-text a { color: var(--text-mid); }
.cd-text a:hover { color: var(--secondary); }

.contact-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-title {
  font-family: var(--ff-head);
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.form-subtitle {
  font-family: var(--ff-sans);
  font-size: .84rem;
  color: var(--text-light);
  margin-bottom: 26px;
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-family: var(--ff-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.form-row input, .form-row textarea {
  width: 100%;
  font-family: var(--ff-sans);
  font-size: .9rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-row input:focus, .form-row textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(61,107,40,.12);
}
.form-row textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%;
  font-family: var(--ff-nav);
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--secondary);
  border: none;
  border-radius: var(--radius);
  padding: 13px;
  cursor: pointer;
  transition: background .22s;
}
.form-submit:hover { background: var(--primary); }

/* ABOUT */
.about-content { padding: 70px 0 80px; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}
.about-text h2 {
  font-family: var(--ff-head);
  font-size: 1.56rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}
.about-text p {
  font-family: var(--ff-body);
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.82;
  margin-bottom: 16px;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img img { width: 100%; height: 380px; object-fit: cover; }
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.value-icon {
  width: 44px; height: 44px;
  background: rgba(127,170,54,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.value-icon svg { width: 20px; height: 20px; fill: var(--accent); }
.value-title {
  font-family: var(--ff-nav);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.value-text {
  font-family: var(--ff-sans);
  font-size: .84rem;
  color: var(--text-mid);
  line-height: 1.66;
}

/* POLICY / TERMS */
.policy-content { padding: 60px 0 80px; max-width: 800px; }
.policy-content h2 {
  font-family: var(--ff-head);
  font-size: 1.42rem;
  font-weight: 700;
  color: var(--primary);
  margin: 36px 0 12px;
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p, .policy-content li {
  font-family: var(--ff-body);
  font-size: .94rem;
  color: var(--text-mid);
  line-height: 1.82;
  margin-bottom: 14px;
}
.policy-content ul { margin: 0 0 14px 20px; }
.policy-content li { list-style: disc; }
.policy-content a { color: var(--secondary); }
.policy-update {
  font-family: var(--ff-sans);
  font-size: .8rem;
  color: var(--text-light);
  margin-bottom: 36px;
  padding: 10px 16px;
  background: var(--bg-dark);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split-inner { gap: 40px; }
  .article-layout { grid-template-columns: 1fr 280px; gap: 36px; }
  .about-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .main-nav, .nav-articles-wrap { display: none; }
  .burger-btn { display: flex; }
  .articles-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .split-inner { grid-template-columns: 1fr; gap: 32px; }
  .split-inner.reversed .split-text { order: 1; }
  .split-inner.reversed .split-visual { order: 2; }
  .split-img-frame img { height: 280px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; }
  .hero-content { padding: 48px 0 56px; }
}

@media (max-width: 480px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .highlight-item { border-right: none; border-bottom: 1px solid rgba(127,170,54,.16); }
  .highlight-item:last-child { border-bottom: none; }
  .cookie-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
