:root {
  --bg: #000000;
  --panel: #0b0b0d;
  --muted: #c9c9c9;
  --text: #f5f5f5;
  --brand: #d4af37; /* gold */
  --brand-ink: #0b0b0d; /* text on gold buttons */
  --ring: rgba(212, 175, 55, 0.35);
  --line: rgba(255, 255, 255, 0.08);
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #000 0%, #0a0a0f 100%);
}

h1,
h2,
h3,
h4 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}
/* Media */
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

/* Links */
a {
  color: var(--brand);
  text-decoration: none;
}
a:hover {
  opacity: 0.9;
}

.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}
.section {
  padding: 80px 0;
}
.section.alt {
  background: linear-gradient(180deg, #0a0a0f 0%, #08080d 100%);
}
.section-title {
  font-size: clamp(26px, 4vw, 36px);
  margin: 0 0 24px 0;
}
.muted {
  color: var(--muted);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid var(--brand);
  font-weight: 600;
}
.btn.primary {
  background: var(--brand);
  color: var(--brand-ink);
  border-color: transparent;
}
.btn.ghost {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 8, 12, 0.55);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  border-radius: 0;
}
.nav {
  position: absolute;
  right: 0;
}
.nav-toggle {
  display: none;
  border-color: var(--line);
  color: var(--text);
}
.nav-menu {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  padding: 10px 12px;
  border-radius: 10px;
}
.nav-menu a:hover {
  background: rgba(212, 175, 55, 0.08);
}

/* Hero */
.hero {
  padding-top: 34px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.05;
  margin: 0 0 10px;
}
.hero-copy p {
  color: var(--muted);
  font-size: 18px;
  max-width: 46ch;
}
.cta-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.hero-media img {
  border-radius: 22px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.55);
}
.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  width: min(1100px, 92%);
  margin-inline: auto;
}
.hero-strip img {
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-strip img:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  animation: zoom 0.3s;
}

@keyframes zoom {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #f1f1f1;
  font-size: 50px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  line-height: 1;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: var(--brand);
}

.lightbox-caption {
  display: none;
}

/* Services Section */
.services-category {
  margin-bottom: 60px;
}

.category-title {
  font-size: 28px;
  color: var(--brand);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.5px;
}

.category-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--brand);
  border-radius: 2px;
}

/* Basic Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.service-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), #f4d03f);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-item:hover {
  transform: translateY(-3px);
  border-color: var(--brand);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.02),
    rgba(212, 175, 55, 0.05)
  );
}

.service-item:hover::before {
  opacity: 1;
}

.service-item h4 {
  font-size: 20px;
  margin: 0 0 12px 0;
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.2px;
}

.service-desc {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 20px 0;
  line-height: 1.5;
}

.service-price {
  display: inline-block;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--ring);
  padding: 10px 18px;
  border-radius: 8px;
  color: var(--brand);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
}

/* Combo Services */
.combo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.combo-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.combo-item:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.1);
}

.combo-item h4 {
  font-size: 17px;
  margin: 0;
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  text-transform: none;
}

.combo-price {
  color: var(--brand);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

/* Monthly Packages */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 50px;
}

.package-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.package-item.featured {
  border-color: var(--brand);
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.03),
    rgba(212, 175, 55, 0.08)
  );
}

.package-item.premium {
  border-color: #e74c3c;
  background: linear-gradient(
    135deg,
    rgba(231, 76, 60, 0.03),
    rgba(231, 76, 60, 0.08)
  );
}

.package-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.package-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--brand);
  color: var(--brand-ink);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.package-item.premium .package-badge {
  background: #e74c3c;
  color: white;
}

.package-item h4 {
  font-size: 22px;
  margin: 0 0 16px 0;
  padding-right: 100px;
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.2px;
}

.package-item p {
  color: var(--muted);
  margin: 0 0 24px 0;
  font-size: 15px;
  line-height: 1.5;
}

.package-price {
  display: block;
  color: var(--brand);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 1px;
}

.package-item.premium .package-price {
  color: #e74c3c;
}

/* Special Services */
.special-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.special-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
}

.special-item:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.special-item h4 {
  font-size: 20px;
  margin: 0 0 12px 0;
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.2px;
}

.special-item p {
  color: var(--muted);
  margin: 0 0 20px 0;
  font-size: 15px;
  line-height: 1.5;
}

.special-price {
  color: var(--brand);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.5px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  aspect-ratio: 4/5;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

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

/* Hours & Location */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
@media (min-width: 840px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}
.hours {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: var(--panel);
  border-radius: 12px;
  border: 1px solid var(--line);
}
.hours li span {
  color: var(--muted);
}
.hours li time {
  color: var(--brand);
}
.map-wrap {
  aspect-ratio: 16/10;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Booking Section */
.booking-section {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.booking-description {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 32px;
}
.booking-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.btn.large {
  padding: 16px 24px;
  font-size: 16px;
}
.contact-info {
  background: var(--panel);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
  text-align: left;
}
.contact-info h3 {
  margin: 0 0 16px 0;
  text-align: center;
}
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.contact-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child {
  border-bottom: none;
}
.contact-list strong {
  color: var(--brand);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-left p {
  margin: 0;
}
.footer-credit {
  font-size: 13px;
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-weight: 300;
  margin-top: 8px;
}
.footer-credit a {
  color: #8b5cf6;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 400;
}
.footer-credit a:hover {
  color: #a78bfa;
  opacity: 0.9;
}
.social-links {
  display: flex;
  gap: 16px;
  align-items: center;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--muted);
  transition: all 0.3s ease;
}
.social-link:hover {
  background: var(--brand);
  color: var(--brand-ink);
  border-color: var(--brand);
  transform: translateY(-2px);
}
.social-link svg {
  color: inherit;
}

/* Mobile Nav */
@media (max-width: 820px) {
  .container {
    width: 95%;
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(28px, 8vw, 40px);
    margin-bottom: 16px;
  }

  .hero-copy p {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .cta-row {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .btn {
    padding: 14px 20px;
    font-size: 16px;
    text-align: center;
  }

  .hero-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
    width: 95%;
  }

  .hero-strip img {
    height: 140px;
  }

  .hide-mobile {
    display: none;
  }

  .lightbox-close {
    top: 15px;
    right: 25px;
    font-size: 40px;
  }

  .lightbox-content {
    max-width: 95vw;
    max-height: 85vh;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card-body {
    padding: 20px;
  }

  .masonry {
    columns: 1;
    column-gap: 12px;
  }

  .masonry img {
    margin-bottom: 12px;
  }

  .two-col {
    gap: 32px;
  }

  .hours li {
    padding: 16px;
    font-size: 16px;
  }

  .booking-section {
    padding: 0 16px;
  }

  .booking-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn.large {
    padding: 16px 20px;
    font-size: 16px;
  }

  .contact-info {
    padding: 20px;
  }

  .contact-list li {
    padding: 12px 0;
    font-size: 16px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-left {
    align-items: center;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .social-feed {
    margin-bottom: 32px;
  }

  .instagram-feed,
  .tiktok-feed {
    padding: 16px;
    min-height: 250px;
  }

  .instagram-preview {
    padding: 16px;
  }

  .instagram-icon {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .instagram-preview h4 {
    font-size: 18px;
  }

  .instagram-preview p {
    font-size: 14px;
  }

  .tiktok-preview {
    padding: 16px;
  }

  .tiktok-icon {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .tiktok-preview h4 {
    font-size: 18px;
  }

  .tiktok-preview p {
    font-size: 14px;
  }

  .section-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .service-item {
    padding: 20px;
  }

  .service-item h4 {
    font-size: 16px;
  }

  .service-desc {
    font-size: 13px;
  }

  .combo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .combo-item {
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .package-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .package-item {
    padding: 20px;
  }

  .package-item h4 {
    font-size: 16px;
    padding-right: 0;
  }

  .package-badge {
    position: static;
    display: inline-block;
    margin-bottom: 12px;
  }

  .package-price {
    font-size: 18px;
  }

  .special-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .special-item {
    padding: 18px;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .tiktok-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .header-inner {
    justify-content: space-between;
  }

  .nav {
    position: static;
  }

  .logo img {
    height: 60px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--text);
    padding: 8px 12px;
    border-radius: 10px;
  }

  .nav-menu {
    display: none;
    position: absolute;
    right: 4%;
    top: 58px;
    background: #0e0e14;
    border: 1px solid var(--line);
    border-radius: 12px;
    flex-direction: column;
    min-width: 210px;
    padding: 10px;
  }

  .nav-menu.show {
    display: flex;
  }
}

/* Additional Mobile Improvements */
@media (max-width: 480px) {
  .container {
    width: 92%;
  }

  .section {
    padding: 40px 0;
  }

  .hero-copy h1 {
    font-size: 24px;
    line-height: 1.2;
  }

  .hero-copy p {
    font-size: 15px;
    line-height: 1.5;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .card-body {
    padding: 16px;
  }

  .card h3 {
    font-size: 18px;
  }

  .card p {
    font-size: 14px;
  }

  .hours li {
    padding: 12px;
    font-size: 14px;
  }

  .contact-info {
    padding: 16px;
  }

  .contact-list li {
    padding: 10px 0;
    font-size: 14px;
  }

  .btn {
    padding: 12px 16px;
    font-size: 15px;
  }

  .btn.large {
    padding: 14px 18px;
    font-size: 15px;
  }

  .service-item {
    padding: 16px;
  }

  .service-item h4 {
    font-size: 15px;
  }

  .service-desc {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .service-price {
    padding: 8px 14px;
    font-size: 16px;
  }

  .combo-item {
    padding: 12px;
    font-size: 14px;
  }

  .combo-item h4 {
    font-size: 14px;
  }

  .combo-price {
    font-size: 16px;
  }

  .package-item {
    padding: 16px;
  }

  .package-item h4 {
    font-size: 15px;
    margin-bottom: 12px;
    padding-right: 0;
  }

  .package-badge {
    font-size: 10px;
    padding: 5px 10px;
    margin-bottom: 10px;
  }

  .package-item p {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .package-price {
    font-size: 16px;
  }

  .special-item {
    padding: 16px;
  }

  .special-item h4 {
    font-size: 15px;
  }

  .special-item p {
    font-size: 13px;
  }

  .special-price {
    font-size: 18px;
  }
}

/* ===== Scroll‑in Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
}
.revealed {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s ease, transform 0.9s ease;
}

/* Button pulse (gold glow) */
@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 var(--ring);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}
.btn.primary:hover {
  animation: pulseRing 1.6s ease infinite;
}
