:root {
  --bg: #121212;
  --bg-alt: #1a1a1a;
  --panel: #1f1f1f;
  --border: #2c2c2c;
  --text: #f2f2f0;
  --text-muted: #a8a8a4;
  --gold: #c9a227;
  --gold-light: #e0bc4c;
  --radius: 10px;
  --max-width: 1140px;
  --font-body: 'Poppins', sans-serif;
  --font-display: 'Bebas Neue', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0 0 8px;
}

.center { text-align: center; }
.eyebrow.center { text-align: center; }

h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: 1px;
  color: var(--text);
  margin: 0 0 16px;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { color: var(--text-muted); }

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: #141414;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: #141414; transform: translateY(-2px); }
.btn-small { padding: 10px 20px; font-size: 0.85rem; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text);
  letter-spacing: 1px;
}
.logo span { color: var(--gold); }
.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}
.main-nav a:hover { color: var(--gold); }
.nav-cta { flex-shrink: 0; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  display: block;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 30% 20%, #262218 0%, var(--bg) 60%);
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(115deg, rgba(201,162,39,0.04) 0px, rgba(201,162,39,0.04) 2px, transparent 2px, transparent 60px);
  pointer-events: none;
}
.hero-content { position: relative; padding-top: 120px; padding-bottom: 80px; }
.hero-sub {
  max-width: 520px;
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.hero-sub strong { color: var(--text); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* About */
.about { padding: 100px 0; background: var(--bg-alt); }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-photo img,
.about-photo svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.about-stats {
  list-style: none;
  display: flex;
  gap: 36px;
  padding: 0;
  margin-top: 28px;
}
.about-stats li {
  display: flex;
  flex-direction: column;
}
.about-stats strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
}
.about-stats span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Services */
.services { padding: 100px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.service-photo {
  width: calc(100% + 56px);
  height: 200px;
  object-fit: cover;
  margin: -28px -28px 20px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.service-card h3 { margin-bottom: 8px; }
.service-card p { font-size: 0.92rem; margin-bottom: 20px; }
.price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
}
.services-note {
  text-align: center;
  font-size: 0.8rem;
  margin-top: 32px;
  font-style: italic;
  opacity: 0.7;
}
.payment-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: fit-content;
  margin: 40px auto 0;
  padding: 14px 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.payment-note strong { color: var(--text); }
.no-walkins-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: fit-content;
  margin: 24px auto 0;
  padding: 12px 22px;
  background: var(--panel);
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.no-walkins-note strong { color: var(--gold-light); }

/* Gallery */
.gallery { padding: 100px 0; background: var(--bg-alt); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.gallery-item {
  aspect-ratio: 1;
  background: linear-gradient(145deg, #232323, #1a1a1a);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item span {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Booking */
.booking { padding: 100px 0; }
.booking-sub { max-width: 480px; margin: 0 auto 40px; }
.booking-embed {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.btn-large {
  padding: 20px 48px;
  font-size: 1.05rem;
}
.booking-embed-note {
  margin: 20px 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.booking-placeholder {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 40px;
  text-align: center;
  margin-top: 24px;
}
.booking-placeholder h3 { margin: 20px 0 12px; }
.booking-placeholder p {
  max-width: 440px;
  margin: 0 auto 28px;
  font-size: 0.92rem;
}
.booking-placeholder code {
  background: var(--bg);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--gold-light);
}
.payment-inline-note {
  margin: 20px 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Contact */
.contact { padding: 100px 0; background: var(--bg-alt); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 36px;
}
.contact-list li { margin-bottom: 12px; color: var(--text-muted); }
.contact-list strong { color: var(--text); }
.hours ul { list-style: none; padding: 0; margin: 12px 0 0; }
.hours li {
  display: flex;
  justify-content: space-between;
  max-width: 320px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.92rem;
}
.hours-note {
  max-width: 320px;
  margin: 12px 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}
.map-placeholder {
  background: var(--panel);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 40px;
}
.map-placeholder svg { margin-bottom: 20px; }
.map-note { max-width: 320px; margin: 0 0 24px; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px;
    gap: 0;
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .main-nav a:last-child { border-bottom: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
