:root {
  --navy: #0c1a26;
  --navy-light: #142839;
  --card: #17303f;
  --green: #8dc63f;
  --green-dark: #6ea82e;
  --white: #ffffff;
  --gray: #b9c4cc;
  --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); }

/* 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: 14px;
  padding-bottom: 14px;
  gap: 20px;
}

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

.brand-logo {
  height: 52px;
  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(141, 198, 63, 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(141, 198, 63, 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(141, 198, 63, 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(141, 198, 63, 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; }
}
