: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: 4px;
  --radius-pill: 999px;
  --font-head: Constantia, Georgia, serif;
  --font-body: 'Trebuchet MS', 'Segoe UI', sans-serif;
  --content-w: 1400px;
  --section-pad: 136px;
  --header-h: 96px;
  --header-h-shrink: 64px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 300;
  letter-spacing: -1.4px;
  line-height: 1.08;
  margin: 0 0 0.5em;
  color: var(--text);
}

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

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

h3 {
  font-size: clamp(21px, 2.4vw, 28px);
  letter-spacing: -1.4px;
}

p {
  margin: 0 0 1.1em;
}

.container {
  width: 100%;
  max-width: var(--content-w);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 56px);
  padding-right: clamp(20px, 4vw, 56px);
}

.kicker {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 22px;
  display: block;
}

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

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

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

.lead {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
  color: var(--text);
  max-width: 62ch;
}

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

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  text-align: center;
  line-height: 1.2;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}

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

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.linklike {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--accent);
  cursor: pointer;
  letter-spacing: 0.02em;
}

.linklike:hover {
  color: var(--text);
  text-decoration: underline;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: transparent;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-stuck {
  background: rgba(17, 18, 20, 0.86);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: var(--header-h);
  transition: min-height 0.35s var(--ease);
}

.site-header.is-stuck .site-header__inner {
  min-height: var(--header-h-shrink);
}

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

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

.brand-lockup__logo {
  width: 40px;
  height: auto;
  border-radius: var(--radius);
}

.brand-lockup__name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(14px, 1.7vw, 30px);
  margin: 0;
  padding: 0;
}

.site-nav__list a {
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
}

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

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

.site-nav__list a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--accent);
}

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

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.independence {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.independence p {
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  margin: 0;
  padding: 12px 0;
  line-height: 1.6;
}

.page-hero {
  padding: clamp(72px, 9vw, 136px) 0 clamp(48px, 6vw, 88px);
}

.page-hero h1 {
  margin-bottom: 0.35em;
}

.page-hero .lead {
  color: var(--text-muted);
}

.hero {
  background: var(--surface-alt);
  padding: clamp(96px, 13vw, 180px) 0;
}

.hero__rule {
  width: 64px;
  height: 2px;
  background: var(--accent);
  border: 0;
  margin: 0 0 34px;
}

.hero h1 {
  max-width: 15ch;
  margin-bottom: 0.3em;
  line-height: 1.0;
}

.hero .lead {
  color: var(--text-muted);
  font-size: clamp(17px, 1.6vw, 20px);
}

.cat-bands {
  display: flex;
  flex-direction: column;
  gap: clamp(64px, 8vw, 120px);
}

.cat-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.cat-band__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
}

.cat-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.cat-band:hover .cat-band__media img {
  transform: scale(1.02);
}

.cat-band--flip .cat-band__media {
  order: 2;
}

.cat-band__text h3 {
  font-size: clamp(26px, 3.4vw, 40px);
  margin-bottom: 0.4em;
}

.cat-band__text p {
  color: var(--text-muted);
  max-width: 52ch;
  margin-bottom: 28px;
}

.cat-band__link {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.cat-band__link:hover {
  border-bottom-color: var(--accent);
  color: var(--text);
}

.look-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px) clamp(40px, 6vw, 96px);
  margin-top: 56px;
}

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

.look-item__num {
  font-family: var(--font-head);
  font-size: 15px;
  letter-spacing: 0.2em;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.look-item h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  margin-bottom: 0.5em;
}

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

.amenities-lead {
  max-width: 62ch;
  color: var(--text-muted);
  margin-bottom: 56px;
}

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

.amenity-tile {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  background: var(--surface);
}

.amenity-tile h3 {
  font-size: 19px;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
}

.amenity-tile p {
  font-size: 14.5px;
  color: var(--text-muted);
  margin: 0;
}

.regions-list {
  margin-top: 48px;
}

.region-row {
  display: grid;
  grid-template-columns: minmax(180px, 320px) 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 26px 0;
  border-top: 1px solid var(--border);
}

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

.region-row__name {
  font-family: var(--font-head);
  font-size: clamp(19px, 2vw, 24px);
  letter-spacing: -0.3px;
}

.region-row__note {
  color: var(--text-muted);
  font-size: 15.5px;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  margin-top: 56px;
}

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

.testimonial blockquote {
  margin: 0 0 20px;
  font-family: var(--font-head);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.3px;
  color: var(--text);
}

.testimonial figcaption {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.catalog-rows {
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 7vw, 96px);
  margin-top: 72px;
}

.catalog-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.catalog-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.42);
}

.catalog-row__media {
  overflow: hidden;
  min-height: 320px;
}

.catalog-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.catalog-row:hover .catalog-row__media img {
  transform: scale(1.02);
}

.catalog-row__body {
  padding: clamp(32px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.catalog-row__loc {
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 14px;
}

.catalog-row__body h3 {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 0.4em;
}

.catalog-row__body > p {
  color: var(--text-muted);
  max-width: 54ch;
  margin-bottom: 32px;
}

.flag-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 48px);
  margin-top: 72px;
}

.flag-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(20px, 2.4vw, 32px);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.flag-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.42);
}

.flag-card__media {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3 / 2;
  margin-bottom: 28px;
}

.flag-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.flag-card:hover .flag-card__media img {
  transform: scale(1.02);
}

.flag-card__loc {
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 12px;
}

.flag-card h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin-bottom: 0.4em;
}

.flag-card__desc {
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 0;
}

.flag-card__foot {
  border-top: 1px solid var(--border);
  margin-top: 28px;
  padding-top: 24px;
}

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

.prose-band__block {
  max-width: 78ch;
  padding: clamp(48px, 6vw, 96px) 0;
  border-top: 1px solid var(--border);
}

.prose-band__block:first-child {
  border-top: 0;
  padding-top: 0;
}

.prose-band__kicker {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 18px;
}

.prose-band__block h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 0.5em;
}

.prose-band__block p {
  color: var(--text-muted);
  max-width: 70ch;
}

.responsible-block {
  max-width: 78ch;
  margin-bottom: clamp(72px, 9vw, 128px);
}

.responsible-block:last-child {
  margin-bottom: 0;
}

.responsible-block__num {
  font-family: var(--font-head);
  font-size: 15px;
  letter-spacing: 0.24em;
  color: var(--accent);
  display: block;
  margin-bottom: 18px;
}

.responsible-block h2 {
  font-size: clamp(26px, 3.6vw, 40px);
  margin-bottom: 0.5em;
}

.responsible-block p {
  color: var(--text-muted);
  max-width: 70ch;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 112px);
  align-items: start;
}

.contact-intro p {
  color: var(--text-muted);
  max-width: 46ch;
}

.contact-intro__email {
  display: inline-block;
  margin-top: 28px;
  font-family: var(--font-head);
  font-size: clamp(19px, 2vw, 24px);
  letter-spacing: -0.2px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.field input[type="text"],
.field input[type="email"],
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  width: 100%;
  transition: border-color 0.25s var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

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

.field--agree {
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
}

.field--agree input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.field--agree label {
  font-size: 14.5px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-muted);
  line-height: 1.6;
}

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

.form-error {
  font-size: 13.5px;
  color: #e08b6a;
  margin: -14px 0 0;
}

.form-status {
  font-size: 13.5px;
  margin: 0;
}

.form-status.is-error {
  color: #e08b6a;
}

.contact-confirmation {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: clamp(36px, 5vw, 64px);
}

.contact-confirmation h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 0.4em;
}

.contact-confirmation p {
  color: var(--text-muted);
  max-width: 52ch;
}

.contact-confirmation .ref {
  font-family: var(--font-head);
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--accent);
  display: inline-block;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 18px;
  margin: 8px 0 24px;
}

.legal-body {
  max-width: 78ch;
}

.legal-body h1 {
  margin-bottom: 0.3em;
}

.legal-body .legal-date {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 48px;
}

.legal-body h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  margin-top: 56px;
  margin-bottom: 0.6em;
  letter-spacing: -0.6px;
}

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

.legal-body a {
  color: var(--accent);
}

.sitemap-row {
  margin-top: 48px;
  line-height: 2.6;
  font-size: clamp(15px, 1.6vw, 18px);
}

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

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

.sitemap-row .dot {
  color: var(--accent-2);
  margin: 0 14px;
  user-select: none;
}

.site-footer {
  background: var(--surface-alt);
  padding: clamp(56px, 7vw, 96px) 0 48px;
}

.site-footer__top {
  display: flex;
  justify-content: space-between;
  gap: clamp(40px, 6vw, 96px);
  flex-wrap: wrap;
}

.site-footer__brand {
  max-width: 380px;
}

.site-footer__brand .brand-lockup__name {
  font-size: 19px;
}

.site-footer__blurb {
  color: var(--text-muted);
  font-size: 14.5px;
  margin-top: 20px;
  margin-bottom: 0;
  line-height: 1.7;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 0;
  max-width: 640px;
}

.site-footer__grouphead {
  width: 100%;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 18px;
  margin-bottom: 4px;
}

.site-footer__grouphead:first-child {
  margin-top: 0;
}

.site-footer__links a {
  font-size: 14.5px;
  color: var(--text);
  letter-spacing: 0.02em;
}

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

.site-footer__links .sep {
  color: var(--accent-2);
  margin: 0 12px;
  user-select: none;
}

.site-footer__rule {
  border: 0;
  border-top: 1px solid var(--border);
  margin: clamp(40px, 5vw, 64px) 0 32px;
}

.site-footer__notice {
  font-size: 12.5px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  max-width: 88ch;
  margin: 0 0 14px;
  line-height: 1.6;
}

.site-footer__copyright {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 10px;
}

.site-footer__consent {
  margin: 0;
}

.site-footer__consent .linklike {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.site-footer__consent .linklike:hover {
  color: var(--text);
}

.consent {
  background: var(--deep);
  color: var(--text);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 70;
}

.consent[hidden] {
  display: none;
}

.consent__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 40px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.consent__copy {
  flex: 1 1 380px;
  min-width: 280px;
}

.consent__headline {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.3px;
  margin: 0 0 4px;
}

.consent__text {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.consent__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  border: 0;
  padding: 0;
  margin: 0;
}

.consent__cat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
}

.consent__cat input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  margin: 0;
}

.consent__cat--locked {
  color: var(--text-muted);
  cursor: not-allowed;
}

.consent__cat--locked input {
  accent-color: var(--accent-2);
}

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
}

.consent__actions .btn {
  padding: 11px 22px;
  font-size: 13px;
}

.consent__manage {
  background: none;
  border: none;
  padding: 8px 2px;
  font: inherit;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  cursor: pointer;
}

.consent__manage:hover {
  color: var(--text);
  text-decoration: underline;
}

.consent__link {
  font-size: 13px;
  color: var(--text-muted);
}

.consent__link:hover {
  color: var(--accent);
  text-decoration: underline;
}


.btn--reject {
  background: var(--secondary);
  border-color: rgba(236, 238, 240, 0.35);
  color: var(--text);
}

.btn--reject:hover {
  border-color: var(--text);
  color: var(--text);
}

.prose-side {
  max-width: 52%;
}

.prose-side--left {
  margin-right: auto;
}

.prose-side--right {
  margin-left: auto;
}

@media (max-width: 1024px) {
  .prose-side {
    max-width: 66%;
  }
}

@media (max-width: 768px) {
  .prose-side {
    max-width: 100%;
  }
}

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

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

  .testimonials {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cat-band {
    gap: 40px;
  }
}

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

  .site-nav__list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--deep);
    border-bottom: 1px solid var(--border);
    padding: 8px 0 16px;
    display: none;
  }

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

  .site-nav__list li {
    width: 100%;
  }

  .site-nav__list a {
    display: block;
    width: 100%;
    padding: 13px clamp(20px, 4vw, 56px);
    font-size: 14px;
  }

  .site-nav__list a[aria-current="page"]::after {
    display: none;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

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

  h1 {
    letter-spacing: -0.8px;
  }

  h2 {
    letter-spacing: -0.8px;
  }

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

  .cat-band--flip .cat-band__media,
  .catalog-row--flip .catalog-row__media {
    order: 0;
  }

  .catalog-row__media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

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

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

  .region-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer__top {
    flex-direction: column;
  }

  .site-footer__brand {
    max-width: none;
  }
}

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

  body {
    font-size: 16px;
  }

  .brand-lockup__name {
    font-size: 17px;
  }

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

  .consent__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .consent__actions {
    width: 100%;
  }

  .consent__actions .btn {
    flex: 1 1 auto;
  }

  .sitemap-row .dot {
    margin: 0 8px;
  }
}
