/* ===========================
   RESET & CUSTOM PROPERTIES
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:       #0a0a12;
  --white:     #ffffff;
  --cream:     #faf8f4;
  --primary:   #0b1f45;
  --blue-mid:  #1340a0;
  --neon:      #ffdd00;
  --red:       #e8192c;
  --orange:    #ff6b00;
  --purple:    #6c2bd9;
  --muted:     #6e7b96;
  --border:    rgba(255,255,255,.12);
  --r-sm:      8px;
  --r-md:      16px;
  --r-lg:      28px;
  --r-pill:    100px;
  --shadow-card: 0 20px 60px rgba(0,0,0,.18);
  --shadow-glow: 0 0 40px rgba(255,221,0,.35);
  --font-head: 'Bebas Neue', 'Impact', 'Arial Black', sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--ink); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ===========================
   GOOGLE FONTS LOAD
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ===========================
   TYPOGRAPHY
=========================== */
.display { font-family: var(--font-head); line-height: .95; letter-spacing: .02em; }
h1.display { font-size: clamp(3.5rem, 9vw, 8rem); }
h2.display { font-size: clamp(2.5rem, 6vw, 5.5rem); }
h3 { font-family: var(--font-body); font-size: 1.2rem; font-weight: 700; }

.eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .6;
}

/* ===========================
   LAYOUT
=========================== */
.container { max-width: 1220px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 100px 0; }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  padding: 1rem 2rem;
  border-radius: var(--r-pill);
  cursor: pointer;
  border: none;
  transition: transform .22s cubic-bezier(.34,1.56,.64,1), box-shadow .22s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background .18s;
}
.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn:hover::after { background: rgba(255,255,255,.06); }

/* Yellow CTA */
.btn-neon {
  background: var(--neon);
  color: var(--ink);
  box-shadow: 0 6px 30px rgba(255,221,0,.5);
}
.btn-neon:hover { box-shadow: 0 12px 40px rgba(255,221,0,.7); }

/* Red */
.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 6px 30px rgba(232,25,44,.45);
}
.btn-red:hover { box-shadow: 0 12px 40px rgba(232,25,44,.6); }

/* Ghost white */
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* Dark outline */
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline-dark:hover { background: var(--primary); color: var(--white); }

/* ===========================
   ANNOUNCEMENT BAR
=========================== */
.announce-bar {
  background: var(--neon);
  color: var(--ink);
  padding: .55rem 0;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-align: center;
  position: relative;
  z-index: 100;
}
.announce-bar marquee { display: inline; }

/* ===========================
   HEADER
=========================== */
.site-header {
  background: rgba(10,10,18,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.logo-mark {
  background: var(--neon);
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 1.3rem;
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: .02em;
}
.logo-text { font-weight: 800; font-size: 1.05rem; color: var(--white); line-height: 1.15; }
.logo-text small { display: block; font-size: .68rem; font-weight: 400; color: rgba(255,255,255,.5); letter-spacing: .08em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: .15rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  font-weight: 500;
  padding: .5rem .9rem;
  border-radius: var(--r-sm);
  transition: color .18s, background .18s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,.08); }

.nav-cta { padding: .6rem 1.4rem !important; }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1533929736458-ca588d08c8be?w=1800&q=80&fit=crop');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,18,.88) 0%,
    rgba(11,31,69,.75) 50%,
    rgba(10,10,18,.5) 100%
  );
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--neon);
  color: var(--ink);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .45rem 1.1rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: var(--white);
  max-width: 820px;
  margin-bottom: 1rem;
  line-height: .92;
}
.hero h1 em {
  font-style: normal;
  color: var(--neon);
  -webkit-text-stroke: 0px;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.72);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-bottom: 4rem; }
.hero-trust {
  display: flex;
  gap: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 2rem;
  flex-wrap: wrap;
}
.hero-trust-item { color: rgba(255,255,255,.6); font-size: .82rem; }
.hero-trust-item strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--white); }

/* ===========================
   TICKER STRIP
=========================== */
.ticker-strip {
  background: var(--primary);
  padding: 1rem 0;
  overflow: hidden;
  border-top: 2px solid var(--neon);
  border-bottom: 2px solid var(--neon);
}
.ticker-inner {
  display: flex;
  gap: 3rem;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-item {
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.ticker-dot { color: var(--neon); font-size: 1.2rem; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===========================
   PARKS SECTION
=========================== */
.section-parks { background: var(--ink); padding: 120px 0; }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.section-header h2 { color: var(--white); }
.section-header h2 span { color: var(--neon); }

.parks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.parks-grid .park-featured {
  grid-column: span 2;
}

.park-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--primary);
}
.park-card.park-featured { aspect-ratio: 16/9; }

.park-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
  display: block;
}
.park-card:hover img { transform: scale(1.07); }

.park-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,18,.9) 0%,
    rgba(10,10,18,.4) 50%,
    transparent 100%
  );
  transition: background .3s;
}
.park-card:hover .park-card-overlay {
  background: linear-gradient(
    to top,
    rgba(10,10,18,.95) 0%,
    rgba(10,10,18,.5) 55%,
    rgba(20,64,160,.15) 100%
  );
}

.park-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.75rem;
  transform: translateY(0);
  transition: transform .3s ease;
}
.park-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--neon);
  color: var(--ink);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: var(--r-pill);
  margin-bottom: .75rem;
}
.park-card-body h3 {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: .04em;
  line-height: 1;
  margin-bottom: .4rem;
}
.park-card.park-featured .park-card-body h3 { font-size: 2.6rem; }
.park-card-loc {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.park-card-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.8);
  margin-top: .6rem;
  max-width: 460px;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, opacity .3s;
  opacity: 0;
}
.park-card:hover .park-card-desc { max-height: 80px; opacity: 1; }
.park-rating {
  display: flex; align-items: center; gap: .5rem;
  margin-top: .75rem;
}
.stars-row { color: var(--neon); font-size: .9rem; letter-spacing: .04em; }
.rating-num { color: rgba(255,255,255,.85); font-size: .85rem; font-weight: 600; }

/* ===========================
   STATS BAND
=========================== */
.stats-band {
  background: var(--neon);
  padding: 60px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-val {
  font-family: var(--font-head);
  font-size: 4.5rem;
  color: var(--ink);
  line-height: 1;
  letter-spacing: .02em;
}
.stat-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(0,0,0,.55);
  margin-top: .3rem;
}

/* ===========================
   FEATURES / WHY US
=========================== */
.section-features { padding: 120px 0; background: var(--cream); }
.features-heading { max-width: 680px; margin-bottom: 4rem; }
.features-heading .eyebrow { color: var(--blue-mid); margin-bottom: .75rem; }
.features-heading h2 { line-height: 1; }
.features-heading h2 em { font-style: normal; color: var(--red); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feat-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,.06);
  transition: box-shadow .25s, transform .25s;
  border: 1.5px solid rgba(0,0,0,.05);
}
.feat-card:hover { box-shadow: 0 16px 60px rgba(0,0,0,.12); transform: translateY(-4px); }
.feat-num {
  font-family: var(--font-head);
  font-size: 5rem;
  color: rgba(0,0,0,.05);
  position: absolute;
  top: 1rem; right: 1.5rem;
  line-height: 1;
  pointer-events: none;
}
.feat-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
.feat-icon-neon { background: var(--neon); }
.feat-icon-red { background: #ffe5e8; }
.feat-icon-blue { background: #e0eaff; }
.feat-card h3 { font-size: 1.15rem; margin-bottom: .6rem; color: var(--ink); }
.feat-card p { font-size: .9rem; color: var(--muted); line-height: 1.65; }

/* ===========================
   TIPS SECTION
=========================== */
.section-tips {
  background: var(--primary);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.section-tips::before {
  content: 'TIPS';
  position: absolute;
  font-family: var(--font-head);
  font-size: 22rem;
  color: rgba(255,255,255,.03);
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  line-height: 1;
}
.tips-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.tips-left .eyebrow { color: var(--neon); margin-bottom: 1rem; }
.tips-left h2 { color: var(--white); margin-bottom: 2rem; }
.tips-left h2 em { font-style: normal; color: var(--neon); }
.tips-list { display: flex; flex-direction: column; gap: 1.25rem; }

.tip-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.25rem;
  align-items: start;
}
.tip-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255,221,0,.12);
  border: 1.5px solid rgba(255,221,0,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.tip-body strong { display: block; color: var(--white); font-size: .95rem; margin-bottom: .3rem; }
.tip-body p { color: rgba(255,255,255,.55); font-size: .87rem; }

.tips-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.tip-highlight {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: 1.5rem;
  border-left: 4px solid var(--neon);
  transition: background .2s;
}
.tip-highlight:hover { background: rgba(255,255,255,.1); }
.tip-highlight-tag {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: .6rem;
}
.tip-highlight p { color: rgba(255,255,255,.75); font-size: .9rem; line-height: 1.6; }

/* ===========================
   NEWSLETTER
=========================== */
.section-newsletter { padding: 100px 0; background: var(--cream); }
.newsletter-wrap {
  background: var(--ink);
  border-radius: 32px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}
.newsletter-img {
  position: relative;
  overflow: hidden;
}
.newsletter-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .7;
}
.newsletter-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--ink));
}
.newsletter-body {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}
.newsletter-body .eyebrow { color: var(--neon); }
.newsletter-body h2 { font-family: var(--font-head); font-size: 3rem; color: var(--white); letter-spacing: .04em; line-height: 1; }
.newsletter-body p { color: rgba(255,255,255,.6); font-size: .9rem; }
.nl-form { display: flex; gap: .75rem; flex-wrap: wrap; }
.nl-form input {
  flex: 1;
  min-width: 200px;
  padding: .9rem 1.3rem;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.07);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .92rem;
  outline: none;
  transition: border-color .18s;
}
.nl-form input::placeholder { color: rgba(255,255,255,.35); }
.nl-form input:focus { border-color: var(--neon); }
.nl-disclaimer { font-size: .75rem; color: rgba(255,255,255,.35); }
.nl-disclaimer a { color: var(--neon); }

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: var(--ink);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.f-brand .logo { margin-bottom: 1.25rem; }
.f-brand p { font-size: .87rem; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 280px; }
.f-brand address {
  font-style: normal;
  margin-top: 1.25rem;
  font-size: .83rem;
  color: rgba(255,255,255,.35);
  line-height: 1.8;
  border-left: 2px solid var(--neon);
  padding-left: 1rem;
}
.f-col h5 {
  color: rgba(255,255,255,.9);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.f-col a { color: rgba(255,255,255,.45); font-size: .87rem; transition: color .18s; }
.f-col a:hover { color: var(--neon); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: var(--neon); }
.footer-badges { display: flex; gap: .75rem; }
.f-badge {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.45);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: var(--r-pill);
}

/* ===========================
   PAGE HERO (Inner Pages)
=========================== */
.page-hero {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  padding: 100px 0 80px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .25;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--ink) 70%);
  opacity: .85;
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; gap: .6rem;
  font-size: .8rem; color: rgba(255,255,255,.4);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,.4); transition: color .18s; }
.breadcrumb a:hover { color: var(--neon); }
.breadcrumb span { opacity: .4; }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero .sub { color: rgba(255,255,255,.6); font-size: 1.05rem; max-width: 600px; }

/* ===========================
   TERMS PAGE
=========================== */
.terms-page { background: var(--cream); }
.terms-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: start;
  padding: 80px 0;
}
.toc-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  position: sticky;
  top: 90px;
  box-shadow: 0 4px 30px rgba(0,0,0,.06);
  border: 1.5px solid rgba(0,0,0,.05);
}
.toc-card h4 {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1.5px solid rgba(0,0,0,.07);
}
.toc-list { list-style: none; display: flex; flex-direction: column; gap: .3rem; }
.toc-list a {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  color: var(--muted);
  font-weight: 500;
  padding: .55rem .75rem;
  border-radius: var(--r-sm);
  transition: all .18s;
}
.toc-list a:hover { color: var(--primary); background: rgba(19,64,160,.06); }

.terms-body { max-width: 720px; }
.terms-meta {
  background: var(--white);
  border-left: 4px solid var(--neon);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 1rem 1.5rem;
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
}
.alert-info {
  background: #eef2ff;
  border: 1.5px solid #c7d4ff;
  border-radius: var(--r-md);
  padding: 1.1rem 1.4rem;
  font-size: .9rem;
  color: #3451b2;
  display: flex;
  gap: .75rem;
  margin-bottom: 2rem;
}
.terms-body h2 {
  font-size: 1.35rem;
  color: var(--primary);
  margin: 2.5rem 0 1rem;
  padding-top: 2rem;
  border-top: 1.5px solid rgba(0,0,0,.07);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.terms-body h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.terms-body h2 .h-num {
  background: var(--neon);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 800;
  padding: .25rem .6rem;
  border-radius: var(--r-sm);
  letter-spacing: .08em;
}
.terms-body p { color: #374151; margin-bottom: 1rem; font-size: .95rem; line-height: 1.75; }
.terms-body ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.terms-body ul li { color: #374151; font-size: .93rem; margin-bottom: .5rem; line-height: 1.6; }
.terms-body ul li::marker { color: var(--blue-mid); }

/* ===========================
   CONTACT PAGE
=========================== */
.contact-page { background: var(--cream); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  padding: 80px 0;
}
.info-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.info-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
  border: 1.5px solid rgba(0,0,0,.05);
  transition: box-shadow .2s;
}
.info-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); }
.ic-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--neon);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.ic-body strong { display: block; font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: .35rem; }
.ic-body p, .ic-body address { font-size: .9rem; color: var(--ink); font-style: normal; line-height: 1.65; }
.ic-body a { color: var(--blue-mid); font-weight: 600; }

.contact-map {
  position: relative;
  height: 180px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--primary);
  margin-top: .75rem;
}
.contact-map img { width: 100%; height: 100%; object-fit: cover; opacity: .6; }
.contact-map-label {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: var(--neon);
  color: var(--ink);
  font-size: .78rem;
  font-weight: 800;
  padding: .35rem .9rem;
  border-radius: var(--r-pill);
  letter-spacing: .06em;
}

.form-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 3rem;
  box-shadow: 0 10px 50px rgba(0,0,0,.08);
  border: 1.5px solid rgba(0,0,0,.05);
}
.form-card h3 { font-size: 1.6rem; color: var(--primary); margin-bottom: .4rem; }
.form-card > p { color: var(--muted); font-size: .9rem; margin-bottom: 2rem; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-group { margin-bottom: 1.25rem; }
.f-group label { display: block; font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; }
.f-group input,
.f-group select,
.f-group textarea {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 2px solid rgba(0,0,0,.08);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink);
  background: var(--cream);
  outline: none;
  transition: border-color .18s, background .18s;
}
.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
  border-color: var(--blue-mid);
  background: var(--white);
}
.f-group textarea { resize: vertical; min-height: 140px; }
.f-consent { display: flex; align-items: flex-start; gap: .75rem; font-size: .83rem; color: var(--muted); }
.f-consent input { width: auto; margin-top: .2rem; cursor: pointer; accent-color: var(--blue-mid); }
.f-consent a { color: var(--blue-mid); }
.form-card .btn { width: 100%; justify-content: center; margin-top: 1.25rem; font-size: 1rem; padding: 1.1rem; }
.success-msg {
  display: none;
  background: #f0fdf4;
  border: 2px solid #86efac;
  border-radius: var(--r-md);
  padding: 2rem;
  text-align: center;
  margin-top: 1rem;
}
.success-msg strong { display: block; font-size: 1.1rem; color: #166534; margin-bottom: .4rem; }
.success-msg p { font-size: .9rem; color: #15803d; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 4rem;
}
.faq-item {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1.5rem;
  border: 1.5px solid rgba(0,0,0,.05);
}
.faq-item strong { display: block; color: var(--primary); font-size: .95rem; margin-bottom: .6rem; }
.faq-item p { color: var(--muted); font-size: .88rem; line-height: 1.6; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .parks-grid { grid-template-columns: 1fr 1fr; }
  .parks-grid .park-featured { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  h1.display { font-size: clamp(2.8rem, 12vw, 5rem); }
  h2.display { font-size: clamp(2rem, 8vw, 3.5rem); }
  .parks-grid { grid-template-columns: 1fr; }
  .parks-grid .park-featured { grid-column: span 1; }
  .park-card { aspect-ratio: 16/10; }
  .features-grid { grid-template-columns: 1fr; }
  .tips-layout { grid-template-columns: 1fr; gap: 3rem; }
  .newsletter-wrap { grid-template-columns: 1fr; }
  .newsletter-img { height: 220px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .terms-wrap { grid-template-columns: 1fr; }
  .toc-card { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .hero-trust { gap: 1.5rem; }
}
