:root {
  --black: #111;
  --gold: #c9a961;
  --gold2: #b8935a;
  --text: #e8e8e8;
  --muted: #a0a0a0;
  --bg: #0d0d0d;
  --bg-alt: #1a1a1a;
  --border: rgba(201,169,97,.15);
  --radius: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--gold);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  background: rgba(13,13,13,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
.logo img {
  height: 50px;
  width: auto;
}
.nav {
  display: flex;
  gap: 24px;
}
.nav a {
  color: var(--text);
  font-weight: 600;
  transition: color .2s;
}
.nav a:hover {
  color: var(--gold);
  text-decoration: none;
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .nav.active {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
}

/* HERO */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(201,169,97,.08), rgba(13,13,13,.9)), url('https://placehold.co/1600x900/111/c9a961?text=Salon+Hero') center/cover;
  padding: 60px 20px;
}
.hero-content {
  max-width: 700px;
}
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
}

.hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,97,.10), rgba(13,13,13,.88));
  z-index: 1;
}

.hero-content{
  position: relative;
  z-index: 2;
}
.pill {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(201,169,97,.12);
  color: var(--gold);
  border-radius: 20px;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 16px;
}
h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lead {
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.btn {
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
  transition: all .3s;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--text);
  display: inline-block;
}
.btn:hover {
  background: rgba(255,255,255,.08);
  text-decoration: none;
}
.btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--black);
  border: none;
}
.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201,169,97,.3);
}
.hero-meta {
  margin-top: 24px;
  font-size: .95rem;
}
.hero-meta .muted {
  color: var(--muted);
}
.small {
  font-size: .85rem;
}

@media (max-width: 680px) {
  h1 {
    font-size: 2.5rem;
  }
  .lead {
    font-size: 1.1rem;
  }
}

/* SECTIONS */
.section {
  padding: 80px 20px;
}
.section.alt {
  background: var(--bg-alt);
}
.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: 2.5rem;
  margin-bottom: 12px;
  color: var(--gold);
}
.muted {
  color: var(--muted);
}

/* TWO COLUMN */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

/* CARD */
.card {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
}
.card h3 {
  color: var(--gold);
  margin-bottom: 12px;
}

/* CHECKLIST */
.checklist {
  list-style: none;
  padding-left: 0;
}
.checklist li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 8px;
}
.checklist li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* QUICK BOOK */
.quick-book {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.quick-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* PRICING */
.pricing-block {
  margin-top: 16px;
}
.pricing-table {
  overflow-x: auto;
}
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  min-width: 760px;
}
.pricing-table th,
.pricing-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.pricing-table th {
  background: rgba(201,169,97,.08);
  font-weight: 700;
  color: var(--text);
}
.pricing-table td:first-child {
  font-weight: 600;
  min-width: 200px;
}
.pricing-table td.muted {
  color: var(--muted);
}

/* GALLERY */
.gallery-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.tab {
  padding: 10px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--muted);
  cursor: pointer;
  font-weight: 600;
  transition: all .3s;
}
.tab.active,
.tab:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--black);
  border-color: transparent;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  opacity: 1;
  transition: opacity .3s ease;
}
.gallery-item.hidden {
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.thumb {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  padding: 0;
  width: 100%;
  background: none;
  display: block;
}
.thumb img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display:block;
  transition: transform .3s;
}
.thumb:hover img {
  transform: scale(1.05);
}
.category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,.7);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: .8rem;
  font-weight: 600;
}

@media (max-width: 680px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .tab {
    padding: 8px 14px;
    font-size: .9rem;
  }
}

/* LIGHTBOX - FIXED */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.lightbox.active {
  display: flex !important;
}
#lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.8);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .2s;
}
.lightbox-close:hover {
  background: rgba(255,255,255,.1);
}

/* CONTACT */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: 24px auto;
  font-size: 1.1rem;
  text-align: center;
}
.center{
  text-align: center;
}

/* FOOTER */
.footer {
  background: var(--black);
  padding: 24px 20px;
  text-align: center;
  border-top: 1px solid var(--border);
}

/* FLOATING BOOK BUTTON (mobile) */
.floating-book {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--black);
  padding: 14px 24px;
  border-radius: 30px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(201,169,97,.4);
  z-index: 99;
  display: none;
}
@media (max-width: 768px) {
  .floating-book {
    display: block;
  }
}
.floating-book:hover {
  text-decoration: none;
  transform: translateY(-2px);
}