:root {
  --bg: #111214;
  --surface: #191b1e;
  --surface-alt: #212429;
  --text: #eceef0;
  --text-muted: #a2a8b0;
  --border: rgba(236, 238, 240, 0.14);
  --accent: #e0a43b;
  --accent-2: #7d8b99;
  --secondary: #262a30;
  --on-accent: #15161a;
  --deep: #0a0b0d;
  --radius: 2px;
  --radius-btn: 999px;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: 'Times New Roman', Times, serif;
  --font-body: Verdana, Geneva, sans-serif;
  --content-max: 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: 16px;
  line-height: 1.8;
  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(--text);
}

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

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

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

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

p {
  margin-bottom: 1.1em;
}

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

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

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1.25rem;
}

.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 var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

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

.site-header__inner {
  width: min(100% - 48px, var(--content-max));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

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

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

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

.brand__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a {
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

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

.site-main {
  padding-top: var(--header-h);
}

.hero-quiet {
  background: var(--surface-alt);
  padding: clamp(80px, 12vw, 160px) 0 clamp(100px, 14vw, 180px);
}

.hero-quiet__rule {
  width: 64px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 1.5rem;
  border: none;
}

.hero-quiet h1 {
  margin-bottom: 1.75rem;
  max-width: 18ch;
}

.hero-quiet__intro {
  max-width: 62ch;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-quiet .independence-line {
  margin-top: 2.5rem;
  max-width: 62ch;
}

.independence-line {
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-muted);
}

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

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

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

.section__head {
  margin-bottom: 4rem;
  max-width: 48ch;
}

.section__head--center {
  text-align: center;
  margin-inline: auto;
  max-width: 56ch;
}

.section__head h2 {
  margin-bottom: 1.25rem;
}

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

.cat-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  background: var(--bg);
}

.cat-band:nth-child(even) {
  direction: rtl;
}

.cat-band:nth-child(even) > * {
  direction: ltr;
}

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

.cat-band__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px);
  background: var(--surface-alt);
}

.cat-band__body h2 {
  margin-bottom: 1.25rem;
}

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

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

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

.approach-block h3 {
  font-size: 1.15rem;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-weight: 300;
}

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

.timeline {
  position: relative;
  max-width: 720px;
  margin-inline: auto;
  padding-left: 2.5rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 1px;
  background: var(--border);
}

.timeline__item {
  position: relative;
  padding-bottom: 3rem;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -2.5rem;
  top: 0.55rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-4px);
}

.timeline__item h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

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

.look-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem 4rem;
}

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

.look-item__num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent);
  letter-spacing: -1px;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.look-item h3 {
  margin-bottom: 0.85rem;
  font-size: 1.35rem;
}

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

.quotes {
  max-width: 820px;
  margin-inline: auto;
}

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

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

.quote:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 300;
  letter-spacing: -0.8px;
  line-height: 1.4;
  margin-bottom: 1.25rem;
}

.quote cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.amenities-list {
  max-width: 900px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4rem;
}

.amenities-list dt {
  font-weight: 700;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  color: var(--text);
}

.amenities-list dd {
  color: var(--text-muted);
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.page-title {
  padding: clamp(72px, 10vw, 120px) 0 4rem;
  background: var(--surface-alt);
}

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

.page-title__intro {
  max-width: 62ch;
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

.catalog-close {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  max-width: 62ch;
  color: var(--text-muted);
}

.quiet-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.quiet-row__thumb {
  width: 96px;
  height: 96px;
  overflow: hidden;
  border-radius: var(--radius);
}

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

.quiet-row__body {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quiet-row__body h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 0.5rem;
}

.quiet-row__meta {
  display: block;
  font-size: 13px;
  color: var(--accent-2);
  margin-bottom: 0.65rem;
  letter-spacing: 0.04em;
}

.quiet-row__body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 52ch;
  margin-inline: auto;
}

.feature-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 0;
  margin-bottom: 3rem;
  background: var(--surface);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  overflow: hidden;
}

.feature-row--flip {
  grid-template-columns: 1fr 40%;
}

.feature-row--flip .feature-row__media {
  order: 2;
}

.feature-row--flip .feature-row__body {
  order: 1;
}

.feature-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.feature-row__body {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface);
}

.feature-row__body h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  margin-bottom: 0.75rem;
}

.feature-row__meta {
  display: block;
  font-size: 13px;
  color: var(--accent-2);
  margin-bottom: 1rem;
}

.feature-row__body p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.city-card {
  background: var(--surface);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 3rem;
}

.city-card__media img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.city-card__body {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.city-card__kicker {
  display: block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.city-card__body h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  margin-bottom: 0.65rem;
}

.city-card__meta {
  display: block;
  font-size: 13px;
  color: var(--accent-2);
  margin-bottom: 1rem;
}

.city-card__body p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 62ch;
}

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

.editorial--narrow {
  max-width: 70ch;
  margin-inline: auto;
}

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

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

.editorial-section:last-child {
  border-bottom: none;
}

.editorial-section h2 {
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 1.5rem;
}

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

.editorial-lead {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 300;
  letter-spacing: -1px;
  line-height: 1.35;
  margin-bottom: 4rem;
  max-width: none;
  color: var(--text);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem 4rem;
}

.editorial-grid .editorial-section {
  padding: 0;
  border-bottom: none;
}

.contact-intro {
  background: var(--surface-alt);
  padding: clamp(72px, 10vw, 120px) 0 5rem;
}

.contact-intro h1 {
  margin-bottom: 1.5rem;
}

.contact-intro p {
  max-width: 62ch;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.contact-form-wrap {
  padding: 5rem 0 var(--section-pad);
}

.contact-form {
  max-width: 900px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 1px solid var(--accent);
  border-color: var(--accent);
}

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

.form-agree input {
  margin-top: 0.35rem;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

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

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

.form-error {
  display: none;
  color: #e07a6b;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

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

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

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

.confirm-panel h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 1.25rem;
}

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

.confirm-panel .btn {
  margin-top: 1.5rem;
}

.legal-body {
  padding: 4rem 0 var(--section-pad);
  max-width: 72ch;
}

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

.legal-body h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  margin-top: 2.75rem;
  margin-bottom: 1rem;
}

.legal-body h3 {
  font-size: 1.15rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

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

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

.legal-body li {
  margin-bottom: 0.5rem;
}

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

.sitemap-item {
  display: grid;
  grid-template-columns: minmax(180px, 320px) 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  align-items: baseline;
}

.sitemap-item:last-child {
  border-bottom: 1px solid var(--border);
}

.sitemap-item a {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text);
  letter-spacing: -0.5px;
}

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

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

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

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

.site-footer__upper {
  width: min(100% - 48px, var(--content-max));
  margin-inline: auto;
  padding: 3.5rem 0 3rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 3rem;
}

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

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-pills span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 0.35rem 0.85rem;
}

.footer-group h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 1.25rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.footer-group h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--accent);
}

.footer-group ul {
  list-style: none;
}

.footer-group li {
  margin-bottom: 0.65rem;
}

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

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

.site-footer__lower {
  background: var(--deep);
  padding: 1.5rem 0;
}

.site-footer__lower-inner {
  width: min(100% - 48px, var(--content-max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-footer__copy {
  font-size: 12px;
  color: var(--text-muted);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  align-items: center;
}

.site-footer__legal a,
.site-footer__legal button {
  font-size: 12px;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
}

.site-footer__legal a:hover,
.site-footer__legal button:hover {
  color: var(--accent);
}

.site-footer__requisites {
  width: min(100% - 48px, var(--content-max));
  margin-inline: auto;
  padding: 0 0 1.5rem;
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0.75;
}

.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 {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
}

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

.consent__inner {
  width: min(100%, 900px);
  margin-inline: auto;
}

.consent__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.consent__text {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.consent__options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  margin-bottom: 1.25rem;
}

.consent__option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text);
}

.consent__option input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

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

.consent__actions .btn {
  font-size: 11px;
  padding: 0.7rem 1.35rem;
}

@media (max-width: 1024px) {
  .site-footer__upper {
    grid-template-columns: 1fr 1fr;
  }

  .cat-band {
    min-height: 0;
  }

  .approach-grid {
    gap: 2rem;
  }
}

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

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 24px 1.75rem;
    gap: 1.1rem;
    display: none;
  }

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

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

  .cat-band__media img {
    min-height: 280px;
  }

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

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

  .site-footer__upper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

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

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

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

  .quiet-row {
    grid-template-columns: 80px 1fr;
    gap: 1.25rem;
  }

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

  .quiet-row__body {
    text-align: left;
    align-items: flex-start;
  }

  .quiet-row__body p {
    margin-inline: 0;
  }

  .quiet-row .btn {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 0.25rem;
  }

  .feature-row,
  .feature-row--flip {
    grid-template-columns: 1fr;
  }

  .feature-row--flip .feature-row__media,
  .feature-row--flip .feature-row__body {
    order: initial;
  }

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

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

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

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

  .site-footer__lower-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .city-card__media img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 480px) {
  .container,
  .site-header__inner,
  .site-footer__upper,
  .site-footer__lower-inner,
  .site-footer__independence,
  .site-footer__requisites {
    width: min(100% - 24px, var(--content-max));
  }

  .brand__name {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
  }

  .hero-quiet {
    padding: 64px 0 88px;
  }

  .consent__actions {
    flex-direction: column;
  }

  .consent__actions .btn {
    width: 100%;
  }

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