:root {
  --cream: #fae7d1;
  --coral: #e76f51;
  --teal: #2f6d66;
  --blue: #1e4b64;
  --brown: #7a5a3a;
  --gold: #e9c24b;
  --black: #1c1c1c;
  --white: #fff7ec;
  --shadow: 0 24px 80px rgba(0, 0, 0, .45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(231, 111, 81, .28), transparent 32rem),
    radial-gradient(circle at bottom right, rgba(47, 109, 102, .38), transparent 34rem),
    linear-gradient(135deg, #130f0d, #201610 48%, #0e1514);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .11;
  background-image: url("../img/come-dive-poster-enhanced.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(10px) saturate(.8);
  transform: scale(1.04);
}

.page-shell {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, .82fr);
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
}

.hero__image-wrap {
  border-radius: 28px;
  padding: 10px;
  background: rgba(250, 231, 209, .09);
  border: 1px solid rgba(250, 231, 209, .18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero__poster {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 800;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: .82;
  letter-spacing: -.06em;
  text-shadow: 0 8px 30px rgba(0,0,0,.45);
}

.subtitle {
  margin: 18px 0 6px;
  color: var(--cream);
  font-size: clamp(1.7rem, 4vw, 3.4rem);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.hosts {
  margin: 0 0 24px;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
}

.tagline {
  max-width: 620px;
  margin: 0 0 30px;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.45;
  color: rgba(255, 247, 236, .88);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button--primary {
  color: #190d0a;
  background: var(--gold);
}

.button--ghost {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.08);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.card {
  min-height: 180px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(28, 28, 28, .62);
  border: 1px solid rgba(250, 231, 209, .16);
  box-shadow: 0 18px 48px rgba(0,0,0,.24);
  backdrop-filter: blur(10px);
}

.card h2 {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.card p {
  margin: 0;
  color: rgba(255, 247, 236, .82);
  line-height: 1.55;
}

footer {
  position: relative;
  padding: 22px;
  text-align: center;
  color: rgba(255, 247, 236, .68);
}

@media (max-width: 860px) {
  .page-shell { padding-top: 24px; }
  .hero { grid-template-columns: 1fr; }
  .hero__content { text-align: center; }
  .tagline { margin-inline: auto; }
  .actions { justify-content: center; }
  .card-grid { grid-template-columns: 1fr; }
}
