/* ============================================================
   FORT PINES MOBILE HOME & RV PARK
   style.css — Full Design System
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;500;600;700&family=Open+Sans:wght@300;400;500;600&display=swap');

/* ── Design Tokens ── */
:root {
  /* Olive / Army Greens */
  --pine-darkest: #131508;   /* very dark olive-black */
  --pine-dark:    #222a0e;   /* dark army olive — nav & footer */
  --pine:         #4b5320;   /* olive drab — the US Army color */
  --pine-mid:     #5e6a28;   /* medium olive */
  --pine-light:   #738334;   /* lighter olive */
  --sage:         #8f9c45;   /* khaki-olive */
  --sage-light:   #b0bc6e;   /* light khaki */

  /* Patriotic accents */
  --flag-red:     #b22234;   /* Old Glory Red */
  --flag-blue:    #3c3b6e;   /* Old Glory Blue */

  /* Neutrals */
  --cream:        #f8f5eb;
  --cream-dark:   #ede7d4;
  --cream-darker: #dfd5be;
  --white:        #ffffff;
  --bark:         #6b4c2a;
  --bark-light:   #9b7a50;

  /* Text */
  --text:         #1a1c08;
  --text-muted:   #545f38;
  --text-light:   #8a9070;

  /* Accent (amber CTA) */
  --amber:        #c97f2a;
  --amber-light:  #e4a84a;
  --amber-dark:   #a05e18;

  /* Borders & Shadows */
  --border:       rgba(75, 83, 32, 0.15);
  --border-mid:   rgba(75, 83, 32, 0.25);
  --radius:       10px;
  --radius-lg:    16px;
  --transition:   0.25s ease;
  --shadow:       0 2px 8px rgba(0,0,0,0.06), 0 6px 20px rgba(0,0,0,0.05);
  --shadow-hover: 0 6px 20px rgba(0,0,0,0.12), 0 20px 50px rgba(0,0,0,0.08);
  --shadow-card:  0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.05);

  /* Typography */
  --font-head: 'Cabin', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--text-muted); line-height: 1.75; }

/* ── Layout Utilities ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--white);
}

.section-dark {
  background: var(--pine-dark);
}

.section-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pine-mid);
  margin-bottom: 0.6rem;
}

.section-label-light {
  color: var(--sage-light);
}

.divider {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}

.divider-center {
  margin-left: auto;
  margin-right: auto;
}

.text-center { text-align: center; }

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(201, 127, 42, 0.4);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 127, 42, 0.55);
  filter: brightness(1.06);
  color: #fff;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--pine-dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid var(--pine);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.btn-outline:hover {
  background: var(--pine);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--pine-dark);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
  transition: padding var(--transition);
  /* Patriotic flag stripe along the top */
  border-top: 5px solid;
  border-image: linear-gradient(to right,
    var(--flag-red)  0%      33.33%,
    #ffffff          33.33%  66.66%,
    var(--flag-blue) 66.66%  100%
  ) 1;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand .brand-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.navbar-brand .brand-sub {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--sage-light);
  display: block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fort-nav {
  display: flex;
  flex-direction: row;   /* explicit — overrides any Bootstrap column default */
  align-items: center;
  gap: 0.25rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-link {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-book {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pine-dark);
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  margin-left: 0.5rem;
  box-shadow: 0 2px 10px rgba(201,127,42,0.35);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.nav-book:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,127,42,0.5);
  filter: brightness(1.06);
  color: var(--pine-dark);
}

/* Hamburger (mobile) */
.navbar-toggler {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  color: var(--white);
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

/* Mobile nav collapse */
.navbar-collapse {
  display: flex;
  align-items: center;
}

@media (max-width: 900px) {
  .navbar-toggler { display: block; }

  .navbar-collapse {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--pine-darkest);
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }

  .navbar-collapse.open {
    display: flex;
  }

  .fort-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
    width: 100%;
  }

  .nav-link { width: 100%; padding: 0.6rem 0.85rem; font-size: 0.95rem; }
  .nav-book { margin-left: 0; margin-top: 0.75rem; width: 100%; text-align: center; padding: 0.7rem 1rem; }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(
      175deg,
      var(--pine-darkest) 0%,
      var(--pine-dark) 25%,
      #244e16 55%,
      #1f4412 80%,
      #162e0c 100%
    );
}

/* Pine tree silhouette layer */
.hero-trees {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 1;
}

/* Stars / texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(90,150,60,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(23,53,16,0.4) 0%, transparent 50%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0 10rem;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 1.25rem;
  padding: 0.3rem 0.9rem;
  border: 1px solid rgba(168, 204, 138, 0.3);
  border-radius: 20px;
  background: rgba(168, 204, 138, 0.08);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.hero h1 .accent {
  color: var(--amber-light);
  display: block;
}

.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  font-family: var(--font-head);
  font-weight: 500;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

/* ── Highlights Strip ── */
.highlights {
  background: var(--pine);
  padding: 2rem 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.highlight-item:last-child { border-right: none; }

.highlight-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.highlight-item h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.highlight-item p {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  line-height: 1.3;
  margin: 0;
}

@media (max-width: 900px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .highlight-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .highlight-item:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 500px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .highlight-item:nth-child(odd) { border-right: none; }
  .highlight-item:last-child { border-bottom: none; }
}

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

.about-img-placeholder {
  background: linear-gradient(135deg, var(--cream-darker) 0%, var(--cream-dark) 100%);
  border: 2px dashed var(--border-mid);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-family: var(--font-head);
  font-size: 0.85rem;
  text-align: center;
  gap: 0.75rem;
}

.about-img-placeholder .ph-icon { font-size: 2.5rem; opacity: 0.5; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Site Types Cards ── */
.site-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.site-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--pine-light);
}

.site-card-img {
  background: linear-gradient(135deg, var(--cream-darker) 0%, var(--cream-dark) 100%);
  border-bottom: 1px solid var(--border);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-family: var(--font-head);
  font-size: 0.8rem;
  text-align: center;
  gap: 0.5rem;
}

.site-card-img .card-ph-icon { font-size: 2.8rem; opacity: 0.45; }

.site-card-body {
  padding: 1.75rem;
}

.site-card-body h3 {
  color: var(--pine-dark);
  margin-bottom: 0.5rem;
}

.site-card-body p {
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

.site-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.site-tag {
  display: inline-block;
  background: rgba(45, 90, 27, 0.08);
  color: var(--pine);
  border: 1px solid var(--border);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
}

@media (max-width: 640px) {
  .site-cards { grid-template-columns: 1fr; }
}

/* ── Amenities Grid ── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.amenity-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), border-color var(--transition);
}

.amenity-card:hover {
  transform: translateY(-3px);
  border-color: var(--sage);
}

.amenity-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.amenity-card h4 {
  color: var(--pine-dark);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.amenity-card p {
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .amenities-grid { grid-template-columns: 1fr; }
}

/* ── Rates Snapshot ── */
.rates-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.rates-table th {
  background: var(--pine-dark);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  text-align: left;
}

.rates-table td {
  padding: 0.95rem 1.5rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.rates-table tbody tr:last-child td { border-bottom: none; }

.rates-table tbody tr:hover { background: rgba(45,90,27,0.03); }

.rates-table .rate-type {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.rates-table .rate-price {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--pine-mid);
  font-size: 1.05rem;
}

.rates-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.75rem;
}

/* ── Attractions Section ── */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.attraction-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.attraction-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.attraction-img {
  background: linear-gradient(135deg, var(--cream-darker) 0%, var(--cream-dark) 100%);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 2.5rem;
}

.attraction-body {
  padding: 1.25rem 1.5rem;
}

.attraction-body .distance {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pine-mid);
  margin-bottom: 0.35rem;
}

.attraction-body h3 {
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.attraction-body p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .attractions-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .attractions-grid { grid-template-columns: 1fr; }
}

/* ── CTA Band ── */
.cta-band {
  background: linear-gradient(135deg, var(--pine-dark) 0%, var(--pine-darkest) 100%);
  padding: 4.5rem 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 1rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(160deg, var(--pine-darkest) 0%, var(--pine-dark) 60%, var(--pine) 100%);
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(90,150,60,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero .section-label { color: var(--sage-light); }

.page-hero h1 {
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin-top: 0.5rem;
}

/* ── Policy Cards ── */
.policy-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--pine-light);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-card);
}

.policy-card h3 {
  color: var(--pine-dark);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.policy-card p, .policy-card li {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.policy-card ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.policy-card li { margin-bottom: 0.35rem; }

/* ── Contact Info ── */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-info-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pine-mid);
  margin-bottom: 0.2rem;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ── Forms ── */
.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.45rem;
  letter-spacing: 0.02em;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--pine-light);
  box-shadow: 0 0 0 3px rgba(90, 150, 64, 0.15);
}

.form-control::placeholder { color: var(--text-light); }

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

select.form-control { cursor: pointer; }

.alert-success-custom {
  display: none;
  background: rgba(45,90,27,0.08);
  border: 1px solid rgba(45,90,27,0.25);
  border-radius: var(--radius);
  padding: 0.85rem 1.25rem;
  color: var(--pine-dark);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* ── Map Placeholder ── */
.map-placeholder {
  background: var(--cream-dark);
  border: 2px dashed var(--border-mid);
  border-radius: var(--radius-lg);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-family: var(--font-head);
  font-size: 0.85rem;
  text-align: center;
  gap: 0.75rem;
}

/* ── Booking Banner ── */
.booking-banner {
  background: linear-gradient(135deg, rgba(45,90,27,0.07) 0%, rgba(45,90,27,0.03) 100%);
  border: 1px solid rgba(45,90,27,0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem;
}

.booking-banner .campspot-logo {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--pine-mid);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.booking-banner h3 {
  color: var(--pine-dark);
  margin-bottom: 0.5rem;
}

.booking-banner p {
  max-width: 480px;
  margin: 0 auto 1.5rem;
  font-size: 0.9rem;
}

/* ── Fade Up Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* ── Footer ── */
footer {
  background: var(--pine-darkest);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .footer-logo {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.footer-col h5 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--white); }

.footer-col address {
  font-style: normal;
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  transition: color var(--transition);
}

.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── Military Tribute Section ── */
.military-tribute {
  background: var(--pine-darkest);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.military-tribute::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(178,34,52,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 50%, rgba(60,59,110,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.military-tribute .container { position: relative; z-index: 1; }

.tribute-flag-stripe {
  display: flex;
  gap: 0;
  width: 60px;
  height: 4px;
  border-radius: 2px;
  overflow: hidden;
  margin: 0.75rem 0 1.5rem;
}

.tribute-flag-stripe span:nth-child(1) { flex: 1; background: var(--flag-red); }
.tribute-flag-stripe span:nth-child(2) { flex: 1; background: #ffffff; }
.tribute-flag-stripe span:nth-child(3) { flex: 1; background: var(--flag-blue); }

.military-tribute h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.military-tribute p {
  color: rgba(255,255,255,0.65);
  max-width: 540px;
}

.military-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.military-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--sage);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.military-stat .stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.military-stat .stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

.military-discount-callout {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(178,34,52,0.12);
  border: 1px solid rgba(178,34,52,0.3);
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  margin-top: 2rem;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: #e08090;
}

.tribute-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.tribute-emblem {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow:
    0 0 0 12px rgba(178,34,52,0.06),
    0 0 0 24px rgba(60,59,110,0.06);
}

.tribute-flag-banner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  max-width: 240px;
}

.flag-row {
  height: 16px;
  border-radius: 2px;
}
.flag-row.red   { background: var(--flag-red); }
.flag-row.white { background: rgba(255,255,255,0.85); }
.flag-row.blue  { background: var(--flag-blue); height: 32px; }

@media (max-width: 768px) {
  .military-stats { grid-template-columns: 1fr 1fr; }
  .tribute-visual { margin-top: 2.5rem; }
}
@media (max-width: 480px) {
  .military-stats { grid-template-columns: 1fr; }
}
