:root {
  --navy: #10201a;
  --navy-light: #1a2f26;
  --card: #223528;
  --green: #c9a227;
  --green-dark: #a3801c;
  --orange: #ee6c2f;
  --white: #ffffff;
  --gray: #bcc7bd;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
}

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

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.15;
}

.eyebrow {
  color: var(--green);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
}

.center { text-align: center; }
.section-lead.center { max-width: 640px; margin-left: auto; margin-right: auto; }

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 4px;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--green);
  color: var(--navy);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--green);
}
.btn-outline:hover { background: var(--green); color: var(--navy); transform: translateY(-2px); }

/* Announcement banner */
.announcement-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--navy);
  padding: 14px 48px;
  text-align: center;
}

.announcement-banner p {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1.4rem;
}

.announcement-banner-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--navy);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
}

.announcement-banner.dismissed {
  display: none;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--green);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}

.brand-logo {
  height: 84px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--navy);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--green-dark); }

.header-cta { padding: 10px 22px; font-size: 14px; white-space: nowrap; }

/* Hero */
.hero {
  position: relative;
  padding: 120px 0 130px;
  background: url("assets/gallery-2.jpg") center 70% / cover no-repeat;
  overflow: hidden;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 17, 25, 0.88) 0%, rgba(8, 17, 25, 0.75) 45%, rgba(8, 17, 25, 0.93) 100%);
  z-index: 1;
}

.hero-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }

.hero-badge {
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 0 auto 32px;
  background: var(--white);
  padding: 8px 12px;
  border-radius: 12px;
  box-shadow: 0 0 0 6px rgba(201, 162, 39, 0.12);
}

.hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  margin-bottom: 18px;
}
.hero h1 span { color: var(--green); }

.hero-sub {
  color: var(--gray);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections */
.section { padding: 90px 0; }
.section h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 16px; }

.amenities { background: var(--navy); }

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.amenity-card {
  background: var(--card);
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: 8px;
  padding: 32px 26px;
  text-align: center;
}

.amenity-card h3 {
  font-size: 20px;
  color: var(--green);
  margin-bottom: 12px;
}

.amenity-card p { color: var(--gray); font-size: 15px; }

/* Key Features */
.features { background: var(--navy-light); }

.feature-list {
  list-style: none;
  margin-top: 50px;
  columns: 2;
  column-gap: 40px;
}

.feature-list > li {
  break-inside: avoid;
  position: relative;
  padding: 10px 0 10px 34px;
  color: var(--white);
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-list > li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--green);
  font-weight: 700;
  font-size: 18px;
}

.sub-feature-list {
  list-style: none;
  margin-top: 10px;
  padding-left: 6px;
}

.sub-feature-list li {
  position: relative;
  padding: 4px 0 4px 20px;
  color: var(--gray);
  font-size: 15px;
  border-bottom: none;
}

.sub-feature-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--green);
}

@media (max-width: 700px) {
  .feature-list { columns: 1; }
}

/* Gallery */
.gallery { background: var(--navy-light); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.gallery-grid img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(201, 162, 39, 0.15);
}

/* Membership CTA */
.membership-cta {
  background: radial-gradient(circle at top, #1b3d21 0%, var(--navy) 65%);
  text-align: center;
}

.membership-inner { max-width: 620px; margin: 0 auto; }

.membership-badge {
  width: 100%;
  max-width: 260px;
  height: auto;
  margin: 0 auto 24px;
  background: var(--white);
  padding: 14px 18px;
  border-radius: 10px;
}

.membership-cta p { color: var(--gray); margin-bottom: 18px; font-size: 16px; }
.membership-cta .fine-print { font-size: 13px; opacity: 0.75; margin-bottom: 30px; }

/* Gift Card */
.gift-card-section { background: var(--navy-light); text-align: center; }
.gift-card-inner { max-width: 560px; margin: 0 auto; }
.gift-card-inner .section-lead { color: var(--gray); margin-bottom: 30px; }

/* Tour */
.tour { background: var(--navy); }

.tour-inner { max-width: 620px; }
.tour p { color: var(--gray); margin: 16px 0 26px; font-size: 16px; }

/* Location */
.location { background: var(--navy-light); }

.map-wrap {
  margin-top: 40px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* Footer */
.site-footer { background: #081119; padding-top: 60px; }

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo {
  height: 48px;
  width: auto;
  background: var(--white);
  padding: 8px 12px;
  border-radius: 6px;
}

.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a {
  color: var(--gray);
  text-decoration: none;
  font-size: 15px;
}
.footer-contact a:hover { color: var(--green); }

.footer-social { display: flex; gap: 18px; align-items: flex-start; }
.footer-social a {
  color: var(--gray);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.footer-social a:hover { color: var(--green); }

.footer-bottom {
  padding: 22px 0;
  text-align: center;
  color: var(--gray);
  font-size: 13px;
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 260px; }
}

/* Preseason Pass Popup */
.promo-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(4, 9, 14, 0.82);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.promo-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.promo-modal {
  position: relative;
  width: 100%;
  max-width: 460px;
  transform: scale(0.92);
  transition: transform 0.3s ease;
}

.promo-modal-overlay.active .promo-modal {
  transform: scale(1);
}

.promo-modal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--green);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
}

.promo-modal-close:hover { background: var(--green); }

.promo-modal-link {
  display: block;
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 100%);
  border: 2px solid var(--green);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
}

.promo-modal-content {
  padding: 40px 32px 32px;
  text-align: center;
}

.promo-modal-logo {
  height: 44px;
  width: auto;
  margin: 0 auto 18px;
  background: var(--white);
  padding: 6px 10px;
  border-radius: 8px;
}

.promo-modal-eyebrow {
  color: var(--green);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 8px;
}

.promo-modal-title {
  font-size: clamp(30px, 6vw, 40px);
  margin-bottom: 20px;
  color: var(--white);
}
.promo-modal-title span { color: var(--orange); }

.promo-modal-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 22px;
}

.promo-modal-hours {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray);
  font-size: 15px;
}

.promo-modal-amount {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--orange);
  font-size: 56px;
  line-height: 1;
}

.promo-modal-regular {
  color: var(--gray);
  font-size: 13px;
  text-decoration: line-through;
  opacity: 0.8;
}

.promo-modal-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-bottom: 20px;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--white);
}

.promo-modal-tagline {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  font-size: 14px;
  margin-bottom: 22px;
}

.promo-modal-cta { pointer-events: none; }

@media (max-width: 480px) {
  .promo-modal-content { padding: 34px 22px 26px; }
  .promo-modal-amount { font-size: 46px; }
}
