:root {
  --black: #0A0A0A;
  --panel: #141414;
  --lime: #9EFF1F;
  --lime-dim: #7ACC18;
  --white: #F5F5F5;
  --grey: #9A9A9A;
  --border: #262626;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--lime); text-decoration: none; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--lime);
}
.site-header nav a {
  color: var(--white);
  margin-left: 28px;
  font-size: 14px;
  font-weight: 500;
}
.site-header nav a:hover { color: var(--lime); }

/* Hero */
.hero {
  padding: 120px 0 100px;
  border-bottom: 1px solid var(--border);
  background-size: cover;
  background-position: center;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }
.eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 600;
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: 0.5px;
  max-width: 780px;
  color: var(--white);
}
.hero-sub {
  color: var(--grey);
  font-size: 18px;
  max-width: 520px;
  margin: 24px 0 36px;
}

.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: var(--lime);
  color: var(--black);
}
.btn-primary:hover { background: var(--lime-dim); transform: translateY(-1px); }
.btn-full { width: 100%; text-align: center; margin-top: 8px; }

/* Pricing */
.pricing { padding: 88px 0; border-bottom: 1px solid var(--border); }
.pricing h2, .book h2, .giveaway h2, .gallery h2, .reviews h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: 0.5px;
  margin-bottom: 40px;
}
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tier {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  position: relative;
}
.tier-featured {
  border-color: var(--lime);
}
.tier-tag {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--lime);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}
.tier h3 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.tier .price {
  color: var(--lime);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
}
.tier-desc { color: var(--grey); font-size: 14.5px; }
.price-note { color: var(--grey); font-size: 13.5px; margin-top: 24px; }

.section-sub { color: var(--grey); font-size: 14.5px; margin-top: -24px; margin-bottom: 32px; max-width: 560px; }

/* Gallery */
.gallery { padding: 88px 0; border-bottom: 1px solid var(--border); }
.gallery-track-wrap {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.gallery-grid {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: slide-track 32s linear infinite;
}
.gallery-track-wrap:hover .gallery-grid { animation-play-state: paused; }
.gallery-item {
  flex: 0 0 auto;
  width: 280px;
  aspect-ratio: 4 / 3;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-more {
  display: inline-block;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
}

/* Reviews */
.reviews { padding: 88px 0; border-bottom: 1px solid var(--border); }
.review-track-wrap {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.review-grid {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: slide-track 46s linear infinite;
}
.review-track-wrap:hover .review-grid { animation-play-state: paused; }
.review-card {
  flex: 0 0 auto;
  width: 340px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}
.review-quote { font-size: 14.5px; color: var(--white); margin-bottom: 14px; line-height: 1.6; }
.review-author { font-size: 13px; color: var(--lime); font-weight: 600; }

@keyframes slide-track {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Giveaway */
.giveaway { padding: 72px 0; border-bottom: 1px solid var(--border); }
.giveaway-inner p { color: var(--grey); max-width: 560px; margin-bottom: 20px; }
.social-links a {
  margin-right: 20px;
  font-weight: 600;
  font-size: 14px;
}

/* Booking form */
.book { padding: 88px 0 100px; }
.book-sub { color: var(--grey); max-width: 560px; margin-bottom: 36px; }

.booking-form {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.field-row { display: flex; flex-direction: column; gap: 8px; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.two-col > div { display: flex; flex-direction: column; gap: 8px; }

label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--white);
}
input, select, textarea {
  background: var(--panel);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 12px 14px;
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 15px;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--lime);
  outline-offset: 1px;
  border-color: var(--lime);
}
textarea { resize: vertical; }

.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 400;
  color: var(--grey);
  cursor: pointer;
}
.radio-option input { width: auto; accent-color: var(--lime); }

.form-status {
  font-size: 14px;
  min-height: 20px;
  color: var(--lime);
}

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 28px 0; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  color: var(--grey);
  font-size: 13px;
}
.footer-inner span:first-child {
  font-family: var(--font-display);
  color: var(--lime);
  letter-spacing: 1px;
}

/* Mobile */
@media (max-width: 640px) {
  .site-header nav a { margin-left: 16px; }
  .tier-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 56px; }
  .gallery-item { width: 200px; }
  .review-card { width: 260px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
  .gallery-grid, .review-grid { animation: none; }
}
