:root {
  color-scheme: light;
  --ink: #161616;
  --muted: #5f6368;
  --paper: #fbfbf8;
  --panel: #ffffff;
  --line: #d8d8d2;
  --red: #c5282f;
  --green: #17795d;
  --yellow: #f0c84b;
  --teal: #0f6970;
  --shadow: 0 18px 42px rgba(22, 22, 22, 0.14);
  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;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(251, 251, 248, 0.94);
  border-bottom: 1px solid rgba(216, 216, 210, 0.7);
  backdrop-filter: blur(16px);
}

.menu {
  position: relative;
}

.menu[open] nav {
  display: flex;
}

.menu summary {
  display: none;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.menu summary::-webkit-details-marker {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--yellow);
  font-size: 0.78rem;
  letter-spacing: 0;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(10px, 2.5vw, 24px);
  color: #2c2c2c;
  font-size: 0.95rem;
  font-weight: 700;
  align-items: center;
}

nav a {
  text-decoration: none;
}

.nav-cta {
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 116px clamp(18px, 4vw, 56px) 42px;
  background: #202020 url("/assets/band-audio-package.jpeg") center / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.46) 52%, rgba(0, 0, 0, 0.22));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.65rem, 7vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

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

h3 {
  margin: 0;
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  justify-content: center
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--yellow);
  color: #111;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 720px;
  margin: 48px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.38);
}

.trust-bar div {
  padding: 18px;
}

.trust-bar div+div {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.trust-bar dt {
  font-weight: 900;
  font-size: 1.15rem;
}

.trust-bar dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.intro,
.split,
.content-band,
.quote {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

.intro p:last-child,
.split p,
.section-heading p,
.content-band p,
.quote p,
.faq p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

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

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

a.card {
  text-decoration: none;
}

.card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-body {
  padding: 22px;
}

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

.card span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(23, 121, 93, 0.12);
  color: var(--green);
  font-weight: 900;
}

.split {
  background: #ecefea;
}

.gear-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.gear-list a,
.area-grid li {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 850;
  text-decoration: none;
}

.areas {
  background: #111;
  color: #fff;
}

.areas .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.area-grid li {
  background: #1f1f1f;
  border-color: #333;
}

.content-band {
  background: var(--teal);
  color: #fff;
}

.content-band p {
  color: rgba(255, 255, 255, 0.82);
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list p {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 900;
}

.quote {
  background: #efefea;
}

.teaser {
  align-items: center;
}

.page-hero {
  min-height: 62vh;
  display: grid;
  align-items: end;
  padding: 136px clamp(18px, 4vw, 56px) 54px;
  background: #202020 url("https://source.unsplash.com/KyOYdE4sNk4/1800x1000") center / cover no-repeat;
  color: #fff;
}

.page-hero>div {
  max-width: 920px;
}

.page-hero .eyebrow {
  color: var(--yellow);
}

.quote-page {
  align-items: start;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
}

.quote-notes {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.quote-notes p {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.quote-form,
form {
  display: grid;
  width: 100%;
}

.quote-form {
  gap: 24px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-header {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.form-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
}

.form-header p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 950;
  text-transform: uppercase;
}

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

.field-grid.single {
  grid-template-columns: 1fr;
}

label {
  display: grid;
  gap: 8px;
  color: #2b2b2b;
  font-size: 0.93rem;
  font-weight: 850;
}

label span {
  color: var(--red);
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #c9cbc6;
  border-radius: 8px;
  padding: 13px 14px;
  background: #fbfbf8;
  color: var(--ink);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(15, 105, 112, 0.14);
  outline: 0;
}

.checkbox-label {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 700;
  line-height: 1.45;
}

.checkbox-label input {
  width: auto;
  min-height: auto;
  margin-top: 5px;
}

.checkbox-label a {
  color: var(--teal);
  font-weight: 900;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

.form-footer {
  display: grid;
  gap: 18px;
  padding-top: 6px;
}

button,
.teaser .button {
  justify-self: start;
}

footer {
  padding: 28px clamp(18px, 4vw, 56px);
  background: #111;
  color: rgba(255, 255, 255, 0.78);
}

footer p {
  max-width: 980px;
  margin: 0 0 8px;
}

.legal-page {
  max-width: 980px;
}

.legal-intro {
  margin-bottom: 34px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.legal-intro p,
.legal-page article p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.legal-page article {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-page article h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

@media (max-width: 860px) {
  .site-header {
    position: fixed;
    align-items: center;
    gap: 14px;
  }

  .menu summary {
    display: inline-flex;
  }

  .menu nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(82vw, 320px);
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow);
    align-items: center;
  }

  .menu nav a {
    padding: 12px;
    border-radius: 8px;
  }

  .menu nav a:hover,
  .menu nav a:focus {
    background: #efefea;
  }

  .menu .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: 88vh;
    padding-top: 164px;
  }

  .page-hero {
    min-height: 56vh;
    padding-top: 184px;
  }

  .intro,
  .split,
  .content-band,
  .quote,
  .package-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .brand {
    font-size: 0.94rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .menu summary {
    min-height: 38px;
    padding: 0 12px;
  }

  .hero {
    min-height: 92vh;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.78));
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }

  .trust-bar div+div {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 0;
  }

  .area-grid,
  .gear-list {
    grid-template-columns: 1fr;
  }
}