/* Road Rangers Oregon — v20260424-1906 */
/* ===== RESET & ROOT ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --red:       #b84c3a;
  --red-lt:    #d4695a;
  --red-dk:    #7a2a1a;
  --cream:     #f5efe3;
  --bark:      #2c1a0e;
  --pine:      #1e4030;
  --fern:      #3a6b4a;
  --sage:      #6ba87a;
  --sky:       #a8d4e8;
  --sun:       #f2b84b;
  --sand:      #e8d9c0;
  --white:     #fffdf8;
  --text:      #2c1a0e;
  --text-md:   #5a3e2b;
  --text-lt:   #7a5a3a;
  --radius:    16px;
  --radius-lg: 28px;
  --nav-h:     72px;
  --nav-bg:    #1f4d35;   /* nav + hero — same dark forest green */
  --hero-bg:   #1f4d35;   /* darker forest green for hero */
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== SKIP LINK (accessibility) ===== */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--pine); color: #fff;
  padding: 8px 16px; border-radius: 0 0 8px 8px;
  font-weight: 700; text-decoration: none; z-index: 9999;
}
.skip-link:focus { top: 0; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 40px;
  background: var(--hero-bg);
  box-shadow: 0 3px 0 rgba(0,0,0,0.2), 0 6px 20px rgba(0,0,0,0.25);
}
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-img {
  width: 52px; height: 52px; border-radius: 50%;
  border: 3px solid var(--red);
  object-fit: cover;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.nav-brand-text {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem; color: #fff;
  line-height: 1; letter-spacing: 0.01em;
}
.nav-brand-text span {
  display: block; font-family: 'Nunito', sans-serif;
  font-size: 0.6rem; font-weight: 700;
  color: rgba(255,255,255,0.6); letter-spacing: 0.18em; text-transform: uppercase;
}
.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-links a {
  color: #fff; text-decoration: none;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.05em; padding: 6px 14px; border-radius: 50px;
}
.nav-links a:hover { background: rgba(255,255,255,0.1); color: var(--sun); }
.nav-cta {
  background: var(--red) !important; color: #fff !important;
  box-shadow: 0 3px 0 var(--red-dk);
}
.nav-cta:hover { background: var(--red-lt) !important; }
.nav-gear {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; margin-left: 4px;
  border-radius: 50%; color: rgba(255,255,255,0.3);
  text-decoration: none;
}
.nav-gear svg { width: 16px; height: 16px; fill: currentColor; display: block; }
.nav-gear:hover { color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.10); }

/* ── Hamburger — hidden on desktop, shown on mobile ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
}
/* X state */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav dropdown ── */
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--nav-bg);
    padding: 12px 20px 20px;
    border-top: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 8px 24px rgba(0,0,0,0.30);
    gap: 4px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 11px 16px;
    font-size: 0.95rem;
    border-radius: 10px;
    color: #fff;
  }
  .nav-links a:hover { background: rgba(255,255,255,0.10); color: var(--sun); }
  .nav-cta {
    margin-top: 6px;
    text-align: center;
    padding: 12px 20px !important;
  }
  .nav-gear { display: none; } /* gear hidden on mobile — accessible via footer */
}

/* ===== CALENDAR DAY MODAL ===== */
.cal-modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,0.55);
  align-items: center; justify-content: center;
  padding: 24px;
}
.cal-modal-overlay.open { display: flex; }
.cal-modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  max-width: 360px; width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  border-top: 5px solid var(--hero-bg);
}
.cal-modal-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; cursor: pointer;
  font-size: 1.6rem; color: var(--text-lt);
  line-height: 1; padding: 2px 6px;
  border-radius: 6px;
}
.cal-modal-close:hover { background: var(--sand); color: var(--text); }
.cal-modal-date {
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem; color: var(--pine);
  margin-bottom: 16px;
}
.cal-modal-body .cal-event {
  font-size: 0.9rem;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 8px;
  display: block;
}
.cal-modal-none {
  font-size: 0.92rem; color: var(--text-lt);
  font-weight: 600; font-style: italic;
}

/* ===== SECTION DIVIDERS — zero height, solid border only ===== */
/* No SVG, no gradient. Each divider is simply 0px tall; the
   section background colour provides the colour change. */
.section-divider {
  display: block;
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
  border: none;
  position: relative;
  z-index: 2;
}
/* individual classes kept for markup compatibility — no styles needed */
.divider-pine-to-cream,
.divider-cream-to-pine,
.divider-cream-to-red,
.divider-red-to-pine,
.divider-pine-to-sand { /* intentionally empty */ }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--hero-bg);   /* dark forest green */
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 40px) 60px 100px;
  position: relative; overflow: hidden;
  margin-bottom: 0;
}
.hero-bg-trees {
  /* Full-width mountain silhouette layers — 3 tiers, angular peaks */
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 200px; z-index: 1; pointer-events: none;
  overflow: hidden;
}
.hero-tree-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero-dots {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  max-width: 1200px; margin: 0 auto; width: 100%;
}
.hero-left {}
.hero-tag {
  display: inline-block;
  background: var(--red); color: #fff;
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 20px; box-shadow: 0 3px 0 var(--red-dk);
  animation: floatUp 0.6s 0.1s both;
}
.hero h1 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff; line-height: 1.12; margin-bottom: 20px;
  text-shadow: 2px 3px 0 rgba(0,0,0,0.2);
  animation: floatUp 0.7s 0.2s both;
}
.hero h1 span { color: var(--sun); }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.88);
  line-height: 1.8; margin-bottom: 36px;
  font-weight: 600; max-width: 480px;
  animation: floatUp 0.6s 0.35s both;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: floatUp 0.6s 0.5s both; }

/* Buttons */
.btn {
  display: inline-block; text-decoration: none;
  font-family: 'Nunito', sans-serif; font-weight: 800;
  font-size: 0.9rem; letter-spacing: 0.05em;
  padding: 14px 30px; border-radius: 50px;
  cursor: pointer; border: none;
}
.btn-red { background: var(--red); color: #fff; box-shadow: 0 4px 0 var(--red-dk); }
.btn-red:hover, .btn-red:focus { transform: translateY(-2px); box-shadow: 0 6px 0 var(--red-dk); outline: 2px solid var(--sun); outline-offset: 2px; }
.btn-red:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--red-dk); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover, .btn-outline:focus { border-color: #fff; background: rgba(255,255,255,0.1); outline: none; }

/* Hero photo grid */
.hero-right {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  animation: floatUp 0.8s 0.3s both;
}
.hero-photo {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 4px 6px 0 rgba(0,0,0,0.3);
  border: 3px solid rgba(255,255,255,0.15);
  aspect-ratio: 4/3;
}
.hero-photo:hover { transform: scale(1.04) rotate(-1deg); }
.hero-photo:nth-child(2) { transform: rotate(2deg); margin-top: 18px; }
.hero-photo:nth-child(2):hover { transform: rotate(2deg) scale(1.04); }
.hero-photo:nth-child(3) { transform: rotate(-1.5deg); }
.hero-photo:nth-child(3):hover { transform: rotate(-1.5deg) scale(1.04); }
.hero-photo:nth-child(4) { transform: rotate(1deg); margin-top: -10px; }
.hero-photo:nth-child(4):hover { transform: rotate(1deg) scale(1.04); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== SECTIONS — shared ===== */
.about-section   { background: var(--cream);  padding: 72px 60px; margin: 0; }
.gallery-section { background: var(--hero-bg); padding: 72px 60px; margin: 0; }
.calendar-section{ background: var(--cream);  padding: 72px 60px; margin: 0; }
.why-section     { background: var(--red);    padding: 72px 60px; margin: 0; position: relative; overflow: hidden; }
.fb-section      { background: var(--hero-bg); padding: 72px 60px; margin: 0; }
.contact-section { background: var(--sand);   padding: 72px 60px; margin: 0; }

.why-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 36px 36px;
}

.section-inner { max-width: 1100px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: var(--sun); color: var(--bark);
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 50px; margin-bottom: 12px;
  box-shadow: 0 3px 0 #b07a20;
}
.section-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--pine); line-height: 1.15; margin-bottom: 14px;
}
.section-sub {
  font-size: 1rem; color: var(--text-md); line-height: 1.8;
  max-width: 600px; margin: 0 auto; font-weight: 600;
}
.gallery-section .section-title,
.fb-section .section-title { color: #fff; }
.gallery-section .section-sub,
.fb-section .section-sub { color: rgba(255,255,255,0.8); }
.why-section .section-title { color: #fff; }
.why-section .section-sub { color: rgba(255,255,255,0.88); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(28px);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== ABOUT CARDS ===== */
.about-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.about-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 30px 22px 24px; text-align: center;
  border: 2px solid var(--sand); box-shadow: 0 4px 0 var(--sand);
  position: relative; overflow: hidden;
}
.about-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
}
.about-card:nth-child(1)::before { background: var(--red); }
.about-card:nth-child(2)::before { background: var(--fern); }
.about-card:nth-child(3)::before { background: var(--sun); }
.about-card:nth-child(4)::before { background: var(--sky); }
.about-card:hover { transform: translateY(-6px); box-shadow: 0 10px 0 var(--sand); }
.card-icon { font-size: 2.8rem; margin-bottom: 14px; display: block; }
.about-card h3 {
  font-family: 'Fredoka One', cursive; font-size: 1.15rem;
  color: var(--pine); margin-bottom: 8px;
}
.about-card p { font-size: 0.88rem; color: var(--text-md); line-height: 1.7; font-weight: 600; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 8px; margin-top: 40px;
}
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 3px solid rgba(255,255,255,0.12);
  aspect-ratio: 1/1; cursor: pointer;
  box-shadow: 3px 4px 0 rgba(0,0,0,0.3);
  max-height: 160px;   /* cap height so nothing dominates the screen */
}
.gallery-item:hover, .gallery-item:focus-within {
  transform: scale(1.04) rotate(-0.5deg); z-index: 2;
  box-shadow: 6px 8px 0 rgba(0,0,0,0.4); border-color: var(--sun);
}
.gallery-item.tall  { grid-row: span 2; aspect-ratio: auto; }
.gallery-item.wide  { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item img   { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-item:hover img, .gallery-item:focus-within img { filter: brightness(1.08) saturate(1.08); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.78));
  color: #fff; padding: 24px 12px 10px;
  font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.04em;
  opacity: 0;
}
.gallery-item:hover .gallery-caption,
.gallery-item:focus-within .gallery-caption { opacity: 1; }

/* ===== CALENDAR ===== */
.cal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px; flex-wrap: wrap; gap: 12px;
}
.cal-month {
  font-family: 'Fredoka One', cursive;
  font-size: 1.65rem; color: var(--pine);
}
.cal-note {
  font-size: 0.78rem; font-weight: 700; color: var(--text-lt);
  background: var(--sand); padding: 6px 14px; border-radius: 50px;
  border: 2px solid rgba(0,0,0,0.08);
}
.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  border-radius: var(--radius); overflow: hidden;
  border: 3px solid var(--sand);
  box-shadow: 0 4px 0 var(--sand);
}
.cal-head {
  background: var(--hero-bg); color: rgba(255,255,255,0.85);
  padding: 11px 4px; text-align: center;
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.cal-head:last-child { border-right: none; }
.cal-cell {
  background: var(--white); min-height: 90px; padding: 8px 8px 6px;
  border-right: 2px solid var(--sand); border-bottom: 2px solid var(--sand);
}
.cal-cell:nth-child(7n) { border-right: none; }
.cal-cell.empty { background: rgba(244,239,230,0.55); }
.cal-cell.weekend { background: rgba(255,253,248,0.8); }
.cal-num {
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem; color: var(--text-lt); display: block; margin-bottom: 5px;
}
.cal-cell.active .cal-num { color: var(--pine); }
.cal-event {
  display: block; font-size: 0.67rem; font-weight: 700;
  line-height: 1.35; padding: 4px 7px; border-radius: 8px;
  margin-bottom: 3px; letter-spacing: 0.01em;
}
.ev-water    { background: #daeef7; color: #0c3e58; border-left: 3px solid #3a8aaa; }
.ev-museum   { background: #ede8f7; color: #2e1660; border-left: 3px solid #7a5ab0; }
.ev-nature   { background: #e2f2e6; color: #163320; border-left: 3px solid #4a9a5a; }
.ev-community{ background: #fdeee8; color: #4a1a0a; border-left: 3px solid #d06040; }
.ev-leisure  { background: #fef5e0; color: #4a2e04; border-left: 3px solid #d09820; }
.ev-park     { background: #e4f0e4; color: #152e15; border-left: 3px solid #5a8a5a; }

.cal-legend {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 18px; padding-top: 18px;
  border-top: 2px dashed var(--sand);
}
.leg-item { display: flex; align-items: center; gap: 7px; font-size: 0.75rem; font-weight: 700; color: var(--text-md); }
.leg-dot { width: 12px; height: 12px; border-radius: 4px; flex-shrink: 0; }

/* ===== WHY CARDS ===== */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: 48px; position: relative; z-index: 1;
}
.why-card {
  background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.28);
  border-radius: var(--radius-lg); padding: 36px 28px; text-align: center;
}
.why-card:hover { background: rgba(255,255,255,0.22); transform: translateY(-5px); }
.why-icon { font-size: 2.6rem; margin-bottom: 16px; display: block; }
.why-card h3 { font-family: 'Fredoka One', cursive; font-size: 1.25rem; color: #fff; margin-bottom: 10px; }
.why-card p { font-size: 0.9rem; color: rgba(255,255,255,0.88); line-height: 1.75; font-weight: 600; }

/* ===== FACEBOOK ===== */
.fb-card-wrap { display: flex; justify-content: center; }
.fb-card {
  display: inline-flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,0.08); border: 2px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg); padding: 44px 60px;
  max-width: 480px; width: 100%; margin: 0 auto;
}
.fb-card:hover { background: rgba(255,255,255,0.13); }
.fb-icon-wrap {
  width: 60px; height: 60px; background: #1877f2;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; box-shadow: 0 4px 0 rgba(0,0,0,0.25);
}
.fb-icon-wrap svg { width: 28px; height: 28px; fill: #fff; }
.fb-name { font-family: 'Fredoka One', cursive; font-size: 1.45rem; color: #fff; margin-bottom: 4px; }
.fb-handle { font-size: 0.82rem; color: rgba(255,255,255,0.55); font-weight: 600; margin-bottom: 28px; }
.fb-btn {
  background: #1877f2; color: #fff; text-decoration: none;
  font-weight: 800; font-size: 0.87rem; letter-spacing: 0.07em;
  padding: 13px 32px; border-radius: 50px;
  box-shadow: 0 4px 0 #0d4db0;
  display: inline-block;
}
.fb-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 0 #0d4db0; }

/* ===== CONTACT ===== */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 60px; align-items: start; margin-top: 56px;
}
.contact-aside h3 {
  font-family: 'Fredoka One', cursive; font-size: 1.5rem;
  color: var(--pine); margin-bottom: 14px;
}
.contact-aside p { font-size: 0.92rem; color: var(--text-md); line-height: 1.85; margin-bottom: 28px; font-weight: 600; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.c-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--white); border-radius: var(--radius);
  padding: 14px 16px; border: 2px solid rgba(0,0,0,0.06);
  box-shadow: 0 3px 0 rgba(0,0,0,0.05);
}
.c-item:hover { transform: translateY(-2px); box-shadow: 0 5px 0 rgba(0,0,0,0.07); }
.c-item-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--pine); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1rem;
}
.c-item-text { font-size: 0.83rem; }
.c-item-label { font-weight: 800; color: var(--pine); margin-bottom: 2px; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; }
.c-item-value { color: var(--text-md); font-weight: 600; line-height: 1.5; }
.c-item-value a { color: var(--fern); text-decoration: none; font-weight: 700; }
.c-item-value a:hover { color: var(--red); text-decoration: underline; }

/* ===== FORM ===== */
.form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; border: 3px solid var(--sand);
  box-shadow: 0 6px 0 rgba(0,0,0,0.07);
}
.form-title { font-family: 'Fredoka One', cursive; font-size: 1.45rem; color: var(--pine); margin-bottom: 24px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-group { margin-bottom: 16px; }
.f-group label {
  display: block; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--pine); margin-bottom: 6px;
}
.f-group label span { color: var(--red); }
.f-group input, .f-group select, .f-group textarea {
  width: 100%; background: var(--cream);
  border: 2px solid var(--sand); border-radius: var(--radius);
  padding: 11px 14px;
  font-family: 'Nunito', sans-serif; font-size: 0.92rem;
  font-weight: 600; color: var(--text);
  outline: none;
  -webkit-appearance: none; appearance: none;
}
.f-group input:focus, .f-group select:focus, .f-group textarea:focus {
  border-color: var(--fern); background: #fff;
  box-shadow: 0 0 0 3px rgba(58,107,74,0.15);
}
.f-group input::placeholder, .f-group textarea::placeholder { color: var(--text-lt); opacity: 0.7; }
.f-group textarea { min-height: 110px; resize: vertical; }
.f-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233a6b4a' fill='none' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px; cursor: pointer;
}
.f-submit {
  width: 100%; background: var(--red); color: #fff; border: none; cursor: pointer;
  padding: 15px 24px; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-size: 0.92rem; font-weight: 800;
  letter-spacing: 0.06em; box-shadow: 0 4px 0 var(--red-dk);
  margin-top: 8px;
}
.f-submit:hover, .f-submit:focus { transform: translateY(-2px); box-shadow: 0 6px 0 var(--red-dk); outline: 2px solid var(--sun); outline-offset: 2px; }
.f-submit:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--red-dk); }
.f-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 9999;
  background: var(--pine); color: #fff;
  padding: 18px 28px; border-radius: var(--radius-lg);
  border: 3px solid var(--sage);
  box-shadow: 0 8px 32px rgba(0,0,0,0.22), 0 4px 0 var(--fern);
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.95rem;
  display: flex; align-items: center; gap: 12px;
  transform: translateY(130px); opacity: 0;
  max-width: 360px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.error { background: var(--red); border-color: var(--red-lt); box-shadow: 0 8px 32px rgba(0,0,0,0.22), 0 4px 0 var(--red-dk); }
.toast-icon { font-size: 1.4rem; flex-shrink: 0; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.9);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  padding: 20px;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw; max-height: 80vh;
  border-radius: var(--radius);
  border: 3px solid rgba(255,255,255,0.15);
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-caption {
  margin-top: 14px; color: rgba(255,255,255,0.85);
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  min-height: 20px;
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  color: #fff; font-size: 1.8rem; cursor: pointer; font-weight: 700;
  background: rgba(255,255,255,0.12); width: 44px; height: 44px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  line-height: 1; border: none;
}
.lightbox-close:hover { background: var(--red); }

/* ===== FOOTER ===== */
footer {
  background: var(--bark); padding: 40px 60px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--red); object-fit: cover; }
.footer-name { font-family: 'Fredoka One', cursive; font-size: 1.1rem; color: rgba(255,255,255,0.85); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a {
  color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.footer-links a:hover { color: var(--sun); }
.footer-admin-link { color: rgba(255,255,255,0.2) !important; font-size: 1rem !important; letter-spacing: 0 !important; text-transform: none !important; }
.footer-admin-link:hover { color: rgba(255,255,255,0.45) !important; }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.28); font-weight: 600; }

/* ===== ANIMATIONS ===== */
@keyframes floatUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE: 1024px ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: grid; max-width: 480px; }
  .about-cards { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .gallery-item { max-height: 140px; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 4/3; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== RESPONSIVE: 768px ===== */
@media (max-width: 768px) {
  nav { padding: 10px 20px; }
  
  .hero { padding: calc(var(--nav-h) + 20px) 20px 56px; }
  .hero-right { display: none; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); margin-bottom: 16px; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 28px; }
  .hero-btns { gap: 10px; flex-direction: column; align-items: flex-start; }
  .btn { padding: 13px 24px; font-size: 0.85rem; }

  .section-divider { height: 0; }

  .about-section, .gallery-section, .calendar-section,
  .why-section, .fb-section, .contact-section { padding: 56px 24px; }
  
  .section-header { margin-bottom: 40px; }
  .about-cards { grid-template-columns: 1fr 1fr; gap: 14px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 7px; }
  .gallery-item { max-height: 110px; }
  .gallery-item.wide { grid-column: span 2; aspect-ratio: auto; }
  .why-grid { grid-template-columns: 1fr; gap: 14px; }
  .why-card { padding: 28px 20px; }
  
  .f-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .fb-card { padding: 32px 28px; }
  
  footer { flex-direction: column; align-items: flex-start; padding: 32px 24px; gap: 20px; }
  .footer-links { gap: 14px; }

  .cal-cell { min-height: 60px; padding: 5px; cursor: pointer; }
  .cal-cell.active { box-shadow: inset 0 0 0 2px var(--pine); }
  .cal-event { font-size: 0.58rem; padding: 3px 5px; }
  .cal-num { font-size: 0.9rem; }
  .cal-legend { gap: 10px; }
  .leg-item { font-size: 0.7rem; }

  .toast { left: 16px; right: 16px; bottom: 16px; max-width: none; }
}

/* ===== RESPONSIVE: 480px ===== */
@media (max-width: 480px) {
  .nav-brand-text { font-size: 1rem; }
  .nav-brand-text span { font-size: 0.5rem; }
  .nav-logo-img { width: 36px; height: 36px; }

  .about-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { aspect-ratio: 4/3; }
  .section-header { margin-bottom: 32px; }

  .section-title { font-size: clamp(1.6rem, 6vw, 2rem); }
  .section-sub { font-size: 0.9rem; }

  .cal-grid { font-size: 0.62rem; }
  .cal-event { display: block; font-size: 0.55rem; padding: 2px 4px; margin-bottom: 2px; }
  .cal-cell.active { background: rgba(30,64,48,0.1); }
  .cal-cell { min-height: 56px; padding: 3px; }
  .cal-num { font-size: 0.75rem; margin-bottom: 2px; }

  .fb-card { padding: 28px 18px; }
  .contact-layout { gap: 28px; }
  .form-card { padding: 22px 16px; }

  footer { padding: 28px 16px; gap: 16px; }
  .footer-links { gap: 10px; flex-wrap: wrap; }
}
