/* ──────────────────────────────────────────
   VFW Middleburg Post 5640 — Styles
   Classic · Elegant · Forest Green & Cream
────────────────────────────────────────── */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: 1.7;
  color: #1B4332;
  background-color: #FDFCF8;
}

img, svg { display: block; max-width: 100%; }

/* ── Utility ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Section Layout ── */
.section {
  padding: 6rem 0;
}

.section-alt {
  background-color: #F5F0E8;
}

.section-dark {
  background-color: #1B4332;
  color: #FDFCF8;
}

.section-header {
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D4A843;
  margin-bottom: 1rem;
}

.section-label-light {
  color: #D4A843;
}

.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1B4332;
  margin-bottom: 1.25rem;
}

.section-heading-light {
  color: #FDFCF8;
}

.section-sub {
  font-size: 1.125rem;
  color: #468242;
  max-width: 560px;
  margin: 0 auto;
}

/* ──────────────────────────────────────────
   Navigation
────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
  background-color: transparent;
}

#navbar.nav-scrolled {
  background-color: rgba(253, 252, 248, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(27, 67, 50, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: #FDFCF8;
  transition: color 0.3s ease;
}

#navbar.nav-scrolled .nav-logo {
  color: #1B4332;
}

.nav-logo-emblem {
  font-size: 1.25rem;
  color: #D4A843;
  line-height: 1;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-main {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-logo-sub {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(253, 252, 248, 0.85);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.nav-link:hover {
  color: #FDFCF8;
  background-color: rgba(253, 252, 248, 0.1);
}

#navbar.nav-scrolled .nav-link {
  color: #2b522a;
}

#navbar.nav-scrolled .nav-link:hover {
  color: #1B4332;
  background-color: rgba(27, 67, 50, 0.06);
}

.nav-cta {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1B4332;
  background-color: #D4A843;
  text-decoration: none;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  margin-left: 0.75rem;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background-color: #C49A30;
  transform: translateY(-1px);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #FDFCF8;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#navbar.nav-scrolled .nav-toggle-bar {
  background-color: #1B4332;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ──────────────────────────────────────────
   Hero
────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(44, 82, 42, 0.85) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(20, 51, 38, 0.7) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(70, 130, 66, 0.4) 0%, transparent 50%),
    linear-gradient(170deg, #0c1f17 0%, #1B4332 40%, #2b522a 70%, #143326 100%);
  z-index: 0;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(253, 252, 248, 1) 40px,
      rgba(253, 252, 248, 1) 41px
    );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253, 252, 248, 0.7);
  margin-bottom: 2rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(253, 252, 248, 0.15);
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.hero-badge-star {
  color: #D4A843;
  font-size: 0.6rem;
  line-height: 1;
}

.hero-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #FDFCF8;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-heading-accent {
  font-style: italic;
  color: #D4A843;
  font-weight: 600;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.75;
  color: rgba(253, 252, 248, 0.8);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(253, 252, 248, 0.7);
}

.hero-detail svg {
  color: #D4A843;
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(253, 252, 248, 0.5);
  font-size: 0.7rem;
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(253, 252, 248, 0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.btn-primary {
  background-color: #D4A843;
  color: #1B4332;
}

.btn-primary:hover {
  background-color: #C49A30;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: #FDFCF8;
  border: 1.5px solid rgba(253, 252, 248, 0.35);
}

.btn-outline:hover {
  background-color: rgba(253, 252, 248, 0.1);
  border-color: rgba(253, 252, 248, 0.6);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-arrow {
  transition: transform 0.2s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* ──────────────────────────────────────────
   About
────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(27, 67, 50, 0.15);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  width: 55%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(27, 67, 50, 0.2);
  border: 4px solid #FDFCF8;
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-img-accent {
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  width: 100px;
  height: 100px;
  background-color: #D4A843;
  border-radius: 12px;
  z-index: -1;
  opacity: 0.3;
}

.about-text {
  max-width: 540px;
}

.about-text p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #2b522a;
  margin-bottom: 1.25rem;
}

.about-signature {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(27, 67, 50, 0.12);
}

.about-signature-line {
  width: 48px;
  height: 2px;
  background-color: #D4A843;
  margin-bottom: 1rem;
}

.about-signature-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  color: #1B4332;
  line-height: 1.6;
}

/* ──────────────────────────────────────────
   Visit Cards
────────────────────────────────────────── */
.visit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.visit-card {
  background-color: #FDFCF8;
  border: 1px solid rgba(27, 67, 50, 0.08);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(27, 67, 50, 0.1);
}

.visit-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(27, 67, 50, 0.06);
  border-radius: 12px;
  color: #1B4332;
  margin-bottom: 1.5rem;
}

.visit-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #1B4332;
  margin-bottom: 0.75rem;
}

.visit-card p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #468242;
}

/* ──────────────────────────────────────────
   Community (Dark)
────────────────────────────────────────── */
.community-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.community-text p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.community-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(253, 252, 248, 0.12);
}

.community-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.community-stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #D4A843;
  line-height: 1;
}

.community-stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253, 252, 248, 0.6);
}

.community-stat-divider {
  width: 1px;
  height: 48px;
  background-color: rgba(253, 252, 248, 0.15);
}

.community-image {
  position: relative;
}

.community-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.community-image-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(212, 168, 67, 0.4);
  border-radius: 16px;
  z-index: -1;
}

/* ──────────────────────────────────────────
   Directions
────────────────────────────────────────── */
.directions-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.directions-info {
  max-width: 480px;
}

.directions-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}

.directions-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.directions-detail-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(27, 67, 50, 0.06);
  border-radius: 10px;
  color: #1B4332;
  flex-shrink: 0;
}

.directions-detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #468242;
  margin-bottom: 0.125rem;
}

.directions-detail-value {
  display: block;
  font-size: 1rem;
  color: #1B4332;
  line-height: 1.5;
}

.directions-link {
  color: #1B4332;
  text-decoration: none;
  border-bottom: 1px solid rgba(27, 67, 50, 0.2);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.directions-link:hover {
  color: #D4A843;
  border-color: #D4A843;
}

.btn-directions {
  display: inline-flex;
  margin-top: 0.5rem;
}

.directions-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(27, 67, 50, 0.12);
  aspect-ratio: 4/3;
  min-height: 300px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background-color: #EDE5D8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #2b522a;
  text-align: center;
  padding: 2rem;
}

.map-placeholder svg {
  color: #1B4332;
  opacity: 0.4;
}

.map-placeholder-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: #468242;
}

.map-placeholder-sub {
  font-size: 0.8125rem;
  color: #6a9c61;
}

.map-placeholder-link {
  color: #1B4332;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-placeholder-link:hover {
  color: #D4A843;
}

/* ──────────────────────────────────────────
   Contact
────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-text {
  max-width: 480px;
}

.contact-text p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #468242;
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #1B4332;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(27, 67, 50, 0.08);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.contact-method:hover {
  background-color: rgba(27, 67, 50, 0.04);
  border-color: rgba(27, 67, 50, 0.15);
}

.contact-method-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(27, 67, 50, 0.06);
  border-radius: 8px;
  color: #1B4332;
  flex-shrink: 0;
}

.contact-form-wrapper {
  background-color: #FDFCF8;
  border: 1px solid rgba(27, 67, 50, 0.08);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(27, 67, 50, 0.06);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #2b522a;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9375rem;
  color: #1B4332;
  background-color: #F5F0E8;
  border: 1.5px solid transparent;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  line-height: 1.5;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
}

.form-input::placeholder {
  color: #8fb58a;
}

.form-input:focus {
  outline: none;
  border-color: #D4A843;
  background-color: #FDFCF8;
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5l3 3 3-3' stroke='%231B4332' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background-color: rgba(27, 67, 50, 0.06);
  border: 1px solid rgba(27, 67, 50, 0.12);
  border-radius: 8px;
  color: #1B4332;
  font-size: 0.9375rem;
  font-weight: 500;
}

.form-success svg {
  color: #468242;
  flex-shrink: 0;
}

/* ──────────────────────────────────────────
   Footer
────────────────────────────────────────── */
.footer {
  background-color: #0c1f17;
  color: rgba(253, 252, 248, 0.7);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(253, 252, 248, 0.08);
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-emblem {
  font-size: 1.1rem;
  color: #D4A843;
}

.footer-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FDFCF8;
}

.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(253, 252, 248, 0.55);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-link-heading {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D4A843;
  margin-bottom: 0.25rem;
}

.footer-link-group a {
  font-size: 0.875rem;
  color: rgba(253, 252, 248, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link-group a:hover {
  color: #FDFCF8;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 2rem;
  text-align: center;
}

.footer-copy,
.footer-note {
  font-size: 0.8125rem;
  color: rgba(253, 252, 248, 0.4);
}

/* ──────────────────────────────────────────
   Animations
────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────────────────────────
   Responsive
────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid,
  .community-layout,
  .directions-wrapper,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-img-secondary {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    margin-top: 1rem;
    border: none;
  }

  .about-img-accent {
    display: none;
  }

  .community-image-accent {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background-color: #1B4332;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0.25rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 0.875rem 1rem;
    color: rgba(253, 252, 248, 0.85);
    border-radius: 8px;
  }

  .nav-link:hover {
    background-color: rgba(253, 252, 248, 0.08);
    color: #FDFCF8;
  }

  .nav-cta {
    margin-left: 0;
    text-align: center;
    margin-top: 1rem;
    padding: 0.875rem 1.25rem;
    color: #1B4332;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 7rem 1.25rem 4rem;
  }

  .hero-details {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .community-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .community-stat-divider {
    width: 48px;
    height: 1px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.125rem;
  }

  .section {
    padding: 3rem 0;
  }

  .visit-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    text-align: left;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .fade-up {
    opacity: 1;
    transform: none;
  }
}
