*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-dark: #1a3c2a;
  --green-mid: #2d5a3d;
  --green-light: #a8c5a0;
  --green-pale: #e8f0e6;
  --cream: #f8f3e8;
  --cream-dark: #ede6d6;
  --brown: #8b5e3c;
  --brown-light: #c49a6c;
  --text-dark: #1e1e1e;
  --text-mid: #3d3d3d;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --border: #d5cfc4;
  --shadow-sm: 0 2px 8px rgba(26,60,42,0.08);
  --shadow-md: 0 6px 24px rgba(26,60,42,0.12);
  --shadow-lg: 0 16px 48px rgba(26,60,42,0.16);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Source Serif 4', Georgia, serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.75;
}

a {
  color: var(--green-mid);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--brown);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--green-dark);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-family: 'Nunito', sans-serif; font-weight: 700; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* PAGE LOADER */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-inner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(168,197,160,0.3);
  border-top-color: var(--green-light);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* HEADER */
.site-header {
  background-color: var(--green-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
}
.site-brand:hover {
  color: var(--green-light);
}
.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
}
.brand-name {
  font-size: 1.2rem;
  letter-spacing: 0.01em;
}
.brand-tagline {
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--green-light);
  opacity: 0.85;
  display: none;
}
@media (min-width: 600px) {
  .brand-tagline { display: block; }
}

/* NAV */
.site-nav {
  background-color: var(--green-mid);
  border-top: 1px solid rgba(168,197,160,0.15);
}
.nav-list {
  display: flex;
  list-style: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-list > li > a {
  display: block;
  padding: 12px 18px;
  color: rgba(255,255,255,0.88);
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.2s, background 0.2s;
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-dropdown {
  position: relative;
}
.nav-articles-toggle .arrow {
  font-size: 0.65rem;
  transition: transform 0.2s;
}
.nav-dropdown.open .arrow {
  transform: rotate(180deg);
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--green-dark);
  list-style: none;
  min-width: 240px;
  border-radius: 0 0 8px 8px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
}
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: rgba(255,255,255,0.82);
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(168,197,160,0.1);
  transition: background 0.2s, color 0.2s;
}
.dropdown-menu li:last-child a {
  border-bottom: none;
}
.dropdown-menu li a:hover {
  background: rgba(255,255,255,0.07);
  color: var(--white);
}
.nav-dropdown.open .dropdown-menu {
  display: block;
}

/* BURGER */
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.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);
}

/* HERO */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--green-dark);
}
.hero-image-side {
  flex: 0 0 55%;
  position: relative;
  overflow: hidden;
}
.hero-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}
.hero-content-side {
  flex: 0 0 45%;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  padding: 60px 48px;
}
.hero-content {
  max-width: 480px;
}
.hero-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 16px;
}
.hero-title {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 20px;
}
.hero-excerpt {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 28px;
}
.hero-meta {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: var(--green-light);
  opacity: 0.8;
}

/* SECTION TITLES */
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: 32px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--green-light);
}

/* MAIN LAYOUT */
.main-content {
  padding: 64px 0;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

/* ARTICLE CARDS */
.articles-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.article-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
}
.article-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.article-card-img {
  overflow: hidden;
}
.article-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.article-card:hover .article-card-img img {
  transform: scale(1.04);
}
.article-card-body {
  padding: 28px 28px 28px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.article-category {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 10px;
}
.article-card-title {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 12px;
  color: var(--green-dark);
  transition: color 0.2s;
}
.article-card:hover .article-card-title {
  color: var(--brown);
}
.article-excerpt {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 20px;
  flex-grow: 1;
}
.article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.article-date {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-light);
}
.read-more {
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-mid);
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.read-more:hover {
  color: var(--brown);
  border-color: var(--brown);
}

/* SIDEBAR */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.sidebar-widget {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.sidebar-widget h4 {
  color: var(--green-dark);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--cream-dark);
}
.sidebar-links {
  list-style: none;
}
.sidebar-links li {
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.sidebar-links li:last-child {
  border-bottom: none;
}
.sidebar-links a {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.sidebar-links a:hover {
  color: var(--green-mid);
}
.sidebar-tip {
  background: var(--green-dark);
  color: var(--white);
  border-radius: 12px;
  padding: 28px;
}
.sidebar-tip h4 {
  color: var(--green-light);
  margin-bottom: 14px;
  border-bottom-color: rgba(168,197,160,0.3);
}
.sidebar-tip p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
}
.sidebar-sources {
  margin-top: 12px;
}
.sidebar-sources a {
  display: block;
  font-size: 0.8rem;
  font-family: 'DM Mono', monospace;
  color: var(--green-light);
  margin-bottom: 6px;
  word-break: break-all;
}
.sidebar-sources a:hover {
  color: var(--white);
}

/* ARTICLE PAGE */
.article-page {
  padding: 64px 0;
}
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}
.article-header {
  margin-bottom: 36px;
}
.article-header .article-category {
  margin-bottom: 12px;
}
.article-title-main {
  margin-bottom: 18px;
}
.article-meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.article-meta-row .article-date {
  font-size: 0.78rem;
}
.article-author {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  color: var(--text-light);
}
.article-hero-img {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  aspect-ratio: 16/7;
}
.article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-dark);
}
.article-body p {
  margin-bottom: 22px;
}
.article-body h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--cream-dark);
}
.article-body h3 {
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--brown);
}
.article-body ul, .article-body ol {
  margin: 0 0 22px 20px;
}
.article-body li {
  margin-bottom: 8px;
}
.article-body strong {
  color: var(--green-dark);
}
.article-body a {
  color: var(--brown);
  border-bottom: 1px solid var(--brown-light);
}
.article-body a:hover {
  color: var(--green-mid);
}
.article-body blockquote {
  border-left: 4px solid var(--green-light);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--green-pale);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-mid);
}
.article-body figure {
  margin: 32px 0;
}
.article-body figure img {
  border-radius: 10px;
}
.article-body figcaption {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 8px;
  text-align: center;
}
.article-updated {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--cream-dark);
}
.related-articles {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 2px solid var(--cream-dark);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.related-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
}
.related-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.related-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.related-card:hover .related-card-img img {
  transform: scale(1.05);
}
.related-card-body {
  padding: 16px 18px;
}
.related-card-title {
  font-size: 0.95rem;
  color: var(--green-dark);
}
.related-card-title:hover {
  color: var(--brown);
}

/* ABOUT / STATIC PAGES */
.static-page {
  padding: 64px 0;
}
.static-page-header {
  background: var(--green-dark);
  padding: 64px 0;
  margin-bottom: 0;
}
.static-page-header h1 {
  color: var(--white);
}
.static-page-header p {
  color: rgba(255,255,255,0.75);
  margin-top: 12px;
  font-size: 1.05rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
  padding: 64px 0;
}
.about-text h2 {
  margin-bottom: 20px;
  margin-top: 36px;
}
.about-text h2:first-child {
  margin-top: 0;
}
.about-text p {
  margin-bottom: 18px;
  color: var(--text-mid);
}
.about-card {
  background: var(--green-dark);
  border-radius: 16px;
  padding: 36px;
  color: var(--white);
  position: sticky;
  top: 100px;
}
.about-card h3 {
  color: var(--green-light);
  margin-bottom: 20px;
}
.about-card-info {
  list-style: none;
  font-size: 0.88rem;
}
.about-card-info li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(168,197,160,0.15);
  color: rgba(255,255,255,0.82);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about-card-info li:last-child {
  border-bottom: none;
}
.about-card-info strong {
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-light);
}
.about-card-info a {
  color: rgba(255,255,255,0.82);
}
.about-card-info a:hover {
  color: var(--white);
}

/* CONTACT PAGE */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  padding: 64px 0;
  align-items: start;
}
.contact-form-wrap h2 {
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 22px;
}
.form-group label {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  font-family: 'Source Serif 4', serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45,90,61,0.12);
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}
.form-submit {
  background: var(--green-dark);
  color: var(--white);
  padding: 14px 36px;
  border: none;
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.2s;
}
.form-submit:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}
.form-success {
  display: none;
  background: var(--green-pale);
  border: 1px solid var(--green-light);
  border-radius: 8px;
  padding: 16px 20px;
  color: var(--green-dark);
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  margin-top: 16px;
}
.contact-info-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}
.contact-info-card h3 {
  margin-bottom: 24px;
  color: var(--green-dark);
}
.contact-info-list {
  list-style: none;
}
.contact-info-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.9rem;
  color: var(--text-mid);
}
.contact-info-list li:last-child {
  border-bottom: none;
}
.contact-info-list strong {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brown);
  margin-bottom: 3px;
}

/* POLICY / TERMS */
.policy-body {
  padding: 64px 0;
  max-width: 860px;
}
.policy-body h2 {
  margin-top: 40px;
  margin-bottom: 14px;
}
.policy-body p {
  margin-bottom: 18px;
  color: var(--text-mid);
}
.policy-body ul {
  margin: 0 0 18px 20px;
  color: var(--text-mid);
}
.policy-body li {
  margin-bottom: 6px;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--green-dark);
  z-index: 1000;
  padding: 18px 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.cookie-banner.hidden {
  transform: translateY(110%);
}
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-inner p {
  flex: 1;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  min-width: 240px;
}
.cookie-inner a {
  color: var(--green-light);
}
.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.btn-cookie-accept {
  background: var(--green-light);
  color: var(--green-dark);
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-cookie-accept:hover {
  background: var(--white);
}
.btn-cookie-reject {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 20px;
  border-radius: 6px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-cookie-reject:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

/* FOOTER */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 24px 0;
  margin-top: 0;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-col h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.footer-col h4 {
  color: var(--green-light);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.footer-about p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.footer-address {
  font-size: 0.82rem;
  font-style: normal;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul a:hover {
  color: var(--white);
}
.footer-contact p {
  font-size: 0.88rem;
  margin-bottom: 8px;
}
.footer-contact a {
  color: rgba(255,255,255,0.75);
}
.footer-contact a:hover {
  color: var(--white);
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid rgba(168,197,160,0.15);
}
.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}
.footer-links a:hover {
  color: var(--white);
}
.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  padding-bottom: 24px;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .content-grid,
  .article-layout,
  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    flex-direction: column;
    min-height: unset;
  }
  .hero-image-side {
    flex: 0 0 280px;
    min-height: 280px;
  }
  .hero-content-side {
    flex: none;
    padding: 40px 32px;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .article-card {
    grid-template-columns: 1fr;
  }
  .article-card-img {
    height: 220px;
  }
  .article-card-body {
    padding: 24px;
  }
  .about-card {
    position: static;
  }
  .contact-info-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .burger-btn { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--green-dark);
    z-index: 99;
    border-top: 1px solid rgba(168,197,160,0.15);
  }
  .site-nav.open {
    display: block;
  }
  .nav-list {
    flex-direction: column;
    padding: 8px 0;
  }
  .nav-list > li > a {
    padding: 14px 24px;
    border-bottom: 1px solid rgba(168,197,160,0.1);
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    background: rgba(0,0,0,0.2);
    display: block;
    border-top: 1px solid rgba(168,197,160,0.1);
  }
  .dropdown-menu li a {
    padding: 10px 24px 10px 36px;
  }
  .header-top {
    position: relative;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
  }
}
