:root {
  --bg: #f4f5fa;
  --surface: #ffffff;
  --surface-alt: #e8eaf4;
  --text: #191c2b;
  --text-muted: #515674;
  --border: rgba(25, 28, 43, 0.12);
  --accent: #3a4485;
  --accent-2: #b08a3e;
  --secondary: #262c4d;
  --on-accent: #ffffff;
  --dark: #151830;
  --radius: 10px;
  --radius-card: 22px;
  --radius-pill: 999px;
  --font-heading: 'Hoefler Text', 'Book Antiqua', Georgia, serif;
  --font-body: Avenir, 'Segoe UI', Arial, sans-serif;
  --max: 1320px;
  --section-pad: 120px;
  --header-offset: 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.8;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

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

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

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

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

h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.06;
}

h2 {
  font-size: clamp(28px, 4.6vw, 44px);
}

h3 {
  font-size: clamp(22px, 2.8vw, 30px);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.2;
}

.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--light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--on-accent);
}

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

.site-header {
  position: relative;
  z-index: 40;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.site-header.is-over-hero {
  background: transparent;
  border-bottom: none;
}

.site-header.is-over-hero .nav-row {
  border-top-color: rgba(25, 28, 43, 0.1);
}

.site-header.is-over-hero + .independence-notice {
  background: transparent;
}

.brand-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.1rem 1.5rem 0.85rem;
}

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

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

.brand-lockup span {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--secondary);
}

.nav-row {
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  padding: 0.65rem 1.5rem 0.9rem;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.92rem;
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  right: 1.25rem;
  top: 1.15rem;
}

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

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

.site-header.is-over-hero + .independence-notice {
  margin-top: 0;
}

.independence-notice p {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 0.65rem 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-muted);
}

main {
  overflow-x: hidden;
}

.page-hero {
  padding: 5rem 0 3rem;
}

.page-hero .container > .kicker,
.page-hero .container > h1,
.page-hero .container > p {
  max-width: 42rem;
}

.page-hero h1 {
  margin-bottom: 1.25rem;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

.section--tight {
  padding: 80px 0;
}

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

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

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

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

.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid;
  align-items: stretch;
  background: var(--bg);
}

.hero__media {
  position: absolute;
  top: 0;
  right: 0;
  width: 66.666%;
  height: 100%;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__panel {
  position: relative;
  z-index: 2;
  width: min(46%, 620px);
  margin: 8vh 0 8vh max(24px, calc((100% - var(--max)) / 2));
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: clamp(2rem, 4vw, 3.5rem);
  align-self: center;
}

.hero__panel h1 {
  margin-bottom: 1.25rem;
}

.hero__panel p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 34ch;
}

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

.category-row {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr auto;
  gap: 1.5rem 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

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

.category-row p {
  color: var(--text-muted);
  margin: 0;
}

.regions-band {
  text-align: center;
}

.regions-band .lead {
  max-width: 52ch;
  margin: 0 auto 3.5rem;
  color: rgba(255, 255, 255, 0.72);
}

.regions-names {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 4rem;
  list-style: none;
}

.regions-names li {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.1;
  color: var(--on-accent);
  letter-spacing: 0.01em;
}

.pull-quote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.pull-quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.25;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

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

.amenity-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4rem;
  border-top: 1px solid var(--border);
}

.amenity-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.amenity-item strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
  color: var(--secondary);
}

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

.mission-block {
  max-width: 760px;
}

.mission-block .pull {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.25;
  color: var(--accent);
  margin-bottom: 2rem;
}

.mission-block p + p {
  margin-top: 1.1rem;
}

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

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

.split__media img {
  width: 100%;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
}

.split__copy h2 {
  margin-bottom: 1.25rem;
}

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

.split__copy p + p {
  margin-top: 1rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

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

.venue-card__photo {
  border-radius: calc(var(--radius-card) - 6px);
  overflow: hidden;
  margin-bottom: 1.25rem;
  aspect-ratio: 4 / 5;
}

.venue-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-card__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.venue-card__stars {
  font-size: 0.8rem;
  color: var(--accent-2);
  margin-bottom: 0.75rem;
  letter-spacing: 0.08em;
}

.venue-card h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin-bottom: 0.85rem;
}

.venue-card__desc {
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.venue-card__actions {
  border-top: 1px solid var(--border);
  padding-top: 1.15rem;
}

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

.venue-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 3.5rem;
}

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

.venue-band__photo {
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
}

.venue-band__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-band__body {
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.venue-band__body .venue-card__meta {
  margin-bottom: 0.35rem;
}

.venue-band__body h2 {
  margin-bottom: 0.85rem;
}

.venue-band__body .venue-card__desc {
  margin-bottom: 1.5rem;
}

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

.method-stack .method-block {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}

.method-stack .method-block:first-child {
  border-top: 1px solid var(--border);
}

.method-num {
  display: block;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.85rem;
}

.method-block h2 {
  margin-bottom: 1.25rem;
  max-width: 36ch;
}

.method-block p {
  color: var(--text-muted);
  max-width: 68ch;
}

.method-block p + p {
  margin-top: 1rem;
}

.responsible-lead {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.35;
  color: var(--secondary);
  max-width: 28ch;
  margin-bottom: 4rem;
}

.responsible-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem 4rem;
}

.responsible-grid article h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  margin-bottom: 1rem;
}

.responsible-grid article p {
  color: var(--text-muted);
}

.responsible-grid article p + p {
  margin-top: 1rem;
}

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

.contact-wrap > .intro {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}

.form-field {
  margin-bottom: 1.25rem;
}

.form-field label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--secondary);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.4;
}

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

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

.agree-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 1.5rem 0;
}

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

.agree-row label {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.field-error {
  display: none;
  color: #8b2e2e;
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

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

.form-status {
  display: none;
  margin-top: 1rem;
  color: #8b2e2e;
  font-size: 0.92rem;
}

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

.contact-email {
  margin-top: 1.75rem;
  color: var(--text-muted);
  text-align: center;
}

.confirm-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
}

.confirm-panel h2 {
  margin-bottom: 1rem;
}

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

.confirm-panel .ref {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--accent);
  margin: 1.25rem 0 1.75rem;
}

.legal-body {
  max-width: 760px;
  margin-inline: auto;
}

.section--flush-top {
  padding-top: 0;
}

.kicker--on-dark {
  color: #d4c08a;
}

.amenity-list--spaced {
  margin-top: 2.5rem;
}

.legal-body h1 {
  margin-bottom: 0.75rem;
}

.legal-body > p:first-of-type {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.legal-body h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  margin: 2.5rem 0 1rem;
}

.legal-body h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.65rem;
}

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

.legal-body p + p {
  margin-top: 1rem;
}

.legal-body ul {
  margin: 1rem 0 1rem 1.25rem;
}

.legal-body li + li {
  margin-top: 0.5rem;
}

.sitemap-list {
  list-style: none;
  border-top: 1px solid var(--border);
}

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

.sitemap-list a {
  display: block;
  padding: 1.15rem 0;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.35rem;
}

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

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

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.5rem 3rem;
  align-items: flex-start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  max-width: 360px;
}

.footer-brand .brand-lockup {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-links-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  flex: 1;
  justify-content: flex-end;
}

.footer-group {
  min-width: 160px;
}

.footer-group h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-variant: small-caps;
  color: var(--text-muted);
  padding-bottom: 0.55rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.footer-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.25rem;
  list-style: none;
}

.footer-inline a,
.footer-inline button {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
}

.footer-inline a:hover,
.footer-inline button:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
}

.footer-bottom .independence {
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 62ch;
  line-height: 1.55;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.25rem;
  list-style: none;
}

.footer-legal a,
.footer-legal button {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
}

.footer-legal a:hover,
.footer-legal button:hover {
  color: var(--accent);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.consent-bar {
  position: relative;
  z-index: 60;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.88);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.consent-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.consent-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.consent-copy {
  flex: 1 1 280px;
  min-width: 0;
}

.consent-copy h2 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--on-accent);
  margin-bottom: 0.25rem;
  letter-spacing: 0;
  line-height: 1.3;
}

.consent-copy p {
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
}

.consent-copy a {
  color: #d4c08a;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.consent-actions .btn {
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
}

.consent-actions .btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--on-accent);
}

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

.consent-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.5rem;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.consent-cat {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.consent-cat input {
  width: 16px;
  height: 16px;
}

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

.consent-prefs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

body.has-consent-bar {
  padding-top: 0;
}

@media (max-width: 1024px) {
  :root {
    --section-pad: 96px;
  }

  .hero__panel {
    width: min(52%, 560px);
  }

  .split {
    gap: 2.5rem;
  }

  .catalog-grid {
    gap: 1.75rem;
  }
}

@media (max-width: 900px) {
  .brand-row {
    justify-content: flex-start;
    padding-right: 4.5rem;
  }

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

  .nav-row {
    display: none;
    border-top: 1px solid var(--border);
    padding: 0;
    background: var(--surface);
  }

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

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 1rem;
  }

  .nav-links a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
  }

  .site-header.is-over-hero {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
  }

  .site-header.is-over-hero + .independence-notice {
    background: var(--bg);
  }

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

  .hero__media {
    position: relative;
    width: 100%;
    height: 48vw;
    min-height: 240px;
    max-height: 420px;
  }

  .hero__panel {
    width: 100%;
    margin: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .responsible-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

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

  .container {
    width: min(100% - 32px, var(--max));
  }

  .category-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .amenity-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .footer-top {
    flex-direction: column;
  }

  .footer-links-wrap {
    justify-content: flex-start;
  }

  .venue-band__photo {
    aspect-ratio: 16 / 10;
  }

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

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

  .brand-lockup span {
    font-size: 1.15rem;
  }

  .hero__panel {
    padding: 1.75rem 1.25rem 2.25rem;
  }

  .regions-names {
    gap: 1rem 2rem;
  }

  .regions-names li {
    font-size: clamp(24px, 8vw, 36px);
  }

  .venue-card {
    padding: 0.85rem;
  }

  .consent-actions {
    width: 100%;
  }

  .consent-actions .btn {
    flex: 1 1 auto;
    text-align: center;
  }
}
