:root {
  --primary: #1f6b3a;
  --dark-green: #124d2a;
  --secondary-green: #4f8f3a;
  --light-green: #eaf4e6;
  --warm-gold: #d9a441;
  --earth-brown: #6b4f35;
  --cream: #f7f8f4;
  --white: #ffffff;
  --dark-text: #1e2922;
  --muted: #68736c;
  --line: rgba(30, 41, 34, 0.12);
  --shadow: 0 20px 50px rgba(18, 77, 42, 0.12);
  --radius: 18px;
  --container: min(1200px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--dark-text);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

figure {
  margin: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

img[loading="lazy"] {
  filter: saturate(0.9);
}

.topbar {
  background: var(--dark-green);
  color: rgba(255,255,255,0.9);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 42px;
}

.topbar-text {
  font-weight: 600;
  color: #f2f6ef;
}

.topbar-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.topbar-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(18, 77, 42, 0.05);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--dark-green);
  white-space: nowrap;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(18,77,42,0.08);
  background: #fff;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.92rem;
  letter-spacing: 0.045em;
}

.brand small {
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 0.035em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(14px, 1.35vw, 22px);
  flex-wrap: nowrap;
  flex: 1;
  min-width: 0;
  margin: 0;
}

.nav-menu-row {
  border-top: 1px solid rgba(30, 41, 34, 0.06);
  background: rgba(255, 255, 255, 0.98);
}

.nav-menu-row .container {
  display: flex;
  justify-content: center;
}

.site-nav a {
  position: relative;
  color: var(--dark-text);
  font-size: clamp(0.75rem, 0.78vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  padding: 10px 0;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--primary);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.notice-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(31, 107, 58, 0.2);
  border-radius: 999px;
  background: var(--light-green);
  color: var(--dark-green);
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.notice-trigger:hover,
.notice-trigger:focus-visible {
  background: #dcebd6;
  transform: translateY(-1px);
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--dark-green);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(18,77,42,0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 100px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(31,107,58,0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 26px rgba(31,107,58,0.22);
}

.btn-cta {
  background: linear-gradient(135deg, var(--warm-gold) 0%, #efc76a 100%);
  color: var(--dark-green);
  box-shadow: 0 12px 26px rgba(217, 164, 65, 0.28);
  border-color: rgba(122, 93, 34, 0.15);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.btn-cta:hover,
.btn-cta:focus-visible {
  box-shadow: 0 18px 28px rgba(217, 164, 65, 0.34);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.52);
  color: var(--white);
}

.btn-sm {
  min-height: 42px;
  padding: 0 16px;
}

.section,
.section-sm {
  padding: 100px 0;
}

.section-sm {
  padding-top: 0;
  margin-top: -40px;
  position: relative;
  z-index: 4;
}

.light-bg {
  background: var(--light-green);
}

.section-heading {
  margin-bottom: 46px;
}

.section-heading.center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker,
.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 800;
}

.section-heading h2,
.intro-copy h2,
.membership-copy h2,
.slide-copy h1,
.slide-copy h2,
.vision-inner h2 {
  font-family: 'Merriweather', serif;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--dark-text);
}

.section-heading h2 {
  font-size: clamp(2rem, 2.8vw, 3rem);
  max-width: 760px;
}

.section-heading p:last-child {
  margin-top: 18px;
  color: var(--muted);
  max-width: 780px;
}

.hero-slider-wrap {
  position: relative;
}

.election-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.election-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.election-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 27, 16, 0.7);
}

.election-notice {
  position: relative;
  z-index: 1;
  width: min(360px, calc(100% - 32px));
  padding: 22px;
  color: var(--dark-text);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(217, 164, 65, 0.5);
  border-top: 4px solid var(--warm-gold);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(10, 44, 23, 0.24);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.25s ease;
}

.election-modal.is-open .election-notice {
  transform: translateY(0) scale(1);
}

body.modal-open {
  overflow: hidden;
}

.election-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(30, 41, 34, 0.12);
  border-radius: 50%;
  background: var(--white);
  color: var(--dark-green);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.election-close:hover,
.election-close:focus-visible {
  background: var(--light-green);
  transform: rotate(8deg);
}

.election-notice-heading {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.election-notice-icon {
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 10px;
  color: var(--dark-green);
  background: rgba(217, 164, 65, 0.2);
}

.election-notice-kicker {
  margin: 0 0 3px;
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.election-notice h2 {
  margin: 0;
  color: var(--dark-green);
  font-family: 'Merriweather', serif;
  font-size: 1.02rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.election-notice-intro {
  margin: 16px 0 14px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.election-links {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.election-links a {
  display: grid;
  grid-template-columns: 18px 1fr 12px;
  align-items: center;
  gap: 8px;
  padding: 10px 9px;
  color: var(--dark-green);
  border-radius: 8px;
  background: var(--light-green);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.3;
  transition: background 0.2s ease, transform 0.2s ease;
}

.election-links a:hover,
.election-links a:focus-visible {
  background: #dcebd6;
  transform: translateX(2px);
}

.election-links a > i:first-child {
  color: var(--primary);
}

.election-links a > i:last-child {
  color: var(--muted);
  font-size: 0.65rem;
}

.hero-slider {
  position: relative;
  height: 700px;
  overflow: hidden;
  background: #102d18;
}

.slide {
  position: absolute;
  inset: 0;
  display: none;
  background-size: cover;
  background-position: center;
  align-items: center;
}

.slide.active {
  display: flex;
}

.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 12, 0.12);
}

.slide-inner {
  position: relative;
  z-index: 1;
  width: var(--container);
}

.slide-copy {
  max-width: 700px;
  padding-top: 60px;
  color: var(--white);
}

.slide-copy h1,
.slide-copy h2 {
  color: var(--white);
  font-size: clamp(2.7rem, 4vw, 5rem);
  margin-bottom: 18px;
  max-width: 700px;
}

.slide-copy p:not(.eyebrow) {
  color: rgba(255,255,255,0.88);
  font-size: 1.06rem;
  max-width: 620px;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.quick-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 22px;
  box-shadow: 0 16px 36px rgba(18,77,42,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.quick-card:hover,
.quick-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(31,107,58,0.18);
  box-shadow: var(--shadow);
}

.card-number {
  display: inline-flex;
  color: rgba(31,107,58,0.24);
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 12px;
}

.card-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(31,107,58,0.08);
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.quick-card h3,
.activity-card h3,
.focus-card h3,
.support-item h3,
.product-body h3,
.news-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.35;
}

.quick-card p,
.activity-card p,
.focus-card p,
.support-item p,
.product-body p,
.news-card p,
.intro-copy p,
.membership-copy p,
.contact-copy p,
.site-footer p,
.footer-list li {
  color: var(--muted);
}

.quick-card a,
.activity-card a,
.product-body a,
.news-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  margin-top: 8px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  align-items: center;
  gap: 42px;
}

.intro-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.intro-image-wrap img {
  width: 100%;
  height: 610px;
  object-fit: cover;
}

.intro-copy h2,
.membership-copy h2 {
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  margin-bottom: 18px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 30px;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--dark-text);
  font-weight: 600;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 800;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.focus-card {
  background: rgba(255,255,255,0.64);
  border: 1px solid rgba(31,107,58,0.08);
  border-radius: var(--radius);
  padding: 0 22px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 410px;
  overflow: hidden;
}

.focus-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.focus-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(31,107,58,0.08);
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 18px;
  margin-left: 0;
}

.focus-image {
  display: block;
  width: calc(100% + 44px);
  max-width: none;
  height: 150px;
  margin: 0 -22px 24px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.focus-card:hover .focus-image {
  transform: scale(1.04);
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.activity-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px 22px;
  position: relative;
  box-shadow: 0 14px 30px rgba(18,77,42,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(31,107,58,0.18);
}

.activity-number {
  display: inline-flex;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--primary);
  margin-bottom: 14px;
}

.activity-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(217,164,65,0.12);
  color: var(--warm-gold);
  margin-bottom: 18px;
  font-size: 1.3rem;
}

.products-section {
  background: linear-gradient(180deg, #f7f8f4 0%, #f0f5eb 100%);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(18,77,42,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.product-body {
  padding: 22px 22px 24px;
}

.product-tag {
  display: inline-flex;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(31,107,58,0.08);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
}

.section-cta-wrap {
  display: flex;
  justify-content: flex-start;
  margin-top: 34px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.support-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 22px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(31,107,58,0.08);
  border-radius: var(--radius);
}

.support-icon {
  width: 52px;
  min-width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(31,107,58,0.08);
  color: var(--primary);
  font-size: 1.2rem;
}

.approach-section {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #f5f6f1 100%);
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}

.approach-steps::before {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  top: 46px;
  height: 2px;
  background: linear-gradient(90deg, rgba(31,107,58,0.18), rgba(31,107,58,0.6), rgba(31,107,58,0.18));
  z-index: 0;
}

.step-item {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 18px 12px 0;
}

.step-number {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 30px rgba(31,107,58,0.2);
}

.step-item h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
}

.vision-section {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background-image: url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?auto=format&fit=crop&w=1800&q=88');
  background-size: cover;
  background-position: center;
}

.vision-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18,77,42,0.62);
}

.vision-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  color: var(--white);
  text-align: center;
}

.section-kicker.light {
  color: rgba(255,255,255,0.8);
}

.vision-inner h2 {
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3.4rem);
  margin-top: 10px;
}

.membership-cta {
  background: linear-gradient(180deg, rgba(18,77,42,0.04), rgba(18,77,42,0.08));
}

.membership-box {
  position: relative;
  background-image: linear-gradient(90deg, rgba(18,77,42,0.7), rgba(18,77,42,0.48)), url('https://images.unsplash.com/photo-1464226184884-fa52ac5d0f9d?auto=format&fit=crop&w=1800&q=88');
  background-size: cover;
  background-position: center;
  border-radius: 26px;
  overflow: hidden;
  padding: 64px 54px;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.membership-copy {
  max-width: 700px;
  color: var(--white);
}

.membership-copy h2,
.membership-copy p,
.membership-copy .section-kicker {
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 220px;
  box-shadow: 0 18px 35px rgba(18,77,42,0.08);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item.tall {
  grid-row: span 2;
  min-height: 460px;
}

.gallery-item.wide {
  grid-column: span 2;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(18,77,42,0.05);
}

.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news-body {
  padding: 22px 20px 20px;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  font-weight: 700;
}

.contact-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-strip-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.7fr;
  gap: 28px;
  align-items: center;
  padding: 30px 0;
}

.contact-details {
  display: grid;
  gap: 10px;
}

.contact-details p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark-text);
  font-weight: 600;
}

.contact-details i,
.footer-list i {
  color: var(--primary);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  background: #0f2617;
  color: rgba(255,255,255,0.84);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr 1.1fr;
  gap: 28px;
}

.footer-brand {
  padding-right: 10px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-tagline {
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  margin-bottom: 14px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  transition: background 0.25s ease, transform 0.25s ease;
}

.social-links a:hover {
  background: rgba(217,164,65,0.18);
  transform: translateY(-2px);
}

.site-footer h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin: 0 0 18px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-list a,
.footer-list li {
  color: rgba(255,255,255,0.8);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 26px;
  padding: 18px 0 40px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.72);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  padding: 10px 9px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark-green);
  border-radius: 999px;
  margin: 6px 0;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
