:root {
  --bg: #07090d;
  --bg-soft: #0f1318;
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-card-strong: rgba(255, 255, 255, 0.075);
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f6f8fb;
  --muted: #adb7c6;
  --muted-2: #8a94a3;
  --accent: #ffffff;
  --accent-dark: #0b0f14;
  --glow: radial-gradient(circle at top left, rgba(84, 113, 255, 0.15), transparent 34%), radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.06), transparent 22%);
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  --radius: 26px;
  --radius-sm: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #05070b 0%, #07090d 45%, #0a0d12 100%);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 10%, rgba(255,255,255,0.06), transparent 14%),
    radial-gradient(circle at 85% 12%, rgba(76,113,255,0.12), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section { padding: 88px 0; }
.section-alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-top: 1px solid rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(7, 9, 13, 0.82);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.brand-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-subtitle {
  font-size: 0.83rem;
  color: var(--muted-2);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover { color: var(--text); }
.nav-cta { margin-left: 6px; }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  background: var(--accent);
  color: var(--accent-dark);
  box-shadow: 0 18px 34px rgba(255,255,255,0.13);
}
.button-primary:hover { background: #eef2f7; }
.button-secondary {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
}
.button-secondary:hover { background: rgba(255,255,255,0.06); }
.full-width { width: 100%; }
.text-link {
  display: inline-block;
  color: var(--muted);
  font-weight: 600;
}
.text-link:hover { color: var(--text); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  color: #d7deea;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.hero h1, .booking-hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.hero-text,
.hero-copy p,
.section-heading p,
.feature-copy p,
.contact-copy p,
.cta-copy p,
.booking-copy p,
.legal-wrap p {
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 18px;
}

.micro-copy {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.96rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-pill {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.03);
  color: #d9e1ec;
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.visual-card {
  position: absolute;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.1);
  background: #0c1016;
}
.visual-card img { width: 100%; height: 100%; object-fit: cover; }
.visual-card-main {
  inset: 0 0 90px 78px;
}
.visual-card-float {
  width: 46%;
  height: 42%;
  left: 0;
  bottom: 0;
}
.signal-card {
  position: absolute;
  right: 0;
  top: 0;
  width: 270px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(12,16,22,0.92);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: var(--shadow);
}
.signal-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}
.signal-card li + li { margin-top: 8px; }
.signal-label,
.panel-label,
.footer-label {
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.76rem;
  font-weight: 700;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 32px;
}
.section-heading.narrow { max-width: 720px; }
.section-heading h2,
.contact-copy h2,
.cta-copy h2,
.feature-copy h2,
.legal-wrap h1 {
  margin: 16px 0 14px;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.card-grid {
  display: grid;
  gap: 20px;
}
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.info-card,
.compact-card,
.timeline-card,
.panel-card,
.cta-panel-card,
.widget-card,
.booking-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.035));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.info-card {
  padding: 28px;
}
.info-card h3,
.feature-item h3,
.timeline-card h3,
.cta-copy h3,
.widget-card h2,
.booking-panel h3,
.contact-copy h2,
.compact-card h3,
.cta-panel-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}
.info-card p,
.compact-card p,
.timeline-card p,
.feature-item p,
.cta-panel-card p,
.widget-note {
  margin: 0;
  color: var(--muted);
}
.icon-wrap,
.timeline-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.compact-grid { margin-top: 8px; }
.compact-card { padding: 22px; }
.compact-card p { font-size: 0.96rem; }

.two-col-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: start;
}
.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.feature-item {
  padding: 20px 22px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
}
.feature-panel {
  min-height: 100%;
}
.panel-card {
  padding: 28px;
  min-height: 100%;
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(78,109,255,0.06));
}
.check-list {
  margin: 18px 0 0;
  padding-left: 22px;
  color: var(--muted);
}
.check-list li + li { margin-top: 10px; }

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.timeline-card {
  padding: 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 30px;
  align-items: center;
}
.contact-photo-wrap {
  padding: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 34px;
  box-shadow: var(--shadow);
}
.contact-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
}
.contact-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.contact-meta > div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.meta-label {
  display: block;
  color: var(--muted-2);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}
.meta-value { font-weight: 600; }

.cta-grid,
.booking-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 26px;
  align-items: start;
}
.dual-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 26px;
}
.dual-list h3 {
  font-size: 0.95rem;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #dde4f0;
}
.bullet-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.bullet-list li + li { margin-top: 9px; }
.bullet-list-muted { color: var(--muted-2); }
.cta-panel-card {
  padding: 28px;
  position: sticky;
  top: 112px;
}

.booking-hero { padding-top: 88px; }
.booking-panel {
  display: flex;
  gap: 16px;
  padding: 18px;
  margin: 26px 0 0;
}
.booking-headshot {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 20px;
  flex-shrink: 0;
}
.booking-widget-wrap { min-height: 100%; }
.widget-card {
  padding: 22px;
}
.widget-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.widget-header h2 { margin: 8px 0 0; font-size: 1.5rem; }
.widget-note {
  margin-top: 12px;
  font-size: 0.92rem;
}

.site-footer {
  padding: 34px 0 46px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.18);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.site-footer p {
  color: var(--muted-2);
  margin: 0.3rem 0;
}
.footer-links {
  display: grid;
  gap: 8px;
}
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--text); }

.legal-page .site-header { position: relative; }
.legal-wrap {
  max-width: 760px;
  padding: 20px 0 40px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .two-col-feature,
  .contact-grid,
  .cta-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual { min-height: 540px; }
  .visual-card-main { inset: 0 0 90px 60px; }
  .timeline-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .nav-toggle { display: inline-block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(11, 14, 19, 0.98);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .nav-cta { margin-left: 0; }
  .three-up,
  .dual-list,
  .footer-grid,
  .contact-meta {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 470px;
  }
  .visual-card-main {
    inset: 56px 0 90px 24px;
  }
  .visual-card-float {
    width: 44%;
    height: 36%;
  }
  .signal-card {
    width: 230px;
    padding: 18px;
  }
  .section { padding: 72px 0; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .container { width: min(var(--container), calc(100% - 24px)); }
  .hero h1, .booking-hero h1 { font-size: 2.45rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 410px; }
  .visual-card-main { inset: 50px 0 92px 0; }
  .visual-card-float {
    width: 48%;
    height: 33%;
    left: 0;
  }
  .signal-card {
    width: calc(100% - 16px);
    top: auto;
    bottom: 0;
    right: 8px;
  }
  .single-column-mobile { grid-template-columns: 1fr; }
}

.contact-meta a, .site-footer a[href^="mailto:"], .meta-value a { color: var(--text); text-decoration: none; }
.contact-meta a:hover, .site-footer a[href^="mailto:"]:hover, .meta-value a:hover { color: #dfe6f2; }
