*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  min-width: 320px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

ul {
  list-style: none;
}


:root {
  --forest: #1a3a20;
  --forest-mid: #2b5535;
  --forest-light: #3d7248;
  --gold: #c49a3c;
  --gold-light: #e2ba6e;
  --cream: #f0ece4;
  --cream-dark: #e3decb;
  --white: #f0ece4;
  --ink: #1c1a16;
  --ink-mid: #4a4640;
  --ink-light: #8a857e;
  --border: rgba(28, 26, 22, 0.12);
  --border-light: rgba(255, 255, 255, 0.12);
  --display: 'Cormorant Garamond', 'Georgia', serif;
  --numeric-font: 'Playfair Display', serif;
  --body: 'Figtree', 'Helvetica Neue', sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;
}


.wrap {
  max-width: min(1360px, 100%);
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 80px);
}

.section {
  padding: clamp(64px, 8vw, 96px) 0;
}

.section--dark {
  background: var(--forest);
}

.section--light {
  background: var(--white);
}

.section--cream {
  background: var(--cream);
}

.overline {
  font-family: var(--body);
  font-size: clamp(10px, 1.1vw, 11px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.overline--dark {
  color: var(--forest-mid);
}

.overline--light {
  color: var(--gold-light);
}

.section-head {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 24px;
}

.section-head em {
  font-style: italic;
  color: var(--forest-mid);
}

.section-head--light {
  color: #fdfbf7;
}

.section-head--light em {
  color: var(--gold-light);
}

.body-text {
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.8;
  color: var(--ink-mid);
  margin-bottom: 28px;
  max-width: 480px;
}


/* ════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.reveal-group>* {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-group.visible>*:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}

.reveal-group.visible>*:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.08s;
}

.reveal-group.visible>*:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.16s;
}

.reveal-group.visible>*:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.24s;
}

.reveal-group.visible>*:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: 0.32s;
}

.fade-cascade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: calc(var(--i, 0) * 0.13s);
}

.fade-cascade.visible {
  opacity: 1;
  transform: none;
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}


/* ════════════════════════════════════════
   CTA PILLS
════════════════════════════════════════ */
.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--body);
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.28s ease;
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}

.cta-pill--solid {
  background: var(--gold);
  color: var(--forest);
  border-color: var(--gold);
}

.cta-pill--solid:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.cta-pill--ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
}

.cta-pill--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.cta-pill--dark {
  background: var(--forest);
  color: #fdfbf7;
  border-color: var(--forest);
}

.cta-pill--dark:hover {
  background: var(--forest-mid);
  border-color: var(--forest-mid);
}

.cta-pill--outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}

.cta-pill--outline:hover {
  background: var(--forest);
  color: #fdfbf7;
}

.cta-play-icon {
  font-size: 9px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.22s;
}

.text-link:hover {
  gap: 12px;
}

.text-link--light {
  color: var(--gold-light);
}

.text-link--dark {
  color: var(--forest-mid);
}


/* ════════════════════════════════════════
   NAVBAR — when solid
════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: transparent;
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.navbar.navbar-solid {
  background: rgba(240, 236, 228, 0.97);
  border-bottom-color: var(--cream);
}

.navbar-inner {
  height: clamp(60px, 7vw, 72px);
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar-logo-circle {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-pill);
  overflow: hidden;
  flex-shrink: 0;
}

.navbar-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navbar-logo-text {
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 22px);
  color: #ffffff;
  transition: color 0.4s;
}

.navbar.navbar-solid .navbar-logo-text {
  color: var(--ink);
}

/* Nav links */
.navbar-group {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
  margin-left: auto;
}

.navbar-link {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  transition: color 0.4s;
}

.navbar.navbar-solid .navbar-link {
  color: var(--ink-mid);
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s;
}

.navbar-link:hover {
  color: #ffffff;
}

.navbar.navbar-solid .navbar-link:hover {
  color: var(--ink);
}

.navbar-link:hover::after {
  width: 100%;
}

.navbar-cta {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.navbar-cta:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  color: #ffffff;
}

.navbar.navbar-solid .navbar-cta {
  background: var(--forest);
  color: #fdfbf7;
  border-color: var(--forest);
}

.navbar.navbar-solid .navbar-cta:hover {
  background: var(--gold);
  color: var(--forest);
  border-color: var(--gold);
}

.navbar-hamburger {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  padding: 6px;
  transition: color 0.4s, transform 0.2s;
  border-radius: var(--radius-sm);
}

.navbar.navbar-solid .navbar-hamburger {
  color: var(--ink);
}

.navbar-hamburger:hover {
  transform: scale(1.1);
}

/* Mobile drawer */
.navbar-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(320px, 88vw);
  background: var(--forest);
  display: flex;
  flex-direction: column;
  padding: 24px 32px 40px;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 10000;
  overflow-y: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-drawer {
  visibility: hidden;
}


.navbar-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

.navbar-drawer-close {
  align-self: flex-end;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.navbar-drawer-close:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  transform: rotate(90deg);
}

.navbar-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.navbar-drawer-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.navbar-drawer-link {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 500;
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s, padding-left 0.2s;
}

.navbar-drawer-link:hover {
  color: #ffffff;
  padding-left: 6px;
}

.navbar-drawer-link i {
  color: var(--gold);
  width: 16px;
}

.navbar-drawer-cta {
  margin-top: 28px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px;
  border-radius: var(--radius-pill);
  text-align: center;
  display: block;
  background: var(--gold);
  color: var(--forest);
  transition: background 0.2s, color 0.2s;
}

.navbar-drawer-cta:hover {
  background: var(--gold-light);
}


/* ════════════════════════════════════════
   MODAL
════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 26, 22, 0.4);
  --backdrop-filter: none !important;
  --webkit-backdrop-filter: none !important;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  background: var(--cream);
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.28);
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: var(--forest);
}

.modal-image {
  position: relative;
  height: 240px;
  width: 100%;
}

.modal-date-badge {
  position: absolute;
  bottom: -20px;
  right: 28px;
  background: var(--forest);
  color: #fdfbf7;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 3px solid var(--cream);
}

.m-month {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.m-day {
  display: block;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.modal-body {
  padding: 36px 32px 32px;
}

.modal-location {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 8px;
}

.modal-title {
  font-family: var(--display);
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 12px;
}

.modal-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.modal-tags .tag {
  font-size: 11px;
  font-weight: 600;
  background: var(--cream-dark);
  color: var(--forest-mid);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.modal-desc {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.75;
  margin-bottom: 28px;
}

.btn-modal-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--forest);
  color: #fdfbf7;
  padding: 16px 24px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.btn-modal-primary:hover {
  background: var(--forest-mid);
}


/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: var(--forest);
  color: #fdfbf7;
  padding: clamp(48px, 6vw, 72px) 0 32px;
}

.footer-inner {
  max-width: min(1360px, 100%);
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 80px);
}

.footer-tagline {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: clamp(32px, 5vw, 56px);
  flex-wrap: wrap;
}

.footer-tagline__text {
  font-family: var(--display);
  font-size: clamp(15px, 1.8vw, 19px);
  font-style: italic;
  color: var(--gold-light);
  flex-shrink: 0;
}

.footer-tagline__line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  min-width: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: clamp(32px, 5vw, 56px);
}

.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand-circle {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.footer-brand-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-brand-logo span {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

#footerHead {
  font-family: 'poppins', sans-serif;
  font-size: 15px;
  text-transform: capitalize;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  max-width: 280px;
}

.footer-nav-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  margin-bottom: 20px;
  display: block;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s, padding-left 0.2s;
}

.footer-nav a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-social-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  margin-bottom: 20px;
  display: block;
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.footer-social-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.footer-social-btn i {
  color: #ffffff;
  font-size: 13px;
}

.footer-district-info {
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-district-info i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.78);
}


/* ════════════════════════════════════════
   LEAFLET GLOBALS
════════════════════════════════════════ */
.leaflet-top,
.leaflet-bottom {
  z-index: 400 !important;
}

.map-pin-marker {
  width: 32px;
  height: 32px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.map-pin-marker i {
  transform: rotate(45deg);
  color: #fdfbf7;
  font-size: 12px;
}

.map-tooltip {
  background: var(--ink);
  color: #fdfbf7;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.map-tooltip::before {
  border-top-color: var(--ink) !important;
}

.leaflet-popup-content-wrapper {
  border-radius: var(--radius-md) !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14) !important;
  padding: 4px;
}

.leaflet-popup-content {
  margin: 10px 14px;
}

.leaflet-popup-tip {
  background: var(--cream);
}

/* ════════════════════════════════════════
   RESPONSIVE GLOBAL
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .navbar-hamburger {
    display: block;
  }

  .navbar-group {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .section-head {
    font-size: clamp(28px, 7vw, 48px);
  }
}

@media (max-width: 600px) {
  .footer-tagline {
    flex-direction: column;
    gap: 8px;
  }

  .footer-tagline__line {
    display: none;
  }

  .cta-pill {
    padding: 12px 24px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 52px 0;
  }

  .section-head {
    font-size: clamp(26px, 8.5vw, 38px);
  }

  .body-text {
    font-size: 14px;
  }

  .footer-bottom {
    gap: 16px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}

@media (max-width: 360px) {
  .section {
    padding: 44px 0;
  }

  .cta-pill {
    font-size: 11px;
    padding: 11px 18px;
  }
}

@media (min-width: 769px) {
  .navbar-hamburger {
    display: none;
  }

  .navbar-drawer {
    display: none !important;
  }
}