:root {
  --bg: #0d0d0f;
  --surface: #151517;
  --surface-alt: #1d1d20;
  --text: #f0f0f2;
  --text-muted: #a8a8ae;
  --border: rgba(240, 240, 242, 0.15);
  --accent: #c7ccd4;
  --accent-2: #9a8558;
  --secondary: #222226;
  --on-accent: #111113;
  --band: #08080a;
  --radius: 20px;
  --radius-btn: 999px;
  --font-heading: 'Trebuchet MS', 'Segoe UI', sans-serif;
  --font-body: 'Palatino Linotype', Palatino, serif;
  --max: 1200px;
  --section-pad: 104px;
  --header-h: 72px;
}

*,
*::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: 1.0625rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

h1 {
  font-size: clamp(40px, 6.2vw, 68px);
  line-height: 1.1;
}

h2 {
  font-size: clamp(26px, 4.2vw, 42px);
}

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

p {
  margin: 0 0 1.1em;
}

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.85em 1.6em;
  border-radius: var(--radius-btn);
  border: 1px solid var(--border);
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  color: var(--on-accent);
  background: var(--text);
}

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

.btn--ghost:hover {
  background: var(--surface-alt);
  color: var(--text);
}

.btn--block {
  width: 100%;
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
  padding-block: 0.6rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.4px;
  flex-shrink: 0;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.01em;
  padding: 0.35em 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  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);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

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

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

  .nav-links a {
    padding: 0.95rem 1.5rem;
    border-bottom: none;
    border-left: 3px solid transparent;
  }

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

  .site-header {
    position: sticky;
  }

  .nav {
    position: relative;
  }
}

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

.hero__media {
  position: absolute;
  inset: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.55) 0%, rgba(8, 8, 10, 0.78) 55%, rgba(13, 13, 15, 0.95) 100%);
}

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

.hero__content .kicker {
  color: var(--accent);
}

.hero__content h1 {
  margin-bottom: 0.7em;
}

.hero__content p {
  color: var(--text-muted);
  font-size: 1.12rem;
  max-width: 38em;
  margin-inline: auto;
}

.hero__notice {
  margin-top: 1.75rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 42em;
  margin-inline: auto;
  opacity: 0.85;
}

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

.section--tight {
  padding-top: 72px;
}

.section__head {
  max-width: 40em;
  margin-bottom: 3rem;
}

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

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

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

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

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

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

.cat-row {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr auto;
  gap: 1.5rem 2rem;
  align-items: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

.cat-row h2 {
  font-size: clamp(22px, 2.8vw, 28px);
  margin: 0;
}

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

.cat-row .btn {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .cat-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .cat-row .btn {
    justify-self: start;
    margin-top: 0.35rem;
  }
}

.place-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem 3rem;
  align-items: end;
}

.place-grid__text p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.place-grid figure {
  margin: 0;
}

.place-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.place-grid figcaption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
}

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

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 0.25rem;
}

.step__num {
  width: 2.7rem;
  height: 2.7rem;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent-2);
}

.step h3 {
  margin-bottom: 0.55em;
}

.step p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.98rem;
}

@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .steps::before {
    display: none;
  }
}

.arrival-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.arrival-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem 1.75rem;
  overflow: hidden;
  min-height: 200px;
}

.arrival-card__n {
  position: absolute;
  top: 0.4rem;
  right: 1rem;
  font-family: var(--font-heading);
  font-size: clamp(64px, 8vw, 96px);
  font-weight: 600;
  line-height: 1;
  color: var(--text);
  opacity: 0.07;
  letter-spacing: -2px;
  pointer-events: none;
}

.arrival-card h3 {
  position: relative;
  margin-bottom: 0.65em;
}

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

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

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

.page-hero {
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--border);
}

.page-hero p {
  color: var(--text-muted);
  max-width: 42em;
  font-size: 1.08rem;
}

.masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  align-items: start;
  padding: var(--section-pad) 0;
}

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

.venue-card__media {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--secondary);
}

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

.venue-card__body {
  padding: 1.35rem 1.35rem 0.85rem;
  flex: 1;
}

.venue-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.4px;
  margin: 0 0 0.65em;
  line-height: 1.35;
}

.venue-card__title .sep {
  color: var(--text-muted);
  font-weight: 400;
  margin: 0 0.35em;
}

.venue-card__body p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin: 0;
}

.venue-card .btn {
  margin: 0.85rem 1.35rem 1.35rem;
  width: calc(100% - 2.7rem);
}

.venue-card--flip {
  flex-direction: column;
}

.venue-card--flip .venue-card__media {
  order: 2;
}

.venue-card--flip .venue-card__body {
  order: 1;
  padding-top: 1.5rem;
}

.venue-card--flip .btn {
  order: 3;
}

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

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

.catalog-close p {
  color: var(--text-muted);
  max-width: 46em;
}

.water-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
}

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

.water-row__thumb {
  width: 96px;
  height: 96px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--secondary);
}

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

.water-row__text .venue-card__title {
  margin-bottom: 0.4em;
}

.water-row__text p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.98rem;
}

.water-row .btn {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .water-row {
    grid-template-columns: 80px 1fr;
    gap: 1rem 1.25rem;
  }

  .water-row__thumb {
    width: 80px;
    height: 80px;
  }

  .water-row .btn {
    grid-column: 1 / -1;
    width: 100%;
    white-space: normal;
  }
}

.prose {
  max-width: 70ch;
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.prose .page-intro {
  margin-bottom: 3rem;
}

.prose-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

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

.prose-section h2 {
  margin-bottom: 0.9em;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  padding: var(--section-pad) 0;
}

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

.contact-email {
  margin-top: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.contact-email a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.contact-email a:hover {
  color: var(--accent-2);
  border-bottom-color: var(--accent-2);
}

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

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--text);
}

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

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

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

.form-agree {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.form-agree input {
  margin-top: 0.35rem;
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
}

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

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

.form-error {
  display: none;
  color: #d4a0a0;
  font-size: 0.88rem;
  margin-top: 0.4rem;
}

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

.form-status {
  margin-top: 1rem;
  color: #d4a0a0;
  font-size: 0.92rem;
}

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

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

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

.confirm-panel .ref {
  font-family: var(--font-heading);
  color: var(--accent-2);
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.legal-body {
  max-width: 70ch;
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.legal-body h1 {
  margin-bottom: 0.35em;
}

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

.legal-body h2 {
  margin-top: 2.25rem;
  margin-bottom: 0.7em;
  font-size: clamp(22px, 3vw, 30px);
}

.legal-body h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5em;
}

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

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

.cookie-settings-btn {
  display: inline-flex;
  margin-top: 1.5rem;
  background: none;
  border: none;
  padding: 0;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.cookie-settings-btn:hover {
  color: var(--accent-2);
}

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

.sitemap-block > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 42em;
}

.sitemap-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.15rem;
  line-height: 2;
}

.sitemap-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  padding: 0.15em 0.35em;
}

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

.sitemap-links .dot {
  color: var(--text-muted);
  padding: 0 0.35em;
  user-select: none;
}

.site-footer {
  background: var(--band);
  color: var(--text);
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.footer-band {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.footer-band:last-child {
  border-bottom: none;
}

.footer-brand-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem 2.5rem;
  align-items: start;
}

.footer-brand-row .brand {
  margin-bottom: 0.5rem;
}

.footer-blurb {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 52em;
}

.footer-about {
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 52em;
}

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

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

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

.footer-col li {
  margin-bottom: 0.55rem;
}

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

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

.footer-bottom {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.independence-notice {
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 52em;
  margin: 0;
}

.footer-legal-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.1rem;
}

.footer-legal-inline a {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
}

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

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

.footer-requisites {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.75;
  margin: 0;
  max-width: 48em;
}

@media (max-width: 768px) {
  .footer-brand-row {
    grid-template-columns: 1fr;
  }

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

.consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1rem;
  pointer-events: none;
}

.consent__panel {
  pointer-events: auto;
  width: min(100%, 720px);
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.consent__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  letter-spacing: -0.4px;
}

.consent__text {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0 0 1.15rem;
}

.consent__options {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.consent__option {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--text);
}

.consent__option input {
  margin-top: 0.2rem;
}

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.consent__actions .btn {
  font-size: 0.82rem;
  padding: 0.7em 1.2em;
}

.consent[hidden] {
  display: none;
}

@media (max-width: 480px) {
  .consent__actions {
    flex-direction: column;
  }

  .consent__actions .btn {
    width: 100%;
  }
}

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