:root {
  --bg: #09080d;
  --bg-soft: #12101a;
  --panel: rgba(20, 17, 30, 0.9);
  --text: #f6f5fb;
  --muted: #b8b3ca;
  --purple: #9a6bdb;
  --purple-strong: #7e44d8;
  --line: rgba(190, 173, 230, 0.2);
  --white: #ffffff;
  --max: 1180px;
  --radius: 20px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at 10% 0%, #1c1630 0, var(--bg) 45%), var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.bg-orb {
  position: fixed;
  width: 42vmax;
  height: 42vmax;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.22;
  pointer-events: none;
  z-index: -1;
  animation: drift 16s ease-in-out infinite alternate;
}

.orb-1 {
  background: #a469ff;
  top: -20vmax;
  right: -12vmax;
}

.orb-2 {
  background: #3d2875;
  bottom: -26vmax;
  left: -12vmax;
}

@keyframes drift {
  from { transform: translateY(-10px) translateX(0px) scale(1); }
  to { transform: translateY(20px) translateX(30px) scale(1.1); }
}

.site-header,
.section,
.site-footer {
  width: min(var(--max), calc(100% - 2.2rem));
  margin-inline: auto;
}

.site-header {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 0.8rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  position: sticky;
  top: 0.8rem;
  z-index: 10;
}

.glass {
  background: rgba(15, 13, 23, 0.72);
  border: 1px solid var(--line);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  object-fit: cover;
}

nav {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  transition: 0.22s ease;
}

nav a:hover,
nav a.active {
  color: var(--white);
  background: rgba(166, 122, 235, 0.18);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border-radius: 10px;
  width: 40px;
  height: 40px;
}

.section {
  padding: 2.8rem 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.panel,
.card,
.price-item,
.gallery-item,
.cta,
.page-head {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 2rem;
}

.hero-copy h1,
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.06;
  margin-top: 0;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 0.8rem;
}

.hero-card {
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  height: 60%;
  min-height: 280px;
  object-fit: cover;
}

.hero-facts {
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
}

.hero-facts div {
  display: grid;
  gap: 0.2rem;
}

.hero-facts strong {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.social-inline {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.social-inline a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.social-inline a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(120deg, var(--purple), var(--purple-strong));
  color: var(--white);
  box-shadow: 0 12px 24px rgba(126, 68, 216, 0.45);
}

.btn-ghost,
.btn-nav {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--white);
}

.eyebrow {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
}

.section-title h2,
.page-head h1,
.cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.4rem;
}

.grid.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card,
.panel,
.price-item,
.page-head,
.cta {
  padding: 1.2rem;
}

.card a {
  color: #d8bfff;
  text-decoration: none;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

.panel-image img {
  height: 100%;
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.checks,
.policy-list,
.contact-list {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.45rem;
}

.warning {
  border-color: rgba(227, 142, 203, 0.4);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.availability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.availability-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.service-link {
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.service-link:hover {
  transform: translateY(-2px);
  border-color: rgba(186, 146, 255, 0.75);
  background: linear-gradient(120deg, rgba(154, 107, 219, 0.18), rgba(126, 68, 216, 0.14));
  box-shadow: 0 0 0 1px rgba(196, 165, 255, 0.35), 0 16px 32px rgba(93, 43, 173, 0.45);
}

.service-text-link {
  color: #d8bfff;
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.service-text-link:hover {
  color: #f2e7ff;
  text-shadow: 0 0 14px rgba(171, 120, 245, 0.8);
}

.price-item strong {
  font-size: 1.2rem;
  color: #f0d9ff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  padding: 0;
}

.gallery-item img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.enquiry-form {
  display: grid;
  gap: 0.8rem;
}

.enquiry-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.95rem;
}

input,
select,
textarea {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  padding: 0.7rem 0.8rem;
  font: inherit;
}

.checkline {
  display: flex !important;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkline input {
  margin-top: 0.2rem;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hidden {
  display: none;
}

.service-note {
  margin-bottom: 1rem;
}

.muted {
  color: var(--muted);
}

.mini-note {
  margin-top: 1rem;
  padding: 0.9rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(154, 107, 219, 0.08);
}

.cta {
  text-align: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 3rem;
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem;
}

.site-footer a {
  text-decoration: none;
  color: var(--muted);
  margin-left: 0.8rem;
}

.site-footer a:hover {
  color: var(--text);
}

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

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.2s; }

@media (max-width: 980px) {
  .hero,
  .split,
  .grid.cards-3,
  .price-grid,
  .availability-grid {
    grid-template-columns: 1fr 1fr;
  }

  nav {
    position: absolute;
    right: 1rem;
    top: 70px;
    background: rgba(15, 13, 23, 0.96);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.6rem;
    display: none;
    flex-direction: column;
    min-width: 220px;
  }

  nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .hero,
  .split,
  .grid.cards-3,
  .price-grid,
  .availability-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .stack-mobile {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-card,
  .panel,
  .card,
  .page-head,
  .cta {
    border-radius: 16px;
  }
}
