:root {
  --ink: #f7fbff;
  --muted: #cbd6e8;
  --bg: #030511;
  --panel: #0d1024;
  --panel2: #151334;
  --cyan: #18f2ef;
  --purple: #b33dff;
  --mag: #ff44f5;
  --line: rgba(255, 255, 255, 0.15);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --text: #f7fbff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(31, 245, 240, 0.18), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(171, 61, 255, 0.2), transparent 32%),
    var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--cyan);
  color: #001;
  padding: 0.5rem;
  z-index: 10;
}

.skip:focus {
  left: 0.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(3, 5, 17, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  text-decoration: none;
  font-weight: 900;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(24, 242, 239, 0.4);
}

.brand span {
  display: block;
}

.brand small {
  display: block;
  color: var(--cyan);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.site-nav {
  display: flex;
  gap: 0.2rem;
  align-items: center;
}

.site-nav a {
  padding: 0.65rem 0.75rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.93rem;
}

.site-nav a:hover,
.site-nav a.active {
  background: linear-gradient(90deg, rgba(24, 242, 239, 0.14), rgba(179, 61, 255, 0.14));
  color: #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: #fff;
  border-radius: 10px;
  padding: 0.5rem;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 5, 17, 0.86), rgba(3, 5, 17, 0.22), rgba(3, 5, 17, 0.7)),
    url("/assets/banner_blank.png") center / cover no-repeat;
  filter: saturate(1.05);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2rem;
  align-items: center;
  padding: 5rem 0;
}

.eyebrow {
  color: var(--cyan);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.82rem;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.6rem, 7vw, 6.6rem);
  line-height: 0.92;
  margin: 0.2rem 0;
  text-shadow: 0 0 18px rgba(24, 242, 239, 0.65);
  font-family: Georgia, serif;
  font-style: italic;
}

.hero h1 span {
  display: block;
  color: #fff;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: #eef5ff;
  max-width: 680px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid var(--line);
  box-shadow: 0 0 24px rgba(179, 61, 255, 0.18);
}

.btn.primary {
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  color: #050518;
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-card,
.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.4rem;
}

.hero-card img {
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.contact-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.contact-list a {
  text-decoration: none;
  color: #fff;
}

.section {
  padding: 5rem 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.05));
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section h2,
.page-hero h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  margin: 0.2rem 0 1rem;
  font-family: Georgia, serif;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  padding: 1.25rem;
}

.card h3 {
  font-size: 1.28rem;
  margin: 0.3rem 0;
}

.icon {
  font-size: 2rem;
  filter: drop-shadow(0 0 8px rgba(179, 61, 255, 0.8));
}

.text-link {
  color: var(--cyan);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.feature img,
.media-card img,
.gallery img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.map,
.video-frame {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: var(--radius);
  background: #111;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.image-frame {
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-radius: 16px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.media-placeholder {
  height: 380px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.service-list {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0;
  padding-left: 1.2rem;
}

.service-list li::marker {
  color: var(--cyan);
}

.page-hero {
  padding: 5rem 0 3rem;
  background:
    linear-gradient(135deg, rgba(24, 242, 239, 0.12), rgba(179, 61, 255, 0.12)),
    url("/assets/banner_blank.png") center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.page-hero .container {
  background: rgba(3, 5, 17, 0.68);
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
}

.gallery {
  columns: 3 260px;
  column-gap: 1rem;
}

.gallery a {
  display: block;
  margin: 0 0 1rem;
}

.review blockquote {
  margin: 0;
  font-size: 1.08rem;
}

.review figcaption {
  color: var(--cyan);
  font-weight: 900;
  margin-top: 1rem;
}

.calendar-box {
  padding: 1rem;
}

.calendar-iframe {
  width: 100%;
  min-height: 680px;
  border: 0;
  border-radius: 18px;
  background: white;
}

.hidden {
  display: none;
}

.notice {
  border: 1px solid rgba(24, 242, 239, 0.4);
  background: rgba(24, 242, 239, 0.08);
  border-radius: 18px;
  padding: 1rem;
}

.faq details {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}

.faq details + details {
  margin-top: 0.75rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.site-footer {
  background: #02030a;
  border-top: 1px solid var(--line);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 1.5rem;
}

.footer-links {
  display: grid;
  gap: 0.4rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

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

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  color: var(--muted);
}

.blog-body {
  max-width: 820px;
}

.blog-body h2 {
  margin-top: 2rem;
}

.qr {
  max-width: 220px;
}

.printable {
  display: inline-flex;
  margin-top: 1rem;
}

/* Footer */

.footer-layout {
  display: flex;
  justify-content: center;
}

.footer-main {
  width: min(100%, 980px);
  display: grid;
  gap: 1.5rem;
  text-align: center;
}

.footer-links-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(47, 255, 234, 0.25);
  border-radius: 999px;
  background: rgba(9, 12, 30, 0.62);
  box-shadow: 0 0 24px rgba(167, 74, 255, 0.18);
}

.footer-links-top a {
  color: var(--text);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
}

.footer-links-top a:hover,
.footer-links-top a:focus-visible {
  color: var(--cyan);
}

.footer-contact-card {
  padding: 1.5rem;
  border: 1px solid rgba(167, 74, 255, 0.32);
  border-radius: 24px;
  background:
    radial-gradient(circle at top, rgba(47, 255, 234, 0.12), transparent 42%),
    rgba(9, 12, 30, 0.68);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.footer-contact-card h2 {
  margin-bottom: 0.45rem;
}

.footer-contact-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0.75rem;
  margin-top: 0.85rem;
}

.footer-bottom {
  margin-top: 1.25rem;
  text-align: center;
}

/* Booking / schedule */

.booking-card {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.section-heading.compact {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.compact h2 {
  margin-bottom: 0.5rem;
}

.calendar-frame {
  overflow: hidden;
  border: 1px solid rgba(47, 255, 234, 0.28);
  border-radius: 28px;
  background: #ffffff;
  box-shadow:
    0 0 28px rgba(47, 255, 234, 0.16),
    0 22px 60px rgba(0, 0, 0, 0.34);
}

.calendar-frame iframe {
  display: block;
  width: 100%;
  min-height: 700px;
  background: #ffffff;
}

.booking-note {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

/* Overnight availability calendar */

.service-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.service-tab {
  cursor: pointer;
}

.service-tab:not(.active) {
  background: transparent;
  color: var(--ink);
}

.service-calendar {
  display: none;
}

.service-calendar.active {
  display: block;
}

.calendar-action {
  margin-top: 1rem;
}

.availability-calendar {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  overflow: hidden;
  background: #ffffff;
  color: #07111f;
  margin-top: 1rem;
}

.availability-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.availability-toolbar h4 {
  margin: 0;
  color: #07111f;
  font-weight: 900;
}

.availability-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.availability-day-name,
.availability-date {
  min-height: 5.5rem;
  padding: 0.6rem;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.availability-day-name {
  min-height: auto;
  font-weight: 900;
  text-align: center;
  background: rgba(0, 0, 0, 0.06);
  color: #07111f;
}

.availability-date {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
}

.availability-date.outside-month {
  opacity: 0.45;
}

.availability-date.available {
  background: #eef8ef;
}

.availability-date.unavailable {
  background: #fdeeee;
}

.availability-date-number {
  color: #07111f;
  font-weight: 900;
}

.availability-status {
  display: inline-block;
  width: fit-content;
  border-radius: 999px;
  padding: 0.25rem 0.5rem;
  font-size: 0.82rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.88);
  color: #07111f;
}

.availability-message {
  padding: 1rem;
  margin: 0;
  color: #07111f;
}

/* Tablet / mobile */

@media (max-width: 850px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    right: 4vw;
    top: 68px;
    flex-direction: column;
    align-items: stretch;
    background: #060817;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 0.6rem;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .hero-inner,
  .feature,
  .media-grid,
  .grid.two,
  .grid.three,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 3rem 0;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(3, 5, 17, 0.9), rgba(3, 5, 17, 0.45)),
      url("/assets/banner_blank.png") center / cover no-repeat;
  }

  .calendar-iframe {
    min-height: 520px;
  }
}

@media (max-width: 720px) {
  .calendar-frame {
    border-radius: 18px;
  }

  .calendar-frame iframe {
    min-height: 780px;
  }
}

@media (max-width: 700px) {
  .availability-grid {
    grid-template-columns: 1fr;
  }

  .availability-day-name {
    display: none;
  }

  .availability-date {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .footer-links-top {
    border-radius: 24px;
  }

  .footer-contact-line {
    flex-direction: column;
  }

  .footer-contact-line span {
    display: none;
  }

  .page-hero {
    padding: 3rem 0 2rem;
  }

  .page-hero .container {
    padding: 1.25rem;
  }

  .section {
    padding: 3.25rem 0;
  }

  .hero-card,
  .card,
  figure,
  .image-card,
  .media-card {
    overflow: visible;
  }

  .hero-card img,
  .card img,
  figure img,
  .image-card img,
  .media-card img,
  .gallery img,
  .feature img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 1px;
    opacity: 1;
    visibility: visible;
    filter: none;
    mix-blend-mode: normal;
  }

  .image-frame {
    height: auto;
  }

  .image-frame img {
    height: auto;
    object-fit: contain;
  }

  .service-picker {
    flex-direction: column;
  }

  .service-tab,
  .btn {
    width: 100%;
  }

  .availability-toolbar {
    gap: 0.5rem;
  }

  .availability-toolbar .btn {
    width: auto;
    padding: 0.75rem 0.9rem;
  }

  .availability-toolbar h4 {
    font-size: 0.95rem;
    text-align: center;
  }
}

/* Print */

@media print {
  .site-header,
  .site-footer,
  .cta-row {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .card,
  .page-hero .container {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}