:root {
  color-scheme: dark;
  --bg: #0b0e14;
  --bg-secondary: #111520;
  --panel: #141a26;
  --stroke: #1f2937;
  --text: #f5f7ff;
  --muted: #94a3b8;
  --accent: #7c3aed;
  --accent-soft: rgba(124, 58, 237, 0.15);
  --success: #22c55e;
  --shadow: 0 20px 60px rgba(7, 10, 18, 0.6);
  --radius: 18px;
  --transition: 0.3s ease;
}

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

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at top, #1a1f2e 0%, var(--bg) 45%) fixed;
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

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

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

.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
  z-index: 0;
}

.container {
  width: min(1140px, 90%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 14, 20, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--stroke);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.2rem 0;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.logo span {
  color: var(--accent);
}

.nav {
  display: none;
  gap: 1.5rem;
  color: var(--muted);
}

.nav a {
  transition: color var(--transition);
}

.nav a:hover,
.nav a.active {
  color: var(--text);
}

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

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 0 0 1.2rem;
  border-top: 1px solid var(--stroke);
  color: var(--muted);
}

.mobile-menu a {
  padding: 0.5rem 0;
}

.mobile-menu a.active {
  color: var(--text);
}

.mobile-menu.open {
  display: flex;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.35);
}

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

.btn-secondary {
  border-color: var(--stroke);
  color: var(--text);
}

.btn-tertiary {
  border-color: var(--stroke);
  color: var(--muted);
}

.hero {
  padding: 5rem 0 3rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
}

.hero-copy h1 {
  font-size: clamp(2.3rem, 3vw, 3.5rem);
  margin-bottom: 1rem;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
}

.subtext {
  color: var(--muted);
  margin-bottom: 2rem;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.5rem;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-title {
  font-weight: 600;
}

.card-subtitle {
  color: var(--muted);
  font-size: 0.9rem;
}

.status-pill {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
}

.hero-card-body {
  display: grid;
  gap: 1rem;
}

.metric h3 {
  font-size: 2rem;
}

.metric p {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card-footer {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.section {
  padding: 4rem 0;
}

.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.6rem;
}

.section-header p {
  color: var(--muted);
  max-width: 640px;
}

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

.two-column {
  grid-template-columns: 1fr;
}

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

.card p + p {
  margin-top: 0.6rem;
}

.label {
  color: var(--accent);
  font-weight: 600;
  margin-top: 1rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.list {
  list-style: none;
  display: grid;
  gap: 1.2rem;
}

.list li span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq {
  display: grid;
  gap: 1.5rem;
}

.faq h4 {
  margin-bottom: 0.4rem;
}

.bookings {
  background: var(--bg-secondary);
}

.booking-card {
  max-width: 1120px;
  margin: 0 auto;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--stroke);
  background: #111622;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cal-embed-wrap {
  background: #111622;
  border-radius: inherit;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

#my-cal-inline-30min {
  width: 100%;
  min-height: clamp(860px, 85vh, 1050px);
}

@media (max-width: 720px) {
  #my-cal-inline-30min {
    min-height: 1080px;
  }
}

.cta-card {
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-card h3 {
  font-size: 1.5rem;
}

.cta-card p {
  color: var(--muted);
  margin-top: 0.6rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.booking-fallback {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.booking-fallback a {
  color: var(--text);
  text-decoration: underline;
}

@media (max-width: 720px) {
  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

.steps {
  display: grid;
  gap: 1.5rem;
}

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

.step-card span {
  color: var(--accent);
  font-weight: 700;
  display: block;
  margin-bottom: 0.6rem;
}

.pricing {
  background: var(--bg-secondary);
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
}

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

.pricing-card ul {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: 0.6rem;
  color: var(--muted);
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: 700;
  margin: 0.8rem 0;
}

.pricing-card.highlight,
.plan-card.highlight {
  border-color: rgba(124, 58, 237, 0.6);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
}

.pricing-plans {
  display: grid;
  gap: 1.5rem;
}

.plan-card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}

.plan-card ul {
  list-style: none;
  color: var(--muted);
  display: grid;
  gap: 0.6rem;
}

.plan-card .price {
  font-size: 1.8rem;
  font-weight: 700;
}

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

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

.gallery-item {
  background: var(--panel);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  display: grid;
}

.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 0.8rem 1rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.center-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.contact-grid {
  align-items: stretch;
}

.contact-form {
  display: grid;
  gap: 1.2rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  background: #0c111a;
  border: 1px solid var(--stroke);
  padding: 0.8rem 1rem;
  border-radius: 12px;
  color: var(--text);
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form .checkbox {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--muted);
}

.contact-form .checkbox input {
  width: 16px;
  height: 16px;
}

.form-note {
  color: var(--muted);
  font-size: 0.85rem;
}

.form-success {
  color: var(--success);
  font-size: 0.9rem;
}

.map-card {
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 360px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: none;
}

.contact-details {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--stroke);
  background: #0a0d13;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  margin-bottom: 0.6rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 0.4rem;
}

.social {
  display: flex;
  gap: 0.8rem;
}

.social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  display: grid;
  place-items: center;
  color: var(--muted);
}

.social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

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

.footer-bottom {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 12, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 40;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  padding: 1.5rem;
  max-width: 720px;
  width: 100%;
  box-shadow: var(--shadow);
  position: relative;
  display: grid;
  gap: 1rem;
}

.lightbox-content img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

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

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.6rem;
  cursor: pointer;
}

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

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

@media (min-width: 900px) {
  .nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

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

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

  .pricing-grid,
  .pricing-plans {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    align-items: start;
  }
}

@media (hover: hover) {
  .btn:hover,
  .social a:hover,
  .gallery-item:hover {
    transform: translateY(-2px);
  }
}
