/* ===================== TOKENS ===================== */
:root {
  --black: #0A0A0A;
  --black-soft: #151210;
  --gold: #C9A85C;
  --gold-bright: #E0C079;
  --cream: #F4EDE4;
  --wine: #6B1F2A;
  --wine-bright: #8A2A38;

  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1140px;
  --radius: 4px;
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.45);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--cream);
  background: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

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

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, .logo span {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-eyebrow {
  font-family: var(--font-display);
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
}
.section-eyebrow-light { color: var(--wine-bright); }

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--cream);
  margin-bottom: 48px;
  max-width: 640px;
}
.section-title-light { color: var(--black); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover { background: var(--gold-bright); }

.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover { background: rgba(201,168,92,0.1); }

.btn-ghost {
  color: var(--cream);
  background: transparent;
}
.btn-ghost:hover { color: var(--gold); }

.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-block { width: 100%; margin-bottom: 12px; }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,92,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
}
.logo-icon { width: 24px; height: 24px; color: var(--gold); }
.logo span { font-size: 1.5rem; letter-spacing: 0.05em; }

.main-nav {
  display: flex;
  gap: 32px;
}
.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.main-nav a:hover { opacity: 1; color: var(--gold); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-call { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--cream);
  display: block;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  padding: 120px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(107,31,42,0.25), transparent 55%),
    repeating-linear-gradient(115deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 26px),
    linear-gradient(180deg, #0A0A0A 0%, #120E0C 100%);
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,92,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  text-align: left;
}

.eyebrow {
  font-family: var(--font-display);
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  line-height: 0.97;
  color: var(--cream);
  text-shadow: 0 0 40px rgba(201,168,92,0.25);
  margin-bottom: 24px;
}
.hero-highlight { color: var(--gold); }

.hero-sub {
  max-width: 500px;
  margin: 0 0 40px;
  font-size: 1.1rem;
  color: rgba(244,237,228,0.75);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero-meta-item strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 0.03em;
}
.hero-meta-item span {
  font-size: 0.8rem;
  color: rgba(244,237,228,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-meta-divider {
  width: 1px;
  height: 32px;
  background: rgba(201,168,92,0.25);
}

.hero-visual {
  position: relative;
}

.hero-photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,168,92,0.3);
  box-shadow: var(--shadow-lg);
}
.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.55) 100%);
  pointer-events: none;
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.hero-slide.active { opacity: 1; z-index: 1; }

.hero-slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,92,0.4);
  background: rgba(10,10,10,0.55);
  color: var(--cream);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.hero-slide-arrow:hover { background: rgba(10,10,10,0.8); border-color: var(--gold); }
.hero-slide-prev { left: 14px; }
.hero-slide-next { right: 14px; }

.hero-slide-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(244,237,228,0.5);
  background: rgba(10,10,10,0.4);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.hero-dot.active { background: var(--gold); border-color: var(--gold); transform: scale(1.2); }

.hero-photo-badge {
  position: relative;
  z-index: 2;
  width: fit-content;
  max-width: 280px;
  margin: -40px 0 0 24px;
  background: var(--black-soft);
  border: 1px solid rgba(201,168,92,0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-photo-badge-stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.9rem;
}
.hero-photo-badge span:last-child {
  font-size: 0.82rem;
  color: rgba(244,237,228,0.75);
  line-height: 1.4;
}

/* ===================== PROBLEM / SOLUTION ===================== */
.problem-solution {
  padding: 100px 0;
  background: var(--black);
}

.ps-intro {
  max-width: 560px;
  margin: -28px 0 48px;
  font-size: 1.05rem;
  color: rgba(244,237,228,0.65);
}

.ps-table {
  border: 1px solid rgba(201,168,92,0.15);
  border-radius: var(--radius);
  overflow: hidden;
}

.ps-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--black-soft);
}
.ps-head span {
  padding: 16px 28px;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.ps-head span:first-child { color: rgba(244,237,228,0.4); }
.ps-head span:last-child { color: var(--gold); }

.ps-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(201,168,92,0.1);
}

.ps-cell {
  padding: 22px 28px;
  font-size: 0.96rem;
  line-height: 1.5;
  display: flex;
  gap: 14px;
}

.ps-problem {
  color: rgba(244,237,228,0.5);
  border-right: 1px solid rgba(201,168,92,0.1);
}

.ps-solution {
  color: var(--cream);
  background: linear-gradient(90deg, rgba(201,168,92,0.05), transparent);
}

.ps-icon {
  flex-shrink: 0;
  font-size: 0.85rem;
  line-height: 1.6;
}
.ps-icon-x { color: var(--wine-bright); }
.ps-icon-check { color: var(--gold); }

.ps-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===================== WHY US ===================== */
.why-us {
  padding: 100px 0;
  background: var(--black-soft);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  padding: 32px 24px;
  border: 1px solid rgba(201,168,92,0.15);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(201,168,92,0.04), transparent);
  transition: border-color 0.2s, transform 0.2s;
}
.why-card:hover {
  border-color: rgba(201,168,92,0.4);
  transform: translateY(-3px);
}

.why-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 20px;
}
.why-icon svg { width: 100%; height: 100%; }

.why-card h3 {
  font-size: 1.25rem;
  text-transform: none;
  letter-spacing: normal;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.92rem;
  color: rgba(244,237,228,0.65);
}

/* ===================== GALLERY ===================== */
.gallery {
  padding: 100px 0;
  background: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  border: 1px solid rgba(201,168,92,0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.gallery-card:hover { transform: translateY(-4px); border-color: rgba(201,168,92,0.5); }

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 22px);
  pointer-events: none;
}

.gallery-card-1 { background: linear-gradient(155deg, var(--wine) 0%, var(--black) 75%); }
.gallery-card-2 { background: linear-gradient(155deg, #2a2420 0%, var(--black) 70%); }
.gallery-card-3 { background: linear-gradient(155deg, var(--black) 0%, var(--wine) 130%); }
.gallery-card-4 { background: linear-gradient(155deg, #3a2f1c 0%, var(--black) 75%); }
.gallery-card-5 { background: linear-gradient(155deg, var(--black-soft) 0%, var(--wine) 140%); }
.gallery-card-6 { background: linear-gradient(155deg, var(--gold) 0%, var(--black) 65%); }

.gallery-card.has-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.05) 45%, transparent 65%);
  z-index: 1;
}

.gallery-card.has-photo figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
}

.gallery-icon {
  width: 56px;
  height: 56px;
  color: var(--gold-bright);
  position: relative;
  z-index: 1;
}
.gallery-card-6 .gallery-icon { color: var(--black); }
.gallery-icon svg { width: 100%; height: 100%; }

.gallery-card figcaption {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
}
.gallery-card-6 figcaption { color: var(--black); }

.gallery-note {
  margin-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(244,237,228,0.4);
  font-style: italic;
}

/* ===================== SERVICES ===================== */
.services {
  padding: 100px 0;
  background: var(--cream);
  color: var(--black);
}

.services-table {
  border-top: 1px solid rgba(10,10,10,0.15);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 20px;
  border-bottom: 1px solid rgba(10,10,10,0.12);
  transition: background 0.2s;
}
.service-row:hover { background: rgba(107,31,42,0.05); }

.service-row-featured { background: rgba(107,31,42,0.06); }
.service-row-vip {
  background: var(--black);
  color: var(--cream);
  border-radius: var(--radius);
  border-bottom: none;
  margin-top: 8px;
}

.service-name {
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.service-sub {
  font-weight: 400;
  font-size: 0.85rem;
  opacity: 0.6;
}

.service-desc {
  font-size: 0.9rem;
  opacity: 0.65;
}

.service-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--wine);
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.service-row-vip .service-price { color: var(--gold); }

.badge {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--wine);
  color: var(--cream);
  padding: 3px 9px;
  border-radius: 20px;
}
.badge-gold { background: var(--gold); color: var(--black); }

.services-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  padding: 100px 0;
  background: var(--black);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 32px;
  background: var(--black-soft);
  border: 1px solid rgba(201,168,92,0.15);
  border-radius: var(--radius);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.85rem;
  color: rgba(244,237,228,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===================== HOURS / BOOK ===================== */
.hours-location {
  padding: 100px 0;
  background: var(--cream);
  color: var(--black);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.hours-list {
  margin-bottom: 32px;
  border-top: 1px solid rgba(10,10,10,0.15);
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(10,10,10,0.12);
  font-weight: 600;
}
.hours-list .closed { color: var(--wine); }

.location-info p {
  margin-bottom: 6px;
  opacity: 0.8;
}
.location-info a { color: var(--wine); font-weight: 600; }

.book-card {
  background: var(--black);
  color: var(--cream);
  padding: 44px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.book-card h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}
.book-copy {
  color: rgba(244,237,228,0.7);
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.book-note {
  font-size: 0.78rem;
  color: rgba(244,237,228,0.45);
  text-align: center;
  margin-top: 8px;
}

/* ===================== FAQ ===================== */
.faq {
  padding: 100px 0;
  background: var(--black-soft);
}

.faq-list {
  max-width: 760px;
}

.faq-item {
  border-bottom: 1px solid rgba(201,168,92,0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  background: none;
  border: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding-bottom: 22px;
  color: rgba(244,237,228,0.65);
  font-size: 0.95rem;
  max-width: 640px;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,92,0.15);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
}

.footer-brand p {
  margin-top: 14px;
  font-size: 0.9rem;
  color: rgba(244,237,228,0.6);
}
.footer-brand a { color: rgba(244,237,228,0.6); }
.footer-brand .logo { margin-bottom: 4px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.9rem;
  color: rgba(244,237,228,0.6);
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--gold); }
.footer-col .btn { margin-top: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(201,168,92,0.1);
  padding: 24px 0;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(244,237,228,0.4);
  text-align: center;
}

/* ===================== RESPONSIVE ===================== */
@media (min-width: 860px) {
  .header-call { display: inline-flex; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-meta { justify-content: center; }
  .hero-visual { max-width: 380px; margin: 0 auto; }
  .hero-photo-badge { margin: -40px auto 0; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .header-actions .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .service-row { grid-template-columns: 1fr; gap: 6px; }
  .service-price { font-size: 1.3rem; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .ps-head { grid-template-columns: 1fr; }
  .ps-head span:first-child { display: none; }
  .ps-row { grid-template-columns: 1fr; }
  .ps-problem { border-right: none; border-bottom: 1px solid rgba(201,168,92,0.1); text-decoration: line-through; text-decoration-color: rgba(107,31,42,0.5); }
}

@media (max-width: 720px) {
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 20px 24px;
    border-bottom: 1px solid rgba(201,168,92,0.15);
    gap: 18px;
  }
}
