:root {
  --bg-dark: #1a0f1f;
  --bg-gradient: radial-gradient(circle at 20% 20%, #40224d 0%, transparent 60%),
    radial-gradient(circle at 80% 0%, #784f3f 0%, transparent 55%),
    linear-gradient(135deg, #120c29 0%, #2d122c 45%, #33181c 100%);
  --accent-primary: #d9a441;
  --accent-secondary: #b76e79;
  --accent-highlight: #ffedc2;
  --text-main: #f5f0f2;
  --text-muted: rgba(245, 240, 242, 0.74);
  --card-bg: rgba(21, 10, 27, 0.65);
  --border-glow: rgba(217, 164, 65, 0.35);
  --shadow-strong: 0 35px 70px rgba(5, 0, 20, 0.45);
  --shadow-soft: 0 20px 45px rgba(5, 0, 20, 0.25);
  --ff-display: "Playfair Display", serif;
  --ff-body: "Poppins", "Segoe UI", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  color: var(--text-main);
  background: var(--bg-gradient);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.scene {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  filter: saturate(110%);
}

.orb,
.floating-lotus {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 237, 194, 0.12);
  box-shadow: 0 0 140px rgba(217, 164, 65, 0.32);
  mix-blend-mode: screen;
  filter: blur(0px);
}

.orb-left {
  width: 380px;
  height: 380px;
  top: 12vh;
  left: -120px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 225, 171, 0.7), rgba(141, 64, 90, 0.05));
  animation: float 16s ease-in-out infinite;
}

.orb-right {
  width: 420px;
  height: 420px;
  bottom: -60px;
  right: -160px;
  background: radial-gradient(circle at 70% 70%, rgba(217, 164, 65, 0.8), rgba(49, 9, 31, 0.05));
  animation: float 18s ease-in-out infinite reverse;
}

.orb-center {
  width: 280px;
  height: 280px;
  top: 45vh;
  left: 35vw;
  background: radial-gradient(circle at 50% 50%, rgba(255, 237, 194, 0.9), rgba(120, 41, 74, 0.05));
  animation: float 20s ease-in-out infinite alternate;
}

.floating-lotus {
  width: 220px;
  height: 220px;
  top: 25vh;
  right: 15vw;
  background: conic-gradient(from 120deg, rgba(217, 164, 65, 0.45), rgba(126, 55, 72, 0.15), rgba(255, 237, 194, 0.6), rgba(217, 164, 65, 0.45));
  transform: rotateX(55deg) rotateZ(25deg);
  animation: lotus-spin 28s linear infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -35px, 0) scale(1.05);
  }
}

@keyframes lotus-spin {
  0% {
    transform: rotateX(55deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(55deg) rotateZ(360deg);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(24px);
  background: linear-gradient(135deg, rgba(18, 12, 41, 0.92), rgba(42, 16, 30, 0.72));
  border-bottom: 1px solid rgba(217, 164, 65, 0.2);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.logo {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-highlight);
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--accent-highlight);
  text-shadow: 0 0 12px rgba(255, 237, 194, 0.5);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--accent-highlight);
  border-radius: 99px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 2rem 5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero-content {
  background: var(--card-bg);
  border-radius: 28px;
  border: 1px solid rgba(217, 164, 65, 0.18);
  box-shadow: var(--shadow-soft);
  padding: clamp(2.2rem, 3.8vw, 3rem);
  display: grid;
  gap: 1.5rem;
  backdrop-filter: blur(12px);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.hero-content:hover,
.hero-content:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 32px 65px rgba(5, 0, 20, 0.45);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(217, 164, 65, 0.15);
  color: var(--accent-highlight);
  font-size: 1.55rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 3.4vw, 3.6rem);
  line-height: 1.1;
  margin: 1.5rem 0 1rem;
  text-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.hero p {
  max-width: 32ch;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-content p {
  max-width: 48ch;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent-primary), #eac471);
  color: #2b1324;
  box-shadow: 0 18px 40px rgba(217, 164, 65, 0.35);
}

.btn.ghost {
  background: transparent;
  color: var(--accent-highlight);
  border-color: rgba(217, 164, 65, 0.4);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(217, 164, 65, 0.32);
}

.hero-visual {
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  transform: rotateY(-12deg) rotateX(6deg);
  border: 1px solid rgba(255, 237, 194, 0.2);
  backdrop-filter: blur(6px);
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(217, 164, 65, 0.15), transparent 55%);
  pointer-events: none;
}

.hero-frame img {
  display: block;
  width: clamp(240px, 22vw, 400px);
  height: auto;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  position: relative;
}

.section-header {
  max-width: 680px;
  margin-bottom: 3rem;
}

.eyebrow {
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 237, 194, 0.72);
  font-size: 0.85rem;
}

.section h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  margin: 1rem 0;
}

.section p {
  color: var(--text-muted);
  line-height: 1.75;
}

.service-carousel {
  position: relative;
  margin: 3rem auto 4.5rem;
  max-width: 1100px;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
}

.carousel-stage {
  position: relative;
  width: min(720px, 100%);
  padding: 0.5rem 0;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2rem);
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(217, 164, 65, 0.45);
  background: rgba(18, 12, 41, 0.8);
  color: var(--accent-highlight);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 12px 25px rgba(5, 0, 20, 0.35);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.carousel-btn span {
  font-size: 1.2rem;
  line-height: 1;
}

.carousel-btn.prev {
  left: clamp(0.75rem, 3vw, 1.6rem);
}

.carousel-btn.next {
  right: clamp(0.75rem, 3vw, 1.6rem);
}

.carousel-btn:hover,
.carousel-btn:focus {
  transform: translateY(-52%);
  border-color: rgba(217, 164, 65, 0.9);
  box-shadow: 0 18px 40px rgba(217, 164, 65, 0.3);
}

.carousel-btn:focus-visible {
  outline: 2px solid rgba(255, 237, 194, 0.55);
  outline-offset: 3px;
}

.service-card {
  position: relative;
  flex: 0 0 clamp(320px, 42vw, 440px);
  max-width: clamp(320px, 42vw, 440px);
  min-height: clamp(380px, 44vw, 460px);
  padding: 2.2rem 2rem;
  border-radius: 24px;
  background: var(--card-bg);
  border: 1px solid rgba(217, 164, 65, 0.18);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-muted);
  overflow: hidden;
}

.service-card h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--accent-highlight);
}

.service-lead {
  font-size: 1.02rem;
  color: var(--accent-highlight);
  line-height: 1.6;
}

.service-points {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.62;
  color: var(--text-muted);
}

.service-points li {
  position: relative;
  padding-left: 1rem;
}

.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(217, 164, 65, 0.6);
  box-shadow: 0 0 12px rgba(217, 164, 65, 0.45);
}

.price-list {
  list-style: none;
  margin-top: auto;
  border-top: 1px solid rgba(217, 164, 65, 0.2);
  padding-top: 0.85rem;
  display: grid;
  gap: 0.6rem;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--accent-highlight);
  align-items: baseline;
  font-size: 1rem;
}

.price-list li span:first-child {
  flex: 1 1 auto;
  min-width: 0;
}

.price-list li span:last-child {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  white-space: nowrap;
}

.service-note {
  margin-top: auto;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--accent-highlight);
  border-top: 1px dashed rgba(217, 164, 65, 0.32);
  padding-top: 0.65rem;
}

.service-card.is-active {
  border-color: rgba(217, 164, 65, 0.5);
  box-shadow: 0 45px 90px rgba(217, 164, 65, 0.32);
}

.service-card.is-active .service-lead,
.service-card.is-active .service-points li,
.service-card.is-active .service-note {
  color: var(--accent-highlight);
}

.experience {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.experience-content {
  background: var(--card-bg);
  border-radius: 26px;
  padding: 2.5rem;
  border: 1px solid rgba(217, 164, 65, 0.18);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.4rem;
}

.experience-content .cta {
  margin-top: 2.2rem;
}

.experience-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  perspective: 1200px;
}

.gallery-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  transform-style: preserve-3d;
  border: 1px solid rgba(217, 164, 65, 0.2);
  background: rgba(15, 6, 22, 0.5);
}

.gallery-frame img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
}

.appointment {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: stretch;
}

.contact-card,
.map-card {
  background: var(--card-bg);
  border-radius: 26px;
  padding: 2.5rem;
  border: 1px solid rgba(217, 164, 65, 0.2);
  box-shadow: var(--shadow-soft);
}

.contact-card h2 {
  margin-bottom: 1rem;
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.contact-grid h3 {
  font-size: 1.1rem;
  color: var(--accent-highlight);
  margin-bottom: 0.35rem;
}

.contact-grid a {
  color: var(--accent-highlight);
  text-decoration: none;
}

.map-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-inner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(217, 164, 65, 0.18);
  box-shadow: var(--shadow-strong);
}

.map-inner img {
  display: block;
  max-width: 100%;
  height: auto;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.info-panel {
  background: var(--card-bg);
  border-radius: 26px;
  border: 1px solid rgba(217, 164, 65, 0.18);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem 2rem;
}

.info-panel summary {
  cursor: pointer;
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--accent-highlight);
  list-style: none;
}

.info-panel summary::-webkit-details-marker {
  display: none;
}

.info-content {
  margin-top: 1.5rem;
  color: var(--text-muted);
  display: grid;
  gap: 1rem;
  font-size: 0.98rem;
  line-height: 1.8;
}

.footer {
  text-align: center;
  padding: 3rem 2rem 4rem;
  color: rgba(255, 237, 194, 0.6);
  font-size: 0.9rem;
}

/* 3D interaction styling */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 1200px;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.tilt-card.is-tilting {
  box-shadow: 0 40px 80px rgba(5, 0, 20, 0.45);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero p {
    margin: 0 auto;
  }

  .hero-content {
    padding: clamp(2rem, 6vw, 2.6rem);
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-frame {
    transform: rotateY(-6deg) rotateX(4deg);
    margin-top: 2rem;
  }

  .service-carousel {
    padding: 0;
  }

  .carousel-stage {
    width: min(600px, 100%);
  }

  .experience-gallery {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 2rem;
    background: rgba(18, 12, 41, 0.95);
    border: 1px solid rgba(217, 164, 65, 0.25);
    border-radius: 20px;
    padding: 1.2rem 1.6rem;
    flex-direction: column;
    gap: 1rem;
    transform-origin: top right;
    transform: scale(0.8);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 1.5rem;
  }

  .service-card,
  .experience-content,
  .contact-card,
  .map-card,
  .info-panel {
    padding: 1.8rem;
  }

  .hero {
    padding: 6rem 1.5rem 4rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .price-list li {
    flex-wrap: wrap;
  }

  .price-list li span:last-child {
    font-size: 1rem;
  }

  .service-carousel {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    padding: 0;
    height: auto;
    margin: 2.5rem auto 3.5rem;
  }

  .carousel-stage {
    width: 100%;
    padding: 0;
  }

  .carousel-btn.prev {
    left: 0.5rem;
  }

  .carousel-btn.next {
    right: 0.5rem;
  }

  .service-card {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: 0;
    padding: 2.1rem 1.6rem;
  }

  .service-card.is-active {
    box-shadow: var(--shadow-soft);
    border-color: rgba(217, 164, 65, 0.25);
  }

  .price-list {
    border-top: none;
    padding-top: 0;
    gap: 0.6rem;
  }

  .service-note {
    border-top: none;
    padding-top: 0;
  }
}
