:root {
  --bg: #141019;
  --surface: #1d1725;
  --surface-alt: #261e31;
  --text: #f2eef6;
  --text-muted: #b0a3bd;
  --border: rgba(242, 238, 246, 0.14);
  --accent: #d8c08e;
  --accent-2: #9b7fc0;
  --secondary: #2b2236;
  --on-accent: #1a1421;
  --deep: #0d0a11;
  --radius: 14px;
  --radius-btn: 6px;
  --font-heading: Rockwell, 'Courier Bold', Georgia, serif;
  --font-body: 'Segoe UI', Arial, sans-serif;
  --max-width: 1240px;
  --section-pad: 128px;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --header-height: 88px;
}

*,
*::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.75;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(44px, 7.5vw, 84px);
  line-height: 1.04;
}

h2 {
  font-size: clamp(30px, 5vw, 50px);
}

p {
  margin-bottom: 1em;
}

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

.kicker {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

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

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

.reveal {
  opacity: 0;
  transform: translateY(20px);
  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;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: var(--surface);
  border-bottom-color: var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

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

.brand-lockup__logo {
  width: 42px;
  height: 40px;
  object-fit: contain;
}

.brand-lockup__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.site-nav__link {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link[aria-current="page"] {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 8px 10px;
  cursor: pointer;
  color: var(--text);
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: transform 0.2s ease;
}

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

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

main {
  padding-top: var(--header-height);
}

.hero {
  padding: calc(var(--section-pad) * 0.75) 0 var(--section-pad);
  background: var(--bg);
}

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

.hero__content h1 {
  margin-bottom: 1.5rem;
}

.hero__notice {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  line-height: 1.6;
}

.hero__visual {
  position: relative;
}

.hero__frame {
  position: relative;
  z-index: 1;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

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

.hero__frame-offset {
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  z-index: 0;
  opacity: 0.4;
}

@media (max-width: 900px) {
  .hero--split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__visual {
    order: -1;
  }
}

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

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

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

.category-card__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.category-card__title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.category-card__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 1.25rem;
}

.category-card__link {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--accent);
}

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

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

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

.testimonials-band__inner {
  max-width: 780px;
  margin: 0 auto;
}

.testimonial {
  padding: 40px 0;
}

.testimonial:first-child {
  padding-top: 0;
}

.testimonial__quote {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: var(--text);
}

.testimonial__attr {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.strip-cta {
  text-align: center;
  padding: 80px 0;
}

.strip-cta__rules {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}

.strip-cta h2 {
  margin-bottom: 1rem;
}

.strip-cta p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-muted);
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}

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

.amenity-item__label {
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 0.35rem;
}

.amenity-item__text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.page-header {
  padding: calc(var(--section-pad) * 0.6) 0 calc(var(--section-pad) * 0.4);
  background: var(--bg);
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header__intro {
  max-width: 720px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

.venue-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 48px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.venue-row--reverse {
  direction: rtl;
}

.venue-row--reverse > * {
  direction: ltr;
}

.venue-row__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.venue-row__title {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 0.35rem;
}

.venue-row__location {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.venue-row__desc {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.venue-row--historic .venue-row__title-wrap {
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent);
  margin-bottom: 1rem;
  display: inline-block;
}

.venue-row--historic .venue-row__desc {
  color: var(--text-muted);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
  text-decoration: none;
}

.venue-row__title .middot,
.flagship-card__heading .middot {
  color: var(--text-muted);
  font-weight: 400;
}

.link-arrow:hover {
  color: var(--accent-2);
}

@media (max-width: 768px) {
  .venue-row,
  .venue-row--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

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

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

.masonry-card--image-bottom {
  flex-direction: column-reverse;
}

.masonry-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.masonry-card__body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.masonry-card__title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.masonry-card__location {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.masonry-card__desc {
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.5rem;
}

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

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

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

.flagship-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.flagship-card__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.flagship-card__heading {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  line-height: 1.35;
}

.flagship-card__location {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}

.flagship-card__heading .middot {
  color: var(--text-muted);
  margin: 0 0.4em;
}

.flagship-card__desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  flex: 1;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--accent);
  color: var(--on-accent);
  border: none;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease, opacity 0.2s ease;
}

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

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

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

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

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

.catalog-close {
  padding: var(--section-pad) 0;
  background: var(--surface-alt);
  text-align: center;
}

.catalog-close p {
  max-width: 640px;
  margin: 0 auto 1rem;
  color: var(--text-muted);
}

.editorial-section {
  padding: 64px 0;
}

.editorial-section:first-of-type {
  padding-top: 0;
}

.editorial-section__num {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.75rem;
  display: block;
}

.editorial-section h2 {
  margin-bottom: 1.5rem;
}

.editorial-section p {
  color: var(--text-muted);
  max-width: 780px;
}

.contact-panel {
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.contact-intro {
  max-width: 560px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--text-muted);
}

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

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

.form-group label {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

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

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

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1.5rem;
}

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

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

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

.form-error {
  font-size: 0.82rem;
  color: #e8a0a0;
  margin-top: 0.35rem;
}

.confirmation-panel {
  text-align: center;
  padding: 20px 0;
}

.confirmation-panel h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

.legal-content {
  max-width: 780px;
}

.legal-content h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 0.5rem;
}

.legal-content h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin: 2rem 0 1rem;
}

.legal-content h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.75rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  margin-bottom: 1em;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1em;
}

.sitemap-links {
  line-height: 2.2;
  color: var(--text-muted);
}

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

.sitemap-links .middot {
  margin: 0 0.5em;
  color: var(--text-muted);
}

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

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

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

.footer-brand-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-blurb {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 560px;
}

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

.footer-about {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 640px;
  margin-bottom: 2rem;
}

.footer-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-group__heading {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.footer-group__list {
  list-style: none;
}

.footer-group__list li {
  margin-bottom: 10px;
}

.footer-group__list a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.footer-bottom__notice {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-bottom__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-requisites {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.75;
  margin-top: 12px;
}

.cookie-settings-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 8px 16px;
  color: var(--text-muted);
  font-size: 0.82rem;
  cursor: pointer;
  font-family: var(--font-body);
}

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

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

  :root {
    --section-pad: 80px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  :root {
    --section-pad: 64px;
  }
}

.consent-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.consent-backdrop[hidden] {
  display: none;
}

.consent-modal {
  background: rgba(29, 23, 37, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 520px;
  width: 100%;
  padding: 32px;
  color: var(--text);
}

.consent-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.consent-modal p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.consent-modal__link {
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}

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

.consent-modal__actions .btn {
  padding: 10px 8px;
  font-size: 0.78rem;
}

.consent-modal__actions .btn--secondary {
  background: var(--secondary);
  color: var(--text);
}

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

.consent-manage-dialog {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
}

.consent-manage-dialog[hidden] {
  display: none;
}

.consent-manage-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 420px;
  width: 100%;
  padding: 28px;
}

.consent-manage-panel h3 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.consent-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.consent-category__label {
  font-size: 0.9rem;
}

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

.consent-category input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.consent-category input:disabled {
  opacity: 0.5;
}

.consent-manage-panel__actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 10px;
}

.consent-manage-panel__actions .btn {
  flex: 1;
}

@media (max-width: 480px) {
  .consent-modal__actions {
    grid-template-columns: 1fr;
  }
}
