:root {
  color-scheme: light;

  --village-green: rgba(255, 255, 255, .9);
  --village-green-dark: #1b4332;
  --village-lime: #b7d979;
  --village-sand: #f4efe3;
  --village-orange: #e88746;
  --village-ink: #17211b;

  --surface-page: #fbfcfa;
  --surface-card: #ffffff;
  --surface-soft: #f1f5ef;
  --surface-muted: #e8efe9;
  --text-muted: #607066;
  --border-soft: rgba(27, 67, 50, .14);
  --focus-ring: rgba(45, 106, 79, .32);

  --radius-xl: 1.75rem;
  --shadow-soft: 0 1rem 3rem rgba(27, 67, 50, .11);
  --shadow-hover: 0 1.4rem 3.5rem rgba(27, 67, 50, .17);

  /*
   * Navbar — light mode
   */
  --navbar-height: 4.75rem;
  --navbar-bg: rgba(251, 252, 250, .54);
  --navbar-border: rgba(27, 67, 50, .15);
  --navbar-shadow: 0 .35rem 1.5rem rgba(23, 33, 27, .05);

  --navbar-link-color: #294035;
  --navbar-link-hover-color: #1b4332;
  --navbar-link-hover-bg: rgba(45, 106, 79, .09);

  --navbar-current-bg: rgba(255, 255, 255, .9);
  --navbar-current-color: rgba(45, 106, 79, 1);

  --navbar-action-bg: rgba(255, 255, 255, .76);
  --navbar-action-border: rgba(45, 106, 79, .25);
  --navbar-action-color: #1b4332;
  --navbar-action-hover-bg: rgba(255, 255, 255, .9);
  --navbar-action-hover-border: rgba(255, 255, 255, .9);
  --navbar-action-hover-color: #ffffff;

  --navbar-mobile-panel-bg:
    linear-gradient(
      145deg,
      rgba(45, 106, 79, .08),
      rgba(183, 217, 121, .15)
    );
  --navbar-mobile-panel-border: rgba(45, 106, 79, .16);
  --navbar-mobile-panel-shadow: 0 1rem 2.5rem rgba(27, 67, 50, .1);

  /*
   * hero-privacy — light mode
   */
  --nav-bar-border-color: var(--navbar-current-bg);
  --hero-privacy-overlay-start: rgba(8, 32, 21, .9);
  --hero-privacy-overlay-middle: rgba(8, 32, 21, .7);
  --hero-privacy-overlay-end: rgba(8, 32, 21, .16);
  --hero-privacy-bottom-overlay: rgba(0, 0, 0, .2);

  /*
   * Component colors — light mode
   */
  --accent-soft: color-mix(in srgb, var(--village-lime) 34%, var(--surface-card));
  --accent-soft-text: #1b4332;
  --footer-bg: #10251a;
  --footer-text: rgba(255, 255, 255, .76);
}

[data-bs-theme="dark"] {
  color-scheme: dark;

  --village-green: #73ad7f;
  --village-green-dark: #b7d979;
  --village-lime: #b7d979;
  --village-sand: #202a23;
  --village-orange: #f0a064;
  --village-ink: #edf5ef;

  --surface-page: #111713;
  --surface-card: #18211b;
  --surface-soft: #1d2821;
  --surface-muted: #26342b;
  --text-muted: #a9b9ae;
  --border-soft: rgba(183, 217, 121, .14);
  --focus-ring: rgba(183, 217, 121, .32);

  --shadow-soft: 0 1rem 3rem rgba(0, 0, 0, .28);
  --shadow-hover: 0 1.4rem 3.5rem rgba(0, 0, 0, .38);

  /*
   * Navbar — dark mode
   */
  --navbar-bg: rgba(17, 23, 19, .45);
  --navbar-border: rgba(183, 217, 121, .14);
  --navbar-shadow: 0 .4rem 1.6rem rgba(0, 0, 0, .22);

  --navbar-link-color: #d7e4da;
  --navbar-link-hover-color: #ffffff;
  --navbar-link-hover-bg: rgba(183, 217, 121, .1);

  --navbar-current-bg: linear-gradient(
    180deg,
    #c7e48d 0%,
    #b7d979 50%,
    #a8cd64 100%
  );
    
  --navbar-current-color: rgba(45, 106, 79, 1);

  --navbar-action-bg: rgba(255, 255, 255, .045);
  --navbar-action-border: rgba(183, 217, 121, .28);
  --navbar-action-color: #dcebbf;
  --navbar-action-hover-bg: #b7d979;
  --navbar-action-hover-border: #b7d979;
  --navbar-action-hover-color: #142019;

  --navbar-mobile-panel-bg:
    linear-gradient(
      145deg,
      rgba(183, 217, 121, .09),
      rgba(45, 106, 79, .12)
    );
  --navbar-mobile-panel-border: rgba(183, 217, 121, .16);
  --navbar-mobile-panel-shadow: 0 1.25rem 3rem rgba(0, 0, 0, .28);

  /*
   * hero-privacy — dark mode
   */
  --nav-bar-border-color: var(--navbar-current-bg);
  --hero-privacy-overlay-start: rgba(3, 14, 9, .93);
  --hero-privacy-overlay-middle: rgba(3, 14, 9, .76);
  --hero-privacy-overlay-end: rgba(3, 14, 9, .2);
  --hero-privacy-bottom-overlay: rgba(0, 0, 0, .38);

  /*
   * Component colors — dark mode
   */
  --accent-soft: color-mix(in srgb, var(--village-lime) 17%, var(--surface-card));
  --accent-soft-text: #e9f5cf;
  --footer-bg: #0a120d;
  --footer-text: rgba(255, 255, 255, .72);
}

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  color: var(--village-ink);
  background-color: var(--surface-page);
  overflow-x: hidden;
  transition:
    color .25s ease,
    background-color .25s ease;
}

/*
 * The page uses <section class="section-main"> directly inside <body>.
 * This section grows to fill all space between the header and footer.
 */
body > .section-main {
  flex: 1 0 auto;
  width: 100%;
}

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */

.navbar {
  min-height: var(--navbar-height);
  background: var(--navbar-bg);
  box-shadow: var(--navbar-shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    background-color .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.navbar > .container {
  min-height: var(--navbar-height);
}

.navbar-brand {
  position: relative;
  z-index: 2;
  padding-block: .75rem;
}

.navbar-brand img {
  display: block;
  width: auto;
  max-width: 100%;
}

.navbar-collapse {
  min-width: 0;
}

.navbar-mobile-shell {
  display: flex;
  align-items: center;
  min-width: 0;
  margin-left: auto;
}

.navbar-links-panel {
  display: flex;
  align-items: stretch;
}

.navbar-nav {
  align-items: stretch;
}

.navbar-nav .nav-item {
  display: flex;
  align-items: stretch;
}

.navbar-nav .nav-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1rem;
  border-radius: .85rem;
  color: var(--navbar-link-color);
  font-size: .95rem;
  font-weight: 650;
  letter-spacing: .01em;
  text-align: center;
  white-space: nowrap;
  transition:
    color .2s ease,
    background-color .2s ease,
    box-shadow .2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus-visible {
  color: var(--navbar-link-hover-color);
  background: var(--navbar-link-hover-bg);
}

.navbar-nav .nav-link:focus-visible {
  z-index: 2;
  outline: 3px solid var(--focus-ring);
  outline-offset: -3px;
}

.navbar-nav .nav-link.disabled,
.navbar-nav .nav-link[aria-current="page"] {
  color: var(--navbar-current-color);
  cursor: default;
  pointer-events: none;
}

.navbar-nav .nav-link {
  position: relative;
}

.navbar-nav .nav-link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: .245rem;
  background: var(--navbar-current-color);
}

.navbar-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-left: .85rem;
}

.navbar-action-btn {
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 2.75rem;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--navbar-action-border);
  border-radius: 50%;
  color: var(--navbar-action-color);
  background: var(--navbar-action-bg);
  box-shadow: none;
  font-size: 1rem;
  line-height: 1;
  transition:
    color .2s ease,
    background-color .2s ease,
    border-color .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.navbar-action-btn:hover,
.navbar-action-btn:focus-visible,
.navbar-action-btn:active {
  color: var(--navbar-action-hover-color);
  background: var(--navbar-action-hover-bg);
  border-color: var(--navbar-action-hover-border);
  transform: translateY(-2px);
  box-shadow: 0 .6rem 1.25rem rgba(27, 67, 50, .2);
}

[data-bs-theme="dark"] .navbar-action-btn:hover,
[data-bs-theme="dark"] .navbar-action-btn:focus-visible,
[data-bs-theme="dark"] .navbar-action-btn:active {
  box-shadow: 0 .6rem 1.25rem rgba(0, 0, 0, .28);
}

.navbar-action-btn:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

.btn-toggle-mode,
.btn-search {
  border-radius: 50%;
}

.navbar-toggler {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  color: var(--navbar-link-color);
  background: var(--navbar-action-bg);
  transition:
    color .2s ease,
    background-color .2s ease,
    transform .2s ease;
}

.navbar-toggler:hover,
.navbar-toggler:focus-visible {
  color: var(--navbar-action-hover-color);
  background: var(--navbar-action-hover-bg);
}

.navbar-toggler:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

.navbar-toggler-icon {
  width: auto;
  height: auto;
  display: inline-grid;
  place-items: center;
  color: currentColor;
  background-image: none !important;
  font-size: 1.25rem;
  line-height: 1;
}

/* --------------------------------------------------------------------------
   Full-height desktop navigation
   -------------------------------------------------------------------------- */

@media (min-width: 992px) {
  .navbar {
    padding-block: 0;
  }

  .navbar > .container {
    height: var(--navbar-height);
    min-height: var(--navbar-height);
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .navbar-brand {
    align-self: center;
    padding-block: 0;
  }

  .navbar-collapse,
  .navbar-mobile-shell,
  .navbar-links-panel,
  .navbar-nav,
  .navbar-nav .nav-item {
    align-self: stretch;
    height: 100%;
  }

  .navbar-collapse {
    align-items: stretch;
  }

  .navbar-mobile-shell {
    min-height: 100%;
  }

  .navbar-nav .nav-link {
    height: 100%;
    min-height: var(--navbar-height);
    border-radius: 0;
    padding-inline: 1.35rem !important;
  }
    
 .navbar-nav .nav-link,
  .navbar-nav .nav-link.disabled,
  .navbar-nav .nav-link[aria-current="page"] {
    min-height: var(--navbar-height);
    padding-block: 0;
    margin: 0;
  }

  .navbar-nav .nav-link.disabled,
  .navbar-nav .nav-link[aria-current="page"] {
    height: 100%;
    min-height: var(--navbar-height);
    box-shadow: none;
  }
    
  .hero-privacy {
    margin-top: calc(-1 * (var(--navbar-height) + .375rem));
    padding-top: calc(var(--navbar-height) + .375rem);
  }
    
  .navbar-actions {
    margin-left: 2rem !important;
  }

/* end @media (min-width: 992px) { */
}

.hero-home {
  background-repeat: no-repeat;
  background-size: cover;
}

/* --------------------------------------------------------------------------
   Collapsed mobile navigation
   -------------------------------------------------------------------------- */

@media (max-width: 991.98px) {
  .navbar > .container {
    padding-top: .65rem !important;
    padding-bottom: .65rem !important;
  }

  .navbar-collapse {
    width: 100%;
  }

  .navbar-mobile-shell {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin-top: .75rem;
    margin-left: 0;
    padding-bottom: .35rem;
  }

  .navbar-links-panel {
    width: 100%;
    display: block;
    margin-bottom: 1rem;
    padding: .65rem;
    border: 1px solid var(--navbar-mobile-panel-border);
    border-radius: 1.25rem;
    background: var(--navbar-mobile-panel-bg);
    box-shadow: var(--navbar-mobile-panel-shadow);
  }

  .navbar-nav {
    width: 100%;
    align-items: stretch !important;
    gap: .25rem;
  }

  .navbar-nav .nav-item {
    width: 100%;
    display: block;
  }

  .navbar-nav .nav-link {
    width: 100%;
    min-height: 3rem;
    padding: .75rem 1rem;
    border-radius: .85rem;
    text-align: center;
  }

  .navbar-nav .nav-link.disabled,
  .navbar-nav .nav-link[aria-current="page"] {
    box-shadow:
      inset 0 0 0 1px
      color-mix(
        in srgb,
        var(--navbar-current-color) 20%,
        transparent
      );
  }

  .navbar-actions {
    width: 100%;
    justify-content: center;
    gap: .8rem;
    margin-left: 0;
  }

  .navbar-action-btn {
    width: 3rem;
    height: 3rem;
    flex-basis: 3rem;
  }

  .hero-privacy {
    min-height: 820px;
    border-top: 0;
    background-position: 63% center;
  }

  .section-space {
    padding: 2rem 1rem;
  }

}

/* --------------------------------------------------------------------------
   section-main
   -------------------------------------------------------------------------- */

.section-main {
  --wave-color-1: rgba(13, 110, 253, .22);
  --wave-color-2: rgba(111, 66, 193, .18);
  --wave-color-3: rgba(32, 201, 151, .16);
  --gradient-start: #f8f9fa;
  --gradient-end: #e9f2ff;

  position: relative;
  flex: 1 0 auto;
  width: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  overflow: hidden;
  margin: 0;
  padding: 0;

  background:
    radial-gradient(
      circle at 15% 20%,
      var(--wave-color-1) 0%,
      transparent 38%
    ),
    radial-gradient(
      circle at 85% 75%,
      var(--wave-color-2) 0%,
      transparent 42%
    ),
    linear-gradient(
      135deg,
      var(--gradient-start) 0%,
      var(--gradient-end) 100%
    );
}

[data-bs-theme="dark"] .section-main {
  --wave-color-1: rgba(13, 110, 253, 0.3);
  --wave-color-2: rgba(111, 66, 193, 0.28);
  --wave-color-3: rgba(32, 201, 151, 0.22);
  --gradient-start: #10141c;
  --gradient-end: #18253a;
}

.section-main::before,
.section-main::after {
  content: "";
  position: absolute;
  left: -10%;
  width: 120%;
  pointer-events: none;
  z-index: -1;
}

.section-main::before {
  top: -160px;
  height: 340px;
  border-radius: 0 0 50% 50%;
  background:
    radial-gradient(
      ellipse at center,
      var(--wave-color-1) 0%,
      var(--wave-color-2) 45%,
      transparent 72%
    );
  transform: rotate(-3deg);
}

.section-main::after {
  bottom: -190px;
  height: 380px;
  border-radius: 50% 50% 0 0;
  background:
    radial-gradient(
      ellipse at center,
      var(--wave-color-3) 0%,
      var(--wave-color-1) 45%,
      transparent 72%
    );
  transform: rotate(4deg);
}

.section-main > * {
  position: relative;
  z-index: 1;
}

body > footer,
body > .footer-wrap-bottom {
  flex: 0 0 auto;
}

footer {
  flex-shrink: 0;
  margin: 0 !important;
}


/* --------------------------------------------------------------------------
   Existing site styles
   -------------------------------------------------------------------------- */

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      var(--village-green),
      var(--village-lime)
    );
  box-shadow: 0 .6rem 1.4rem rgba(45, 106, 79, .24);
}

.hero-privacy {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  box-sizing: border-box;
  background:
    linear-gradient(
      90deg,
      var(--hero-privacy-overlay-start) 0%,
      var(--hero-privacy-overlay-middle) 43%,
      var(--hero-privacy-overlay-end) 100%
    ),
    url("../../../images-temp-design/001-001.png") center / cover;
}

.hero-privacy::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  z-index: -1;
  background:
    linear-gradient(
      transparent,
      var(--hero-privacy-bottom-overlay)
    );
}

.hero-privacy-title {
  max-width: 920px;
  color: #ffffff;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: .92;
  letter-spacing: -.065em;
}

.hero-privacy-lead {
  max-width: 670px;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .85rem;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.floating-stat {
  color: #ffffff;
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 1.25rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.section-space {
  padding: 7rem 0;
}

.section-kicker {
  color: var(--bs-emphasis-color);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-title {
  color: var(--village-ink);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.soft-panel {
  background:
    color-mix(
      in srgb,
      var(--village-sand) 74%,
      var(--surface-card)
    );
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
}

.feature-card,
.tip-card,
.year-card {
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  color: var(--village-ink);
  background: var(--surface-card);
  box-shadow: var(--shadow-soft);
  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease,
    background-color .25s ease;
}

.feature-card:hover,
.tip-card:hover,
.year-card:hover {
  transform: translateY(-7px);
  border-color:
    color-mix(
      in srgb,
      var(--village-green) 36%,
      var(--border-soft)
    );
  box-shadow: var(--shadow-hover);
}

.icon-tile {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--accent-soft-text);
  background: var(--accent-soft);
  font-size: 1.45rem;
}

.gallery-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius-xl);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2, .8, .2, 1);
}

.gallery-card:hover img {
  transform: scale(1.07);
}

.gallery-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent 28%,
      rgba(7, 24, 15, .88) 100%
    );
}

.gallery-caption {
  position: absolute;
  z-index: 2;
  inset: auto 1.35rem 1.35rem;
  color: #ffffff;
}

.gallery-year {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1rem;
  padding: .45rem .75rem;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(13, 39, 25, .66);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-weight: 800;
}

.filter-btn.active {
  color: var(--navbar-current-color);
  background: var(--navbar-current-bg);
  border-color: var(--navbar-current-bg);
}

.tip-card .tip-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.season-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .7rem;
  border-radius: 999px;
  color: var(--accent-soft-text);
  background: var(--accent-soft);
  font-size: .78rem;
  font-weight: 700;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 28px;
  width: 2px;
  background:
    color-mix(
      in srgb,
      var(--village-green) 38%,
      var(--border-soft)
    );
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1.25rem;
}

.timeline-dot {
  z-index: 1;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navbar-current-color);
  background: var(--navbar-current-bg);
  box-shadow: 0 0 0 8px var(--surface-page);
  font-weight: 800;
}

.cta-panel {
  overflow: hidden;
  border-radius: 2.2rem;
  color: #ffffff;
  background:
    linear-gradient(
      110deg,
      rgba(20, 75, 49, .97),
      rgba(45, 106, 79, .8)
    ),
    url("https://images.unsplash.com/photo-1499529112087-3cb3b73cec95?auto=format&fit=crop&w=1800&q=80")
      center / cover;
  box-shadow: var(--shadow-soft);
}

[data-bs-theme="dark"] .cta-panel {
  background:
    linear-gradient(
      110deg,
      rgba(7, 31, 19, .97),
      rgba(35, 78, 54, .84)
    ),
    url("https://images.unsplash.com/photo-1499529112087-3cb3b73cec95?auto=format&fit=crop&w=1800&q=80")
      center / cover;
}

/* --------------------------------------------------------------------------
   Footer 
   -------------------------------------------------------------------------- */

:root {
  /* Main footer — light color mode */
  --footer-bg: #1f5a40;
  --footer-color: rgba(255, 255, 255, .82);
  --footer-heading-color: #ffffff;
  --footer-brand-color: #ffffff;

  --footer-link-color: rgba(255, 255, 255, .88);
  --footer-link-bg: transparent;
  --footer-link-hover-color: #173426;
  --footer-link-hover-bg: #c4df88;

  --footer-icon-color: #c4df88;
  --footer-focus-ring: rgba(255, 255, 255, .42);

  /* Footer subbar — light color mode */
  --footer-subbar-bg: #173f2e;
  --footer-subbar-color: rgba(255, 255, 255, .76);
  --footer-subbar-border: rgba(255, 255, 255, .12);
}

[data-bs-theme="dark"] {
  /* Main footer — dark color mode */
  --footer-bg: #121c16;
  --footer-color: rgba(238, 246, 240, .78);
  --footer-heading-color: #ffffff;
  --footer-brand-color: #ffffff;

  --footer-link-color: rgba(238, 246, 240, .88);
  --footer-link-bg: transparent;
  --footer-link-hover-color: #152019;
  --footer-link-hover-bg: #b7d979;

  --footer-icon-color: #b7d979;
  --footer-focus-ring: rgba(183, 217, 121, .4);

  /* Footer subbar — dark color mode */
  --footer-subbar-bg: #090f0b;
  --footer-subbar-color: rgba(238, 246, 240, .68);
  --footer-subbar-border: rgba(183, 217, 121, .13);
}

/* --------------------------------------------------------------------------
   Main footer
   -------------------------------------------------------------------------- */

.footer-wrap-bottom {
  flex: 0 0 auto;
  margin-top: 0 !important;
}

.site-footer {
  color: var(--footer-color);
  background-color: var(--footer-bg);
  transition:
    color .25s ease,
    background-color .25s ease;
}

.site-footer .container {
  position: relative;
}

.site-footer p,
.site-footer span,
.site-footer li {
  color: inherit;
}

/* --------------------------------------------------------------------------
   Footer brand
   -------------------------------------------------------------------------- */

.footer-brand {
  display: flex;
  align-items: center;
  color: var(--footer-brand-color);
}

.footer-brand .brand-mark {
  flex: 0 0 auto;
  color: #ffffff;
}

.footer-brand .h4,
.footer-brand .h5,
.footer-brand .h6 {
  color: var(--footer-brand-color);
}

.footer-description {
  max-width: 34rem;
  margin-bottom: 0;
  color: var(--footer-color);
  font-size: 1rem;
  line-height: 1.75;
}

/* --------------------------------------------------------------------------
   Footer navigation
   -------------------------------------------------------------------------- */

.footer-navigation {
  width: 100%;
}

.footer-heading {
  margin-bottom: 1rem;
  color: var(--footer-heading-color);
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.footer-nav {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav li {
  min-width: 0;
  margin: 0;
  padding: 0;
}

.footer-nav a {
  width: 100%;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: .65rem .85rem;
  border: 1px solid transparent;
  border-radius: .75rem;

  /*
   * !important prevents Bootstrap classes such as text-reset from hiding
   * the custom footer link color.
   */
  color: var(--footer-link-color) !important;
  background-color: var(--footer-link-bg);
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none !important;

  transition:
    color .2s ease,
    background-color .2s ease,
    border-color .2s ease,
    transform .2s ease;
}

.footer-nav a::before {
  content: "\f105";
  flex: 0 0 auto;
  margin-right: .6rem;
  color: var(--footer-icon-color);
  font-family: "Font Awesome 6 Free";
  font-size: .75rem;
  font-weight: 900;
  line-height: 1;
  opacity: .9;
  transition:
    color .2s ease,
    transform .2s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--footer-link-hover-color) !important;
  background-color: var(--footer-link-hover-bg);
  border-color: var(--footer-link-hover-bg);
  transform: translateX(3px);
}

.footer-nav a:hover::before,
.footer-nav a:focus-visible::before {
  color: currentColor;
  transform: translateX(2px);
}

.footer-nav a:focus-visible {
  outline: 3px solid var(--footer-focus-ring);
  outline-offset: 3px;
}


/* --------------------------------------------------------------------------
   Footer flag
   -------------------------------------------------------------------------- */

.footer-flag-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
  margin-right: .4rem;
  overflow: visible;
  vertical-align: middle;
  line-height: 0;
}

.footer-flag-icon img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   Footer subbar
   -------------------------------------------------------------------------- */

.footer-subbar {
  color: var(--footer-subbar-color);
  background-color: var(--footer-subbar-bg);
  border-top: 1px solid var(--footer-subbar-border);
  transition:
    color .25s ease,
    background-color .25s ease,
    border-color .25s ease;
}

.footer-subbar span,
.footer-subbar a {
  color: var(--footer-subbar-color) !important;
}

.footer-subbar a {
  text-decoration-color: color-mix(
    in srgb,
    var(--footer-subbar-color) 45%,
    transparent
  );
}

.footer-subbar a:hover,
.footer-subbar a:focus-visible {
  color: var(--footer-heading-color) !important;
}

/* --------------------------------------------------------------------------
   Expanded Bootstrap lg layout
   -------------------------------------------------------------------------- */

@media (min-width: 992px) {
  .footer-navigation {
    max-width: 28rem;
    margin-left: auto;
  }
}

/* --------------------------------------------------------------------------
   Collapsed Bootstrap lg layout
   Applies when col-lg-* columns stack below 992px.
   -------------------------------------------------------------------------- */

@media (max-width: 991.98px) {
  .site-footer {
    text-align: center;
  }

  .site-footer .row {
    justify-content: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-description {
    margin-right: auto;
    margin-left: auto;
  }

  .footer-navigation {
    max-width: 34rem;
    margin-right: auto;
    margin-left: auto;
  }

  .footer-heading {
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  /*
   * Centers every link horizontally after the Bootstrap lg layout collapses.
   */
  .footer-nav a {
    justify-content: center;
    text-align: center;
  }

  /*
   * Prevent the arrow from making the visible text look off-center.
   */
  .footer-nav a::before {
    margin-right: .5rem;
  }

  .footer-nav a:hover,
  .footer-nav a:focus-visible {
    transform: translateY(-2px);
  }

  .footer-nav a:hover::before,
  .footer-nav a:focus-visible::before {
    transform: translateX(2px);
  }

  .footer-subbar {
    text-align: center;
  }

  .footer-subbar .d-flex {
    align-items: center;
    justify-content: center !important;
    text-align: center;
  }
}

/* subfooter copyright link */

.footer-subbar-copyright-link {
  --sub-footer-link-color: var(--bs-secondary-color);
  --sub-footer-link-bg: transparent;
  --sub-footer-link-border-color: transparent;

  --sub-footer-link-hover-color: var(--bs-primary-text-emphasis);
  --sub-footer-link-hover-bg: var(--bs-primary-bg-subtle);
  --sub-footer-link-hover-border-color: var(--bs-primary-border-subtle);

  --sub-footer-link-focus-ring: rgba(var(--bs-primary-rgb), .35);

  display: inline-flex;
  align-items: center;
  padding: .35rem .55rem;
  border: 1px solid var(--sub-footer-link-border-color);
  border-radius: .5rem;

  color: var(--sub-footer-link-color) !important;
  background-color: var(--sub-footer-link-bg);
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none !important;

  transition:
    color .2s ease,
    background-color .2s ease,
    border-color .2s ease,
    transform .2s ease;
}

.footer-subbar-copyright-link:hover,
.footer-subbar-copyright-link:focus-visible {
  color: var(--sub-footer-link-hover-color) !important;
  background-color: var(--sub-footer-link-hover-bg);
  border-color: var(--sub-footer-link-hover-border-color);
  transform: translateY(-1px);
}

.footer-subbar-copyright-link:focus-visible {
  outline: 3px solid var(--sub-footer-link-focus-ring);
  outline-offset: 3px;
}

[data-bs-theme="dark"] .footer-subbar-copyright-link {
  --sub-footer-link-color: var(--bs-secondary-color);
  --sub-footer-link-hover-color: #fff;
  --sub-footer-link-hover-bg: #212529;
  --sub-footer-link-hover-border-color: #343a40;
  --sub-footer-link-focus-ring: rgba(var(--bs-primary-rgb), 0.45);
}

[data-bs-theme="light"] .footer-subbar-copyright-link {
  --sub-footer-link-color: var(--bs-secondary-color);
  --sub-footer-link-hover-color: #fff;
  --sub-footer-link-hover-bg: #556b2f;
  --sub-footer-link-hover-border-color: #465925;
  --sub-footer-link-focus-ring: rgba(85, 107, 47, 0.45);
}

/* disable the link for the current page, see PHP nav */

.sub-footer-copyright-anchor[aria-current="page"] {
  pointer-events: none;
  cursor: default;
}

.sub-footer-copyright-anchor[aria-current="page"]
.footer-subbar-copyright-link {
  color: var(--bs-secondary-color) !important;
  background-color: transparent;
  border-color: transparent;
  transform: none;
}


.sub-footer-copyright-anchor {
  text-decoration: none;
}

.footer-subbar-copyright-link {
  /* Base declarations from above */
}

.sub-footer-copyright-anchor:hover .footer-subbar-copyright-link,
.sub-footer-copyright-anchor:focus-visible .footer-subbar-copyright-link {
  color: var(--sub-footer-link-hover-color) !important;
  background-color: var(--sub-footer-link-hover-bg);
  border-color: var(--sub-footer-link-hover-border-color);
  transform: translateY(-1px);
}

.sub-footer-copyright-anchor:focus-visible {
  outline: none;
}

.sub-footer-copyright-anchor:focus-visible .footer-subbar-copyright-link {
  outline: 3px solid var(--sub-footer-link-focus-ring);
  outline-offset: 3px;
}

/*
 * Respect reduced-motion preferences.
 */
@media (prefers-reduced-motion: reduce) {
  .footer-subbar-copyright-link {
    transition: none;
  }

  .footer-subbar-copyright-link:hover,
  .footer-subbar-copyright-link:focus-visible {
    transform: none;
  }
}


/* --------------------------------------------------------------------------
   Small phones
   -------------------------------------------------------------------------- */

@media (max-width: 575.98px) {
  .site-footer .container {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    max-width: 22rem;
    margin-right: auto;
    margin-left: auto;
  }

  .footer-nav a {
    width: 100%;
    justify-content: center;
  }

  .footer-subbar .d-flex {
    width: 100%;
  }
}


/* --------------------------------------------------------------------------
   Modal
   -------------------------------------------------------------------------- */

#themeModal {
  z-index: 1080;
}

.modal-backdrop {
  z-index: 1070;
}

.modal-content {
  color: var(--village-ink);
  background: var(--surface-card);
  border: 1px solid var(--border-soft);
  border-radius: 1.6rem;
  box-shadow: var(--shadow-soft);
}

.theme-choice {
  border: 2px solid var(--border-soft);
  border-radius: 1.15rem;
  color: var(--village-ink);
  background: var(--surface-card);
  cursor: pointer;
  transition:
    border-color .2s ease,
    background-color .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.theme-choice:hover,
.theme-choice.active {
  border-color: var(--navbar-current-bg);
  background:
    color-mix(
      in srgb,
      var(--navbar-current-bg) 9%,
      var(--surface-card)
    );
}

.theme-choice:hover {
  transform: translateY(-2px);
  box-shadow: 0 .75rem 1.75rem rgba(27, 67, 50, .1);
}

[data-bs-theme="dark"] .theme-choice:hover {
  box-shadow: 0 .75rem 1.75rem rgba(0, 0, 0, .24);
}

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */

.gallery-shell {
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 2rem;
  color: var(--village-ink);
  background: var(--surface-card);
  box-shadow: var(--shadow-soft);
}

.gallery-stage {
  position: relative;
  min-height: 520px;
  background: #0f1e16;
}

.gallery-stage img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  max-height: 680px;
  display: block;
  object-fit: cover;
}

.gallery-stage-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 5rem 2rem 2rem;
  color: #ffffff;
  background:
    linear-gradient(
      transparent,
      rgba(0, 0, 0, .84)
    );
}

.gallery-stage-action {
  position: absolute;
  z-index: 2;
  top: 1.25rem;
  right: 1.25rem;
}

.thumbnail-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 1rem;
  overflow-x: auto;
  padding: 1.25rem;
  background: var(--surface-card);
  scrollbar-width: thin;
  scrollbar-color: var(--navbar-current-bg) var(--surface-muted);
}

.gallery-thumb {
  position: relative;
  min-width: 120px;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 1rem;
  background: transparent;
  transition:
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

.gallery-thumb:hover {
  transform: translateY(-3px);
}

.gallery-thumb:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

.gallery-thumb.active {
  border-color: var(--navbar-current-bg);
  box-shadow:
    0 0 0 3px
    color-mix(
      in srgb,
      var(--navbar-current-bg) 16%,
      transparent
    );
}

.gallery-thumb img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-thumb span {
  position: absolute;
  left: .65rem;
  bottom: .55rem;
  color: #ffffff;
  font-size: .75rem;
  font-weight: 800;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .68);
}

.info-band {
  border: 1px solid var(--border-soft);
  border-radius: 2rem;
  background:
    linear-gradient(
      135deg,
      color-mix(
        in srgb,
        var(--village-green) 11%,
        var(--surface-card)
      ),
      color-mix(
        in srgb,
        var(--village-lime) 14%,
        var(--surface-card)
      )
    );
}

/* --------------------------------------------------------------------------
   Responsive gallery
   -------------------------------------------------------------------------- */

@media (max-width: 991.98px) {
  .gallery-stage,
  .gallery-stage img {
    min-height: 420px;
  }

  .thumbnail-strip {
    grid-template-columns: repeat(6, 150px);
  }
}

@media (max-width: 575.98px) {
  .navbar-brand img {
    max-width: 170px;
  }

  .gallery-stage,
  .gallery-stage img {
    min-height: 340px;
  }

  .gallery-stage-overlay {
    padding: 4rem 1.25rem 1.25rem;
  }
}

/* --------------------------------------------------------------------------
   Accessibility
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* scroll to another part of the page button */

.scroll-to-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;

  width: 90%;
  min-height: 72px;
  padding: 0.85rem 1.4rem;

  color: var(--bs-body-color);
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--bs-primary) 10%, var(--bs-body-bg)),
      var(--bs-body-bg)
    );

  border: 1px solid var(--bs-border-color);
  border-radius: 1rem;

  font-family: inherit;
  text-align: left;
  cursor: pointer;

  box-shadow:
    0 0.5rem 1.5rem rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.scroll-to-button:hover {
  transform: translateY(-3px);
  border-color: var(--bs-primary);

  box-shadow:
    0 0.85rem 2rem rgba(0, 0, 0, 0.18),
    0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.08);
}

.scroll-to-button:active {
  transform: translateY(0);
}

.scroll-to-button:focus-visible {
  outline: 0;
  border-color: var(--bs-primary);

  box-shadow:
    0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25),
    0 0.5rem 1.5rem rgba(0, 0, 0, 0.14);
}

.scroll-to-button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;

  width: 48px;
  height: 48px;

  color: var(--bs-white);
  background-color: var(--bs-primary);
  border-radius: 50%;

  font-size: 1.1rem;

  box-shadow: 0 0.35rem 0.8rem rgba(var(--bs-primary-rgb), 0.3);

  transition: transform 0.25s ease;
}

.scroll-to-button:hover .scroll-to-button__icon {
  transform: translateY(4px);
}

.scroll-to-button__content {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.scroll-to-button__title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.scroll-to-button__text {
  margin-top: 0.25rem;
  color: var(--bs-secondary-color);
  font-size: 0.8rem;
  font-weight: 500;
}

/* Explicit Bootstrap light mode */
[data-bs-theme="light"] .scroll-to-button {
  background:
    linear-gradient(
      135deg,
      rgba(var(--bs-primary-rgb), 0.08),
      var(--bs-body-bg)
    );

  border-color: var(--bs-border-color);
}

[data-bs-theme="dark"] .scroll-to-button {
  background:
    linear-gradient(
      135deg,
      rgba(var(--bs-primary-rgb), 0.18),
      var(--bs-tertiary-bg)
    );

  border-color: var(--bs-border-color-translucent);

  box-shadow:
    0 0.5rem 1.5rem rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

[data-bs-theme="dark"] .scroll-to-button:hover {
  border-color: var(--bs-primary);

  box-shadow:
    0 0.85rem 2rem rgba(0, 0, 0, 0.45),
    0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.12);
}

@media (max-width: 575.98px) {
  .scroll-to-button {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-to-button,
  .scroll-to-button__icon {
    transition: none;
  }
}

/* scroll to top button */

.scroll-to-top-button-container {
  margin-top: 1.4rem;
}

@media (min-width: 576px) {
  .scroll-to-top-button-container {
    margin-top: 1.75rem;
  }
}

@media (min-width: 768px) {
  .scroll-to-top-button-container {
    margin-top: 1rem;
  }
}

@media (min-width: 992px) {
  .scroll-to-top-button-container {
    margin-top: 2rem;
  }
}

@media (min-width: 1200px) {
  .scroll-to-top-button-container {
    margin-top: 1.4rem;
  }
}

@media (min-width: 1400px) {
  .scroll-to-top-button-container {
    margin-top: 2rem;
  }
}

.scroll-to-top-button {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  padding: 0;

  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;

  color: var(--bs-body-color);
  background: transparent;
  border: 3px solid var(--bs-border-color);
  border-radius: 50%;

  font: inherit;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.scroll-to-top-button i {
  display: block;
  line-height: 1;
}

[data-bs-theme="light"] .scroll-to-top-button {
  color: var(--bs-light);
  border-color: var(--bs-light);
}

[data-bs-theme="dark"] .scroll-to-top-button {
  color: var(--bs-light);
  border-color: var(--bs-light);
}

.scroll-to-top-button:hover {
  color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.scroll-to-top-button:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

/* modal buttons */


.modal-button-footer-close {
  position: relative;
  width: 200px;
  min-height: 38px;
  padding: 6px 52px 6px 9px;
  overflow: hidden;
  text-align: left !important;
  text-transform: uppercase;
  border: 0 !important;
  color: var(--bs-success-text-emphasis);
  background-color: var(--bs-success-bg-subtle);
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.modal-button-footer-close-label {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--bs-white);
  background-color: var(--bs-success);
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.modal-button-footer-close-label i,
.modal-button-footer-close-label svg {
  display: block;
  margin: 0;
  line-height: 1;
}

[data-bs-theme="light"] .modal-button-footer-close:hover,
[data-bs-theme="light"] .modal-button-footer-close:focus-visible {
  color: #052c16;
  background-color: #a3cfbb;
}

[data-bs-theme="light"] .modal-button-footer-close:hover .modal-button-footer-close-label,
[data-bs-theme="light"] .modal-button-footer-close:focus-visible .modal-button-footer-close-label {
  color: #ffffff;
  background-color: #146c43;
}

[data-bs-theme="dark"] .modal-button-footer-close {
  color: #d1e7dd;
  background-color: #2d6048;
  border: 1px solid #479f76 !important;
}

[data-bs-theme="dark"] .modal-button-footer-close .modal-button-footer-close-label {
  color: #ffffff;
  background-color: #198754;
}

[data-bs-theme="dark"] .modal-button-footer-close:hover,
[data-bs-theme="dark"] .modal-button-footer-close:focus-visible {
  color: #ffffff;
  background-color: #3d7a5d;
  border-color: #75b798 !important;
}

[data-bs-theme="dark"] .modal-button-footer-close:hover .modal-button-footer-close-label,
[data-bs-theme="dark"] .modal-button-footer-close:focus-visible .modal-button-footer-close-label {
  color: #ffffff;
  background-color: #20a464;
}

.modal-button-footer-close:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.35);
}

.modal-button-footer-close:active {
  transform: translateY(1px);
}

@media (prefers-reduced-motion: reduce) {
  .modal-button-footer-close,
  .modal-button-footer-close-label {
    transition: none;
  }
}

