/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.7;
  font-size: 16px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Nav ──────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  transition: all 0.3s;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 900;
  letter-spacing: 2px; color: #fff;
}
.logo span { color: #c9a84c; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.btn-book {
  background: #c9a84c !important; color: #0a0a0a !important;
  padding: 10px 24px; border-radius: 4px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.btn-book:hover { background: #d4b85c !important; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: url('../img/header.jpg') center/cover no-repeat;
  background-attachment: fixed;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.75) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 40px 24px; }
.hero-tag {
  font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
  color: #c9a84c; margin-bottom: 20px; font-weight: 500;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900; line-height: 1.1;
  color: #fff; margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic; color: #c9a84c;
}
.hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.8);
  max-width: 500px; margin: 0 auto 36px;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block; padding: 14px 32px;
  font-size: 13px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; border-radius: 4px;
  transition: all 0.2s; cursor: pointer; border: none;
}
.btn-primary { background: #c9a84c; color: #0a0a0a; }
.btn-primary:hover { background: #d4b85c; transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: #fff; }
.btn-lg { padding: 18px 44px; font-size: 14px; }

/* ── Stats Bar ────────────────────────────────────────────── */
.stats { background: #111; border-top: 1px solid #1a1a1a; border-bottom: 1px solid #1a1a1a; }
.stats-inner {
  max-width: 1100px; margin: 0 auto; padding: 40px 24px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center; gap: 24px;
}
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 42px; font-weight: 700; color: #c9a84c;
}
.stat-label {
  display: block; font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ── Sections ─────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-dark { background: #0f0f0f; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
  font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
  color: #c9a84c; margin-bottom: 12px; font-weight: 500;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 700; color: #fff;
}

/* ── Two Column ───────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.two-col p { margin-bottom: 16px; color: rgba(255,255,255,0.75); }
.two-col strong { color: #c9a84c; }
.img-rounded { border-radius: 8px; border: 1px solid #222; }

/* ── Gallery ──────────────────────────────────────────────── */
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.gallery-item {
  position: relative; overflow: hidden;
  aspect-ratio: 1; cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  font-size: 13px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: #fff;
}

/* ── Guarantee ────────────────────────────────────────────── */
.guarantee-box {
  max-width: 750px; margin: 0 auto;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 8px; padding: 36px;
}
.guarantee-box p { color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.guarantee-box p:last-child { margin-bottom: 0; }
.guarantee-box strong { color: #c9a84c; }

/* ── Rates ────────────────────────────────────────────────── */
.rates-base {
  text-align: center; margin-bottom: 36px;
  font-size: 18px; color: rgba(255,255,255,0.7);
}
.rates-base strong { color: #c9a84c; }
.rates-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; margin-bottom: 36px;
}
.rate-card {
  background: #141414; border: 1px solid #222;
  border-radius: 8px; padding: 28px 24px;
  text-align: center; position: relative;
  transition: border-color 0.2s;
}
.rate-card:hover { border-color: #333; }
.rate-card.featured {
  border-color: #c9a84c;
  background: linear-gradient(180deg, rgba(201,168,76,0.08) 0%, #141414 100%);
}
.rate-card.premium {
  border-color: #8b0000;
  background: linear-gradient(180deg, rgba(139,0,0,0.1) 0%, #141414 100%);
}
.rate-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: #c9a84c; color: #0a0a0a;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 14px; border-radius: 20px;
}
.rate-card.premium .rate-badge { background: #8b0000; color: #fff; }
.rate-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700; color: #fff;
  margin-bottom: 12px;
}
.rate-price {
  font-size: 36px; font-weight: 700; color: #c9a84c;
  margin-bottom: 8px;
}
.rate-price span { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.5); }
.rate-ammo { font-size: 13px; color: rgba(255,255,255,0.5); }

.rates-extras { text-align: center; }
.rates-extras p { color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.rates-extras strong { color: rgba(255,255,255,0.9); }
.rates-note { font-style: italic; color: rgba(255,255,255,0.4) !important; }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.testimonial-card {
  background: #141414; border: 1px solid #1e1e1e;
  border-radius: 8px; padding: 32px;
}
.stars { color: #c9a84c; font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p {
  font-size: 15px; color: rgba(255,255,255,0.8);
  font-style: italic; line-height: 1.8; margin-bottom: 20px;
}
.testimonial-author {
  font-weight: 600; color: #fff; font-size: 14px;
}
.testimonial-author span {
  display: block; font-weight: 400; font-size: 12px;
  color: rgba(255,255,255,0.4); margin-top: 2px;
}

/* ── CTA ──────────────────────────────────────────────────── */
.cta {
  padding: 80px 0; text-align: center;
  background: linear-gradient(180deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
}
.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 700; color: #fff;
  margin-bottom: 12px;
}
.cta p { color: rgba(255,255,255,0.6); margin-bottom: 32px; font-size: 18px; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  padding: 40px 0;
  border-top: 1px solid #1a1a1a;
}
.footer-inner { text-align: center; }
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 900;
  letter-spacing: 2px; color: #fff;
  margin-bottom: 8px;
}
.footer-brand span { color: #c9a84c; }
.footer p { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { gap: 16px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .rates-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
}
@media (max-width: 480px) {
  .nav-links a:not(.btn-book) { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); padding: 24px; }
  .stat-num { font-size: 32px; }
  .section { padding: 56px 0; }
}
