:root {
  --bg: #f4f5f7;
  --surface: #ffffff;
  --surface-alt: #e9ebef;
  --text: #1a1f27;
  --text-muted: #525c6b;
  --border: rgba(26, 31, 39, 0.12);
  --accent: #b3623a;
  --accent-2: #2f4a63;
  --secondary: #2b3542;
  --on-accent: #ffffff;
  --dark: #161c24;
  --radius: 0px;
  --font-heading: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  --font-body: Cambria, Georgia, serif;
  --max-w: 1040px;
  --section-pad: 68px;
  --header-h: 0px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.58;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.page-title--center {
  text-align: center;
}

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

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

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

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

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

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

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

h3 {
  font-size: clamp(18px, 2.4vw, 22px);
}

.kicker {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

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

.wrap--narrow {
  width: min(100% - 40px, 640px);
}

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

.header-brand-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px 8px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand-lockup:hover {
  color: var(--text);
}

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.header-nav-row {
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  padding: 0 12px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 10px 14px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
}

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

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

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

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

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

.independence-notice p {
  width: min(100%, var(--max-w));
  margin-inline: auto;
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-muted);
}

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 11px 18px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  text-decoration: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  color: var(--on-accent);
  box-shadow: 0 4px 14px rgba(26, 31, 39, 0.18);
}

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

.btn--ghost:hover {
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(26, 31, 39, 0.12);
}

.btn--dark {
  background: var(--surface);
  color: var(--dark);
  border-color: var(--surface);
}

.btn--dark:hover {
  color: var(--dark);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

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

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

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

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

.hero__content .kicker {
  color: rgba(255, 255, 255, 0.78);
}

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

.hero__content p {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

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

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

.section--dark {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.88);
}

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

.section--dark a {
  color: #d4a08a;
}

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

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

.section__intro p {
  color: var(--text-muted);
  margin-top: 10px;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

.band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 28px;
}

.band:last-child {
  margin-bottom: 0;
}

.band--flip .band__media {
  order: 2;
}

.band--flip .band__body {
  order: 1;
}

.band__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.band__body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

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

.band__body a {
  font-family: var(--font-heading);
  font-weight: 700;
  text-decoration: none;
  color: var(--accent);
  margin-top: 6px;
}

.band__body a:hover {
  text-decoration: underline;
}

.closing-cta {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
}

.closing-cta p {
  margin-top: 14px;
}

.closing-cta a {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--font-heading);
  font-weight: 700;
}

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

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

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

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

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

.accordion__panel {
  display: none;
  padding: 0 0 18px;
  color: var(--text-muted);
  max-width: 720px;
}

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

.region-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.region-tile {
  background: var(--surface);
  padding: 22px 20px;
}

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

.region-tile p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: end;
}

.photo-strip__copy p {
  color: var(--text-muted);
  margin-top: 12px;
}

.photo-strip__figure figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
}

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

.page-title {
  padding: 48px 0 28px;
}

.page-title p {
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 640px;
}

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

.catalog-close {
  padding: 0 0 var(--section-pad);
  color: var(--text-muted);
  max-width: 640px;
}

.catalog-close a {
  font-family: var(--font-heading);
  font-weight: 700;
}

.masonry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
  align-items: start;
}

.venue-card {
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.venue-card__media {
  position: relative;
  overflow: hidden;
}

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

.venue-card--tall .venue-card__media img {
  aspect-ratio: 3 / 4;
  min-height: 320px;
}

.venue-card__name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 14px 16px;
  background: rgba(22, 28, 36, 0.72);
  color: var(--on-accent);
  font-family: var(--font-heading);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  letter-spacing: -0.3px;
}

.venue-card__body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  border-top: 1px solid var(--border);
}

.venue-card__meta {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.venue-card__desc {
  font-size: 15px;
  color: var(--text-muted);
  flex: 1;
}

.venue-card__body .btn {
  align-self: flex-start;
  margin-top: 4px;
}

.venue-card--img-bottom .venue-card__body {
  border-top: none;
  border-bottom: 1px solid var(--border);
}

.venue-card__body--action {
  border-top: none;
  padding-top: 0;
}

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

.editorial {
  padding: 20px 0 var(--section-pad);
  max-width: 720px;
}

.editorial-block {
  margin-bottom: 56px;
}

.editorial-block:last-child {
  margin-bottom: 0;
}

.editorial-block .num-kicker {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.editorial-block h2 {
  margin-bottom: 16px;
}

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

.editorial-block p:last-child {
  margin-bottom: 0;
}

.contact-intro {
  text-align: center;
  margin-bottom: 28px;
  color: var(--text-muted);
}

.contact-email {
  text-align: center;
  margin-bottom: 28px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-field label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

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

.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-2);
  outline-offset: 1px;
}

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

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

.form-error {
  color: #8b2e1a;
  font-size: 13px;
  margin-top: 4px;
}

.form-error[hidden] {
  display: none;
}

.confirm-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
}

.confirm-panel h2 {
  margin-bottom: 12px;
}

.confirm-panel p {
  color: var(--text-muted);
  margin-bottom: 10px;
}

.confirm-panel .btn {
  margin-top: 16px;
}

.legal-body {
  padding: 20px 0 var(--section-pad);
  max-width: 720px;
}

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

.legal-body > p:first-of-type {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.legal-body h2 {
  margin: 32px 0 12px;
  font-size: clamp(20px, 2.8vw, 26px);
}

.legal-body h3 {
  margin: 20px 0 8px;
}

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

.legal-body ul {
  padding-left: 1.2em;
  margin-bottom: 12px;
}

.sitemap-list {
  list-style: none;
  padding: 12px 0 var(--section-pad);
  max-width: 520px;
}

.sitemap-list li {
  border-bottom: 1px solid var(--border);
}

.sitemap-list a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-heading);
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
}

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

.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.78);
  margin-top: auto;
}

.footer-brand-band {
  padding: 48px 0 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-band .brand-lockup {
  color: var(--on-accent);
  margin-bottom: 16px;
}

.footer-brand-band .brand-name {
  font-size: clamp(28px, 4vw, 40px);
}

.footer-blurb {
  max-width: 560px;
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 14px;
}

.footer-brand-band a[href^="mailto"] {
  color: #d4a08a;
  font-family: var(--font-heading);
  font-weight: 700;
  text-decoration: none;
}

.footer-brand-band a[href^="mailto"]:hover {
  color: var(--on-accent);
}

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

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--on-accent);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.footer-col ul {
  list-style: none;
}

.footer-col a {
  display: block;
  padding: 4px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0 28px;
}

.footer-independence {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 14px;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-meta button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-heading);
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0;
}

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

.consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: rgba(244, 245, 247, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
}

.consent[hidden] {
  display: none !important;
}

.consent__inner {
  width: min(100%, var(--max-w));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 28px;
  align-items: center;
}

.consent__copy {
  font-size: 14px;
  color: var(--text);
  line-height: 1.45;
}

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

.consent__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.consent__cats label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.consent__cats input:disabled {
  cursor: not-allowed;
}

.consent__aside {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 280px;
}

.consent__controls {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  width: 100%;
}

.consent__controls button {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  padding: 10px 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
}

.consent__controls button:hover {
  box-shadow: 0 3px 10px rgba(26, 31, 39, 0.14);
}

.consent__controls .consent__accept {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}

.consent__manage {
  text-align: center;
  margin-top: 4px;
}

.consent__manage button {
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0;
}

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

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .header-brand-row {
    justify-content: space-between;
    padding: 10px 16px;
  }

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

  .header-nav-row {
    display: none;
    border-top: 1px solid var(--border);
  }

  .header-nav-row.is-open {
    display: block;
  }

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

  .nav-links a {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a[aria-current="page"] {
    border-bottom-color: var(--border);
    background: var(--surface-alt);
  }
}

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

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

  .band--flip .band__media,
  .band--flip .band__body {
    order: initial;
  }

  .band__media img {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }

  .masonry,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .photo-strip {
    grid-template-columns: 1fr;
  }

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

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

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

  .consent__aside {
    min-width: 0;
    width: 100%;
  }

  .consent__controls {
    min-width: 0;
    width: 100%;
  }
}

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

  .band__body {
    padding: 28px 20px;
  }

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

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

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }

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

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