:root {
  --pink-soft: #ffe7f7;
  --pink: #ff8ac7;
  --blue-soft: #e1f1ff;
  --blue: #7bbcff;
  --ink: #050816;
  --bg: #02030a;
  --radius-xl: 32px;
}

/* Reset-ish */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  color: #f9fbff;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 177, 227, 0.18), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(137, 196, 255, 0.18), transparent 55%),
    radial-gradient(circle at 50% 120%, rgba(14, 28, 65, 1), #02030a 70%);
  min-height: 100vh;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body::before {
  content: "";
  position: fixed;
  inset: -20vh;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 231, 247, 0.15), transparent 55%),
    radial-gradient(circle at 70% 30%, rgba(225, 241, 255, 0.18), transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.9;
  pointer-events: none;
  z-index: -1;
}

/* Top navigation */

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5vw;
  backdrop-filter: blur(18px);
  background: radial-gradient(
    circle at top left,
    rgba(255, 231, 247, 0.38),
    rgba(3, 4, 10, 0.86)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand-mark {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  text-decoration: none;
  color: #f5f7ff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 400;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.nav-cta {
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: linear-gradient(
    135deg,
    rgba(255, 231, 247, 0.28),
    rgba(225, 241, 255, 0.22)
  );
  backdrop-filter: blur(18px);
  font-size: 0.78rem;
}

/* Main layout */

main {
  padding: 6rem 0 4rem;
}

.depth-wrapper {
  perspective: 1400px;
  transform-style: preserve-3d;
  perspective-origin: 50% 10%;
  padding: 2rem 5vw 6rem;
}

/* Sections as cards */

.section {
  position: relative;
  min-height: 90vh;
  margin: 0 auto 7rem;
  max-width: 960px;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    145deg,
    rgba(225, 241, 255, 0.96),
    rgba(255, 231, 247, 0.98)
  );
  color: #182132;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 28px 60px rgba(3, 4, 10, 0.85),
    0 0 0 1px rgba(255, 255, 255, 0.32);
  padding: clamp(2.6rem, 4vw, 3.6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.75rem;
  transform-style: preserve-3d;
  transform-origin: center center;
  opacity: 0;
  transform: translateY(80px) translateZ(-400px) scale(0.9);
  transition:
    transform 0.65s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 0.65s ease-out,
    box-shadow 0.65s ease-out;
}

.section::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at top left, rgba(123, 188, 255, 0.16), transparent 55%),
    radial-gradient(circle at bottom right, rgba(255, 138, 199, 0.18), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: -1;
}

.section.in-view {
  opacity: 1;
}

.section__label {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(24, 33, 50, 0.66);
}

.section__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.3rem, 4vw, 3.1rem);
  line-height: 1.18;
  margin: 0;
  color: #101624;
}

.section__subtitle {
  font-size: 1.02rem;
  max-width: 36rem;
  color: rgba(16, 22, 36, 0.82);
}

.section__subtitle--heading {
  font-weight: 600;
  margin-top: 1.2rem;
}

.section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
  margin-top: 1rem;
}

/* Pills & buttons */

.section__pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.pill {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 22, 36, 0.08);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(225, 241, 255, 0.9)
  );
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(16, 22, 36, 0.72);
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.6rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: linear-gradient(120deg, var(--pink), var(--blue));
  color: #101624;
  box-shadow: 0 14px 28px rgba(111, 63, 124, 0.45);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  text-decoration: none;
}

.primary-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(111, 63, 124, 0.55);
}

.ghost-link {
  margin-left: 1.2rem;
  font-size: 0.9rem;
  text-decoration: none;
  color: rgba(16, 22, 36, 0.7);
  border-bottom: 1px solid rgba(16, 22, 36, 0.18);
  padding-bottom: 0.2rem;
}

/* Lists */

.meta-list {
  list-style: none;
  padding: 0;
  margin: 1.3rem 0 0;
  font-size: 0.9rem;
  color: rgba(16, 22, 36, 0.78);
}

.meta-list li + li {
  margin-top: 0.55rem;
}

/* Services */

.services-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 0.9rem;
  font-size: 0.95rem;
}

.services-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 22, 36, 0.06);
}

.services-label {
  font-weight: 500;
  color: #151b2a;
}

.services-meta {
  font-size: 0.86rem;
  color: rgba(16, 22, 36, 0.6);
}

.services-rate {
  font-weight: 600;
  color: #151b2a;
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.gallery-tile {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(
    135deg,
    rgba(123, 188, 255, 0.7),
    rgba(255, 138, 199, 0.8)
  );
  box-shadow: 0 18px 35px rgba(48, 38, 78, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(48, 38, 78, 0.6);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(255, 255, 255, 0.35),
    transparent 55%
  );
  mix-blend-mode: screen;
  opacity: 0.6;
  pointer-events: none;
}

.gallery-note {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: rgba(16, 22, 36, 0.7);
}

/* Booking form */

.booking-form {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem 1.4rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.84rem;
  color: rgba(16, 22, 36, 0.8);
}

.field label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.field input,
.field textarea,
.field select {
  border-radius: 999px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(16, 22, 36, 0.16);
  font: inherit;
  outline: none;
  background: rgba(255, 255, 255, 0.96);
  color: #101624;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.field textarea {
  border-radius: 20px;
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(255, 138, 199, 0.7);
  box-shadow: 0 0 0 1px rgba(255, 138, 199, 0.55);
}

.field--wide {
  grid-column: 1 / -1;
}

.booking-actions {
  grid-column: 1 / -1;
  margin-top: 1.4rem;
}

.booking-footnote {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: rgba(16, 22, 36, 0.7);
}

.contact-options {
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(16, 22, 36, 0.12);
}

.contact-options a {
  color: rgba(16, 22, 36, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(16, 22, 36, 0.2);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.contact-options a:hover {
  color: #101624;
  border-bottom-color: rgba(16, 22, 36, 0.5);
}

/* Footer */

footer {
  padding: 2.4rem 5vw 3rem;
  font-size: 0.78rem;
  text-align: center;
  color: rgba(245, 247, 255, 0.7);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 960px;
  margin: 0 auto;
}

.footer-brand {
  font-family: "Playfair Display", serif;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  color: rgba(245, 247, 255, 0.85);
}

.footer-links,
.footer-social {
  font-size: 0.82rem;
}

.footer-legal {
  margin-top: 0.4rem;
  font-size: 0.72rem;
  opacity: 0.6;
}

footer a {
  color: rgba(245, 247, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}

footer a:hover {
  color: #ffffff;
}

/* Responsive */

@media (max-width: 900px) {
  .section__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .top-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .nav-links {
    font-size: 0.8rem;
    gap: 1rem;
  }

  .section {
    margin-bottom: 5rem;
    padding: 2.1rem 1.7rem 2.3rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }
  
  .gallery-tile {
    aspect-ratio: 3 / 4;
  }

  .booking-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .ghost-link {
    display: inline-block;
    margin-left: 0;
    margin-top: 0.8rem;
  }

  .footer-content {
    font-size: 0.72rem;
  }

  .footer-brand {
    font-size: 0.8rem;
  }
}

