.hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--black);
}
.hero-video-wrap { position: absolute; inset:0; z-index:1; }
.hero-video-wrap video { width:100%; height:100%; object-fit:cover; opacity: 0; transition: opacity 1s ease; }
.hero-video-wrap video.loaded { opacity:1; }
.hero-fallback {
  position: absolute; inset:0;
  background-image: url('../hero.jpeg');
  background-size:cover; background-position:center; z-index:0;
}
.hero-overlay {
  position: absolute; inset:0; z-index:2;
  background: linear-gradient(to bottom, rgba(var(--black-rgb),0.3) 0%, rgba(var(--black-rgb),0.55) 50%, rgba(var(--black-rgb),0.9) 100%);
}
.hero-content { position: relative; z-index:3; text-align: center; padding: 0 24px; max-width: 960px; }
.hero-eyebrow {
  font-family: var(--font-body); font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 5px; color: var(--gold);
  margin-bottom: 24px; opacity: 0; animation: fadeUp 1s ease 0.4s forwards;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(48px, 7.5vw, 110px);
  font-weight: 400; line-height: 1.0; color: var(--white);
  margin-bottom: 28px; opacity: 0; animation: fadeUp 1.1s ease 0.6s forwards;
}
.hero-title em { font-style: italic; color: var(--champagne); }
.hero-sub {
  font-size: clamp(13px, 1.5vw, 16px); font-weight: 300; line-height: 1.8;
  color: rgba(var(--white-rgb),0.65); max-width: 600px; margin: 0 auto 50px;
  letter-spacing: 0.3px; opacity: 0; animation: fadeUp 1.1s ease 0.8s forwards;
}
.hero-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeUp 1.1s ease 1s forwards; }
.hero-scroll-indicator {
  position: absolute; bottom:40px; left:50%; transform: translateX(-50%);
  z-index:3; display: flex; flex-direction: column; align-items: center; gap:8px;
  opacity: 0; animation: fadeUp 1s ease 1.5s forwards;
}
.hero-scroll-indicator span { font-size: 9px; text-transform: uppercase; letter-spacing: 3px; color: rgba(var(--white-rgb),0.4); }
.scroll-bar { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollBar 2s ease infinite; }
@keyframes scrollBar {
  0% { transform: scaleY(0); transform-origin: top; opacity:1; }
  50% { transform: scaleY(1); opacity:1; }
  100% { transform: scaleY(1); opacity:0; transform-origin: bottom; }
}

.about {
  background: var(--black); padding: 80px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index:1;
}
.about-images { position: relative; height: 680px; }
.about-img-main { width: 78%; height: 560px; object-fit: cover; object-position: top center; position: absolute; top:0; left:0; }
.about-img-accent { width: 52%; height: 300px; object-fit: cover; position: absolute; bottom:0; right:0; border: 4px solid var(--black); box-shadow: 0 0 0 1px var(--border-gold); }
.about-gold-frame { position: absolute; top:20px; left:20px; width: 78%; height: 560px; border: 1px solid rgba(201,166,107,0.2); pointer-events: none; }
.about-content { color: var(--white); }
.about-content .section-title { color: var(--white); margin-bottom: 8px; }
.about-content p { font-size: 15px; font-weight: 300; line-height: 1.9; color: rgba(var(--white-rgb),0.65); margin-bottom: 18px; }
.about-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 44px; }
.stat-box { background: var(--card-dark); border: 1px solid var(--border-gold); padding: 28px 24px; text-align: center; transition: border-color 0.3s; }
.stat-box:hover { border-color: var(--gold); }
.stat-num { font-family: var(--font-display); font-size: 46px; font-weight: 600; color: var(--gold); line-height:1; }
.stat-label { font-size: 10px; text-transform: uppercase; letter-spacing: 2px; color: rgba(var(--white-rgb),0.5); margin-top: 8px; }

.services { background: var(--dark-surface); padding: 80px 80px; position: relative; z-index:1; }
.services-header { text-align: center; margin-bottom: 80px; }
.services-header .section-title { color: var(--white); }
.services-header p { font-size: 14px; font-weight: 300; color: rgba(var(--white-rgb),0.5); margin-top: 20px; max-width: 520px; margin-left:auto; margin-right:auto; line-height:1.8; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.pricing-overview { background: var(--dark-surface); }
.pricing-overview-grid { grid-template-columns: repeat(4, 1fr); max-width: 1200px; gap: 20px; }
@media(max-width:1024px) {
  .pricing-overview-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:640px) {
  .pricing-overview-grid { grid-template-columns: 1fr; }
  .service-card-img { height: 220px; }
}
.service-card { background: var(--card-dark); position: relative; overflow: hidden; cursor: pointer; transition: transform 0.4s ease; }
.service-card:hover { transform: translateY(-6px); z-index:2; }
.service-card-img { width:100%; height: 260px; object-fit: cover; transition: transform 0.7s ease; display: block; }
.service-card:hover .service-card-img { transform: scale(1.06); }
.service-card-body { padding: 28px 24px 32px; }
.service-card-icon { width: 42px; height: 42px; background: rgba(201,166,107,0.1); border: 1px solid var(--border-gold); border-radius: 50%; display: flex; align-items:center; justify-content:center; font-size: 18px; color: var(--gold); margin-bottom: 18px; }
.service-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--white); margin-bottom: 10px; }
.service-card p { font-size: 13px; font-weight: 300; color: rgba(var(--white-rgb),0.5); line-height:1.75; margin-bottom: 22px; }
.service-card-line { width:30px; height:1px; background: var(--gold); margin-bottom:22px; transition: width 0.4s ease; }
.service-card:hover .service-card-line { width: 60px; }
.service-btn { font-family: var(--font-btn); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); background: none; border: none; cursor: pointer; padding: 0; display: flex; align-items:center; gap:8px; transition: gap 0.3s ease; }
.service-btn i { font-size: 14px; }
.service-btn:hover { gap: 14px; }

/* ── srv-card (services page) ── */
.srv-card {
  background: var(--card-dark);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
}
.srv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  z-index: 2;
}
.srv-card-img-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}
.srv-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}
.srv-card:hover .srv-card-img { transform: scale(1.06); }
.srv-card-body {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.srv-card-icon {
  width: 42px; height: 42px;
  background: rgba(201,166,107,0.1);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex; align-items:center; justify-content:center;
  font-size: 18px; color: var(--gold);
  margin-bottom: 16px;
  flex-shrink: 0;
}
.srv-card-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}
.srv-card-desc {
  font-size: 13px; font-weight: 300;
  color: rgba(var(--white-rgb),0.5);
  line-height: 1.7;
  margin-bottom: 20px;
}
.srv-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  flex: 1;
}
.srv-item {
  padding: 8px 0;
  border-bottom: 1px solid rgba(201,166,107,0.08);
}
.srv-item:last-child { border-bottom: none; }
.srv-item-name {
  font-size: 13px;
  color: rgba(var(--white-rgb),0.7);
  font-weight: 300;
}

.staff { background: var(--black); padding: 80px 80px; position: relative; z-index:1; }
.staff-header { text-align:center; margin-bottom:80px; }
.staff-header .section-title { color:var(--white); }
.staff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.staff-card { position: relative; background: var(--card-dark); border: 1px solid var(--border-gold); overflow: hidden; transition: transform 0.4s ease, border-color 0.3s; }
.staff-card-cat {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 9px; text-transform: uppercase; letter-spacing: 2px;
  background: var(--gold); color: var(--black); padding: 4px 12px;
  font-weight: 600;
}
.staff-card:hover { transform: translateY(-8px); border-color: var(--gold); }
.staff-card-img { width:100%; height: 300px; object-fit:cover; transition: transform 0.7s ease; }
.staff-card:hover .staff-card-img { transform: scale(1.05); }
.staff-card-body { padding: 28px 24px; }
.staff-card-name { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.staff-card-role { font-size: 10px; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 12px; }
.staff-card-cert { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.staff-cert-badge { font-size: 9px; text-transform: uppercase; letter-spacing: 1px; padding: 4px 10px; background: rgba(201,166,107,0.1); border: 1px solid var(--border-gold); color: var(--champagne); }
.staff-card-desc { font-size: 13px; font-weight: 300; color: rgba(var(--white-rgb),0.55); line-height: 1.8; }
.staff-card-btn {
  display: inline-block; margin-top: 16px;
  font-size: 10px; text-transform: uppercase; letter-spacing: 2px;
  color: var(--gold); border: 1px solid var(--border-gold);
  padding: 8px 18px; transition: all 0.3s; text-decoration: none;
}
.staff-card-btn:hover { background: var(--gold); color: var(--black); }

.pricing { background: var(--dark-surface); padding: 80px 80px; position: relative; z-index:1; }
.pricing-header { text-align:center; margin-bottom:80px; }
.pricing-header .section-title { color:var(--white); }
.pricing-tabs { display: flex; gap: 8px; justify-content:center; margin-bottom: 48px; flex-wrap:wrap; }
.pt-btn { font-family: var(--font-btn); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; padding: 10px 22px; background: transparent; color: rgba(var(--white-rgb),0.5); border: 1px solid rgba(var(--white-rgb),0.12); cursor: pointer; transition: all 0.3s; }
.pt-btn.active, .pt-btn:hover { background: var(--gold); color: var(--on-accent); border-color: var(--gold); }
.pricing-table-wrap { max-width: 800px; margin: 0 auto; }
.pricing-table { display:none; }
.pricing-table.active { display:block; animation: fadeUp 0.4s ease; }
.pricing-row { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid rgba(var(--white-rgb),0.06); cursor: pointer; transition: background 0.2s; }
.pricing-row:hover { background: rgba(201,166,107,0.04); }
.pricing-row:last-child { border-bottom: none; }
.pricing-row-left { display: flex; align-items: center; gap: 16px; flex:1; }
.pricing-check { width: 20px; height: 20px; border: 2px solid rgba(var(--white-rgb),0.2); border-radius: 3px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; flex-shrink: 0; font-size: 11px; color: transparent; }
.pricing-check.checked { background: var(--gold); border-color: var(--gold); color: var(--on-accent); }
.pricing-row-name { font-size: 15px; font-weight: 300; color: var(--white); }
.pricing-row-meta { display: flex; gap: 20px; align-items: center; }
.pricing-row-dur { font-size: 11px; color: rgba(var(--white-rgb),0.3); }
.pricing-row-price { font-family: var(--font-display); font-size: 22px; color: var(--gold); min-width: 70px; text-align: right; }
.pricing-actions { display: flex; justify-content: center; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.pricing-total { text-align: center; margin-top: 32px; padding: 24px; background: rgba(201,166,107,0.06); border: 1px solid var(--border-gold); display: none; }
.pricing-total.show { display: block; }
.pricing-total-label { font-size: 10px; text-transform: uppercase; letter-spacing: 2px; color: rgba(var(--white-rgb),0.4); }
.pricing-total-val { font-family: var(--font-display); font-size: 36px; color: var(--gold); margin-top: 8px; }
.pricing-total-count { font-size: 12px; color: rgba(var(--white-rgb),0.3); margin-top: 4px; }

/* Pricing category dropdowns */
.pricing-group { border-bottom: 1px solid rgba(var(--white-rgb),0.06); }
.pricing-group:last-child { border-bottom: none; }
.pricing-group-head { display:flex; align-items:center; justify-content:space-between; padding:16px 20px; cursor:pointer; user-select:none; transition: background 0.2s; }
.pricing-group-head:hover { background: rgba(201,166,107,0.04); }
.pricing-group-title { font-family:var(--font-display); font-size:16px; font-weight:500; color:var(--white); display:flex; align-items:center; gap:10px; }
.pricing-group-title i { font-size:14px; color:var(--gold); transition: transform 0.3s; }
.pricing-group.open .pricing-group-title i { transform: rotate(180deg); }
.pricing-group-count { font-size:10px; text-transform:uppercase; letter-spacing:1.5px; color:rgba(var(--white-rgb),0.3); }
.pricing-group-body { max-height:0; overflow:hidden; transition: max-height 0.4s ease; }
.pricing-group.open .pricing-group-body { max-height:2000px; }
.pricing-group-body .pricing-row { padding-left:48px; }

.portfolio { background: var(--black); padding: 80px 80px; position: relative; z-index:1; }
.portfolio-header { text-align:center; margin-bottom:60px; }
.portfolio-header .section-title { color:var(--white); }
.portfolio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.portfolio-item { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 1; }
.portfolio-item.tall { grid-row: span 2; aspect-ratio: auto; }
.portfolio-item.wide { grid-column: span 2; aspect-ratio: 2/1; }
.portfolio-item img { width:100%; height:100%; object-fit:cover; transition: transform 0.7s ease; }
.portfolio-item:hover img { transform: scale(1.07); }
.portfolio-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; opacity: 0; transition: opacity 0.4s; }
.portfolio-item:hover .portfolio-item-overlay { opacity: 1; }
.portfolio-item-label { font-family: var(--font-display); font-size: 18px; color: var(--white); margin-bottom: 4px; }
.portfolio-item-cat { font-size: 9px; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); }

.gallery { background: var(--black); padding: 80px 80px; position: relative; z-index:1; }
.gallery-header { text-align:center; margin-bottom:60px; }
.gallery-header .section-title { color:var(--white); }
.gallery-filters { display: flex; gap:8px; justify-content:center; margin-bottom: 48px; flex-wrap:wrap; }
.gf-btn { font-family: var(--font-btn); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; padding: 10px 22px; background: transparent; color: rgba(var(--white-rgb),0.5); border: 1px solid rgba(var(--white-rgb),0.12); cursor: pointer; transition: all 0.3s; }
.gf-btn.active, .gf-btn:hover { background: var(--gold); color: var(--on-accent); border-color: var(--gold); }
.gallery-masonry { columns: 4; column-gap: 12px; }
.gallery-item { break-inside: avoid; margin-bottom: 12px; overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width:100%; display:block; transition: transform 0.7s ease; }
.gallery-item::after { content: ''; position:absolute; inset:0; background: rgba(var(--black-rgb),0); transition: background 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { background: rgba(var(--black-rgb),0.3); }
.gallery-item-overlay { position:absolute; inset:0; z-index:2; display:flex; align-items:center; justify-content:center; opacity:0; transition: opacity 0.4s ease; }
.gallery-item:hover .gallery-item-overlay { opacity:1; }
.gallery-item-overlay i { font-size:28px; color:var(--gold); }

.lightbox { position: fixed; inset:0; z-index:9000; background: rgba(0,0,0,0.97); display:none; align-items:center; justify-content:center; }
.lightbox.open { display:flex; }
.lightbox img { max-width:90vw; max-height:90vh; object-fit:contain; animation: fadeIn 0.3s ease; }
.lightbox-close { position:absolute; top:30px; right:40px; font-size:32px; color:var(--gold); cursor:pointer; background:none; border:none; }
.lightbox-prev, .lightbox-next { position:absolute; top:50%; transform:translateY(-50%); background:rgba(201,166,107,0.15); border:1px solid var(--border-gold); color:var(--gold); font-size:22px; width:52px; height:52px; display:flex; align-items:center; justify-content:center; cursor:pointer; transition: background 0.3s; }
.lightbox-prev { left:20px; }
.lightbox-next { right:20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(201,166,107,0.3); }

.why { background: var(--dark-surface); padding: 80px 80px; position: relative; z-index:1; overflow: hidden; }
.why::before { content: 'LIYA\'S'; position:absolute; top:50%; left:50%; transform: translate(-50%,-50%); font-family: var(--font-display); font-size: 240px; font-weight:700; color: rgba(201,166,107,0.03); white-space:nowrap; pointer-events:none; user-select:none; }
.why-header { text-align:center; margin-bottom:80px; }
.why-header .section-title { color:var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border-gold); }
.why-card { background: var(--dark-surface); padding: 52px 40px; position: relative; overflow:hidden; transition: background 0.4s ease; }
.why-card::before { content:''; position:absolute; top:0; left:0; width:100%; height:2px; background: linear-gradient(to right, var(--gold), transparent); transform: scaleX(0); transform-origin:left; transition: transform 0.5s ease; }
.why-card:hover { background: rgba(201,166,107,0.04); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon { width:56px; height:56px; border:1px solid var(--border-gold); display:flex; align-items:center; justify-content:center; font-size:24px; color:var(--gold); margin-bottom:28px; transition: border-color 0.3s, background 0.3s; }
.why-card:hover .why-icon { border-color:var(--gold); background: rgba(201,166,107,0.1); }
.why-card h3 { font-family:var(--font-display); font-size:22px; font-weight:500; color:var(--white); margin-bottom:14px; }
.why-card p { font-size:13px; font-weight:300; color:rgba(var(--white-rgb),0.5); line-height:1.8; }
.why-gold-line { width:100%; height:1px; background: linear-gradient(to right, transparent, var(--gold), transparent); margin: 70px 0; opacity:0.3; }

.testimonials { background: var(--black); padding: 80px 80px; position: relative; z-index:1; overflow: hidden; }
.testimonials-header { text-align:center; margin-bottom:70px; }
.testimonials-header .section-title { color:var(--white); }
.testimonials-track-wrap { overflow:hidden; position:relative; }
.testimonials-track { display:flex; gap:24px; transition: transform 0.7s cubic-bezier(0.77,0,0.175,1); }
.testimonial-card { flex: 0 0 calc(33.333% - 16px); background: rgba(var(--white-rgb),0.03); backdrop-filter: blur(12px); border: 1px solid rgba(var(--white-rgb),0.08); padding: 44px 36px; position:relative; }
.testimonial-card::before { content:'"'; position:absolute; top:20px; left:28px; font-family:var(--font-display); font-size:80px; color:rgba(201,166,107,0.12); line-height:1; }
.tcard-stars { color:var(--gold); font-size:13px; letter-spacing:3px; margin-bottom:20px; }
.tcard-text { font-family:var(--font-display); font-size:18px; font-weight:400; font-style:italic; line-height:1.75; color:rgba(var(--white-rgb),0.8); margin-bottom:28px; }
.tcard-author { font-size:11px; text-transform:uppercase; letter-spacing:2.5px; color:var(--gold); }
.tcard-loc { font-size:11px; color:rgba(var(--white-rgb),0.3); margin-top:4px; }
.tcard-response { margin-top:16px;padding:12px 14px;background:rgba(201,166,107,0.06);border-left:2px solid var(--gold);border-radius:0 6px 6px 0; }
.tcard-response-head { font-size:10px;text-transform:uppercase;letter-spacing:1.5px;color:var(--gold);margin-bottom:4px;display:flex;align-items:center;gap:4px; }
.tcard-response-text { font-size:12px;color:rgba(var(--white-rgb),0.5);line-height:1.5;font-style:normal; }
.testimonials-nav { display:flex; gap:12px; justify-content:center; margin-top:44px; }
.t-nav-btn { width:44px; height:44px; background:transparent; border:1px solid var(--border-gold); color:var(--gold); font-size:18px; display:flex; align-items:center; justify-content:center; cursor:pointer; transition:all 0.3s; }
.t-nav-btn:hover { background:var(--gold); color:var(--on-accent); }
.t-dots { display:flex; gap:8px; align-items:center; margin: 0 16px; }
.t-dot { width:5px; height:5px; border-radius:50%; background:rgba(var(--white-rgb),0.2); cursor:pointer; transition:all 0.3s; }
.t-dot.active { background:var(--gold); width:20px; border-radius:3px; }

.instagram { background: var(--dark-surface); padding: 80px 80px; position: relative; z-index:1; }
.instagram-header { text-align:center; margin-bottom:60px; }
.instagram-header .section-title { color:var(--white); }
.instagram-grid { display:grid; grid-template-columns: repeat(6, 1fr); gap: 4px; margin-bottom: 50px; }
.ig-item { aspect-ratio:1; overflow:hidden; position:relative; cursor:pointer; }
.ig-item img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s ease; }
.ig-item:hover img { transform:scale(1.07); }
.ig-overlay { position:absolute; inset:0; background:rgba(201,166,107,0.6); display:flex; align-items:center; justify-content:center; opacity:0; transition:opacity 0.4s; }
.ig-item:hover .ig-overlay { opacity:1; }
.ig-overlay i { font-size:26px; color:var(--on-accent); }
.instagram-cta { text-align:center; }
.instagram-cta p { font-size:13px; color:rgba(var(--white-rgb),0.5); margin-bottom:24px; letter-spacing:1px; }

.products { background: var(--black); padding: 80px 80px; display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; position:relative; z-index:1; }
.products-img-wrap { position:relative; }
.products-img { width:100%; height:580px; object-fit:cover; display:block; }
.products-img-deco { position:absolute; top:-16px; right:-16px; width:100%; height:100%; border:1px solid rgba(201,166,107,0.2); pointer-events:none; }
.products-content .section-title { color:var(--white); margin-bottom:8px; }
.products-content p { font-size:15px; font-weight:300; color:rgba(var(--white-rgb),0.6); line-height:1.9; margin-bottom:20px; }
.brand-chips { display:flex; flex-wrap:wrap; gap:8px; margin:28px 0; }
.chip { padding:7px 16px; border:1px solid var(--border-gold); font-size:10px; text-transform:uppercase; letter-spacing:1.5px; color:rgba(var(--white-rgb),0.6); transition:all 0.3s; }
.chip:hover { border-color:var(--gold); color:var(--gold); }
.products-header { text-align:center; margin-bottom:80px; }
.products-header .section-title { color:var(--white); }
.products-header p { font-size:14px; font-weight:300; color:rgba(var(--white-rgb),0.5); margin-top:20px; max-width:520px; margin-left:auto; margin-right:auto; line-height:1.8; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.product-card {
  background: var(--card-dark);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  z-index: 2;
}
.product-card-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}
.product-card:hover .product-card-img { transform: scale(1.06); }
.product-card-body {
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card-icon {
  width: 40px; height: 40px;
  background: rgba(201,166,107,0.1);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex; align-items:center; justify-content:center;
  font-size: 16px; color: var(--gold);
  margin-bottom: 14px;
  flex-shrink: 0;
}
.product-card-title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}
.product-card-desc {
  font-size: 12px; font-weight: 300;
  color: rgba(var(--white-rgb),0.5);
  line-height: 1.7;
  margin-bottom: 16px;
}
.product-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(201,166,107,0.08);
}
.product-item:last-child { border-bottom: none; }
.product-item-name {
  font-size: 12px;
  color: rgba(var(--white-rgb),0.7);
  font-weight: 300;
}
.product-item-price {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
}

.location { background: var(--dark-surface); padding: 80px 80px; display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; position:relative; z-index:1; }
.location-map { height:500px; background:#111; position:relative; overflow:hidden; }
.location-map-placeholder { width:100%; height:100%; background: linear-gradient(135deg, #111 0%, #1a1a1a 100%); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:16px; }
.location-map-placeholder i { font-size:48px; color:var(--gold); opacity:0.4; }
.location-map-placeholder p { font-size:13px; color:rgba(var(--white-rgb),0.3); letter-spacing:1px; }
.location-map iframe { width:100%; height:100%; border:none; }
.location-info .section-title { color:var(--white); margin-bottom:8px; }
.location-details { margin-top:36px; }
.location-item { display:flex; gap:18px; align-items:flex-start; padding:22px 0; border-bottom:1px solid rgba(var(--white-rgb),0.06); }
.location-item:last-of-type { border-bottom:none; }
.loc-icon { font-size:20px; color:var(--gold); margin-top:2px; flex-shrink:0; }
.loc-text h4 { font-size:11px; text-transform:uppercase; letter-spacing:2px; color:rgba(var(--white-rgb),0.4); margin-bottom:6px; }
.loc-text p, .loc-text a { font-size:14px; font-weight:300; color:rgba(var(--white-rgb),0.75); line-height:1.7; text-decoration:none; }
.loc-text a:hover { color:var(--gold); }
.location-btns { display:flex; gap:12px; flex-wrap:wrap; margin-top:32px; }

.hours { background: var(--black); padding: 80px 80px; display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; position:relative; z-index:1; }
.hours-img-wrap { position:relative; }
.hours-img { width:100%; height:500px; object-fit:cover; display:block; }
.hours-img-badge { position:absolute; bottom:-20px; right:-20px; width:130px; height:130px; background:var(--gold); display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; }
.hours-img-badge i { font-size:28px; color:var(--on-accent); margin-bottom:4px; animation: rotateClock 6s linear infinite; }
@keyframes rotateClock { to { transform: rotate(360deg); } }
.hours-img-badge span { font-size:9px; text-transform:uppercase; letter-spacing:2px; color:var(--on-accent); font-weight:600; }
.hours-content .section-title { color:var(--white); }
.hours-table { margin-top:40px; }
.hours-row { display:flex; justify-content:space-between; align-items:center; padding:16px 0; border-bottom:1px solid rgba(var(--white-rgb),0.06); transition: padding-left 0.3s ease; }
.hours-row:hover { padding-left:8px; }
.hours-row:last-child { border-bottom:none; }
.hours-day { font-size:13px; font-weight:400; color:rgba(var(--white-rgb),0.7); }
.hours-time { font-size:13px; font-weight:300; color:var(--gold); }
.hours-closed { color:rgba(var(--white-rgb),0.2); }
.hours-note { margin-top:28px; padding:18px 20px; border-left:2px solid var(--gold); background:rgba(201,166,107,0.05); font-size:13px; font-weight:300; color:rgba(var(--white-rgb),0.55); font-style:italic; line-height:1.7; }

.events { background: var(--dark-surface); padding: 80px 80px; position: relative; z-index:1; }
.events-header { text-align:center; margin-bottom:80px; }
.events-header .section-title { color:var(--white); }
.events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.event-card { background: var(--card-dark); border: 1px solid var(--border-gold); padding: 36px 32px; position: relative; overflow: hidden; transition: transform 0.4s ease; }
.event-card:hover { transform: translateY(-4px); }
.event-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--gold); }
.event-date-badge { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; background: rgba(201,166,107,0.12); border: 1px solid var(--border-gold); padding: 12px 18px; margin-bottom: 20px; min-width: 70px; }
.event-date-day { font-family: var(--font-display); font-size: 28px; color: var(--gold); line-height: 1; }
.event-date-month { font-size: 9px; text-transform: uppercase; letter-spacing: 2px; color: var(--champagne); margin-top: 4px; }
.event-card-title { font-family: var(--font-display); font-size: 20px; color: var(--white); margin-bottom: 8px; }
.event-card-desc { font-size: 13px; font-weight: 300; color: rgba(var(--white-rgb),0.55); line-height: 1.8; margin-bottom: 16px; }
.event-card-meta { display: flex; gap: 20px; font-size: 11px; color: rgba(var(--white-rgb),0.35); }
.event-card-meta i { color: var(--gold); margin-right: 4px; }
.section-footer-link { text-align: center; margin-top: 60px; }

.loyalty { background: var(--black); padding: 80px 80px; position: relative; z-index:1; overflow: hidden; }
.loyalty::before { content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(201,166,107,0.06) 0%, transparent 70%); pointer-events: none; }
.loyalty-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.loyalty-content .section-title { color: var(--white); }
.loyalty-content p { font-size: 14px; font-weight: 300; color: rgba(var(--white-rgb),0.6); line-height: 1.9; margin-bottom: 24px; }
.loyalty-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.loyalty-tier { background: var(--card-dark); border: 1px solid var(--border-gold); padding: 28px 20px; text-align: center; transition: transform 0.3s, border-color 0.3s; }
.loyalty-tier:hover { transform: translateY(-4px); border-color: var(--gold); }
.loyalty-tier-icon { font-size: 32px; margin-bottom: 12px; }
.loyalty-tier-name { font-family: var(--font-display); font-size: 18px; color: var(--white); margin-bottom: 4px; }
.loyalty-tier-req { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: rgba(var(--white-rgb),0.35); margin-bottom: 12px; }
.loyalty-tier-perk { font-size: 12px; font-weight: 300; color: var(--gold); line-height: 1.6; }
.loyalty-tier-points { font-size: 28px; font-weight: 600; color: var(--gold); margin-bottom: 4px; font-family: var(--font-display); }

/* ── Contact Section ── */
.contact-section { background: var(--black); padding: 80px 80px; position: relative; z-index: 1; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; max-width: 1200px; margin: 0 auto; }
.contact-info .section-eyebrow { margin-bottom: 16px; }
.contact-info .section-title { margin-bottom: 16px; }
.contact-info > p { font-size: 14px; font-weight: 300; color: rgba(var(--white-rgb),0.6); line-height: 1.9; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail-icon { width: 44px; height: 44px; background: rgba(201,166,107,0.1); border: 1px solid var(--border-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--gold); flex-shrink: 0; }
.contact-detail h4 { font-size: 10px; text-transform: uppercase; letter-spacing: 2px; color: rgba(var(--white-rgb),0.4); margin-bottom: 4px; }
.contact-detail a, .contact-detail span { font-size: 14px; font-weight: 300; color: rgba(var(--white-rgb),0.75); text-decoration: none; line-height: 1.6; }
.contact-detail a:hover { color: var(--gold); }

.contact-form-wrap { background: var(--card-dark); border: 1px solid var(--border-gold); padding: 48px 40px; border-radius: 12px; }
.contact-form-title { font-family: var(--font-display); font-size: 26px; font-weight: 500; color: var(--white); margin-bottom: 8px; }
.contact-form-sub { font-size: 13px; font-weight: 300; color: rgba(var(--white-rgb),0.5); margin-bottom: 32px; line-height: 1.7; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-field { margin-bottom: 20px; }
.contact-label { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 2px; color: rgba(var(--white-rgb),0.4); margin-bottom: 8px; }
.contact-input { width: 100%; background: rgba(var(--white-rgb),0.04); border: 1px solid rgba(201,166,107,0.15); padding: 14px 16px; font-size: 13px; color: var(--white); font-family: var(--font-body); outline: none; transition: border-color 0.3s; border-radius: 0; box-sizing:border-box; }
.contact-input:focus { border-color: var(--gold); }
.contact-input::placeholder { color: rgba(var(--white-rgb),0.2); }
.contact-select { appearance: none; -webkit-appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C9A66B' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.contact-select option { background: var(--black); color: var(--white); }
.contact-textarea { resize: vertical; min-height: 120px; }
.contact-submit { width: 100%; justify-content: center; margin-top: 8px; }
.contact-success { text-align: center; padding: 60px 20px; }
.contact-success-icon { font-size: 56px; color: var(--gold); margin-bottom: 20px; }
.contact-success h3 { font-family: var(--font-display); font-size: 28px; color: var(--white); margin-bottom: 12px; }
.contact-success p { font-size: 14px; font-weight: 300; color: rgba(var(--white-rgb),0.6); line-height: 1.8; max-width: 400px; margin: 0 auto; }

@media (max-width: 992px) {
  .contact-inner { grid-template-columns: 1fr; gap: 60px; }
  .contact-form-wrap { padding: 36px 28px; }
}
@media (max-width: 768px) {
  .contact-section { padding: 80px 24px; }
  .contact-form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
}

.cta-section { background: var(--dark-surface); padding: 80px 80px; text-align:center; position:relative; z-index:1; overflow:hidden; }
.cta-section::before { content:''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:600px; height:600px; background:radial-gradient(circle, rgba(201,166,107,0.08) 0%, transparent 70%); pointer-events:none; }
.cta-section .section-title { color:var(--white); font-size:clamp(40px,6vw,80px); margin-bottom:20px; }
.cta-section p { font-size:16px; font-weight:300; color:rgba(var(--white-rgb),0.5); max-width:500px; margin:0 auto 50px; line-height:1.8; }
.cta-btns { display:flex; gap:20px; justify-content:center; flex-wrap:wrap; }

/* ══ PRICING HERO ══ */
.page-hero { position:relative; height:55vh; min-height:420px; display:flex; align-items:center; justify-content:center; overflow:hidden; background:var(--black); }
.page-hero-bg { position:absolute; inset:0; z-index:1; background-size:cover; background-position:center top; }
.page-hero-overlay { position:absolute; inset:0; z-index:2; background:linear-gradient(to bottom, rgba(var(--black-rgb),0.05) 0%, rgba(var(--black-rgb),0.12) 50%, rgba(var(--black-rgb),0.4) 100%); }
.page-hero-content { position:relative; z-index:3; text-align:center; padding:0 24px; max-width:800px; }
.page-hero-eyebrow { font-family:var(--font-body); font-size:10px; font-weight:500; text-transform:uppercase; letter-spacing:5px; color:var(--gold); margin-bottom:20px; opacity:0; animation:fadeUp 1s ease 0.3s forwards; }
.page-hero-title { font-family:var(--font-display); font-size:clamp(42px,6vw,82px); font-weight:400; line-height:1.05; color:var(--white); margin-bottom:20px; opacity:0; animation:fadeUp 1.1s ease 0.5s forwards; }
.page-hero-title em { font-style:italic; color:var(--champagne); }
.page-hero-sub { font-size:clamp(13px,1.4vw,15px); font-weight:300; line-height:1.8; color:rgba(var(--white-rgb),0.7); max-width:600px; margin:0 auto; opacity:0; animation:fadeUp 1.1s ease 0.7s forwards; }
.page-hero-btns { display:flex; gap:20px; justify-content:center; flex-wrap:wrap; margin-top:36px; opacity:0; animation:fadeUp 1.1s ease 0.9s forwards; }

/* ── Pricing Card Filters (Services & Products) ── */
.services-pricing,
.products-pricing {
  background: var(--dark-surface);
  padding: 80px 80px;
  position: relative;
  z-index: 1;
}
.services-pricing-header,
.products-pricing-header {
  text-align: center;
  margin-bottom: 60px;
}
.services-pricing-header .section-title,
.products-pricing-header .section-title { color: var(--white); }
.pcf-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.pcf-btn {
  background: transparent;
  border: 1px solid var(--border-gold);
  color: rgba(var(--white-rgb),0.6);
  font-family: var(--font-btn);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
}
.pcf-btn:hover { color: var(--white); border-color: var(--gold); background: rgba(201,166,107,0.08); }
.pcf-btn.active { background: var(--gold); color: var(--on-accent); border-color: var(--gold); }
.ppt-btn {
  background: transparent;
  border: 1px solid var(--border-gold);
  color: rgba(var(--white-rgb),0.6);
  font-family: var(--font-btn);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
}
.ppt-btn:hover { color: var(--white); border-color: var(--gold); background: rgba(201,166,107,0.08); }
.ppt-btn.active { background: var(--gold); color: var(--on-accent); border-color: var(--gold); }
.pcf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.pcf-card {
  background: var(--card-dark);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
}
.pcf-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  z-index: 2;
}
.pcf-card-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.pcf-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}
.pcf-card:hover .pcf-card-img { transform: scale(1.06); }
.pcf-card-body {
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pcf-card-icon {
  width: 40px; height: 40px;
  background: rgba(201,166,107,0.1);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex; align-items:center; justify-content:center;
  font-size: 16px; color: var(--gold);
  margin-bottom: 14px;
  flex-shrink: 0;
}
.pcf-card-title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}
.pcf-card-desc {
  font-size: 12px; font-weight: 300;
  color: rgba(var(--white-rgb),0.5);
  line-height: 1.7;
  margin-bottom: 16px;
}
.pcf-items {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.pcf-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(201,166,107,0.08);
  gap: 8px;
}
.pcf-item:last-child { border-bottom: none; }
.pcf-item-name {
  font-size: 12px;
  color: rgba(var(--white-rgb),0.7);
  font-weight: 300;
  flex: 1;
}
.pcf-item-dur {
  font-size: 10px;
  color: rgba(var(--white-rgb),0.3);
  font-weight: 300;
  white-space: nowrap;
}
.pcf-item-price {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
}
.pcf-card .service-btn { margin-top: 16px; }

@media (max-width: 992px) {
  .pcf-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .pcf-grid { grid-template-columns: 1fr; }
  .pcf-card-img-wrap { height: 180px; }
  .services-pricing,
  .products-pricing { padding: 80px 24px; }
}

/* ══ POLICY SECTION ══ */
.policy-section {
  background: var(--dark-surface);
  padding: 60px 80px;
  position: relative;
  z-index: 1;
}
.policy-wrap {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.policy-card {
  background: rgba(201,166,107,0.03);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.policy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.policy-card:hover {
  border-color: var(--gold);
  background: rgba(201,166,107,0.06);
  transform: translateY(-4px);
}
.policy-card:hover::before {
  opacity: 1;
}
.policy-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 16px;
  background: rgba(201,166,107,0.08);
}
.policy-card h3 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.policy-card p {
  font-size: 12px;
  font-weight: 300;
  color: rgba(var(--white-rgb),0.55);
  line-height: 1.7;
  margin: 0;
}
.policy-footer {
  margin-top: 28px;
  padding: 18px 24px;
  border: 1px solid var(--border-gold);
  background: rgba(201,166,107,0.06);
}
.policy-footer p {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--gold);
  margin: 0;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .policy-section { padding: 40px 24px; }
  .policy-grid { grid-template-columns: 1fr; }
}

/* ══ ADMIN DASHBOARD ══ */
.admin {
  padding: 80px 60px;
  background: var(--black);
}
.admin-header { text-align: center; margin-bottom: 48px; }
.admin-header .section-title { color: var(--white); }

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.stat-card {
  background: rgba(var(--white-rgb),0.03);
  border: 1px solid rgba(var(--white-rgb),0.08);
  padding: 24px 16px;
  text-align: center;
  transition: border-color 0.3s;
}
.stat-card:hover { border-color: var(--gold); }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 6px;
}
.stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(var(--white-rgb),0.35);
}

.admin-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.admin-sidebar {
  flex: 0 0 220px;
  background: rgba(var(--white-rgb),0.02);
  border: 1px solid rgba(var(--white-rgb),0.06);
  padding: 12px 0;
  position: sticky;
  top: 100px;
}
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-size: 13px;
  color: rgba(var(--white-rgb),0.5);
  cursor: pointer;
  transition: all 0.2s;
  border-left: 2px solid transparent;
}
.sidebar-item:hover { color: var(--white); background: rgba(var(--white-rgb),0.03); }
.sidebar-item.active {
  color: var(--gold);
  border-left-color: var(--gold);
  background: rgba(201,166,107,0.06);
}
.sidebar-item i { font-size: 18px; }
.sidebar-divider {
  border: none;
  border-top: 1px solid rgba(var(--white-rgb),0.06);
  margin: 8px 20px;
}
.admin-main {
  flex: 1;
  min-width: 0;
}
.admin-view-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--white);
}
.admin-view-header .btn-outline { font-size: 11px; }

.admin-filters {
  margin-bottom: 24px;
}
.admin-filters-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.admin-filters-row select,
.admin-filters-row input {
  background: rgba(var(--white-rgb),0.04);
  border: 1px solid rgba(var(--white-rgb),0.1);
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--white);
  outline: none;
  min-width: 160px;
}
.admin-filters-row select:focus,
.admin-filters-row input:focus { border-color: var(--gold); }
.admin-filters-row input { flex: 1; min-width: 200px; }
.admin-filters-row option { background: #1a1a1a; color: var(--white); }

.admin-filters-row-input {
  width: 100%;
  background: rgba(var(--white-rgb),0.04);
  border: 1px solid rgba(var(--white-rgb),0.1);
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--white);
  outline: none;
}
.admin-filters-row-input:focus { border-color: var(--gold); }
.admin-filters-row-input::placeholder { color: rgba(var(--white-rgb),0.2); }

.admin-appointments { display: flex; flex-direction: column; gap: 12px; }

.ad-item {
  border: 1px solid rgba(var(--white-rgb),0.06);
  background: rgba(var(--white-rgb),0.02);
  overflow: hidden;
}
.ad-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  cursor: pointer;
  transition: background 0.2s;
}
.ad-head:hover { background: rgba(var(--white-rgb),0.03); }
.ad-client { flex: 1; font-size: 15px; color: var(--white); font-weight: 500; }
.ad-time { font-size: 12px; color: rgba(var(--white-rgb),0.4); min-width: 70px; }
.ad-status { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; padding: 4px 10px; border-radius: 2px; }
.stat-upcoming { background: rgba(201,166,107,0.15); color: var(--gold); }
.stat-completed { background: rgba(46,204,113,0.15); color: #2ecc71; }
.stat-cancelled { background: rgba(231,76,60,0.15); color: #e74c3c; }
.ad-arrow { color: rgba(var(--white-rgb),0.2); transition: transform 0.2s; font-size: 16px; }
.ad-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
}
.ad-body.open {
  max-height: 600px;
  padding: 0 20px 20px;
}
.ad-body-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}
.ad-body-grid div strong {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(var(--white-rgb),0.3);
  margin-bottom: 4px;
}
.ad-body-grid div span {
  font-size: 13px;
  color: rgba(var(--white-rgb),0.7);
}
.ad-actions { display: flex; gap: 12px; padding-top: 12px; border-top: 1px solid rgba(var(--white-rgb),0.06); }
.ad-actions .btn-primary { padding: 8px 18px; font-size: 11px; }
.ad-actions .btn-outline { padding: 8px 18px; font-size: 11px; }

.admin-empty {
  text-align: center;
  padding: 60px 20px;
  color: rgba(var(--white-rgb),0.25);
}
.admin-empty i { font-size: 48px; display: block; margin-bottom: 16px; }
.admin-empty p { font-size: 14px; }

/* ── Modals ── */
.admin-modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.7);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.admin-modal {
  background: #141414;
  border: 1px solid rgba(var(--white-rgb),0.1);
  width: 100%; max-width: 520px;
  max-height: 90vh; overflow-y: auto;
}
.admin-modal-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(var(--white-rgb),0.06);
  font-family: var(--font-display); font-size: 20px; color: var(--white);
}
.admin-modal-close { background: none; border: none; color: rgba(var(--white-rgb),0.3); font-size: 20px; cursor: pointer; }
.admin-modal-close:hover { color: var(--gold); }
.admin-modal-body { padding: 24px; }
.admin-modal-field { margin-bottom: 16px; }
.admin-modal-field label {
  display: block;
  font-size: 9px; text-transform: uppercase; letter-spacing: 2px;
  color: rgba(var(--white-rgb),0.35); margin-bottom: 8px;
}
.admin-modal-field input,
.admin-modal-field select,
.admin-modal-field textarea {
  width: 100%;
  background: rgba(var(--white-rgb),0.04);
  border: 1px solid rgba(var(--white-rgb),0.1);
  padding: 12px 14px;
  font-family: var(--font-body); font-size: 14px;
  color: var(--white); outline: none;
}
.admin-modal-field input:focus,
.admin-modal-field select:focus,
.admin-modal-field textarea:focus { border-color: var(--gold); }
.admin-modal-field textarea { resize: vertical; }
.admin-modal-field option { background: #1a1a1a; color: var(--white); }
.admin-modal-footer {
  display: flex; justify-content: flex-end; gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid rgba(var(--white-rgb),0.06);
}
.admin-modal-footer .btn-primary { padding: 10px 24px; font-size: 12px; }
.admin-modal-footer .btn-outline { padding: 10px 24px; font-size: 12px; }

/* ── Analytics ── */
.analytics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.analytics-card {
  background: rgba(var(--white-rgb),0.02);
  border: 1px solid rgba(var(--white-rgb),0.06);
  padding: 24px;
}
.analytics-card-header {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--white);
  margin-bottom: 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.analytics-period {
  font-size: 9px; text-transform: uppercase; letter-spacing: 1px;
  color: rgba(var(--white-rgb),0.3);
}
.analytics-chart-wrap { height: 220px; }
.analytics-report {
  background: rgba(var(--white-rgb),0.02);
  border: 1px solid rgba(var(--white-rgb),0.06);
  padding: 24px;
}
.an-report-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.an-report-header h3 { font-family: var(--font-heading); font-size: 16px; color: var(--white); margin: 0; }
.an-report-table-wrap { overflow-x: auto; }
.an-report-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.an-report-table th {
  font-size: 9px; text-transform: uppercase; letter-spacing: 1.5px;
  color: rgba(var(--white-rgb),0.3); padding: 12px 10px;
  text-align: left; border-bottom: 1px solid rgba(var(--white-rgb),0.06);
  font-weight: 400;
}
.an-report-table td {
  padding: 12px 10px; color: rgba(var(--white-rgb),0.6);
  border-bottom: 1px solid rgba(var(--white-rgb),0.04);
}

/* ── Members ── */
.members-search { margin-bottom: 24px; }
.members-search input {
  width: 100%; max-width: 400px;
  background: rgba(var(--white-rgb),0.04);
  border: 1px solid rgba(var(--white-rgb),0.1);
  padding: 12px 14px; font-family: var(--font-body); font-size: 14px;
  color: var(--white); outline: none;
}
.members-search input:focus { border-color: var(--gold); }
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.member-card {
  background: rgba(var(--white-rgb),0.02);
  border: 1px solid rgba(var(--white-rgb),0.06);
  padding: 20px;
  transition: border-color 0.3s;
}
.member-card:hover { border-color: var(--gold); }
.member-card-name { font-size: 16px; color: var(--white); margin-bottom: 4px; }
.member-card-phone { font-size: 12px; color: rgba(var(--white-rgb),0.35); margin-bottom: 16px; }
.member-card-stats {
  display: flex; gap: 20px;
  border-top: 1px solid rgba(var(--white-rgb),0.06);
  padding-top: 16px;
}
.member-stat { text-align: center; flex: 1; }
.member-stat-num { display: block; font-family: var(--font-display); font-size: 22px; color: var(--gold); }
.member-stat-label { font-size: 9px; text-transform: uppercase; letter-spacing: 1px; color: rgba(var(--white-rgb),0.3); }

/* ── Products ── */
.admin-prod-toolbar {
  display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap;
}
.admin-prod-toolbar select,
.admin-prod-toolbar input {
  background: rgba(var(--white-rgb),0.04);
  border: 1px solid rgba(var(--white-rgb),0.1);
  padding: 10px 14px; font-family: var(--font-body); font-size: 13px;
  color: var(--white); outline: none;
}
.admin-prod-toolbar select:focus,
.admin-prod-toolbar input:focus { border-color: var(--gold); }
.admin-prod-toolbar input { flex: 1; min-width: 200px; }
.admin-prod-toolbar option { background: #1a1a1a; color: var(--white); }
.admin-prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.prod-card {
  background: rgba(var(--white-rgb),0.02);
  border: 1px solid rgba(var(--white-rgb),0.06);
  overflow: hidden;
  transition: border-color 0.3s;
}
.prod-card:hover { border-color: var(--gold); }
.prod-card-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.prod-card-body { padding: 16px; }
.prod-card-name { font-size: 15px; color: var(--white); margin-bottom: 4px; font-weight: 500; }
.prod-card-cat { font-size: 10px; color: rgba(var(--white-rgb),0.3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.prod-card-price { font-family: var(--font-display); font-size: 22px; color: var(--gold); margin-bottom: 8px; }
.prod-card-desc { font-size: 12px; color: rgba(var(--white-rgb),0.4); margin-bottom: 12px; line-height: 1.6; }
.prod-card-actions { display: flex; gap: 8px; }
.prod-card-actions .btn-outline { padding: 6px 14px; font-size: 10px; }

/* ── Content Editor ── */
.content-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.content-input:focus { border-color: var(--gold); }
textarea.content-input { resize: vertical; font-family: var(--font-body); }

/* ── Admin Pages ── */
.page-header { padding:130px 24px 50px; text-align:center; position:relative; overflow:hidden; }
.page-header-bg { position:absolute; inset:0; opacity:0.03; background:radial-gradient(circle at 30% 40%, var(--gold) 0%, transparent 60%); }
.page-header-content { position:relative; z-index:1; max-width:700px; margin:0 auto; }
.page-header-line { width:40px; height:1px; background:var(--gold); margin:16px auto; }
.breadcrumb { font-size:12px; color:rgba(var(--white-rgb),0.3); margin-bottom:16px; }
.breadcrumb a { color:rgba(var(--white-rgb),0.5); text-decoration:none; }
.breadcrumb a:hover { color:var(--gold); }
.breadcrumb-sep { margin:0 8px; color:rgba(var(--white-rgb),0.15); }
.breadcrumb-current { color:var(--gold); }
.admin { padding:60px 24px 80px; }
@media(max-width:768px) {
  .page-header { padding:100px 24px 40px; }
  .admin { padding:40px 16px 80px; }
}

/* ── Admin Dashboard Panels ── */
.admin-dash-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.admin-dash-panel {
  background: rgba(var(--white-rgb),0.02);
  border: 1px solid rgba(var(--white-rgb),0.06);
  overflow: hidden;
}
.admin-dash-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(var(--white-rgb),0.04);
}
.admin-dash-panel-header h3 {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
}
.admin-dash-panel-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}
.admin-dash-panel-link:hover { opacity: 0.8; }
.admin-dash-recent {
  padding: 8px 0;
}
.admin-dash-recent-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  transition: background 0.2s;
}
.admin-dash-recent-item:hover {
  background: rgba(var(--white-rgb),0.02);
}
.admin-dash-recent-avatar {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(201,166,107,0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}
.admin-dash-recent-info {
  flex: 1;
  min-width: 0;
}
.admin-dash-recent-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-dash-recent-meta {
  font-size: 11.5px;
  color: rgba(var(--white-rgb),0.35);
  margin-top: 2px;
}
.admin-dash-loading {
  text-align: center;
  padding: 32px;
  color: rgba(var(--white-rgb),0.3);
  font-size: 13px;
}

/* ── Admin Cards & Badges ── */
.admin-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.3px;
}
.admin-badge.upcoming {
  background: rgba(201,166,107,0.12);
  color: var(--gold);
}
.admin-badge.completed {
  background: rgba(46,204,113,0.12);
  color: #2ecc71;
}
.admin-badge.cancelled {
  background: rgba(231,76,60,0.12);
  color: #e74c3c;
}
.admin-badge.unpaid {
  background: rgba(241,196,15,0.12);
  color: #f1c40f;
}
.admin-badge.deposit {
  background: rgba(52,152,219,0.12);
  color: #3498db;
}

.admin-card {
  background: rgba(var(--white-rgb),0.02);
  border: 1px solid rgba(var(--white-rgb),0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}
.admin-card:hover {
  border-color: rgba(var(--white-rgb),0.1);
}
.admin-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  gap: 12px;
}
.admin-card-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}
.admin-card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  flex-shrink: 0;
  color: var(--black);
  background: var(--gold);
}
.admin-card-info {
  flex: 1;
  min-width: 0;
}
.admin-card-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-card-meta {
  font-size: 12px;
  color: rgba(var(--white-rgb),0.4);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-card-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.admin-card-time {
  font-size: 13px;
  color: rgba(var(--white-rgb),0.5);
  font-variant-numeric: tabular-nums;
}
.admin-card-actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(var(--white-rgb),0.04);
}
.admin-action-btn {
  padding: 7px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.admin-action-btn.complete {
  background: rgba(46,204,113,0.12);
  color: #2ecc71;
}
.admin-action-btn.complete:hover {
  background: rgba(46,204,113,0.2);
}
.admin-action-btn.cancel {
  background: rgba(231,76,60,0.08);
  color: #e74c3c;
}
.admin-action-btn.cancel:hover {
  background: rgba(231,76,60,0.15);
}

.admin-empty {
  text-align: center;
  padding: 60px 20px;
  color: rgba(var(--white-rgb),0.3);
}
.admin-empty i {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
  color: rgba(var(--white-rgb),0.1);
}
.admin-empty p {
  font-size: 14px;
}

.admin-tabs {
  display: flex;
  gap: 2px;
  background: rgba(var(--white-rgb),0.03);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 20px;
  width: fit-content;
}
.admin-tab {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--white-rgb),0.4);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  background: transparent;
  font-family: var(--font-body);
}
.admin-tab:hover {
  color: rgba(var(--white-rgb),0.7);
}
.admin-tab.active {
  background: rgba(201,166,107,0.12);
  color: var(--gold);
}

.admin-dash-empty {
  text-align: center;
  padding: 32px;
}
.admin-dash-empty i {
  font-size: 36px;
  color: rgba(var(--white-rgb),0.1);
  display: block;
  margin-bottom: 12px;
}
.admin-dash-empty p {
  font-size: 13px;
  color: rgba(var(--white-rgb),0.3);
}

/* ── Responsive Admin ── */
@media(max-width:1024px) {
  .admin-layout { flex-direction: column; }
  .admin-sidebar {
    flex: none; width: 100%;
    display: flex; flex-wrap: wrap; gap: 0;
    position: static; padding: 0;
    border: none; background: none;
  }
  .admin-sidebar .sidebar-item {
    flex: 1; min-width: 100px;
    justify-content: center;
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 12px 10px;
    font-size: 11px;
  }
  .admin-sidebar .sidebar-item.active {
    border-left: none;
    border-bottom-color: var(--gold);
  }
  .admin-sidebar .sidebar-divider { display: none; }
  .analytics-grid { grid-template-columns: 1fr; }
}
@media(max-width:768px) {
  .admin { padding: 60px 24px; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .admin-dash-grid { grid-template-columns: 1fr; }
  .ad-head { flex-wrap: wrap; gap: 8px; }
  .ad-client { flex: 0 0 100%; order: -1; }
  .ad-body-grid { grid-template-columns: 1fr; }
  .admin-view-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .admin-filters-row { flex-direction: column; }
  .admin-filters-row select,
  .admin-filters-row input { width: 100%; min-width: 0; }
  .members-grid { grid-template-columns: 1fr; }
  .admin-prod-grid { grid-template-columns: 1fr; }
  .admin-prod-toolbar { flex-direction: column; }
  .admin-prod-toolbar input { min-width: 0; }
  .admin-tabs { overflow-x: auto; white-space: nowrap; width: 100%; }
  .admin-card-header { flex-wrap: wrap; }
  .admin-card-header-right { flex: 0 0 100%; justify-content: flex-end; margin-top: 8px; }
}

/* ── Client Dashboard Bottom Nav (Mobile) ── */
.client-dashboard-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 4000;
  background: var(--card-dark);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(var(--white-rgb),0.06);
  padding: 8px 4px 12px;
  justify-content: space-around;
}
.client-dashboard-nav a {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 8px 12px; min-width: 56px;
  color: rgba(var(--white-rgb),0.35); text-decoration: none;
  transition: color 0.2s; position: relative;
}
.client-dashboard-nav a i { font-size: 22px; }
.client-dashboard-nav a span { font-size: 9px; font-weight: 500; letter-spacing: 0.5px; font-family: var(--font-body); }
.client-dashboard-nav a.active,
.client-dashboard-nav a:hover { color: var(--gold); }
.client-dashboard-nav a.active::after {
  content: ''; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%); width: 20px; height: 2px;
  background: var(--gold); border-radius: 0 0 2px 2px;
}
.client-dashboard-nav .more-toggle { color: rgba(var(--white-rgb),0.5); }

.more-nav-dropdown {
  display: none; position: fixed; bottom: 72px; right: 16px; z-index: 4001;
  background: var(--card-dark); border: 1px solid var(--border-gold);
  border-radius: 12px; padding: 8px; min-width: 180px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  animation: fadeUp 0.2s ease;
}
.more-nav-dropdown.open { display: block; }
.more-nav-dropdown a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 8px;
  color: rgba(var(--white-rgb),0.7); text-decoration: none;
  font-size: 13px; transition: background 0.2s, color 0.2s;
}
.more-nav-dropdown a:hover { background: rgba(201,166,107,0.1); color: var(--gold); }
.more-nav-dropdown a i { font-size: 18px; color: var(--gold); width: 20px; }
.more-nav-divider { border: none; border-top: 1px solid rgba(var(--white-rgb),0.08); margin: 8px 0; }

@media(max-width:768px) {
  .client-dashboard-nav { display: flex; }
  body { padding-bottom: 88px; }
}
