:root {
  --bg: #fbfbf9;
  --surface: #ffffff;
  --surface-alt: #f0f0ec;
  --text: #1b1b1a;
  --text-muted: #585856;
  --border: rgba(27, 27, 26, 0.12);
  --accent: #2e2e2c;
  --accent-2: #9a7b4f;
  --secondary: #3d3d3a;
  --on-accent: #fbfbf9;
  --dark: #1b1b1a;
  --radius: 0px;
  --font-head: Constantia, Georgia, serif;
  --font-body: 'Trebuchet MS', 'Segoe UI', sans-serif;
  --wrap: 1040px;
  --pad-y: 68px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin: 0;
}

h1 {
  font-size: clamp(32px, 4.8vw, 50px);
}

h2 {
  font-size: clamp(22px, 3.2vw, 32px);
}

h3 {
  font-size: 19px;
}

p {
  margin: 0 0 1em;
}

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

a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

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

.kicker {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0 0 14px;
}

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

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

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

.section--dark {
  background: var(--dark);
  color: var(--on-accent);
}

.section__head {
  max-width: 640px;
  margin-bottom: 36px;
}

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

.section--dark .section__head p {
  color: rgba(251, 251, 249, 0.72);
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  background: var(--accent);
  color: var(--on-accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
}

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

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.link-arrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  white-space: nowrap;
}

.link-arrow::after {
  content: ' \2192';
  color: var(--accent-2);
}

.link-arrow:hover {
  color: var(--accent-2);
  border-color: var(--accent-2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand img {
  width: 34px;
  height: 32px;
  object-fit: contain;
}

.brand__name {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.2px;
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.nav__links a {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

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

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

.nav__contact {
  flex-shrink: 0;
}

.nav__contact a {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 8px 14px;
  color: var(--text);
}

.nav__contact a:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
}

.nav__burger {
  display: none;
  flex-shrink: 0;
  width: 40px;
  height: 38px;
  background: none;
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav__burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.independence-notice {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.independence-notice p {
  margin: 0;
  padding: 10px 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-muted);
}

.hero {
  position: relative;
  min-height: 520px;
}

.hero__panel {
  position: relative;
  z-index: 1;
  width: 60%;
  max-width: 620px;
  min-height: 520px;
  background: var(--surface);
  border-right: 1px solid var(--border);
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 66%;
  overflow: hidden;
}

.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__intro {
  margin-top: 22px;
  max-width: 46ch;
  color: var(--text-muted);
  font-size: 16.5px;
}

.cat-row {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}

.cat-row:first-of-type {
  border-top: 1px solid var(--border);
}

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

.cat-row__desc {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
}

.cat-row a {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.cat-row a::after {
  content: ' \2192';
  color: var(--accent-2);
}

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

.about-band {
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: 48px;
  align-items: start;
}

.about-band h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.about-band__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.about-band__cols p {
  margin: 0;
  color: rgba(251, 251, 249, 0.78);
  font-size: 15px;
}

.amen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  background: var(--surface);
}

.amen-grid > div {
  padding: 28px 24px;
}

.amen-grid > div + div {
  border-left: 1px solid var(--border);
}

.amen-grid h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.amen-grid p {
  margin: 0;
  font-size: 14.5px;
  color: var(--text-muted);
}

.arrival-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.arrival-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 26px 24px 24px;
  overflow: hidden;
}

.arrival-card__num {
  position: absolute;
  top: 6px;
  right: 14px;
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: var(--surface-alt);
  pointer-events: none;
}

.arrival-card h3 {
  position: relative;
  margin-bottom: 10px;
  font-size: 18px;
}

.arrival-card p {
  position: relative;
  margin: 0;
  font-size: 14.5px;
  color: var(--text-muted);
}

.venue-row {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 26px;
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 30px;
  margin-bottom: 24px;
}

.venue-row--flip .venue-row__media {
  order: 2;
}

.venue-row__media {
  position: relative;
  min-height: 0;
}

.venue-row__media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.venue-row__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.venue-row__meta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 8px;
}

.venue-row__body h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.venue-row__desc {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 15px;
  max-width: 52ch;
}

.venue-row__action {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.venue-row__action .btn {
  padding: 10px 18px;
  font-size: 13px;
}

.venue-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.venue-list-item {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px;
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 24px;
  align-items: center;
}

.venue-list-item__thumb {
  width: 96px;
  height: 96px;
  object-fit: cover;
}

.venue-list-item__body {
  text-align: center;
  padding: 4px 8px;
}

.venue-list-item__body h3 {
  font-size: 20px;
  margin-bottom: 2px;
}

.venue-list-item__rule {
  width: 44px;
  height: 2px;
  background: var(--accent-2);
  border: 0;
  margin: 8px auto 10px;
}

.venue-list-item__meta {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.venue-list-item__desc {
  margin: 0 0 0 auto;
  color: var(--text-muted);
  font-size: 14.5px;
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
}

.venue-list-item__action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 4px;
}

.catalog-closing {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  max-width: 68ch;
}

.catalog-closing p {
  margin: 0 0 10px;
  color: var(--text-muted);
  font-size: 15px;
}

.catalog-closing a {
  font-weight: 700;
}

.page-head {
  padding-top: 56px;
  padding-bottom: 40px;
  max-width: 720px;
}

.page-head p {
  color: var(--text-muted);
  margin-top: 16px;
  font-size: 16px;
}

.prose {
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}

.prose h2 {
  margin-top: 44px;
  margin-bottom: 16px;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  margin-bottom: 1.15em;
}

.prose .rule {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 44px 0;
}

.reader-notes {
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}

.reader-notes__section {
  padding-top: 52px;
}

.reader-notes__section:first-child {
  padding-top: 0;
}

.reader-notes__num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 10px;
}

.reader-notes__section h2 {
  margin-bottom: 18px;
}

.reader-notes__section p {
  color: var(--text);
}

.contact-wrap {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.contact-wrap > p {
  color: var(--text-muted);
}

.contact-form {
  margin-top: 32px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 7px;
}

.field input[type='text'],
.field input[type='email'],
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 11px 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--accent-2);
  outline-offset: 1px;
}

.field input[aria-invalid='true'] {
  outline: 2px solid #a33a2e;
  outline-offset: 1px;
}

.agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.agree input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.agree label {
  font-size: 14px;
  margin: 0;
  font-weight: 400;
}

.form-error {
  color: #a33a2e;
  font-size: 13.5px;
  font-weight: 700;
  margin: 0 0 14px;
}

.form-status {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.form-confirm {
  margin-top: 32px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 32px 28px;
}

.form-confirm h2 {
  margin-bottom: 14px;
}

.form-confirm p {
  color: var(--text-muted);
  font-size: 15px;
}

.form-confirm .ref {
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--text);
  letter-spacing: 0.02em;
}

.form-confirm .btn {
  margin-top: 18px;
}

.legal-wrap {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.legal-wrap h1 {
  margin-bottom: 8px;
}

.legal-wrap .updated {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 30px;
}

.legal-wrap h2 {
  margin: 36px 0 12px;
}

.legal-wrap h3 {
  margin: 24px 0 10px;
}

.legal-wrap p {
  margin-bottom: 1.05em;
}

.consent-open {
  display: inline-block;
  margin-top: 26px;
}

.sitemap-row {
  line-height: 2.4;
}

.sitemap-row a {
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
}

.sitemap-row a:hover {
  color: var(--accent-2);
  border-color: var(--accent-2);
}

.sitemap-row .dot {
  color: var(--accent-2);
  margin: 0 12px;
}

.site-footer {
  background: var(--surface);
  border-top: 2px solid var(--accent);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  padding-top: 56px;
  padding-bottom: 40px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  font-size: 13.5px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
  color: var(--accent-2);
}

.footer-links li.footer-gap {
  margin-top: 22px;
  margin-bottom: 9px;
}

.footer-brand__blurb {
  margin-top: 18px;
  font-size: 14px;
  color: var(--text-muted);
  max-width: 46ch;
}

.footer-notice {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--text-muted);
  max-width: 52ch;
}

.footer-mail {
  display: block;
  padding: 26px 0 6px;
  font-family: var(--font-head);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700;
  letter-spacing: -0.3px;
  text-decoration: none;
  border-top: 1px solid var(--border);
}

.footer-mail:hover {
  color: var(--accent-2);
}

.site-footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  padding-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer__bottom .copy {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.site-footer__bottom .legal-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer__bottom .legal-row a,
.cookie-settings {
  font-size: 13px;
  text-decoration: none;
  color: var(--text);
  background: none;
  border: 0;
  padding: 0;
  font-family: var(--font-body);
  cursor: pointer;
}

.site-footer__bottom .legal-row a:hover,
.cookie-settings:hover {
  color: var(--accent-2);
}

.consent-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 380px;
  max-width: calc(100vw - 32px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(27, 27, 26, 0.18);
  padding: 22px 22px 20px;
  border-left: 3px solid var(--accent);
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner__head {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.consent-banner p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0 0 8px;
}

.consent-banner__link {
  font-size: 13px;
}

.consent-cats {
  margin: 16px 0 4px;
  border-top: 1px solid var(--border);
}

.consent-cats__row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}

.consent-cats__row h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.consent-cats__row p {
  font-size: 12.5px;
  margin: 2px 0 0;
}

.consent-cats__row input[type='checkbox'] {
  width: 18px;
  height: 18px;
}

.consent-controls {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-top: 18px;
}

.consent-controls button {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  padding: 10px 6px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.consent-controls button:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
}

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

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

.consent-back {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-2);
}

@media (max-width: 1024px) {
  .nav__links {
    gap: 16px;
  }

  .nav__links a {
    font-size: 12.5px;
  }

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

  .amen-grid > div + div {
    border-left: 0;
  }

  .amen-grid > div:nth-child(even) {
    border-left: 1px solid var(--border);
  }

  .amen-grid > div:nth-child(n + 3) {
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 900px) {
  .nav {
    height: auto;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav__brand-wrap {
    margin-right: auto;
  }

  .nav__burger {
    display: inline-flex;
  }

  .nav__links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    flex: 1 1 100%;
    order: 3;
    border-top: 1px solid var(--border);
    padding-top: 10px;
  }

  .nav__links li {
    width: 100%;
  }

  .nav__links a {
    padding: 10px 4px;
    font-size: 14px;
    width: 100%;
  }

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

  .nav__contact {
    display: none;
  }

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

  .hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .hero__media {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    order: -1;
    width: 100%;
    height: 280px;
    flex: none;
    border-bottom: 1px solid var(--border);
  }

  .hero__panel {
    width: 100%;
    max-width: none;
    min-height: 0;
    padding: 48px 32px;
    border-right: 0;
  }

  .about-band {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  :root {
    --pad-y: 52px;
  }

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

  .cat-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .venue-row--flip .venue-row__media {
    order: 0;
  }

  .venue-row__media img {
    height: 260px;
  }

  .venue-list-item {
    grid-template-columns: 76px 1fr;
  }

  .venue-list-item__thumb {
    width: 76px;
    height: 76px;
  }

  .venue-list-item__action {
    grid-column: 2;
    justify-content: flex-start;
    padding-bottom: 0;
    padding-top: 2px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .consent-banner {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 10px 10px 0 0;
    border-left: 3px solid var(--accent);
  }

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

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

  .amen-grid > div + div {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .about-band__cols {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero__panel {
    padding: 40px 22px;
  }

  .consent-controls {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .brand__name {
    font-size: 16px;
  }

  .hero__media {
    height: 200px;
  }

  .venue-row {
    padding: 18px;
  }

  .venue-row__media img {
    height: 210px;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.is-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}
