:root {
  --base: #182226;
  --raise: #243136;
  --ink: #E9EFF0;
  --accent: #33B4A6;
  --muted: #849699;
  --deep: #12191C;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Libre Franklin", system-ui, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--base);
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
}

h2,
.band-title {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
}

p {
  max-width: 68ch;
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 200;
  background: var(--accent);
  color: var(--deep);
  padding: 10px 16px;
  font-family: "Libre Franklin", sans-serif;
  font-weight: 700;
  font-size: 15px;
}

.skip:focus {
  top: 12px;
}

.strip {
  padding: clamp(64px, 9vw, 132px) 0;
}

.strip--base {
  background: var(--base);
  color: var(--ink);
}

.strip--raise {
  background: var(--raise);
  color: var(--ink);
}

.strip--accent {
  background: var(--accent);
  color: var(--deep);
}

.strip--accent h1,
.strip--accent h2,
.strip--accent h3,
.strip--accent .band-title,
.strip--accent .lede,
.strip--accent p {
  color: var(--deep);
}

.rail {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.strip__head {
  margin-bottom: 36px;
}

.lede {
  font-size: 18px;
  line-height: 1.7;
  max-width: 68ch;
  color: var(--ink);
}

.strip--accent .lede {
  color: var(--deep);
}

.tag,
.card__tag {
  font-family: "Libre Franklin", sans-serif;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

.span-1 {
  grid-column: span 1;
}

.act {
  display: inline-block;
  font-family: "Libre Franklin", sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 2px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.act:hover {
  text-decoration: none;
}

.act--solid {
  background: var(--accent);
  color: #12191C;
  border-color: var(--accent);
}

.act--solid:hover,
.act--solid:focus-visible {
  background: #2AA093;
  color: #12191C;
  border-color: #2AA093;
}

.act--line {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.act--line:hover,
.act--line:focus-visible {
  background: var(--accent);
  color: #12191C;
}

.act--dark {
  background: #182226;
  color: #E9EFF0;
  border-color: #182226;
}

.act--dark:hover,
.act--dark:focus-visible {
  background: #12191C;
  color: #E9EFF0;
  border-color: #12191C;
}

.masthead {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  height: 72px;
  background: rgba(24, 34, 38, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(132, 150, 153, 0.22);
  display: flex;
  align-items: center;
}

.masthead .rail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.masthead__mark {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-decoration: none;
}

.masthead__mark:hover {
  color: var(--ink);
  text-decoration: none;
}

.masthead__tools {
  display: flex;
  align-items: center;
  gap: 14px;
}

.burger {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  padding: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.burger__bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
}

.sheet {
  position: fixed;
  inset: 0;
  background: #182226;
  z-index: 90;
  transform: translateY(-100%);
  transition: transform 0.42s cubic-bezier(0.2, 0.7, 0.2, 1);
  overflow: auto;
  display: flex;
  flex-direction: column;
}

.sheet.is-open {
  transform: translateY(0);
}

body.sheet-open {
  overflow: hidden;
}

.sheet__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.sheet .rail {
  padding-top: 88px;
  padding-bottom: 48px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  min-height: 100%;
}

.sheet__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sheet__links a {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.sheet__links a:hover {
  color: var(--accent);
  transform: translateX(10px);
  text-decoration: none;
}

.sheet__side {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.sheet__side a {
  color: var(--ink);
}

.sheet__side p {
  margin-bottom: 0.8em;
}

.no-js .burger {
  display: none;
}

.no-js .sheet {
  position: static;
  transform: none;
  display: block;
  padding: 24px 0;
  background: #243136;
}

.no-js .sheet .rail {
  padding-top: 24px;
  min-height: 0;
}

.no-js .sheet__close {
  display: none;
}

.opener {
  padding-top: calc(72px + clamp(48px, 7vw, 96px));
}

.opener__kicker {
  font-family: "Libre Franklin", sans-serif;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 16px;
}

.opener__title {
  margin-bottom: 20px;
}

.opener__lede {
  font-size: 18px;
  max-width: 68ch;
  margin-bottom: 28px;
}

.opener__acts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.opener img,
.card__shot,
.shot {
  width: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.figures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 12px;
}

.figure__num {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--accent);
  display: block;
}

.figure__label {
  color: var(--muted);
  font-size: 15px;
  display: block;
  margin-top: 6px;
}

.strip--accent .figure__num {
  color: var(--deep);
}

.strip--accent .figure__label {
  color: var(--deep);
}

.card {
  background: var(--deep);
  padding: 0;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.strip--base .card {
  background: var(--raise);
}

.card__shot {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card__tag,
.card__title,
.card__text,
.card__meta {
  padding-left: 22px;
  padding-right: 22px;
}

.card__tag {
  padding-top: 18px;
  margin-bottom: 8px;
}

.card__title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 10px;
}

.card__text {
  color: var(--ink);
  font-size: 16px;
  margin-bottom: 12px;
}

.card__meta {
  color: var(--muted);
  font-size: 13px;
  padding-bottom: 22px;
  margin-top: auto;
}

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tier {
  background: var(--deep);
  padding: 28px;
  border-radius: 2px;
  border: 1px solid rgba(132, 150, 153, 0.22);
}

.strip--base .tier {
  background: var(--raise);
}

.tier--pick {
  border-color: var(--accent);
}

.tier h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.tier__price {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--accent);
  margin: 8px 0 16px;
}

.tier__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.tier__list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(132, 150, 153, 0.18);
  font-size: 16px;
}

.flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.flow__step h3 {
  font-size: 1.4rem;
}

.qa {
  border-bottom: 1px solid rgba(132, 150, 153, 0.22);
  padding: 16px 0;
}

.qa summary {
  cursor: pointer;
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  font-size: 1.15rem;
  list-style: none;
}

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

.qa__a {
  margin-top: 10px;
  color: var(--ink);
}

.form {
  max-width: 640px;
}

.field {
  margin-bottom: 18px;
}

.field__label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}

.field__input,
.field textarea,
.field select {
  width: 100%;
  background: var(--deep);
  color: var(--ink);
  border: 1px solid rgba(132, 150, 153, 0.35);
  border-radius: 2px;
  padding: 12px 14px;
  font-family: "Libre Franklin", sans-serif;
  font-size: 16px;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field--bad .field__input,
.field--bad textarea {
  border-color: #d45a5a;
}

.errbox {
  background: #3a2224;
  color: #E9EFF0;
  padding: 14px 16px;
  margin-bottom: 18px;
  border-left: 3px solid #d45a5a;
}

.mapframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 2px;
  filter: grayscale(0.3) contrast(1.05);
}

.factbox {
  background: var(--deep);
  padding: 24px;
  border-left: 3px solid var(--accent);
}

.compare {
  overflow-x: auto;
}

.compare table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.compare th,
.compare td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(132, 150, 153, 0.22);
  font-size: 15px;
}

.compare th {
  font-weight: 600;
  color: var(--accent);
}

.endmatter {
  background: #12191C;
  border-top: 3px solid var(--accent);
  padding: clamp(48px, 7vw, 88px) 0 0;
  color: var(--ink);
}

.endmatter__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-bottom: 48px;
}

.endmatter__col h3,
.endmatter__col .masthead__mark {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 14px;
  display: block;
  color: var(--ink);
}

.endmatter__col p,
.endmatter__col li,
.endmatter__col address {
  font-size: 15px;
  color: var(--muted);
  font-style: normal;
}

.endmatter__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.endmatter__col li {
  margin-bottom: 8px;
}

.endmatter__col a {
  color: var(--ink);
}

.endmatter__col a:hover {
  color: var(--accent);
}

.endmatter__base {
  border-top: 1px solid rgba(132, 150, 153, 0.22);
  padding: 18px 0 28px;
  font-size: 13px;
  color: var(--muted);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

.endmatter__base span:nth-child(2) {
  text-align: center;
}

.endmatter__base span:nth-child(3) {
  text-align: right;
}

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 70;
  background: var(--raise);
  border-top: 1px solid rgba(132, 150, 153, 0.22);
  padding: 16px 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-bar.is-on {
  display: flex;
}

.cookie-bar p {
  margin: 0;
  font-size: 14px;
  max-width: none;
}

.cookie-bar__acts {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.lift-in {
  opacity: 1;
  transform: none;
}

html.js .lift-in {
  opacity: 0.001;
  transform: translateY(18px);
  transition: opacity 0.62s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.62s cubic-bezier(0.2, 0.7, 0.2, 1);
}

html.js .lift-in.is-up {
  opacity: 1;
  transform: none;
}

.no-js .lift-in {
  opacity: 1 !important;
  transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .lift-in,
  html.js .lift-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

body {
  padding-top: 72px;
}

.opener {
  padding-top: 0;
}

@media (max-width: 980px) {
  .trio,
  .tiers,
  .flow,
  .figures,
  .endmatter__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .span-2,
  .span-1 {
    grid-column: span 1;
  }

  .sheet .rail {
    grid-template-columns: 1fr;
  }

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

  .endmatter__base span:nth-child(2),
  .endmatter__base span:nth-child(3) {
    text-align: left;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .trio,
  .tiers,
  .flow,
  .figures,
  .endmatter__grid {
    grid-template-columns: 1fr;
  }

  .cookie-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .opener__acts {
    flex-direction: column;
  }

  .act {
    text-align: center;
  }
}