:root {
  --bg: #f2ede2;
  --paper: rgba(255, 252, 247, 0.84);
  --ink: #1b1813;
  --muted: #645b51;
  --line: rgba(27, 24, 19, 0.12);
  --gold: #d5a84e;
  --gold-deep: #a77220;
  --berry: #7d3148;
  --navy: #1f365d;
  --shadow: 0 24px 80px rgba(36, 27, 14, 0.18);
  --radius: 28px;
  --content: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(213, 168, 78, 0.22), transparent 34%),
    radial-gradient(circle at bottom right, rgba(125, 49, 72, 0.18), transparent 28%),
    linear-gradient(180deg, #f7f0e7 0%, #efe4d4 100%);
}

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

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

.site-shell {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
  padding: 20px 0 48px;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 20px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 249, 240, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(45, 26, 17, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.brand span {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 10px 14px;
  font: inherit;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.nav-cta {
  background: linear-gradient(135deg, var(--berry), var(--navy));
  color: #fff !important;
}

.hero,
.booking,
.band,
.footer {
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  min-height: 76vh;
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
  filter: saturate(0.92) contrast(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(23, 16, 10, 0.82) 0%, rgba(23, 16, 10, 0.5) 42%, rgba(23, 16, 10, 0.18) 68%, rgba(23, 16, 10, 0.04) 100%),
    linear-gradient(180deg, rgba(125, 49, 72, 0.25) 0%, rgba(31, 54, 93, 0.18) 100%);
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  max-width: 620px;
  padding: 72px 48px;
  color: #fff8ef;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.card strong,
.footer-title {
  font-family: "Arial Black", "Arial Narrow Bold", Arial, sans-serif;
  letter-spacing: 0.02em;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.92;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.95;
  text-transform: uppercase;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.lede,
.intro-grid p,
.booking-copy p,
.card span,
.footer p {
  font-size: 1.05rem;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-primary {
  background: linear-gradient(135deg, var(--gold), #efc16b);
  color: #2b1804;
}

.button-secondary {
  border: 1px solid rgba(255, 248, 239, 0.44);
  background: rgba(255, 255, 255, 0.08);
  color: #fff8ef;
}

.band,
.booking,
.footer {
  margin-top: 22px;
}

.band,
.booking,
.footer {
  padding: 36px;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.intro-grid,
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.intro-grid article,
.card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.52);
  padding: 22px;
}

.booking {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: 104px;
}

.bullet-list {
  margin: 20px 0 24px;
  padding-left: 20px;
  color: var(--muted);
}

.bullet-list li + li {
  margin-top: 10px;
}

.booking-panel {
  min-width: 0;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.booking-panel iframe {
  display: block;
  width: 100%;
  min-height: 1700px;
  border: 0;
  background: transparent;
}

.card {
  display: grid;
  gap: 12px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card:hover,
.card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(36, 27, 14, 0.12);
}

.card-kicker {
  color: var(--berry);
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.card strong {
  font-size: 1.2rem;
}

.card span:last-child,
.intro-grid p,
.booking-copy p,
.footer p {
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.footer-title {
  margin: 0 0 10px;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.footer-links a {
  border-bottom: 1px solid transparent;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  border-color: currentColor;
}

@media (max-width: 980px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--content));
    padding-top: 12px;
  }

  .topbar {
    border-radius: 28px;
    align-items: flex-start;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    width: 100%;
    padding-top: 8px;
    justify-content: flex-start;
  }

  .nav.is-open {
    display: flex;
  }

  .hero {
    min-height: 680px;
  }

  .hero-copy {
    max-width: none;
    padding: 420px 22px 28px;
  }

  .intro-grid,
  .cards,
  .booking,
  .footer {
    grid-template-columns: 1fr;
    display: grid;
  }

  .booking-copy {
    position: static;
  }

  .band,
  .booking,
  .footer {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .brand span {
    font-size: 0.82rem;
  }

  .hero {
    min-height: 620px;
  }

  .hero-copy {
    padding-top: 360px;
  }

  .button,
  .nav a {
    width: 100%;
  }

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