:root {
  --bg: #0f0e11;
  --surface: #17161b;
  --surface-alt: #201e25;
  --text: #f1eff3;
  --text-muted: #a9a4b0;
  --border: rgba(241, 239, 243, 0.14);
  --accent: #c98d92;
  --accent-2: #7f8fa8;
  --secondary: #242229;
  --on-accent: #131216;
  --deep: #09080b;
  --radius: 10px;
  --radius-btn: 999px;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  --font-body: Cambria, Georgia, serif;
  --max-w: 1400px;
  --section-pad: 136px;
  --header-h: 96px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.8;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 300;
  letter-spacing: -1.4px;
  line-height: 1.15;
}

h1 {
  font-size: clamp(46px, 8vw, 90px);
  line-height: 1;
}

h2 {
  font-size: clamp(30px, 5.2vw, 52px);
}

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

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

.wrap {
  width: min(100% - 3rem, var(--max-w));
  margin-inline: auto;
}

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

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

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  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: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  height: var(--header-h);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  height: var(--header-h);
  width: min(100% - 2.5rem, var(--max-w));
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 1.1rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
}

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

.nav-contact {
  justify-self: end;
}

.nav-contact a {
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

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

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

.hero-quiet {
  background: var(--surface-alt);
  padding: calc(var(--header-h) + 88px) 0 120px;
}

.hero-quiet .accent-rule {
  width: 72px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 1.75rem;
}

.hero-quiet .lead {
  max-width: 62ch;
  color: var(--text-muted);
  margin-top: 1.75rem;
  font-size: 1.125rem;
}

.hero-notice {
  margin-top: 2.5rem;
  max-width: 70ch;
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.85;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

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

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

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.link-arrow::after {
  content: "→";
  transition: transform 0.2s ease;
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

.cat-band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  min-height: 520px;
  background: var(--bg);
}

.cat-band:nth-child(even) {
  background: var(--surface-alt);
}

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

.cat-band:nth-child(even) .cat-band__body {
  order: 1;
}

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

.cat-band__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.5rem clamp(1.5rem, 4vw, 4.5rem);
}

.cat-band__body p {
  color: var(--text-muted);
  margin: 1.25rem 0 2rem;
  max-width: 42ch;
}

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

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

.approach-block h3 {
  margin-bottom: 0.85rem;
  font-size: 1.35rem;
}

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

.approach-block p + p {
  margin-top: 0.75rem;
}

.centered-lead {
  text-align: center;
  max-width: 58ch;
  margin-inline: auto;
}

.centered-lead p {
  color: var(--text-muted);
  margin-top: 1.25rem;
}

.notes-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.note-item {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.note-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
  letter-spacing: -0.5px;
}

.note-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.amenity-lead {
  max-width: 56ch;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

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

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

.amenity-tile h3 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

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

.regions-list {
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
}

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

.region-row dt {
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
  font-size: 1.2rem;
}

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

.mission-quote {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 300;
  letter-spacing: -1.4px;
  line-height: 1.15;
  color: var(--accent);
  max-width: 22ch;
  margin-bottom: 2rem;
}

.mission-body {
  max-width: 62ch;
  color: var(--text-muted);
}

.mission-body p + p {
  margin-top: 1rem;
}

.page-hero {
  padding: calc(var(--header-h) + 72px) 0 64px;
  background: var(--surface-alt);
}

.page-hero p {
  max-width: 58ch;
  color: var(--text-muted);
  margin-top: 1.25rem;
}

.catalog-grid {
  display: grid;
  gap: 2.5rem;
  padding: 88px 0 var(--section-pad);
}

.catalog-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

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

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

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

.card--tall .card__media img {
  aspect-ratio: 3 / 4;
  min-height: 360px;
}

.card__body {
  padding: 2rem 1.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75rem;
}

.card__body h2 {
  font-size: clamp(24px, 2.8vw, 34px);
}

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


.card__desc {
  color: var(--text-muted);
  flex: 1;
}

.card__rule {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 0.25rem 0 0.5rem;
}

.card--past .card__body {
  padding: 2.25rem 2rem 2.5rem;
}

.card--link .card__body {
  padding-bottom: 2rem;
}

.card--masonry {
  border: 1px solid var(--border);
  box-shadow: none;
  background: var(--surface);
  overflow: visible;
}

.card--masonry .card__inner {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card--masonry .card__media {
  order: 0;
}

.card--masonry.is-flip .card__media {
  order: 2;
}

.card--masonry .card__copy {
  order: 1;
}

.card--masonry .card__actions {
  order: 3;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

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

.card--featured {
  min-height: 100%;
}

.card--featured .card__body {
  min-height: 280px;
}

.catalog-close {
  padding: 0 0 var(--section-pad);
  color: var(--text-muted);
  max-width: 62ch;
}

.editorial-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
}

.editorial-band:last-of-type {
  border-bottom: none;
}

.editorial-band:nth-child(even) .editorial-band__aside {
  order: -1;
}

.editorial-band__aside {
  position: sticky;
  top: 2rem;
}

.editorial-band__aside .band-mark {
  font-family: var(--font-heading);
  font-size: clamp(64px, 10vw, 120px);
  line-height: 0.85;
  letter-spacing: -3px;
  color: var(--secondary);
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
}

.editorial-band__aside .band-label {
  margin-top: 1.5rem;
  font-family: var(--font-heading);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--accent-2);
}

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

.editorial-band__copy p {
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.editorial-band__copy p:last-child {
  margin-bottom: 0;
}

.contact-section {
  padding-top: 48px;
}

.contact-intro {
  max-width: 58ch;
  color: var(--text-muted);
  margin: 0 auto 2.5rem;
  text-align: center;
}

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

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

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

.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: 2px;
}

.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: 18px;
  height: 18px;
}

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

.agree-row label a {
  text-decoration: underline;
}

.field-error {
  color: #e8a0a6;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.form-status[aria-live] {
  margin-top: 1rem;
  color: #e8a0a6;
  font-size: 0.95rem;
}

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

.confirm-panel {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.confirm-panel h2 {
  margin-bottom: 1rem;
}

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

.confirm-panel .ref {
  color: var(--accent);
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  margin: 1.25rem 0 2rem;
}

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

.legal-body h1 {
  font-size: clamp(36px, 6vw, 64px);
  margin-bottom: 0.75rem;
}

.legal-body h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin: 2.5rem 0 1rem;
}

.legal-body h3 {
  font-size: 1.25rem;
  margin: 1.75rem 0 0.75rem;
}

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

.legal-body ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

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

.sitemap-col h2 {
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-heading);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
}

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

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

.sitemap-col a {
  color: var(--text-muted);
}

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

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

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
}

.footer-brand {
  max-width: 360px;
}

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

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  max-width: 720px;
  justify-content: flex-end;
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.footer-rule {
  height: 1px;
  background: var(--border);
  margin: 2rem 0 1.5rem;
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.footer-pills span {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 0.35rem 0.9rem;
}

.footer-adults {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 1.25rem;
}

.footer-independence {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.55;
  opacity: 0.9;
  margin-bottom: 1.25rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-bottom small,
.footer-requisites {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.footer-consent button {
  background: none;
  border: none;
  color: var(--accent-2);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.footer-consent {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

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

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

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

.consent-modal {
  background: var(--surface);
  border-radius: var(--radius);
  max-width: 520px;
  width: 100%;
  border-left: 3px solid var(--accent);
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  max-height: calc(100vh - 2.5rem);
  overflow-y: auto;
}

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

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

.consent-modal .consent-policy {
  display: inline-block;
  margin: 0.5rem 0 1.25rem;
  font-size: 0.9rem;
  text-decoration: underline;
}

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

.consent-actions .consent-text-btn {
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

.consent-manage {
  margin-top: 0.5rem;
}

.consent-manage > button {
  background: none;
  border: none;
  color: var(--accent-2);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.5rem 0;
  text-decoration: underline;
}

.consent-cats {
  overflow: hidden;
  max-height: 0;
  transition: max-height 320ms ease;
}

.consent-cats.is-open {
  max-height: 420px;
}

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

.consent-cat:first-child {
  border-top: none;
  margin-top: 0.75rem;
}

.consent-cat label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
  color: var(--text);
  font-size: 0.95rem;
}

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

.consent-cat small {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.25rem;
  margin-left: 1.7rem;
}

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

  .approach-grid,
  .notes-row,
  .amenity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-band {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .cat-band:nth-child(even) .cat-band__media,
  .cat-band:nth-child(even) .cat-band__body {
    order: initial;
  }

  .cat-band__media img {
    min-height: 320px;
    max-height: 420px;
  }

  .editorial-band {
    gap: 2.5rem;
  }
}

.nav-panel {
  display: contents;
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr auto;
    position: relative;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-panel {
    display: none;
  }

  .nav.is-open .nav-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--deep);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    z-index: 110;
  }

  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    width: 100%;
  }

  .nav.is-open .nav-contact {
    display: block;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
    width: 100%;
  }

  .nav.is-open .nav-links a,
  .nav.is-open .nav-contact a {
    font-size: 0.85rem;
  }

  .catalog-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .wrap {
    width: min(100% - 2rem, var(--max-w));
  }

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

  .approach-grid,
  .notes-row,
  .amenity-grid,
  .sitemap-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-quiet {
    padding-top: calc(var(--header-h) + 64px);
  }
}

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

@media (max-width: 480px) {
  .contact-panel {
    padding: 1.5rem;
  }

  .card__body {
    padding: 1.5rem 1.25rem 1.75rem;
  }

  .consent-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .amenity-tile,
  .note-item {
    padding-left: 0;
  }

  .cat-band__body {
    padding: 2.5rem 1.25rem;
  }
}
