﻿:root {
  --bg: #0b1222;
  --surface: #111a33;
  --surface-alt: #172143;
  --text: #eff6ff;
  --text-muted: #cbd5e1;
  --accent: #38bdf8;
  --accent-strong: #22d3ee;
  --border: rgba(148, 163, 184, 0.18);
  --radius: 24px;
  --max-width: 1320px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.14), transparent 30%),
    linear-gradient(180deg, #060b18 0%, #0e152a 100%);
}

body {
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding: 0 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(13, 23, 44, 0.96);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
  padding: 0 1rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-image {
  height: 90px;
  width: auto;
  display: block;
}

.hero-logo {
  height: 150px;
  width: auto;
  display: block;
  margin-bottom: 1.5rem;
}

.about-logo {
  height: 120px;
  width: 120px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}

.footer-logo {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

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

.site-nav a:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section-primary,
.section-dark {
  padding: 5rem 0;
}

.section-light {
  padding: 4rem 0;
  background: #090f24;
}

.section-primary {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.14), rgba(14, 165, 233, 0.04));
}

.hero {
  display: grid;
  align-items: center;
  min-height: calc(100vh - 90px);
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 0.78rem;
  margin-bottom: 1.25rem;
}

.hero h1,
.section-header h2 {
  font-size: clamp(2.5rem, 3.5vw, 4rem);
  margin: 0;
  line-height: 1.05;
}

.hero p,
.section-header p,
.card p,
.performance-copy p,
.feature-card p,
.contact-card p,
.site-footer p {
  color: var(--text-muted);
}

.hero p {
  margin: 1.5rem 0;
  font-size: 1.05rem;
  max-width: 42rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #020617;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.section-header {
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.section-header-light h2,
.section-header-light p {
  color: var(--text);
}

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

.cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card,
.feature-card,
.contact-card,
.stat-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.card h3,
.feature-card h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--text);
}

.flyer-section {
  margin-top: 2.5rem;
}

.flyer-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.flyer-preview img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  border-radius: var(--radius);
  display: block;
}

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

.flyer-promo-card {
  display: grid;
  gap: 1rem;
}

@media (max-width: 860px) {
  .flyer-card {
    grid-template-columns: 1fr;
  }
}

.performance-grid {
  grid-template-columns: 1.4fr 0.9fr;
  align-items: start;
  gap: 2rem;
}

.performance-copy ul {
  padding-left: 1.25rem;
  margin-top: 1rem;
  color: var(--text-muted);
}

.performance-copy li {
  margin-bottom: 0.85rem;
}

.video-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.stats-panel {
  display: grid;
  gap: 1rem;
}

.stat-item {
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 2rem;
  color: var(--accent-strong);
}

.stat-item span {
  color: var(--text-muted);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

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

.contact-card a {
  color: var(--text);
  text-decoration: underline;
}

label {
  display: grid;
  gap: 0.5rem;
  color: var(--text);
  font-size: 0.95rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  padding: 0.95rem 1rem;
  font: inherit;
}

select {
  color: #091422;
}

select option {
  color: #091422;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(56, 189, 248, 0.9);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
}

#booking-form {
  display: grid;
  gap: 1rem;
}

.booking-message {
  color: var(--accent);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.site-footer {
  padding: 1.5rem 0 2rem;
  background: #020617;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
}

.footer-inner {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  text-align: center;
}

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

.social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-links a {
  color: var(--text);
  text-decoration: underline;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

@media (max-width: 1120px) {
  .container {
    width: min(100% - 2rem, 1080px);
  }
}

@media (max-width: 900px) {
  .performance-grid,
  .about-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .section-header,
  .card,
  .feature-card,
  .contact-card,
  .stat-item {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    background: rgba(7, 10, 24, 0.98);
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 1rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.25s ease, opacity 0.25s ease;
  }

  .site-nav a {
    width: 100%;
  }

  .menu-toggle {
    display: block;
  }

  .site-header.open .site-nav {
    max-height: 320px;
    opacity: 1;
    pointer-events: auto;
  }

  .hero h1,
  .section-header h2 {
    font-size: clamp(2rem, 7vw, 3rem);
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: auto;
    padding: 2.5rem 0;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .site-nav {
    left: 0;
    right: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .site-nav a {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .site-nav {
    gap: 0.85rem;
  }

  .hero p,
  .section-header p {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

  .section-header,
  .cards-grid,
  .about-grid,
  .performance-grid,
  .contact-panel {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
