:root {
  --bg: #f7f9fa;
  --surface: #ffffff;
  --surface-alt: #eaeff2;
  --text: #15202a;
  --text-muted: #4c5c68;
  --border: rgba(21, 32, 42, 0.12);
  --accent: #2b6a8f;
  --accent-2: #93714a;
  --secondary: #1f3242;
  --on-accent: #ffffff;
  --deep: #122029;
  --radius: 4px;
  --radius-btn: 2px;
  --font-heading: Garamond, "EB Garamond", Georgia, serif;
  --font-body: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
  --max: 1120px;
  --section-pad: 88px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--secondary);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--text);
}

h1 {
  font-size: clamp(34px, 5.4vw, 56px);
  line-height: 1.16;
}

h2 {
  font-size: clamp(24px, 3.8vw, 36px);
}

h3 {
  font-size: clamp(20px, 2.4vw, 26px);
}

p {
  margin: 0 0 1em;
}

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

ul,
ol {
  margin: 0 0 1em;
  padding-left: 1.25em;
}

.wrap {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 12px;
}

.band {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface-alt) 100%);
}

.band--alt {
  background: linear-gradient(180deg, var(--surface-alt) 0%, var(--bg) 100%);
}

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

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

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: var(--header-h);
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

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

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

.nav-center a,
.nav-contact a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav-center a:hover,
.nav-contact a:hover,
.nav-center a[aria-current="page"],
.nav-contact a[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.nav-contact {
  justify-self: end;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--surface);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

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

.independence {
  margin: 28px auto 0;
  width: min(100% - 40px, var(--max));
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.55;
}

.page-title {
  padding: 56px 0 0;
}

.page-title .independence {
  margin: 24px 0 0;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

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

.btn--ghost {
  background: transparent;
  color: var(--accent);
}

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

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.text-link {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.hero {
  position: relative;
  min-height: max(62vh, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-accent);
  overflow: hidden;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 32, 41, 0.55) 0%, rgba(18, 32, 41, 0.78) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: min(100% - 40px, 760px);
  padding: 48px 0;
}

.hero .kicker {
  color: rgba(255, 255, 255, 0.82);
}

.hero h1 {
  color: var(--on-accent);
  margin-bottom: 16px;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin: 0;
}

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

.category-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}

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

.category-card__body {
  padding: 22px 22px 26px;
}

.category-card h3 {
  margin-bottom: 10px;
}

.category-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 16px;
}

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

.accordion__item {
  border-bottom: 1px solid var(--border);
}

.accordion__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--text);
}

.accordion__btn::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
}

.accordion__item.is-open .accordion__btn::after {
  content: "–";
}

.accordion__panel {
  display: none;
  padding: 0 4px 22px;
  color: var(--text-muted);
  max-width: 68ch;
}

.accordion__item.is-open .accordion__panel {
  display: block;
}

.photo-strip__intro {
  max-width: 62ch;
  margin-bottom: 36px;
  color: var(--text-muted);
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  align-items: end;
}

.mosaic img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.mosaic__a {
  grid-column: span 4;
  height: 280px;
}

.mosaic__b {
  grid-column: span 5;
  height: 360px;
}

.mosaic__c {
  grid-column: span 3;
  height: 220px;
}

.mosaic__d {
  grid-column: span 7;
  height: 300px;
}

.mosaic__e {
  grid-column: span 5;
  height: 240px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

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

.split__copy h2 {
  margin-bottom: 18px;
}

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

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

.region-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.region-tile h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.region-tile p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
}

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

.mission__left {
  padding-right: 40px;
  border-right: 1px solid var(--border);
}

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

.venue-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.venue-band {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

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

.venue-card--grand {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.venue-card--grand img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 28px;
}

.venue-card--grand .venue-card__body {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.venue-card--grand .venue-card__actions {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.venue-card--editor {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.venue-card--editor .venue-card__media {
  position: relative;
}

.venue-card--editor img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  min-height: 360px;
}

.venue-card__nameplate {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 18px;
  background: rgba(18, 32, 41, 0.72);
  color: var(--on-accent);
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.3px;
  margin: 0;
}

.venue-card--editor .venue-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 14px;
}

.venue-rows {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.venue-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 32px;
  align-items: center;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}

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

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

.venue-row--flip .venue-row__body {
  order: 1;
  padding-left: 32px;
  padding-right: 8px;
}

.venue-row__media {
  position: relative;
}

.venue-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  min-height: 260px;
}

.venue-row__body {
  padding: 28px 32px 28px 8px;
}

.venue-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 4px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.venue-card--grand .venue-meta {
  align-items: center;
}

.venue-meta .stars {
  color: var(--accent-2);
  letter-spacing: 0.05em;
}

.venue-card__body p,
.venue-row__body p {
  color: var(--text-muted);
}

.catalog-close {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  max-width: 68ch;
}

.editorial-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

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

.editorial-band--flip .editorial-band__rule {
  order: -1;
}

.editorial-band__rule {
  border-left: 1px solid var(--border);
  padding-left: 48px;
  color: var(--text-muted);
}

.editorial-band__rule p:first-child {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

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

.contact-email {
  display: inline-block;
  margin-top: 18px;
  font-size: 18px;
  font-weight: 600;
}

.form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.form-field {
  margin-bottom: 18px;
}

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

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
}

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

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

.form-agree {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--text-muted);
}

.form-agree input {
  margin-top: 4px;
  flex-shrink: 0;
}

.form-error {
  display: none;
  color: #8b2e2e;
  font-size: 13px;
  margin-top: 6px;
}

.form-error.is-visible {
  display: block;
}

.form-status {
  display: none;
  margin-top: 12px;
  color: #8b2e2e;
  font-size: 14px;
}

.form-status.is-visible {
  display: block;
}

.confirm-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.confirm-panel[hidden],
.form[hidden] {
  display: none;
}

.sitemap-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.sitemap-row {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.sitemap-row a {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
}

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

.sitemap-row p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
}

.legal-body {
  max-width: 72ch;
}

.legal-body h2 {
  margin-top: 1.6em;
  font-size: clamp(22px, 2.8vw, 28px);
}

.legal-body h3 {
  margin-top: 1.2em;
}

.legal-body p,
.legal-body li {
  color: var(--text-muted);
}

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

.footer-brand-band {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--border);
}

.footer-brand-band .brand {
  font-size: 28px;
  margin-bottom: 16px;
}

.footer-brand-band .brand img {
  width: 44px;
  height: 42px;
}

.footer-blurb {
  max-width: 58ch;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-independence {
  max-width: 72ch;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 20px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 36px 0;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
}

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

.footer-bottom {
  padding: 0 0 28px;
  color: var(--text-muted);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0 0 6px;
}

.footer-bottom button {
  background: none;
  border: 0;
  padding: 0;
  color: var(--text-muted);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom button:hover {
  color: var(--accent);
}

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

.reveal {
  opacity: 0;
  transition: opacity 240ms ease;
}

.reveal.is-visible {
  opacity: 1;
}

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

  .reveal {
    opacity: 1;
    transition: none;
  }
}

.consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: none;
}

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

.consent__inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 18px 0 18px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.consent__copy {
  flex: 1;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

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

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  flex-shrink: 0;
}

.consent__btn {
  appearance: none;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  border-radius: 999px;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.consent__btn:hover,
.consent__btn:focus-visible {
  background: var(--accent);
  color: var(--on-accent);
  outline: none;
}

.consent__btn--text {
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding-inline: 10px;
}

.consent__btn--text:hover {
  background: transparent;
  color: var(--secondary);
}

.consent__manage {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 18px 0 22px 12px;
}

.consent__back {
  margin-bottom: 14px;
}

.consent__cats {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.consent__cat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
}

.consent__cat label {
  font-size: 14px;
  color: var(--text);
}

.consent__cat span {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 2px;
}

.consent__cat input:disabled {
  opacity: 0.7;
}

.consent[hidden] {
  display: none;
}

@media (max-width: 1024px) {
  .category-grid {
    gap: 18px;
  }

  .mosaic__a,
  .mosaic__b,
  .mosaic__c,
  .mosaic__d,
  .mosaic__e {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .venue-grid {
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

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

  .nav-center,
  .nav-contact {
    display: none;
  }

  .nav.is-open .nav-center,
  .nav.is-open .nav-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-column: 1 / -1;
    padding-bottom: 16px;
    gap: 4px;
  }

  .nav.is-open .nav-contact {
    padding-bottom: 20px;
  }

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

  .split,
  .mission,
  .contact-grid,
  .editorial-band {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mission__left {
    padding-right: 0;
    border-right: 0;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
  }

  .editorial-band--flip .editorial-band__rule {
    order: 0;
  }

  .editorial-band__rule {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 24px;
  }

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

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

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

  .consent__actions {
    justify-content: flex-start;
  }
}

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

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

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

  .venue-row--flip .venue-row__media,
  .venue-row--flip .venue-row__body {
    order: initial;
  }

  .venue-row__body,
  .venue-row--flip .venue-row__body {
    padding: 22px;
  }

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

  .mosaic__a,
  .mosaic__b,
  .mosaic__c,
  .mosaic__d,
  .mosaic__e {
    grid-column: span 1;
  }

  .sitemap-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 560px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .wrap {
    width: min(100% - 28px, var(--max));
  }

  .region-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

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

  .consent__btn {
    width: 100%;
    text-align: center;
  }

  .hero p {
    font-size: 16px;
  }
}
