@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg-base: hsl(30, 15%, 7%);
  --bg-section: hsl(30, 12%, 8%);
  --bg-dark: hsl(30, 15%, 6%);
  --bg-card: hsl(30, 15%, 5%);
  --gold: hsl(42, 77%, 52%);
  --gold-light: hsl(42, 85%, 70%);
  --gold-muted: hsl(42, 77%, 52%, 0.12);
  --gold-border: hsl(42, 50%, 14%);
  --text-base: hsl(40, 25%, 88%);
  --text-muted: hsl(40, 15%, 55%);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-base);
  color: var(--text-base);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

.font-display { font-family: 'Playfair Display', Georgia, serif; }
.font-body { font-family: 'Inter', system-ui, sans-serif; }

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

a { text-decoration: none; color: inherit; }

.section-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
}

.gold-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: hsl(30, 20%, 6%);
  border-color: var(--gold);
}
.btn-primary:hover { background: hsl(42, 80%, 60%); border-color: hsl(42, 80%, 60%); }

.btn-outline {
  background: transparent;
  color: var(--text-base);
  border-color: hsl(42, 50%, 28%);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-lg { padding: 14px 28px; font-size: 13px; }
.btn-sm { padding: 8px 14px; font-size: 11px; }
.btn-xl { padding: 18px 36px; font-size: 14px; }

.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }
.btn-icon-sm { width: 14px; height: 14px; flex-shrink: 0; }

.card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  padding: 24px;
}

.hero {
  position: relative;
  padding: 96px 16px 80px;
  background: hsl(30, 15%, 5%);
  overflow: hidden;
}

.hero-content { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; text-align: center; }

.max-w-7xl { max-width: 1280px; margin: 0 auto; padding: 0 16px; }
.max-w-5xl { max-width: 1024px; margin: 0 auto; padding: 0 16px; }
.max-w-3xl { max-width: 768px; margin: 0 auto; padding: 0 16px; }
.max-w-2xl { max-width: 640px; margin: 0 auto; padding: 0 16px; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-auto { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-auto { grid-template-columns: 1fr; }
}

.flex-center { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; }
.flex-start { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.flex-col { display: flex; flex-direction: column; gap: 12px; }

.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-white { color: #ffffff; }
.text-center { text-align: center; }

h1, h2, h3, h4 { margin: 0; line-height: 1.25; }
p { margin: 0; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.check-item { display: flex; align-items: flex-start; gap: 10px; }
.check-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 8px; }

.aspect-4-3 { aspect-ratio: 4/3; }
.aspect-16-9 { aspect-ratio: 16/9; }
.aspect-1-1 { aspect-ratio: 1/1; }

.img-cover { width: 100%; height: 100%; object-fit: cover; display: block; }

.rounded { border-radius: 8px; }
.overflow-hidden { overflow: hidden; }

.img-box {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gold-border);
}

.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(30, 15%, 5%, 0.4) 0%, transparent 50%);
  pointer-events: none;
}

.img-cover-hover { transition: transform 0.7s ease; }
.img-box:hover .img-cover-hover { transform: scale(1.04); }

.gap-6 { gap: 24px; }
.gap-4 { gap: 16px; }
.gap-3 { gap: 12px; }
.gap-2 { gap: 8px; }

.py-24 { padding-top: 96px; padding-bottom: 96px; }
.py-20 { padding-top: 80px; padding-bottom: 80px; }
.py-16 { padding-top: 64px; padding-bottom: 64px; }
.py-12 { padding-top: 48px; padding-bottom: 48px; }
.py-8  { padding-top: 32px; padding-bottom: 32px; }

.mb-12 { margin-bottom: 48px; }
.mb-10 { margin-bottom: 40px; }
.mb-8  { margin-bottom: 32px; }
.mb-6  { margin-bottom: 24px; }
.mb-4  { margin-bottom: 16px; }
.mb-3  { margin-bottom: 12px; }
.mb-2  { margin-bottom: 8px; }
.mb-1  { margin-bottom: 4px; }

.mt-8  { margin-top: 32px; }
.mt-6  { margin-top: 24px; }
.mt-4  { margin-top: 16px; }
.mt-2  { margin-top: 8px; }

.section-heading {
  text-align: center;
  margin-bottom: 56px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  border: 1px solid hsl(42, 77%, 52%, 0.4);
  background: hsl(42, 77%, 52%, 0.08);
  color: hsl(42, 85%, 70%);
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  background: hsl(30, 12%, 5%);
}

.trust-item {
  padding: 20px 28px;
  text-align: center;
  border-right: 1px solid var(--gold-border);
  flex: 1;
  min-width: 120px;
}
.trust-item:last-child { border-right: none; }

@media (max-width: 768px) {
  .trust-item { border-right: none; border-bottom: 1px solid var(--gold-border); min-width: 50%; flex: 0 0 50%; }
}

.mobile-menu-open { display: block !important; }

#mobile-menu { display: none; }

.nav-dropdown { display: none; }
.nav-dropdown.open { display: block; }

.dropdown-chevron { transition: transform 0.2s ease; }
.dropdown-chevron.rotated { transform: rotate(180deg); }

.mobile-section-items { display: none; }
.mobile-section-items.open { display: block; }

.mobile-chevron { transition: transform 0.2s ease; }
.mobile-chevron.rotated { transform: rotate(180deg); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

.two-col-flip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .two-col-flip { grid-template-columns: 1fr; }
}

.flip .text-col { order: 2; }
.flip .img-col { order: 1; }

@media (min-width: 901px) {
  .flip .text-col { order: 2; }
  .flip .img-col { order: 1; }
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(42, 77%, 52%, 0.12);
  border: 1px solid hsl(42, 77%, 52%, 0.2);
  flex-shrink: 0;
}

.icon-box svg { width: 22px; height: 22px; color: var(--gold); stroke: var(--gold); }

.sticky-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
  background: rgba(12, 9, 6, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}
.sticky-header.scrolled {
  background: rgba(12, 9, 6, 0.97);
  border-bottom-color: hsl(42, 50%, 20%, 0.6);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
@media (min-width: 1024px) { .header-inner { height: 80px; } }

.header-logo img { height: 48px; width: auto; }
@media (min-width: 1024px) { .header-logo img { height: 56px; } }

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2px;
}
@media (min-width: 1280px) { .desktop-nav { display: flex; } }

.nav-link {
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: hsl(40, 25%, 80%);
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link.has-dropdown { display: flex; align-items: center; gap: 4px; }

.nav-dropdown-wrap { position: relative; }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  z-index: 200;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  background: hsl(30, 15%, 5%);
  border: 1px solid hsl(42, 50%, 18%);
  min-width: 220px;
  max-height: 70vh;
  overflow-y: auto;
}

.nav-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  color: hsl(40, 20%, 72%);
  border-bottom: 1px solid hsl(42, 50%, 10%);
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown a:hover { background: hsl(42, 50%, 7%); color: hsl(42, 77%, 60%); }
.nav-dropdown a:last-child { border-bottom: none; }

.header-ctas {
  display: none;
  align-items: center;
  gap: 8px;
}
@media (min-width: 1024px) { .header-ctas { display: flex; } }

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  letter-spacing: 0.05em;
  font-family: 'Inter', sans-serif;
  color: hsl(40, 20%, 80%);
  border: 1px solid hsl(42, 50%, 25%);
  transition: border-color 0.2s;
}
.header-phone:hover { border-color: var(--gold); color: var(--gold); }
.header-phone svg { width: 12px; height: 12px; stroke: var(--gold); }

.mobile-top {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 1280px) { .mobile-top { display: none; } }

.hamburger-btn {
  width: 36px; height: 36px;
  border: 1px solid hsl(42, 50%, 25%);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-base);
}
.hamburger-btn svg { width: 16px; height: 16px; }

#mobile-menu {
  display: none;
  background: hsl(30, 15%, 5%);
  border-top: 1px solid hsl(42, 50%, 14%);
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}
#mobile-menu.open { display: block; }

.mobile-core-links { padding: 8px 16px; }
.mobile-core-links a {
  display: block;
  padding: 12px 0;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: hsl(40, 25%, 75%);
  border-bottom: 1px solid hsl(42, 50%, 10%);
}
.mobile-core-links a:hover { color: var(--gold); }

.mobile-accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--gold);
  background: none;
  border: none;
  border-top: 1px solid hsl(42, 50%, 12%);
  cursor: pointer;
}
.mobile-accordion-header svg { width: 16px; height: 16px; stroke: var(--gold); }

.mobile-accordion-items { padding: 0 16px 12px; }
.mobile-accordion-items a {
  display: block;
  padding: 10px 0;
  font-size: 11px;
  letter-spacing: 0.1em;
  font-family: 'Inter', sans-serif;
  color: hsl(40, 20%, 65%);
  border-bottom: 1px solid hsl(42, 50%, 8%);
}
.mobile-accordion-items a:hover { color: var(--gold); }

.mobile-bottom-ctas {
  padding: 16px;
  border-top: 1px solid hsl(42, 50%, 14%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-bottom-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: hsl(40, 20%, 70%);
  font-family: 'Inter', sans-serif;
}
.mobile-bottom-link svg { width: 16px; height: 16px; stroke: var(--gold); }

footer { background: hsl(30, 15%, 5%); border-top: 1px solid hsl(42, 50%, 16%); }

.footer-cta-block {
  padding: 64px 16px;
  background: linear-gradient(180deg, hsl(30,15%,5%) 0%, hsl(30,20%,4%) 100%);
  border-bottom: 1px solid hsl(42, 50%, 14%);
  text-align: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  padding: 56px 16px;
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

.footer-brand { grid-column: span 1; }

.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  margin: 0 0 16px;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  margin-bottom: 6px;
  cursor: pointer;
  transition: color 0.15s;
}
.footer-col a:hover, .footer-col span:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 16px;
  border-top: 1px solid hsl(42, 50%, 12%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom p, .footer-bottom a, .footer-bottom span {
  font-size: 10px;
  color: hsl(40, 15%, 30%);
  font-family: 'Inter', sans-serif;
}
.footer-bottom a:hover { color: var(--text-muted); }

.cta-block {
  padding: 56px 16px;
  text-align: center;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.cta-block-dark {
  background: linear-gradient(135deg, hsl(30,20%,4%) 0%, hsl(30,15%,6%) 100%);
}
.cta-block-light { background: hsl(30,12%,9%); }

.faq-item { border-bottom: 1px solid var(--gold-border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--text-base);
}
.faq-answer { display: none; padding: 0 0 18px; font-family: 'Inter', sans-serif; font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.faq-answer.open { display: block; }
.faq-chevron { width: 18px; height: 18px; stroke: var(--gold); flex-shrink: 0; transition: transform 0.2s; }
.faq-chevron.rotated { transform: rotate(180deg); }

.book-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: hsl(40, 20%, 50%); font-family: 'Inter', sans-serif; }
.form-control {
  padding: 10px 12px;
  border-radius: 6px;
  background: hsl(30, 12%, 8%);
  border: 1px solid hsl(42, 50%, 17%);
  color: var(--text-base);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}
.form-control:focus { border-color: var(--gold); }

.membership-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 8px;
}
.membership-card.featured { transform: scale(1.03); }

.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td {
  padding: 14px 16px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  border-bottom: 1px solid var(--gold-border);
}
.price-table th { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); background: hsl(30,15%,6%); }
.price-table td:last-child { text-align: right; color: var(--gold); font-weight: 600; }
.price-table tr:hover td { background: hsl(30,12%,8%); }

@media (max-width: 600px) {
  .btn-lg { padding: 12px 20px; font-size: 12px; }
  .hero { padding-top: 88px; padding-bottom: 60px; }
  .py-24 { padding-top: 64px; padding-bottom: 64px; }
  .py-20 { padding-top: 56px; padding-bottom: 56px; }
  .grid-2 { grid-template-columns: 1fr; }
}
