:root {
  --bg: #0f172a;
  --surface: #111827;
  --surface-alt: #1f2937;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --accent: #22c55e;
  --accent-dark: #16a34a;
  --max-width: 980px;
}

/* Basic reset */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

main section {
  scroll-margin-top: 5.5rem;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: linear-gradient(180deg, #0b1220 0%, var(--bg) 100%);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 0.35rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 999;
  background: #ffffff;
  color: #111827;
  padding: 0.5rem 0.75rem;
  border-radius: 0.4rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.skip-link:focus {
  top: 0.8rem;
}

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

.narrow {
  max-width: 720px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(15, 23, 42, 0.92);
  border-bottom: 1px solid rgba(156, 163, 175, 0.2);
  backdrop-filter: blur(8px);
}

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

.brand {
  font-weight: 700;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

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

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

.hero-layout {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.hero-image-wrap {
  flex: 0 0 400px;
  max-width: 720px;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(156, 163, 175, 0.25);
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
}

h1,
h2 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  max-width: 20ch;
}

.hero-text,
.section-intro {
  color: var(--muted);
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.btn {
  display: inline-block;
  padding: 0.65rem 1rem;
  border-radius: 0.6rem;
  font-weight: 600;
  border: 1px solid transparent;
}

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

.btn-primary:hover {
  background: var(--accent-dark);
  text-decoration: none;
}

.btn-secondary {
  border-color: rgba(156, 163, 175, 0.5);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(156, 163, 175, 0.15);
  text-decoration: none;
}

.section {
  padding: 3.2rem 0;
}

.section h2 {
  margin-bottom: 0.45rem;
}

.section.alt {
  background: rgba(31, 41, 55, 0.4);
  border-top: 1px solid rgba(156, 163, 175, 0.15);
  border-bottom: 1px solid rgba(156, 163, 175, 0.15);
}

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

.show-card {
  background: var(--surface);
  border: 1px solid rgba(156, 163, 175, 0.2);
  border-radius: 0.8rem;
  padding: 1rem;
}

.show-card h3 {
  margin-bottom: 0.5rem;
}

.show-meta {
  color: var(--muted);
  margin: 0.2rem 0;
}

.booking-list li {
  margin-bottom: 0.35rem;
}

.media-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.6rem 0 0;
  padding: 0;
}

.media-links a {
  color: var(--accent);
  font-weight: 600;
}

.link-list {
  padding-left: 1.1rem;
}

.site-footer {
  padding: 1.5rem 0 2rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Responsive nav for small screens */
@media (max-width: 640px) {
  .site-header {
    backdrop-filter: blur(6px);
  }

  .nav-wrap {
    flex-direction: column;
    gap: 0.7rem;
    align-items: flex-start;
    padding: 0.65rem 0;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 0.7rem;
    font-size: 0.95rem;
  }

  .hero-layout {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-image-wrap {
    flex-basis: auto;
    max-width: 180px;
  }
}