:root {
  --black: #0f0f0f;
  --gold: #d4af37;
  --pink: #f6d6d6;
  --beige: #eed9c4;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.18);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.45);
}

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

html,
body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(circle at top right, rgba(246, 214, 214, 0.1), transparent 40%),
    radial-gradient(circle at bottom left, rgba(238, 217, 196, 0.1), transparent 45%), var(--black);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  cursor: none;
}

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

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
}

.glass {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #080808;
}

.loader-content {
  text-align: center;
  width: min(500px, 86%);
}

.loader-logo {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  color: var(--white);
  letter-spacing: 0.12em;
  text-shadow: 0 0 14px rgba(212, 175, 55, 0.6);
}

.loader-tagline {
  margin: 1rem 0 1.5rem;
  color: var(--pink);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.loader-progress-wrap {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  overflow: hidden;
}

.loader-progress {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #8a6e1f, var(--gold), #f8e5a8);
  box-shadow: var(--shadow-gold);
}

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.9) 0%, rgba(212, 175, 55, 0.1) 60%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9998;
  transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
}

.cursor.active {
  width: 44px;
  height: 44px;
}

.navbar {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, 92%);
  z-index: 1000;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  top: 0.5rem;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.4rem;
}

.brand {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--beige);
}

.nav-links {
  display: flex;
  gap: 1.4rem;
}

.nav-links a {
  position: relative;
  font-size: 0.95rem;
}

.nav-links a.active {
  color: var(--beige);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.page-hero {
  min-height: 58vh;
  display: grid;
  align-items: end;
  padding-top: 8rem;
}

.page-hero .hero-bg {
  filter: saturate(1.05);
}

.page-title-wrap {
  position: relative;
  z-index: 2;
  padding-bottom: 3.2rem;
}

.page-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
}

.page-subtitle {
  margin-top: 0.8rem;
  max-width: 700px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  transform: scale(1.08);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 8, 8, 0.4), rgba(8, 8, 8, 0.8));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow {
  color: var(--pink);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 1.1;
}

.hero-subtitle {
  margin-top: 1rem;
  color: #f5f5f5;
  max-width: 620px;
}

.btn {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.6);
  background: linear-gradient(120deg, #241c0a, #4d3f17);
  color: var(--white);
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.btn:hover {
  box-shadow: var(--shadow-gold);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.service-card {
  padding: 1.5rem;
  border-radius: 18px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 0.6rem;
  color: var(--beige);
}

.service-card p {
  font-size: 0.95rem;
  opacity: 0.9;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: var(--shadow-gold);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-image {
  border-radius: 18px;
  overflow: hidden;
}

.about-image img {
  min-height: 460px;
}

.about-content p + p {
  margin-top: 1rem;
}

.masonry-grid {
  columns: 3 220px;
  column-gap: 1rem;
}

.gallery-item {
  margin-bottom: 1rem;
  break-inside: avoid;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  transition: transform 0.6s ease;
}

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

.testimonial-slider {
  position: relative;
  min-height: 220px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 2rem;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.5s ease;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-card p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.booking-form {
  border-radius: 18px;
  padding: 1.8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  color: var(--beige);
}

.form-group input,
.form-group select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  padding: 0.72rem 0.8rem;
  color: var(--white);
  font-family: inherit;
  transition: all 0.25s ease;
}

.form-group select option {
  color: var(--black);
}

.form-group input:focus,
.form-group select:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.booking-form .btn {
  grid-column: 1 / -1;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.7rem;
}

.insta-grid img {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.insta-grid img:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: var(--shadow-gold);
}

.footer {
  padding: 2.6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer h3 {
  font-family: "Playfair Display", serif;
  color: var(--beige);
}

.socials {
  display: flex;
  gap: 1rem;
}

.socials a {
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 999px;
  transition: all 0.25s ease;
}

.socials a:hover {
  box-shadow: var(--shadow-gold);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  place-items: center;
  z-index: 10000;
  padding: 1rem;
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: min(1000px, 95vw);
  max-height: 85vh;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
}

@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  body {
    cursor: auto;
  }

  .cursor {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    flex-direction: column;
    padding: 1rem;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    min-height: 86vh;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}
