:root {
  color-scheme: light;
  --ink: #102536;
  --muted: #5b6b78;
  --paper: #f7f4ed;
  --white: #ffffff;
  --ocean: #0e3f54;
  --deep: #081927;
  --sea: #3cb9a1;
  --sun: #f2a65a;
  --coral: #e55e48;
  --line: rgba(16, 37, 54, 0.14);
  --shadow: 0 20px 60px rgba(8, 25, 39, 0.2);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
}

.nav {
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(8, 25, 39, 0.24);
  backdrop-filter: blur(14px);
}

.nav a {
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  outline: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  align-items: end;
  overflow: hidden;
  background: var(--deep);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(115deg, rgba(8, 25, 39, 0.9), rgba(8, 25, 39, 0.15) 56%),
    url("/assets/hero.webp") center / cover no-repeat;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    radial-gradient(circle at 72% 18%, rgba(242, 166, 90, 0.34), transparent 28%),
    linear-gradient(180deg, rgba(8, 25, 39, 0.15), rgba(8, 25, 39, 0.82));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 164px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 13px;
  color: var(--sun);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 900;
}

.button-primary {
  background: var(--sun);
  color: #132333;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.hero-stats {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 28px;
  left: clamp(18px, 4vw, 56px);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(247, 244, 237, 0.1);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  min-width: 0;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats span,
.detail-card span,
.crew-row span,
.packing-item span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.66);
}

.hero-stats strong {
  display: block;
  margin-top: 3px;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
}

.section {
  padding: clamp(64px, 8vw, 110px) clamp(18px, 4vw, 56px);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.intro-section {
  background: var(--deep);
  color: var(--white);
}

.intro-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.intro-grid p:last-child,
.split-grid p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
  line-height: 1.75;
}

.light {
  background: var(--paper);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.detail-grid,
.packing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.detail-card,
.crew-panel,
.packing-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(8, 25, 39, 0.06);
}

.detail-card {
  min-height: 214px;
  padding: 24px;
}

.detail-card strong {
  display: block;
  margin: 8px 0 16px;
  font-size: 1.65rem;
}

.detail-card p {
  color: var(--muted);
  line-height: 1.6;
}

.bass-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(242, 166, 90, 0.2), transparent 30%),
    linear-gradient(135deg, #0b2332 0%, #123f51 52%, #0f2f3d 100%);
  color: var(--white);
}

.bass-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.bass-section p:not(.section-kicker) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  line-height: 1.75;
}

.bass-art {
  min-width: 0;
}

.bass-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(242, 166, 90, 0.16), transparent 42%),
    linear-gradient(135deg, rgba(8, 25, 39, 0.12), rgba(60, 185, 161, 0.18)),
    #0b1d29;
  box-shadow: var(--shadow);
}

.stage-lights {
  position: absolute;
  inset: -20% -10% auto;
  height: 72%;
  background:
    conic-gradient(from 205deg at 25% 0%, transparent 0 18deg, rgba(242, 166, 90, 0.3) 19deg 32deg, transparent 33deg 74deg),
    conic-gradient(from 148deg at 68% 0%, transparent 0 18deg, rgba(229, 94, 72, 0.26) 19deg 32deg, transparent 33deg 74deg),
    conic-gradient(from 177deg at 50% 0%, transparent 0 18deg, rgba(60, 185, 161, 0.24) 19deg 32deg, transparent 33deg 74deg);
  filter: blur(1px);
}

.fish {
  position: absolute;
  right: 13%;
  bottom: 34%;
  width: min(72%, 420px);
  height: 128px;
}

.fish-body {
  position: absolute;
  right: 0;
  width: 78%;
  height: 100%;
  border-radius: 54% 46% 46% 54% / 50% 48% 52% 50%;
  background:
    linear-gradient(180deg, #f9f4df 0 28%, #c7d5ca 29% 44%, #f5ead1 45% 100%);
  box-shadow: inset -18px -18px 34px rgba(8, 25, 39, 0.22);
}

.fish-body i {
  position: absolute;
  left: 14%;
  right: 8%;
  height: 6px;
  border-radius: 999px;
  background: rgba(16, 37, 54, 0.68);
}

.fish-body i:nth-child(1) {
  top: 36%;
}

.fish-body i:nth-child(2) {
  top: 49%;
}

.fish-body i:nth-child(3) {
  top: 62%;
}

.fish-tail {
  position: absolute;
  left: 2%;
  top: 12%;
  width: 30%;
  height: 76%;
  clip-path: polygon(0 0, 100% 50%, 0 100%, 28% 50%);
  background: #d6a660;
  transform: rotate(-4deg);
}

.fish-eye {
  position: absolute;
  top: 34%;
  right: 9%;
  width: 13px;
  height: 13px;
  border: 3px solid #102536;
  border-radius: 50%;
  background: var(--white);
}

.water-lines {
  position: absolute;
  right: 10%;
  bottom: 17%;
  left: 12%;
  display: grid;
  gap: 12px;
}

.water-lines span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
}

.water-lines span:nth-child(2) {
  width: 72%;
  margin-left: auto;
}

.water-lines span:nth-child(3) {
  width: 58%;
}

.bass-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.bass-tags span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 800;
}

.split {
  background:
    linear-gradient(90deg, rgba(14, 63, 84, 0.96), rgba(8, 25, 39, 0.96)),
    var(--ocean);
  color: var(--white);
}

.crew-panel {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.crew-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.crew-row:last-child {
  border-bottom: 0;
}

.crew-row span {
  color: rgba(255, 255, 255, 0.62);
}

.crew-row strong {
  text-align: right;
}

.photo-band {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 4vw, 56px);
  background: #f9f7f0;
}

.photo-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.08fr) minmax(260px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.trip-photo {
  margin: 0;
}

.trip-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-grid p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

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

.packing-item {
  padding: 22px;
}

.packing-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.12rem;
}

.final-band {
  display: grid;
  min-height: 42vh;
  place-items: center;
  padding: 72px 18px;
  background:
    linear-gradient(135deg, rgba(229, 94, 72, 0.86), rgba(60, 185, 161, 0.72)),
    url("/assets/hero.webp") center / cover no-repeat;
  color: var(--white);
  text-align: center;
}

.final-band h2 {
  margin-bottom: 0;
}

@media (max-width: 820px) {
  .site-header {
    padding: 13px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav a {
    padding: 8px 10px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 94vh;
  }

  .hero-content {
    width: min(100% - 32px, 680px);
    padding: 108px 0 236px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    bottom: 16px;
  }

  .hero-stats div {
    padding: 13px 15px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .intro-grid,
  .split-grid,
  .photo-grid,
  .bass-grid,
  .detail-grid,
  .packing-grid {
    grid-template-columns: 1fr;
  }

  .bass-card {
    min-height: 300px;
  }

  .crew-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .crew-row strong {
    text-align: left;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 2.55rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
