:root {
  --bg: #faf6f3;
  --surface: #ffffff;
  --surface-alt: #f2e9e4;
  --text: #241417;
  --text-muted: #63494e;
  --border: rgba(36, 20, 23, 0.12);
  --accent: #7b2233;
  --accent-2: #7a5c10;
  --secondary: #3d1f26;
  --on-accent: #ffffff;
  --dark-band: #2b1219;
  --radius: 6px;
  --radius-pill: 999px;
  --font-heading: 'Lucida Bright', Georgia, serif;
  --font-body: 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
  --content: 1140px;
  --header-h: 72px;
  --section-pad: 96px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  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: 0.18em;
}

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

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

h1 {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.12;
}

h2 {
  font-size: clamp(26px, 4vw, 40px);
}

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

p {
  margin: 0 0 1.1em;
}

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

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

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

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

.nav-inner {
  width: min(100% - 48px, var(--content));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
  position: relative;
}

.nav-inner > nav {
  display: contents;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.3px;
}

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

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-variant: small-caps;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}

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

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  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.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

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

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

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

.text-link {
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.text-link:hover {
  color: var(--secondary);
}

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

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

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

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

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

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

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

.hero-letterbox {
  padding: 0 0 64px;
}

.hero-letterbox .hero-strip {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 21 / 9;
}

.hero-letterbox .hero-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  width: min(100% - 48px, 780px);
  margin: 40px auto 0;
  text-align: center;
}

.hero-copy .intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.hero-rule {
  width: 72px;
  height: 1px;
  background: var(--border);
  margin: 0 auto;
  border: 0;
}

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

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

.category-card:hover {
  box-shadow: 0 6px 20px rgba(36, 20, 23, 0.06);
}

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

.category-card .card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.category-card h3 {
  margin: 0;
}

.category-card p {
  color: var(--text-muted);
  flex: 1;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 820px;
  margin-inline: auto;
}

.timeline li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 20px;
  position: relative;
  padding-bottom: 40px;
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline .marker {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
  position: relative;
  z-index: 1;
  justify-self: center;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 20px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.timeline li:last-child::before {
  display: none;
}

.timeline h3 {
  margin-bottom: 0.4em;
}

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

.about-lead {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

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

.about-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-cols article {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.about-cols h3 {
  font-size: 1.15rem;
  margin-bottom: 0.7em;
}

.about-cols p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.photo-strip-intro {
  max-width: 640px;
  margin-bottom: 40px;
}

.photo-strip-intro p {
  color: var(--text-muted);
}

.mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr 1.1fr;
  grid-template-rows: 220px 280px;
  gap: 16px;
}

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

.mosaic .m1 {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.mosaic .m2 {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}

.mosaic .m3 {
  grid-column: 4 / 5;
  grid-row: 1 / 2;
}

.mosaic .m4 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.mosaic .m5 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.page-hero {
  padding: 72px 0 40px;
  text-align: center;
}

.page-hero .intro {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-muted);
}

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

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

.venue-row:hover {
  box-shadow: 0 6px 20px rgba(36, 20, 23, 0.06);
}

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

.venue-row.reverse .venue-media {
  order: 2;
}

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

.venue-row .venue-body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  background: var(--surface);
}

.venue-body h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin: 0;
}

.venue-meta {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin: 0;
}

.venue-stars {
  color: var(--accent-2);
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

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

.venue-body .btn {
  align-self: flex-start;
  margin-top: 8px;
}

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

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

.venue-card:hover {
  box-shadow: 0 6px 20px rgba(36, 20, 23, 0.06);
}

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

.venue-card .venue-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  background: var(--surface);
}

.venue-card .venue-body p {
  flex: 1;
  color: var(--text-muted);
}

.venue-card .btn {
  margin-top: auto;
  align-self: stretch;
  text-align: center;
}

.catalog-close {
  margin-top: 64px;
  max-width: 680px;
  color: var(--text-muted);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.story-stack {
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: var(--section-pad);
}

.story-block {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.story-block:last-child {
  border-bottom: 0;
}

.story-block .num {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1rem;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: var(--section-pad);
}

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

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

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

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

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  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: 140px;
  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: 12px;
  align-items: flex-start;
  margin-bottom: 8px;
}

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

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

.field-error {
  display: none;
  color: var(--accent);
  font-size: 0.85rem;
  margin-top: 6px;
}

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

.form-status {
  display: none;
  margin-top: 14px;
  color: var(--accent);
  font-size: 0.9rem;
}

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

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

.confirm-panel h2 {
  margin-bottom: 0.5em;
}

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

.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 0 var(--section-pad);
}

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

.legal-body h3 {
  margin-top: 1.4em;
  font-size: 1.15rem;
}

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

.legal-body ul {
  padding-left: 1.2em;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: var(--section-pad);
}

.sitemap-grid h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}

.sitemap-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sitemap-grid li {
  margin-bottom: 10px;
}

.sitemap-grid a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

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

.site-footer {
  background: var(--surface-alt);
  padding: 64px 0 0;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

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

.footer-blurb {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 0;
  max-width: 900px;
  margin: 0 auto 16px;
  position: relative;
  padding: 0 48px;
}

.footer-links-row a,
.footer-links-row button {
  color: var(--text);
  text-decoration: none;
  font-size: 0.88rem;
  background: none;
  border: 0;
  padding: 4px 0;
  cursor: pointer;
  font-family: var(--font-body);
}

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

.footer-links-row .sep {
  color: var(--text-muted);
  margin: 0 10px;
  user-select: none;
}

.footer-adults {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.back-top {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.82rem !important;
  color: var(--text-muted) !important;
}

.footer-bottom {
  margin-top: 36px;
  border-top: 1px solid var(--border);
  padding: 20px 0 28px;
}

.footer-independence {
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 820px;
  margin: 0 auto 16px;
  line-height: 1.5;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: min(100% - 48px, var(--content));
  margin: 0 auto;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-meta a,
.footer-meta button {
  color: var(--text-muted);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.footer-requisites {
  width: min(100% - 48px, var(--content));
  margin: 12px auto 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  opacity: 0.85;
}

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

.consent-inner {
  width: min(100%, var(--content));
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.consent-copy h2 {
  font-size: 1.15rem;
  margin-bottom: 0.4em;
}

.consent-copy p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.consent-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.consent-option {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  background: var(--bg);
}

.consent-option label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  cursor: pointer;
}

.consent-option input {
  margin-top: 3px;
}

.consent-option span {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.consent-option small {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.consent-actions .btn {
  font-size: 0.82rem;
  padding: 10px 18px;
}

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

@media (max-width: 1024px) {
  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 240px 200px;
  }

  .mosaic .m1 {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .mosaic .m2 {
    grid-column: 1;
    grid-row: 2;
  }

  .mosaic .m3 {
    grid-column: 2;
    grid-row: 2;
  }

  .mosaic .m4 {
    grid-column: 1;
    grid-row: 3;
  }

  .mosaic .m5 {
    grid-column: 2;
    grid-row: 3;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px;
    gap: 0;
  }

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

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

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

  .site-header.is-nav-open {
    z-index: 110;
  }

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

  .about-cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

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

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

  .back-top {
    position: static;
    transform: none;
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }

  .footer-links-row {
    padding: 0;
  }
}

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

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

  .nav-inner,
  .independence-notice p,
  .footer-meta,
  .footer-requisites {
    width: min(100% - 32px, var(--content));
  }

  .hero-copy {
    width: min(100% - 32px, 780px);
  }

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

  .venue-row.reverse .venue-media {
    order: 0;
  }

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

  .venue-row .venue-body {
    padding: 28px 24px 32px;
  }

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

  .footer-meta {
    flex-direction: column;
    text-align: center;
  }
}

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

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

  .mosaic .m1,
  .mosaic .m2,
  .mosaic .m3,
  .mosaic .m4,
  .mosaic .m5 {
    grid-column: auto;
    grid-row: auto;
    min-height: 200px;
  }

  .contact-form,
  .confirm-panel {
    padding: 24px;
  }

  .consent-actions {
    flex-direction: column;
  }

  .consent-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --section-pad: 56px;
  }

  body {
    font-size: 16px;
  }

  .hero-letterbox .hero-strip {
    aspect-ratio: 16 / 9;
  }

  .page-hero {
    padding-top: 48px;
  }
}
