:root {
  --bg: #0b1220;
  --surface: #121b2c;
  --surface-alt: #18243a;
  --text: #eef2f8;
  --text-muted: #9fb0c6;
  --border: rgba(238, 242, 248, 0.14);
  --accent: #d9b382;
  --accent-2: #6fa3b8;
  --secondary: #1b2942;
  --on-accent: #111a29;
  --deep: #070d17;
  --radius: 20px;
  --radius-btn: 6px;
  --font-heading: Optima, Candara, "Segoe UI", sans-serif;
  --font-body: Georgia, serif;
  --max: 1180px;
  --section-pad: 108px;
  --header-h: 0px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.78;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

h1 {
  font-size: clamp(40px, 6.5vw, 72px);
  line-height: 1.08;
}

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

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

p {
  margin: 0 0 1.1em;
}

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

ul,
ol {
  margin: 0 0 1.1em;
  padding-left: 1.25em;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-btn);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

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

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

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

.header-brand-row {
  border-bottom: 1px solid var(--border);
}

.header-brand-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 1rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.brand-lockup img {
  width: 40px;
  height: 38px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--surface);
  color: var(--text);
  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;
}

.header-nav-row {
  background: var(--bg);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 52px;
  gap: 1rem;
}

.nav-primary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.15rem 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0.65rem 0;
  grid-column: 2;
}

.nav-primary a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

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

.nav-contact {
  grid-column: 3;
  justify-self: end;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding: 0.35rem 0;
}

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

.independence-notice {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 0.65rem 0;
}

.independence-notice p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-muted);
}

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

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

.section--categories {
  padding: 0;
  border-bottom: 0;
}

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

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

.page-hero__intro {
  max-width: 42rem;
  color: var(--text-muted);
}

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

.hero-letterbox__media {
  width: min(100%, var(--max));
  margin: 0 auto;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: var(--deep);
}

.hero-letterbox__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-copy {
  text-align: center;
  padding: 56px 0 64px;
  border-bottom: 1px solid var(--border);
}

.hero-copy .container {
  max-width: 44rem;
}

.hero-copy h1 {
  margin-bottom: 0.7em;
}

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

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

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

.band:nth-child(even) .band__media {
  order: 2;
}

.band__media {
  min-height: 320px;
  background: var(--deep);
}

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

.band__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--surface);
  border-left: 1px solid var(--border);
}

.band:nth-child(even) .band__body {
  border-left: 0;
  border-right: 1px solid var(--border);
}

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

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.amenity-block {
  padding: 1.75rem 1.5rem;
  background: var(--surface);
  border-right: 1px solid var(--border);
}

.amenity-block:last-child {
  border-right: 0;
}

.amenity-block h3 {
  margin-bottom: 0.75rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--accent);
}

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

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

.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
}

.quote-card blockquote {
  margin: 0 0 1.25rem;
  padding: 0;
  font-style: italic;
  color: var(--text);
}

.quote-card cite {
  display: block;
  font-style: normal;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
  align-items: start;
}

.mission-grid__left {
  padding-right: 3rem;
  border-right: 1px solid var(--border);
}

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

.arrival-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

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

.arrival-card__num {
  position: absolute;
  top: 0.4rem;
  right: 0.85rem;
  font-family: var(--font-heading);
  font-size: clamp(64px, 8vw, 96px);
  line-height: 1;
  color: var(--text-muted);
  opacity: 0.18;
  pointer-events: none;
}

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

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

.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: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg);
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 0.95rem;
}

.step p {
  color: var(--text-muted);
  max-width: 22rem;
  margin-inline: auto;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 3rem;
}

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

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

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

.catalog-row__thumb {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--deep);
}

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

.catalog-row__body {
  text-align: center;
}

.catalog-row__body .kicker {
  margin-bottom: 0.45rem;
}

.catalog-row__body h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  margin-bottom: 0.5rem;
}

.catalog-row__body p {
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 36rem;
}

.catalog-row__action {
  justify-self: end;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.venue-card {
  background: #f3ebe0;
  color: var(--on-accent);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.venue-card--tall .venue-card__media {
  aspect-ratio: 4 / 5;
  min-height: 280px;
}

.venue-card__media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--deep);
}

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

.venue-card__body {
  padding: 1.35rem 1.35rem 0.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.venue-card .kicker {
  color: #7a5e3a;
  margin-bottom: 0.5rem;
}

.venue-card h2 {
  color: var(--on-accent);
  font-size: clamp(22px, 2.6vw, 28px);
  margin-bottom: 0.55rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(17, 26, 41, 0.18);
}

.venue-card p {
  color: #3a4556;
  flex: 1;
  margin-bottom: 1.25rem;
}

.venue-card .btn {
  align-self: flex-start;
}
.venue-card > .btn {
  margin: 0 1.35rem 1.55rem;
  align-self: flex-start;
}

.masonry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

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

.venue-card--flip .venue-card__body {
  order: 1;
  padding-top: 1.55rem;
  padding-bottom: 1.35rem;
}

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

.editorial-lead {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.65;
  max-width: 52rem;
  margin-bottom: 3rem;
  color: var(--text);
}

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

.editorial-block h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  margin-bottom: 1rem;
}

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

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

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

.contact-email {
  margin-bottom: 2rem;
  font-family: var(--font-heading);
}

.contact-form {
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

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

.form-field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

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

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

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

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

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

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

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

.form-actions {
  margin-top: 1.25rem;
}

.confirm-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: left;
}

.confirm-panel h2 {
  font-size: clamp(24px, 3vw, 32px);
}

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

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.sitemap-group h2 {
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

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

.sitemap-group li {
  margin-bottom: 0.55rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--border);
}

.sitemap-group a {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
}

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

.legal-content {
  max-width: 48rem;
}

.legal-content h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  margin-top: 2.25rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
}

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

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

.site-footer {
  background: var(--surface);
  border-top: 2px solid var(--accent);
  padding: 64px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem 2rem;
  margin-bottom: 2.5rem;
}

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

.footer-blurb {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-notice {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

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

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

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

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

.footer-consent-line button {
  background: none;
  border: 0;
  padding: 0;
  color: var(--accent-2);
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.footer-consent-line button:hover {
  color: var(--accent);
}

.footer-requisites {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.85;
}

.reveal {
  opacity: 0;
  transition: opacity 240ms ease;
}

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

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

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

.consent-banner {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1000;
  width: min(380px, calc(100vw - 2rem));
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  padding: 1.25rem 1.35rem 1.35rem;
  color: var(--text);
}

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

.consent-banner h2 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

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

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.1rem;
  margin-top: 1rem;
}

.consent-actions .btn {
  margin: 0;
}

.consent-link {
  background: none;
  border: 0;
  padding: 0;
  color: var(--text-muted);
  font: inherit;
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

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

.consent-policy {
  font-size: inherit;
}

.consent-dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(7, 13, 23, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

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

.consent-dialog {
  width: min(420px, 100%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  max-height: calc(100vh - 2rem);
  overflow: auto;
}

.consent-dialog h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.consent-cat {
  border-top: 1px solid var(--border);
  padding: 0.9rem 0;
}

.consent-cat label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
}

.consent-cat input:disabled {
  cursor: not-allowed;
}

.consent-cat strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.consent-cat span {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.consent-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  align-items: center;
  margin-top: 1.15rem;
}

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

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

  .amenity-block:nth-child(2) {
    border-right: 0;
  }

  .amenity-block:nth-child(1),
  .amenity-block:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

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

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

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

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

  .nav-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0 1rem;
  }

  .nav-primary {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

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

  .nav-contact {
    justify-self: stretch;
    width: 100%;
  }

  .band,
  .band:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .band:nth-child(even) .band__media {
    order: 0;
  }

  .band__body,
  .band:nth-child(even) .band__body {
    border: 0;
    border-top: 1px solid var(--border);
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .mission-grid__left {
    padding-right: 0;
    border-right: 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
  }

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

@media (max-width: 768px) {
  .container {
    width: min(100% - 1.75rem, var(--max));
  }

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

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

  .amenity-block {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

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

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

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

  .steps::before {
    display: none;
  }

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

  .catalog-row {
    grid-template-columns: 96px 1fr;
    gap: 1rem;
  }

  .catalog-row__thumb {
    width: 96px;
    height: 96px;
  }

  .catalog-row__action {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .catalog-row__action .btn {
    width: 100%;
  }

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

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

@media (max-width: 640px) {
  .consent-banner {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    border-radius: var(--radius) var(--radius) 0 0;
  }
}

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

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

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

  .catalog-row__thumb {
    width: 100%;
    height: 180px;
  }

  .catalog-row__body {
    text-align: left;
  }
}

.venue-loc {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 0.55rem !important;
}
.venue-card .venue-loc {
  color: #5a6575;
}
