:root {
  --ink: #0b0b12;
  --onyx: #14141c;
  --champagne: #f2f2f2;
  --gold: #caa24e;
  --mist: #cfcac3;
  --sand: #f6f2ea;
  --shadow: rgba(8, 8, 12, 0.65);
  --glass: rgba(255, 255, 255, 0.08);
  --accent: #b7893b;
  --radius: 20px;
}

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

body {
  font-family: "Sora", sans-serif;
  color: var(--champagne);
  background: radial-gradient(circle at top, #1a1a26 0%, #0c0c14 55%, #07070c 100%);
  min-height: 100vh;
  overflow-x: hidden;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(12, 11, 10, 0.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(214, 178, 94, 0.15);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
    height: 120px;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.35));
    border-radius: 999px;
    background: #0a0a0a;
    object-fit: cover;
    padding: 6px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
    }

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.pill {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--gold), #e8cf86);
  color: var(--ink);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--champagne);
}

.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 48px;
  padding: 110px 8vw 90px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-fog {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(12, 11, 10, 0.15), rgba(12, 11, 10, 0.85)),
    url("fog.jpg") center bottom / cover no-repeat;
  filter: saturate(0.8) brightness(0.65);
}

#fogCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

@keyframes fogPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.85;
  }
}

.hero-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(620px, 65vw);
  opacity: 0.045;
  mix-blend-mode: screen;
  z-index: 1;
}

#sparkCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
  text-align: center;
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 18px;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  color: var(--sand);
}

.packages-title {
  color: #ffffff;
  font-weight: 700;
  white-space: nowrap;
  font-size: clamp(1.6rem, 3.4vw, 2.8rem);
}

.hero-title {
  font-family: "Great Vibes", "Cinzel", "Playfair Display", serif;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  margin-bottom: 18px;
  line-height: 1.1;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  font-weight: 400;
}

.hero-title .gold {
  color: var(--gold);
}

.hero-title .silver {
  color: var(--champagne);
}

.lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--mist);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  min-height: 44px;
}

.btn.primary {
  background: linear-gradient(120deg, var(--gold), #f2d790);
  color: var(--ink);
  box-shadow: 0 16px 30px rgba(185, 146, 66, 0.3);
}

.btn.ghost {
  border-color: rgba(214, 178, 94, 0.6);
  color: var(--champagne);
  background: rgba(255, 255, 255, 0.05);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  color: var(--mist);
  justify-items: center;
}

.stat {
  display: block;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  color: var(--champagne);
}

.label {
  font-size: 0.85rem;
}

.section {
  padding: 96px 8vw;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.section-heading p {
  color: var(--mist);
  line-height: 1.8;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

.card {
  background: var(--glass);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(214, 178, 94, 0.15);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.card p {
  color: var(--mist);
  margin-bottom: 18px;
  line-height: 1.6;
}

.card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--champagne);
  font-size: 0.9rem;
}

.card li::before {
  content: "-";
  color: var(--gold);
  margin-right: 8px;
}

.card-image {
  padding: 0;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--radius);
}

.signature {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 48px;
    align-items: center;
    overflow: hidden;
  }

.signature-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.signature-laser {
  position: absolute;
  left: -10%;
  top: -10%;
  width: 120%;
  height: 80%;
  background: radial-gradient(ellipse at 10% 0%, rgba(120, 200, 255, 0.75) 0%, rgba(80, 170, 255, 0.25) 45%, rgba(80, 170, 255, 0) 70%);
  filter: blur(2px);
  transform: rotate(-12deg);
  animation: laserSweep 8s ease-in-out infinite;
  mix-blend-mode: screen;
}

.signature-sparks {
  position: absolute;
  left: 6%;
  bottom: 8%;
  width: 3px;
  height: 3px;
  background: transparent;
  box-shadow:
    0 0 #f6c56c,
    18px -8px #f4b24b,
    42px 6px #f7d089,
    70px -12px #f2b95d,
    98px 10px #f6c56c,
    128px -6px #f7d089,
    156px 8px #f4b24b,
    182px -10px #f6c56c,
    210px 14px #f7d089,
    236px -4px #f2b95d,
    260px 6px #f6c56c,
    290px -12px #f7d089,
    320px 10px #f4b24b,
    350px -6px #f6c56c,
    380px 8px #f7d089,
    410px -10px #f2b95d,
    440px 4px #f6c56c,
    470px -14px #f7d089,
    500px 12px #f4b24b,
    530px -8px #f6c56c,
    560px 6px #f7d089,
    590px -12px #f2b95d,
    620px 10px #f6c56c,
    650px -6px #f7d089,
    680px 8px #f4b24b,
    710px -10px #f6c56c,
    740px 14px #f7d089,
    770px -4px #f2b95d,
    800px 6px #f6c56c,
    830px -12px #f7d089,
    860px 10px #f4b24b,
    890px -6px #f6c56c,
    920px 8px #f7d089,
    950px -10px #f2b95d;
  filter: blur(0.4px);
  animation: sparksFlicker 2.6s ease-in-out infinite;
  opacity: 0.9;
}

.signature-fog {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 78%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 62%),
    radial-gradient(circle at 40% 90%, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0) 70%),
    radial-gradient(circle at 68% 82%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 65%),
    radial-gradient(circle at 90% 70%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 60%);
  filter: blur(22px);
  opacity: 0.85;
  animation: fogDrift 14s ease-in-out infinite;
}

.signature-list {
    display: grid;
    gap: 18px;
    margin-top: 24px;
  }

.signature-list h4 {
  margin-bottom: 8px;
}

.signature-list p {
  color: var(--mist);
  line-height: 1.6;
}

.signature-visual img {
    border-radius: var(--radius);
    box-shadow: 0 24px 50px var(--shadow);
    object-fit: cover;
    width: 100%;
    height: auto;
    max-height: 520px;
    background: transparent;
    mix-blend-mode: screen;
  }

.signature-content,
.signature-visual {
  position: relative;
  z-index: 1;
}

@keyframes laserSweep {
  0%, 100% {
    transform: rotate(-10deg) translateY(0);
    opacity: 0.65;
  }
  50% {
    transform: rotate(-14deg) translateY(8px);
    opacity: 0.9;
  }
}

@keyframes sparksFlicker {
  0%, 100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  50% {
    opacity: 0.85;
    transform: translateY(-6px);
  }
}

@keyframes fogDrift {
  0%, 100% {
    transform: translateX(0) translateY(0);
    opacity: 0.55;
  }
  50% {
    transform: translateX(-3%) translateY(-2%);
    opacity: 0.8;
  }
}

.gallery {
  background: linear-gradient(120deg, rgba(214, 178, 94, 0.08), transparent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.testimonials {
  background: radial-gradient(circle at top, rgba(214, 178, 94, 0.12), transparent 60%);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

blockquote {
  background: rgba(12, 11, 10, 0.6);
  border-left: 2px solid var(--gold);
  padding: 28px;
  border-radius: 16px;
  line-height: 1.7;
  color: var(--mist);
}

blockquote span {
  display: block;
  margin-top: 16px;
  color: var(--champagne);
  font-weight: 600;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.step {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(214, 178, 94, 0.15);
}

.step span {
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.3em;
}

.step h3 {
  margin: 12px 0;
}

.step p {
  color: var(--mist);
  line-height: 1.6;
}

.process .section-heading p,
.process .step p {
  text-align: justify;
}

.contact {
  background: linear-gradient(120deg, rgba(214, 178, 94, 0.08), rgba(12, 11, 10, 0.85));
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  background: rgba(12, 11, 10, 0.75);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(214, 178, 94, 0.2);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.contact-details p {
  margin-top: 12px;
  color: var(--mist);
}

.contact-photo-wrap {
  position: relative;
}

.contact-photo {
  margin-top: 22px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
  object-fit: contain;
}

.social-hotspots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hotspot {
  position: absolute;
  width: 14%;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: auto;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.hotspot:focus-visible {
  outline: none;
}

.hotspot.ig {
  left: 22%;
  top: 92%;
  transform: translate(-50%, -50%);
}

.hotspot.fb {
  left: 40%;
  top: 92%;
  transform: translate(-50%, -50%);
}

.hotspot.tt {
  left: 58%;
  top: 92%;
  transform: translate(-50%, -50%);
}

.hotspot.yt {
  left: 76%;
  top: 92%;
  transform: translate(-50%, -50%);
}

.hotspot.phone {
  left: 50%;
  top: 48%;
  width: 52%;
  height: 4.2%;
  border-radius: 14px;
  transform: translate(-50%, -50%);
}

.hotspot.email {
  left: 50%;
  top: 60%;
  width: 52%;
  height: 4.2%;
  border-radius: 14px;
  transform: translate(-50%, -50%);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-status {
  min-height: 20px;
  font-size: 0.9rem;
  color: var(--mist);
}

.audio-toggle {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  background: rgba(12, 12, 18, 0.85);
  color: var(--champagne);
  border: 1px solid rgba(214, 178, 94, 0.4);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.audio-toggle:hover {
  background: rgba(214, 178, 94, 0.2);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mist);
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(214, 178, 94, 0.3);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--champagne);
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(214, 178, 94, 0.2);
}

.date-picker {
  position: relative;
}

.date-picker input[type="text"] {
  cursor: pointer;
}

.calendar {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: rgba(12, 12, 18, 0.95);
  border: 1px solid rgba(214, 178, 94, 0.3);
  border-radius: 16px;
  padding: 14px;
  display: none;
  z-index: 10;
}

.calendar.is-open {
  display: block;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--champagne);
}

.cal-nav {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(214, 178, 94, 0.3);
  color: var(--champagne);
  border-radius: 10px;
  padding: 6px 10px;
  cursor: pointer;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-weekday {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mist);
  text-align: center;
  padding: 4px 0;
}

.calendar-day {
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: var(--champagne);
  border-radius: 8px;
  padding: 8px 0;
  cursor: pointer;
  font-size: 0.85rem;
}

.calendar-day.is-empty {
  background: transparent;
  cursor: default;
}

.calendar-day:hover {
  background: rgba(214, 178, 94, 0.2);
}

.site-footer {
  padding: 60px 8vw 80px;
  text-align: center;
  border-top: 1px solid rgba(214, 178, 94, 0.15);
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
  color: var(--mist);
}

.footer-inner img {
  height: 260px;
  width: min(520px, 90%);
  margin: 0 auto;
  opacity: 0.95;
  object-fit: contain;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    background: rgba(12, 11, 10, 0.95);
    border: 1px solid rgba(214, 178, 94, 0.2);
    border-radius: 18px;
    padding: 18px;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: 120px;
  }
}

@media (max-width: 640px) {
  .nav {
    flex-wrap: wrap;
  }

  .logo img {
    height: 80px;
  }

  .hero {
    min-height: auto;
    padding: 96px 6vw 70px;
  }

  .hero-title {
    white-space: normal;
    flex-wrap: wrap;
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }

  .hero-mark {
    width: min(420px, 75vw);
  }

  .packages-title {
    white-space: normal;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .card-grid,
  .signature,
  .gallery-grid,
  .testimonial-grid,
  .contact-card,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    text-align: center;
  }

  .section {
    padding: 80px 6vw;
  }

  .contact-card {
    padding: 28px;
  }
}

@media (min-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
