:root {
  --bg: #090511;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-border: rgba(255, 255, 255, 0.14);
  --text: #f6f1ff;
  --muted: #d3cadf;
  --accent: #c87bb1;
  --accent-2: #6c4a66;
  --accent-3: #f0d6c8;
  --accent-4: #e4b5c8;
  --whatsapp: #25d366;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top, #1d1220 0%, var(--bg) 42%, #05030a 100%);
  color: var(--text);
  overflow-x: hidden;
}

a { color: inherit; }
img { display: block; max-width: 100%; }

.page-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(200, 123, 177, 0.16), transparent 25%),
    radial-gradient(circle at 80% 24%, rgba(240, 214, 200, 0.14), transparent 26%),
    radial-gradient(circle at 54% 80%, rgba(108, 74, 102, 0.16), transparent 28%);
  pointer-events: none;
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.45;
  pointer-events: none;
  animation: drift 16s ease-in-out infinite;
}
.orb-1 { width: 220px; height: 220px; top: 10%; left: -40px; background: linear-gradient(135deg, var(--accent), transparent); }
.orb-2 { width: 260px; height: 260px; top: 40%; right: -60px; background: linear-gradient(135deg, var(--accent-3), transparent); animation-delay: -6s; }
.orb-3 { width: 180px; height: 180px; bottom: 6%; left: 40%; background: linear-gradient(135deg, var(--accent-2), transparent); animation-delay: -10s; }

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #04130a;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.35);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  backdrop-filter: blur(14px);
  background: rgba(9, 5, 17, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand-wrap { display: flex; align-items: center; gap: 12px; }
.brand-block { display: flex; flex-direction: column; }
.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.brand-sub {
  color: var(--muted);
  font-size: 0.88rem;
}

nav { display: flex; gap: 20px; }
nav a { color: var(--muted); text-decoration: none; font-weight: 500; }
nav a:hover { color: var(--text); }
main { position: relative; z-index: 1; }

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

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

.hero-copy, .info-card, .service-card, .contact-card, .testimonial-shell { border-radius: 28px; }
.hero-copy, .contact-card { padding: 40px; }
.info-card, .service-card { padding: 28px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--accent-3);
  margin-bottom: 10px;
}

h1, h2, h3 { margin: 0; }
h1, h2 { font-family: 'Cormorant Garamond', serif; line-height: 0.95; }
h1 { font-size: clamp(3rem, 7vw, 6.4rem); max-width: 9ch; }
h2 { font-size: clamp(2.2rem, 4vw, 4.1rem); margin-top: 8px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }

.lead, .info-card p, .service-card p, .contact-card p, .section-copy, .review-card p {
  color: var(--muted);
  line-height: 1.75;
}

.lead { max-width: 60ch; margin: 20px 0 28px; }
.cta-group, .contact-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #140811;
  background: linear-gradient(135deg, #f3d8e6, var(--accent));
  box-shadow: 0 10px 30px rgba(200, 123, 177, 0.35);
}
.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.mini-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
  color: var(--muted);
}

.hero-visual { position: relative; min-height: 560px; perspective: 1400px; }
.floating-card {
  position: absolute;
  border-radius: 30px;
  padding: 26px;
  min-width: 210px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  transform-style: preserve-3d;
  animation: float 7s ease-in-out infinite;
}
.layer-1 { top: 12%; right: 8%; background: linear-gradient(135deg, rgba(200, 123, 177, 0.28), rgba(255,255,255,0.08)); }
.layer-2 { top: 38%; left: 0; animation-delay: -2s; background: linear-gradient(135deg, rgba(108, 74, 102, 0.28), rgba(255,255,255,0.08)); }
.layer-3 { bottom: 10%; right: 16%; animation-delay: -4s; background: linear-gradient(135deg, rgba(240, 214, 200, 0.24), rgba(255,255,255,0.08)); }

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  transform-style: preserve-3d;
}
.ring-a { width: 340px; height: 340px; top: 12%; left: 16%; animation: spin 18s linear infinite; }
.ring-b { width: 460px; height: 460px; top: 2%; left: 4%; border-color: rgba(240, 214, 200, 0.18); animation: spinReverse 24s linear infinite; }

.section-heading { margin-bottom: 28px; }
.grid { display: grid; gap: 22px; }
.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.gallery-card {
  min-height: 300px;
  border-radius: 28px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  position: relative;
  overflow: hidden;
}
.gallery-card span {
  position: relative;
  z-index: 2;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}
.photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.58), rgba(0,0,0,0.08));
  z-index: 1;
}

.testimonial-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 76px;
}
.testimonial-track {
  position: relative;
  min-height: 200px;
  width: 100%;
}
.review-card {
  display: none;
  padding: 28px;
  border-radius: 22px;
}
.review-card.active {
  display: block;
  animation: fadeIn 0.45s ease;
}
.review-card span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: var(--text);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 2;
}
.testimonial-nav.prev { left: 14px; }
.testimonial-nav.next { right: 14px; }
.reviews-link-wrap { margin-top: 22px; display: flex; justify-content: center; }

.contact-list { display: grid; gap: 10px; margin: 22px 0 28px; color: var(--muted); }
.contact-list a { text-decoration: none; color: var(--muted); }
.contact-list a:hover { color: var(--text); }
.contact-section { padding-bottom: 96px; }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.card-tilt { transform-style: preserve-3d; transition: transform 0.2s ease; }

@keyframes drift { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(0, 30px, 0); } }
@keyframes float { 0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); } 50% { transform: translateY(-18px) rotateX(5deg) rotateY(-5deg); } }
@keyframes spin { from { transform: rotate(0deg) rotateX(70deg); } to { transform: rotate(360deg) rotateX(70deg); } }
@keyframes spinReverse { from { transform: rotate(360deg) rotateX(74deg); } to { transform: rotate(0deg) rotateX(74deg); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1100px) {
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .hero, .two-col, .three-col { grid-template-columns: 1fr; }
  .hero {
    min-height: auto;
    padding-top: 12px;
    gap: 24px;
  }
  .hero-visual {
    min-height: 360px;
    order: -1;
  }
  .section {
    width: min(1180px, calc(100% - 28px));
    padding: 56px 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: relative;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px 16px 12px;
  }
  .brand-wrap {
    justify-content: center;
  }
  .brand-block {
    align-items: center;
    text-align: center;
  }
  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
  }
  nav a {
    font-size: 0.95rem;
  }
  .section {
    width: calc(100% - 24px);
    padding: 44px 0;
  }
  .hero-copy, .contact-card, .info-card, .service-card {
    padding: 22px;
    border-radius: 22px;
  }
  .cta-group, .contact-actions {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .mini-contact {
    gap: 8px;
    font-size: 0.95rem;
  }
  h1 {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
    max-width: 100%;
  }
  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.02;
  }
  .hero-visual {
    min-height: 280px;
    overflow: hidden;
  }
  .floating-card {
    min-width: 132px;
    padding: 14px;
    border-radius: 22px;
    font-size: 0.9rem;
  }
  .layer-1 { top: 8%; right: 2%; }
  .layer-2 { top: 34%; left: 2%; }
  .layer-3 { bottom: 8%; right: 8%; }
  .ring-a {
    width: 220px;
    height: 220px;
    top: 18%;
    left: 18%;
  }
  .ring-b {
    width: 300px;
    height: 300px;
    top: 6%;
    left: 6%;
  }
  .gallery-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .gallery-card {
    min-height: 220px;
    font-size: 1.45rem;
  }
  .testimonial-shell {
    padding: 18px 54px;
  }
  .testimonial-track {
    min-height: 240px;
  }
  .review-card {
    padding: 22px;
  }
  .testimonial-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.3rem;
  }
  .testimonial-nav.prev { left: 8px; }
  .testimonial-nav.next { right: 8px; }
  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    padding: 12px 16px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: 1.7rem;
  }
  .brand-sub {
    font-size: 0.82rem;
  }
  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }
  .lead,
  .info-card p,
  .service-card p,
  .contact-card p,
  .section-copy,
  .review-card p {
    line-height: 1.65;
    font-size: 0.97rem;
  }
  .hero-visual {
    min-height: 240px;
  }
  .floating-card {
    min-width: 116px;
    padding: 12px;
    font-size: 0.82rem;
  }
  .gallery-card {
    min-height: 200px;
    padding: 16px;
  }
  .review-card span {
    font-size: 0.88rem;
  }
}
