:root {
  --bg: #120e0e;
  --surface: #1b1414;
  --surface-alt: #241a1a;
  --text: #f3ece9;
  --text-muted: #b4a29d;
  --border: rgba(243, 236, 233, 0.14);
  --accent: #bf8f4f;
  --accent-2: #9d5a4e;
  --secondary: #2a1e1e;
  --on-accent: #171111;
  --deep: #0a0707;
  --radius: 14px;
  --radius-btn: 2px;
  --font-heading: 'Century Gothic', 'Apple Gothic', 'Segoe UI', sans-serif;
  --font-body: Verdana, Geneva, sans-serif;
  --content-width: 1160px;
  --section-pad: 112px;
  --shadow-hover: 0 18px 44px rgba(6, 3, 3, 0.5);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 1.2;
}

h1 { font-size: clamp(38px, 6vw, 66px); }
h2 { font-size: clamp(24px, 4vw, 38px); }
h3 { font-size: 20px; }

p { max-width: 72ch; }

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

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  background: var(--accent);
  color: var(--on-accent);
  padding: 10px 18px;
  border-radius: var(--radius-btn);
  font-size: 13px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.skip-link:hover {
  text-decoration: none;
}

.container {
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.section--alt {
  background: var(--surface-alt);
}

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

.kicker {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}

.kicker--muted {
  color: var(--text-muted);
}

.lead {
  font-size: 17px;
  color: var(--text);
}

.text-muted {
  color: var(--text-muted);
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  background: var(--accent);
  color: var(--on-accent);
  text-decoration: none;
  box-shadow: var(--shadow-hover);
}

.btn--solid {
  background: var(--accent);
  color: var(--on-accent);
}

.btn--solid:hover {
  background: var(--accent);
  color: var(--on-accent);
}

.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  position: relative;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.nav__brand img {
  width: 40px;
  height: 39px;
}

.nav__brand-name {
  font-family: var(--font-heading);
  font-size: 19px;
  letter-spacing: 0.4px;
  color: var(--text);
}

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

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav__links a {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav__links a:hover {
  color: var(--text);
  text-decoration: none;
}

.nav__links a[aria-current="page"] {
  color: var(--text);
  border-bottom-color: var(--accent);
}

.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 10px 12px;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
}

.independence-notice {
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 14px 22px;
  margin-top: 26px;
}

.independence-notice p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: none;
}

.hero {
  padding-top: 96px;
  padding-bottom: 96px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 72px;
  align-items: center;
}

.hero__copy h1 {
  line-height: 1.14;
  margin-bottom: 30px;
}

.hero__copy p {
  margin-bottom: 18px;
  color: var(--text-muted);
}

.hero__copy p.lead {
  color: var(--text);
}

.hero__photo {
  position: relative;
}

.hero__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(10px, 10px);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  z-index: 0;
}

.hero__photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}

.cat-rows {
  border-top: 1px solid var(--border);
}

.cat-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr) auto;
  gap: 36px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  transition: transform 0.25s ease;
}

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

.cat-row h3 {
  font-size: 26px;
}

.cat-row h3 a {
  color: var(--text);
}

.cat-row h3 a:hover {
  color: var(--accent);
}

.cat-row p {
  font-size: 14px;
  color: var(--text-muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.testimonials-grid h2 {
  margin-bottom: 16px;
}

.testimonials-grid .testimonials-grid__intro {
  color: var(--text-muted);
}

.testimonials-list {
  display: flex;
  flex-direction: column;
}

.testimonial {
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 30px 34px;
}

.testimonial + .testimonial {
  margin-top: 22px;
}

.testimonial blockquote {
  font-family: var(--font-heading);
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: 0.4px;
}

.testimonial figcaption {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pull-quote {
  text-align: center;
}

.pull-quote blockquote {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(28px, 4.6vw, 52px);
  line-height: 1.28;
  letter-spacing: 0.4px;
  color: var(--accent);
  max-width: 22ch;
  margin: 0 auto 34px;
}

.pull-quote p {
  color: var(--text-muted);
  margin-left: auto;
  margin-right: auto;
  max-width: 52ch;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.amenity h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.amenity .amenity__label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.amenity p {
  font-size: 14px;
  color: var(--text-muted);
}

.closing-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding-top: 84px;
  padding-bottom: 84px;
}

.closing-strip h2 {
  margin-bottom: 18px;
}

.closing-strip p {
  margin-left: auto;
  margin-right: auto;
  color: var(--text-muted);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 56px;
}

.mission-grid__rule {
  background: var(--border);
}

.mission-grid h2 {
  margin-bottom: 22px;
}

.mission-grid p {
  color: var(--text-muted);
  margin-bottom: 18px;
}

.site-footer {
  background: var(--deep);
  color: var(--text);
  text-align: center;
  padding-top: 88px;
}

.footer-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-lockup img {
  width: 46px;
  height: 45px;
}

.footer-lockup .nav__brand-name {
  font-size: 21px;
}

.footer-blurb {
  max-width: 56ch;
  margin: 26px auto 0;
  font-size: 14px;
  color: var(--text-muted);
}

.footer-kicker {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 64px;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 18px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--text);
}

.footer-links .sep {
  color: var(--accent-2);
  user-select: none;
}

.footer-links .email a {
  color: var(--accent);
}

.footer-top-row {
  display: flex;
  justify-content: flex-end;
  max-width: 900px;
  margin: 10px auto 0;
}

.footer-top-row a {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-top-row a:hover {
  color: var(--accent);
}

.footer-notice {
  max-width: 64ch;
  margin: 56px auto 0;
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-muted);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  max-width: var(--content-width);
  margin: 64px auto 0;
  padding: 26px 32px 40px;
  border-top: 1px solid var(--border);
}

.footer-bottom .copyright {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 12px;
}

.footer-bottom-right .sep {
  color: var(--accent-2);
  user-select: none;
}

.footer-bottom-right a {
  color: var(--text-muted);
}

.footer-bottom-right a:hover {
  color: var(--accent);
  text-decoration: none;
}

.cookie-settings-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  cursor: pointer;
  padding: 0;
}

.cookie-settings-btn:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-head {
  padding-top: 96px;
  padding-bottom: 64px;
}

.page-head h1 {
  margin-bottom: 26px;
}

.page-head .lead {
  color: var(--text-muted);
}

.band {
  padding-top: 84px;
  padding-bottom: 84px;
  border-bottom: 1px solid var(--border);
}

.band:last-of-type {
  border-bottom: none;
}

.band__photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.band__card {
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 28px;
}

.band__card .band__card-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
}

.band__card .band__card-body {
  text-align: center;
  padding-top: 34px;
}

.band__card .band__card-body h2 {
  margin-bottom: 18px;
}

.band__card .band__card-meta {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.band__card .band__card-body p {
  color: var(--text-muted);
  margin: 0 auto 30px;
  max-width: 62ch;
}

.band__card .band__card-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 28px;
}

.band__kicker {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.band__name {
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 16px;
}

.band__meta {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.band__desc {
  color: var(--text-muted);
  margin: 0 auto 30px;
  max-width: 62ch;
}

.band--kicker .band__body {
  max-width: 720px;
  text-align: left;
  margin-top: 36px;
}

.band--kicker .band__desc {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 30px;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.card__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card__photo img {
  transform: scale(1.02);
}

.card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 30px 30px 34px;
}

.card__name {
  font-size: 22px;
  margin-bottom: 10px;
}

.card__meta {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.card__desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.card__actions {
  margin-top: auto;
  display: flex;
  justify-content: center;
}

.row-venue {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.row-venue + .row-venue {
  margin-top: 26px;
}

.row-venue:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.row-venue__thumb img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 6px;
}

.row-venue__body {
  text-align: center;
}

.row-venue__body h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.row-venue__body p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 auto 18px;
  max-width: 58ch;
}

.row-venue__actions {
  justify-self: end;
}

.catalog-closing {
  max-width: 720px;
  margin: 96px auto 0;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}

.catalog-closing p {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.catalog-closing a {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.editorial-section {
  max-width: 780px;
  margin: 0 auto;
  padding-top: 88px;
  padding-bottom: 88px;
}

.editorial-section + .editorial-section {
  border-top: 1px solid var(--border);
}

.editorial-section .num {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 18px;
  display: block;
}

.editorial-section h2 {
  margin-bottom: 30px;
}

.editorial-section p {
  color: var(--text-muted);
  margin-bottom: 22px;
}

.alt-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 88px;
}

.alt-band + .alt-band {
  border-top: 1px solid var(--border);
}

.alt-band--flip .alt-band__text {
  order: 2;
}

.alt-band--flip .alt-band__photo {
  order: 1;
}

.alt-band__text .num {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--accent);
  display: block;
  margin-bottom: 18px;
}

.alt-band__text h2 {
  margin-bottom: 28px;
}

.alt-band__text p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.alt-band__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.contact-band {
  background: var(--surface-alt);
  padding-top: 96px;
  padding-bottom: 96px;
}

.contact-band__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.contact-band h1 {
  margin-bottom: 26px;
}

.contact-band p {
  margin: 0 auto;
  color: var(--text-muted);
  max-width: 58ch;
}

.contact-form-wrap {
  padding-top: 88px;
  padding-bottom: 112px;
}

.contact-form {
  max-width: 860px;
  margin: 0 auto;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 32px;
}

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

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 14px 16px;
  transition: border-color 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

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

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--accent-2);
}

.agree-row {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.agree-row label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  cursor: pointer;
}

.agree-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 5px;
  flex-shrink: 0;
  accent-color: var(--accent);
}

.form-error {
  color: var(--accent-2);
  font-size: 13px;
  line-height: 1.6;
  margin-top: 10px;
}

.form-status {
  font-size: 13px;
  color: var(--accent-2);
  margin-top: 10px;
}

.contact-submit-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-note {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--text-muted);
}

.confirmation {
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 64px 56px;
  text-align: center;
}

.confirmation h2 {
  margin-bottom: 20px;
}

.confirmation p {
  color: var(--text-muted);
  margin: 0 auto 16px;
}

.confirmation .reference {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin: 18px 0 26px;
}

.legal {
  padding-top: 96px;
  padding-bottom: 112px;
}

.legal__inner {
  max-width: 780px;
  margin: 0 auto;
}

.legal h1 {
  margin-bottom: 16px;
}

.legal__updated {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 44px;
}

.legal h2 {
  font-size: 24px;
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal h3 {
  font-size: 19px;
  margin-top: 34px;
  margin-bottom: 12px;
}

.legal p {
  color: var(--text-muted);
  margin-bottom: 18px;
}

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

.legal .consent-control {
  margin: 44px 0;
}

.legal .consent-control .btn {
  margin-top: 14px;
}

.sitemap-wrap {
  padding-top: 96px;
  padding-bottom: 112px;
}

.sitemap-wrap h1 {
  margin-bottom: 24px;
}

.sitemap-sentence {
  color: var(--text-muted);
  margin-bottom: 44px;
}

.sitemap-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

.sitemap-links a {
  font-size: 14px;
  color: var(--text-muted);
}

.sitemap-links a:hover {
  color: var(--text);
}

.sitemap-links .sep {
  color: var(--accent-2);
  user-select: none;
}

.consent-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 120;
  width: min(720px, calc(100% - 32px));
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 1px minmax(0, 1fr);
  gap: 28px;
  padding: 26px 30px 26px 34px;
}

.consent-banner::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--accent);
}

.consent-banner__left p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text);
}

.consent-banner__left .consent-banner__link {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.consent-banner__left .consent-banner__link:hover {
  color: var(--accent);
}

.consent-banner__divider {
  background: var(--border);
}

.consent-banner__right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.consent-pill {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.consent-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.consent-pill--accept:hover {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}

.consent-pill--manage {
  justify-self: start;
  border-style: dashed;
  color: var(--text-muted);
}

.consent-pill--manage:hover {
  color: var(--accent);
}

.consent-pill[aria-expanded="true"] {
  border-color: var(--accent);
  color: var(--accent);
}

.consent-accordion {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.consent-accordion.is-open {
  grid-template-rows: 1fr;
}

.consent-accordion__inner {
  overflow: hidden;
  min-height: 0;
}

.consent-categories {
  margin-top: 14px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.consent-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
}

.consent-category + .consent-category {
  border-top: 1px solid rgba(243, 236, 233, 0.07);
}

.consent-category__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.consent-category__label small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text-muted);
}

.consent-banner .consent-pill--save {
  display: none;
}

.consent-banner.is-managed .consent-pill--save {
  display: inline-block;
}

input[type="checkbox"][disabled] {
  cursor: not-allowed;
}

@media (max-width: 1024px) {
  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .hero {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .nav__links {
    gap: 22px;
  }
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero__photo img {
    aspect-ratio: 3 / 2;
  }

  .nav__toggle {
    display: block;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 32px 24px;
  }

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

  .nav__links li {
    width: 100%;
  }

  .nav__links a {
    display: block;
    width: 100%;
    padding: 12px 0;
    font-size: 14px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .mission-grid__rule {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .alt-band {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .alt-band--flip .alt-band__text {
    order: 1;
  }

  .alt-band--flip .alt-band__photo {
    order: 2;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 80px;
  }

  .container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .cat-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .cat-row .cat-row__link {
    align-self: start;
  }

  .row-venue {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 20px;
    padding: 20px;
  }

  .row-venue__thumb img {
    width: 72px;
    height: 72px;
  }

  .row-venue__body {
    text-align: left;
  }

  .row-venue__body p {
    margin-left: 0;
  }

  .row-venue__actions {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .card__body {
    padding: 24px 22px 26px;
  }

  .consent-banner {
    grid-template-columns: 1fr;
    gap: 18px;
    left: 16px;
    right: 16px;
    transform: none;
    width: auto;
    bottom: 16px;
    padding: 22px 22px 22px 26px;
  }

  .consent-banner__divider {
    width: 100%;
    height: 1px;
  }

  .consent-banner__right {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 560px) {
  :root {
    --section-pad: 64px;
  }

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

  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .hero__photo::before {
    transform: translate(6px, 6px);
  }

  .band {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .band__card {
    padding: 16px;
  }

  .row-venue {
    grid-template-columns: 1fr;
  }

  .row-venue__thumb {
    order: -1;
  }

  .row-venue__thumb img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .confirmation {
    padding: 44px 28px;
  }

  .consent-banner__right {
    flex-direction: column;
    align-items: stretch;
  }

  .consent-pill--manage {
    justify-self: stretch;
  }
}

#site-content {
  display: none;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.age-gate__box {
  max-width: 560px;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 56px 48px;
  text-align: center;
}

.age-gate__brand {
  font-family: var(--font-heading);
  font-size: 34px;
  letter-spacing: 0.4px;
  color: var(--text);
  margin-bottom: 22px;
}

.age-gate__box p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 46ch;
  margin: 0 auto 30px;
}

.age-gate__box .btn {
  margin-bottom: 18px;
}

.age-gate__small {
  font-size: 12px !important;
  margin-bottom: 0 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html,
body {
  min-height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

.site-footer {
  margin-top: auto;
}

.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid,
.agree-row input.is-invalid {
  border-color: var(--accent-2);
}

@media (max-width: 560px) {
  .age-gate {
    padding: 18px;
    align-items: flex-end;
  }

  .age-gate__box {
    padding: 36px 26px;
  }

  .age-gate__brand {
    font-size: 27px;
  }
}
