:root {
  --bg: #0f0908;
  --bg-alt: #1b0d0a;
  --paper: rgba(255, 246, 239, 0.08);
  --paper-strong: rgba(255, 244, 237, 0.12);
  --ink: #f8efe8;
  --muted: #d5c0b5;
  --line: rgba(255, 220, 198, 0.16);
  --accent: #ff6b3d;
  --accent-2: #f6b357;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 107, 61, 0.22), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(246, 179, 87, 0.14), transparent 24%),
    linear-gradient(180deg, #140b09 0%, #090607 100%);
}

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

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.site-header,
main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  backdrop-filter: blur(16px);
}

.wordmark,
.hero h1,
.section-heading h2,
.panel h2,
.sources h2,
.card h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
}

.wordmark {
  font-size: 1.55rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-nav a,
.button {
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.site-nav a {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
}

.site-nav a:hover,
.button:hover,
.site-nav a:focus-visible,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
}

main {
  padding: 24px 0 72px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.panel,
.card,
.sources {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(255, 107, 61, 0.08), transparent 45%);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel,
.panel,
.sources {
  border-radius: 32px;
}

.hero-copy {
  padding: 42px;
}

.eyebrow,
.card-kicker,
.microcopy {
  color: var(--accent-2);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.92;
}

.lede {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-actions,
.booking-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1f0904;
  font-weight: 800;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
}

.hero-panel {
  padding: 24px;
  display: grid;
  gap: 22px;
}

.profile-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--line);
}

.stats {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.stats div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.stats dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.8rem;
}

.stats dd {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 800;
}

.bio-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 42px;
}

.bio-strip p {
  margin: 0;
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  color: var(--muted);
}

.section-heading {
  margin: 32px 0 18px;
}

.section-heading h2,
.panel h2,
.sources h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 0.98;
}

.gallery-intro,
.gallery-note {
  max-width: 68ch;
  color: var(--muted);
  line-height: 1.7;
}

.gallery-shell {
  display: grid;
  gap: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.gallery-tile {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.gallery-tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-tile:hover,
.gallery-tile:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
}

.card {
  overflow: hidden;
  border-radius: 26px;
}

.feature-card {
  grid-column: span 2;
}

.card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.feature-card img {
  aspect-ratio: 16 / 10;
}

.card-copy {
  padding: 18px;
}

.card h3 {
  margin: 8px 0 10px;
  font-size: 2rem;
}

.card p,
.panel p,
.sources p,
.panel li {
  color: var(--muted);
  line-height: 1.7;
}

.card a {
  color: var(--ink);
  font-weight: 700;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  margin-top: 36px;
}

.panel,
.sources {
  padding: 30px;
}

.note-panel ul {
  margin: 0;
  padding-left: 18px;
}

.sources {
  margin-top: 24px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 18px;
  background: rgba(7, 4, 4, 0.94);
  backdrop-filter: blur(18px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-stage {
  grid-column: 2;
  width: 100%;
  max-height: 80vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  touch-action: pan-y;
}

.lightbox-image {
  max-width: min(92vw, 1200px);
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.lightbox-nav,
.lightbox-close {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  cursor: pointer;
}

.lightbox-nav {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  font-size: 2rem;
}

.lightbox-prev {
  grid-column: 1;
}

.lightbox-next {
  grid-column: 3;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-meta {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
  padding-bottom: 8px;
}

.lightbox-count {
  margin: 0;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
}

.lightbox-caption {
  margin: 0;
  max-width: 72ch;
  color: var(--muted);
  line-height: 1.6;
}

.lightbox-link {
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 920px) {
  .hero,
  .booking-grid,
  .bio-strip {
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-column: auto;
  }

  .hero-copy,
  .hero-panel,
  .panel,
  .sources {
    padding: 24px;
  }

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

@media (max-width: 640px) {
  .site-header {
    position: static;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 18vw, 5.8rem);
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .lightbox {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    padding: 12px;
  }

  .lightbox-stage,
  .lightbox-meta {
    grid-column: 1;
  }

  .lightbox-stage {
    max-height: 72vh;
  }

  .lightbox-image {
    max-width: 94vw;
    max-height: 72vh;
  }

  .lightbox-nav {
    position: absolute;
    bottom: 104px;
    z-index: 2;
    width: 44px;
    height: 44px;
    font-size: 1.7rem;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }
}
