: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;
  --deep: #151830;
  --radius: 10px;
  --radius-pill: 999px;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: Optima, Candara, "Segoe UI", sans-serif;
  --font-body: Georgia, serif;
  --content-max: 1240px;
  --section-pad: 128px;
  --header-h: 120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  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.2em;
}

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

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

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

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

h3 {
  font-size: clamp(22px, 3vw, 28px);
}

p {
  margin: 0 0 1.1em;
}

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

.kicker {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0 0 1rem;
}

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

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

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

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

.hairline {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  padding: 0.85em 1.6em;
  border-radius: var(--radius-pill);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  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--ghost {
  background: transparent;
  color: var(--accent);
}

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

.btn--text {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.btn--text:hover {
  color: var(--secondary);
  background: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-solid {
  background: var(--surface);
  box-shadow: 0 1px 0 var(--border);
}

.header-inner {
  width: min(100% - 32px, var(--content-max));
  margin-inline: auto;
  padding: 1.25rem 0 0;
}

.brand-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 1rem;
}

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

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.nav-row {
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  padding: 0.85rem 0 1.1rem;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--text-muted);
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

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

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

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

.hero-letterbox {
  width: 100%;
  overflow: hidden;
}

.hero-letterbox img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  text-align: center;
  padding: 3.5rem 0 0;
  max-width: 42rem;
  margin-inline: auto;
}

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

.hero-copy .independence {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 36rem;
  margin: 1.5rem auto 0;
}

.hero-rule {
  margin-top: 2.5rem;
  border: 0;
  border-top: 1px solid var(--border);
}

.category-rows {
  display: flex;
  flex-direction: column;
}

.category-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) 1.6fr auto;
  gap: 1.5rem 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}

.category-row:first-child {
  border-top: 1px solid var(--border);
}

.category-row h3 {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 28px);
}

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

.category-row .row-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
  white-space: nowrap;
}

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

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

.step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

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

.closing-strip {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.closing-strip h2 {
  margin-bottom: 0.75rem;
}

.closing-strip p {
  color: var(--text-muted);
  margin: 0;
}

.regions {
  display: flex;
  flex-direction: column;
}

.region-row {
  display: grid;
  grid-template-columns: minmax(140px, 0.4fr) 1fr;
  gap: 1.5rem 2rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--border);
}

.region-row:first-child {
  border-top: 1px solid var(--border);
}

.region-row dt {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0;
}

.region-row dd {
  margin: 0;
  color: var(--text-muted);
}

.page-title {
  padding: calc(var(--section-pad) * 0.55) 0 3rem;
}

.page-title h1 {
  margin-bottom: 0.75rem;
}

.page-title .lede {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 46rem;
}

.catalog-close {
  padding: 4rem 0 var(--section-pad);
  color: var(--text-muted);
}

.catalog-close p {
  max-width: 40rem;
}

.catalog-close a {
  font-family: var(--font-heading);
  font-weight: 600;
}

.grand-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding-bottom: var(--section-pad);
}

.grand-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 2.5rem 3rem;
  align-items: center;
}

.grand-row:nth-child(even) {
  grid-template-columns: 1fr 40%;
}

.grand-row:nth-child(even) .grand-photo {
  order: 2;
}

.grand-row:nth-child(even) .grand-body {
  order: 1;
}

.grand-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}

.grand-body h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  margin-bottom: 0.5rem;
}

.grand-meta {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.grand-rule {
  width: 3.5rem;
  height: 2px;
  background: var(--accent);
  border: 0;
  margin: 0 0 1.25rem;
}

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

.stay-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding-bottom: var(--section-pad);
}

.stay-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.stay-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: calc(var(--radius) - 4px);
  margin-bottom: 1.25rem;
}

.stay-card h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  margin-bottom: 0.35rem;
}

.stay-card .grand-meta {
  margin-bottom: 0.75rem;
}

.stay-card p {
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.25rem;
}

.stay-card .card-foot {
  border-top: 1px solid var(--border);
  padding-top: 1.1rem;
}

.urban-bands {
  display: flex;
  flex-direction: column;
  padding-bottom: var(--section-pad);
}

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

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

.urban-band img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

.urban-copy {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}

.urban-copy .city-kicker {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.75rem;
}

.urban-copy h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  margin-bottom: 0.5rem;
}

.urban-copy .grand-meta {
  margin-bottom: 1rem;
}

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

.editorial {
  max-width: 70ch;
  margin: 0 auto;
  padding: calc(var(--section-pad) * 0.55) 0 var(--section-pad);
}

.editorial-block {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

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

.editorial-block h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  margin-bottom: 1.25rem;
}

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

.contact-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: calc(var(--section-pad) * 0.55) 0 var(--section-pad);
}

.contact-wrap .lede {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.contact-email {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  display: inline-block;
}

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

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group 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;
  flex-shrink: 0;
  width: auto;
}

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

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

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

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

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

.confirm-panel h2 {
  font-size: 1.75rem;
}

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

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

.legal-body h1 {
  font-size: clamp(36px, 5vw, 56px);
}

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

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

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

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding: calc(var(--section-pad) * 0.4) 0 var(--section-pad);
}

.sitemap-col h2 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 1rem;
}

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

.sitemap-col li {
  margin-bottom: 0.65rem;
}

.sitemap-col a {
  font-size: 1rem;
  text-decoration: none;
  color: var(--text-muted);
}

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

.site-footer {
  background: var(--bg);
  padding-top: 4rem;
}

.footer-top {
  width: min(100% - 48px, var(--content-max));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem 3rem;
  align-items: flex-start;
  padding-bottom: 2.5rem;
}

.footer-brand-block {
  max-width: 28rem;
}

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

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 36rem;
  justify-content: flex-end;
}

.footer-links a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-muted);
}

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

.footer-mid {
  width: min(100% - 48px, var(--content-max));
  margin-inline: auto;
  border-top: 1px solid var(--border);
  padding: 2rem 0 2.5rem;
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-pill {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.4em 0.9em;
}

.footer-mail {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: var(--accent);
}

.footer-mail:hover {
  color: var(--secondary);
}

.footer-bottom {
  background: var(--surface-alt);
  padding: 2rem 0;
  text-align: center;
}

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

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

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.1rem;
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.footer-legal a,
.footer-legal button {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

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

.copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0 0 0.65rem;
}

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

.consent {
  position: fixed;
  z-index: 1000;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 1.25rem 1.25rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.consent.is-visible {
  transform: translateY(0);
}

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

.consent-inner {
  max-width: 420px;
  margin: 0 auto;
}

.consent-copy {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0 0 1.15rem;
  line-height: 1.55;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

.consent-actions .btn {
  flex: 1 1 auto;
  min-width: 120px;
  font-size: 13px;
  padding: 0.7em 1.1em;
}

.consent-manage {
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.consent-policy {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
}

.consent-cats {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

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

.consent-cat-label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
}

.consent-cat-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0.2rem 0 0;
}

.consent-toggle {
  width: 42px;
  height: 24px;
  appearance: none;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}

.consent-toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: transform 0.2s ease, background 0.2s ease;
}

.consent-toggle:checked {
  background: var(--accent);
  border-color: var(--accent);
}

.consent-toggle:checked::after {
  transform: translateX(18px);
  background: var(--on-accent);
}

.consent-toggle:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.consent-back {
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  margin-bottom: 1rem;
}

.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;
}

@media (min-width: 900px) {
  .consent {
    left: auto;
    right: 1.5rem;
    bottom: 1.5rem;
    width: min(400px, calc(100% - 3rem));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transform: translateY(120%);
  }

  .consent.is-visible {
    transform: translateY(0);
  }

  .consent-inner {
    margin: 0;
  }
}

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

@media (max-width: 900px) {
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    padding: 0.85rem 0;
  }

  .brand-row {
    grid-column: 1;
    grid-row: 1;
    justify-content: flex-start;
    padding-bottom: 0;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
  }

  .nav-row {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    border-top: 1px solid var(--border);
    margin-top: 0.85rem;
    padding: 0.75rem 0 0;
  }

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

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }

  .nav-list a {
    display: block;
    padding: 0.55rem 0;
  }
}

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

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

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

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

  .steps::before {
    display: none;
  }

  .region-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

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

  .grand-row:nth-child(even) .grand-photo,
  .grand-row:nth-child(even) .grand-body {
    order: initial;
  }

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

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

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

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

  .urban-band img {
    aspect-ratio: 16 / 10;
  }
}

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

  .wrap,
  .footer-top,
  .footer-mid,
  .footer-bottom-inner,
  .header-inner {
    width: min(100% - 24px, var(--content-max));
  }

  .hero-copy {
    padding-top: 2.5rem;
  }

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

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