:root {
  --bg: #141010;
  --surface: #1e1817;
  --surface-alt: #28201e;
  --text: #f4efe9;
  --text-muted: #b6a79c;
  --border: rgba(244, 239, 233, 0.14);
  --accent: #cfa456;
  --accent-2: #8c6a4f;
  --secondary: #2d2422;
  --on-accent: #181312;
  --deep: #0c0908;
  --radius: 0px;
  --radius-btn: 6px;
  --font-heading: 'Lucida Bright', Georgia, serif;
  --font-body: 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
  --max: 1240px;
  --section-pad: 128px;
  --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: 17px;
  line-height: 1.75;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

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

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

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

p {
  margin-bottom: 1.1em;
}

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

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

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

.container--narrow {
  width: min(100% - 48px, 70ch);
  margin-inline: auto;
}

.container--form {
  width: min(100% - 48px, 640px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  transition: background 240ms ease, border-color 240ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-solid {
  background: var(--deep);
  border-bottom-color: var(--border);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

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

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px 28px;
  list-style: none;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 6px 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-mobile-contact {
  display: none;
}

.nav-contact a {
  color: var(--accent);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.06em;
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: var(--radius-btn);
  transition: background 240ms ease, color 240ms ease, box-shadow 240ms ease;
}

.nav-contact a:hover,
.nav-contact a[aria-current="page"] {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

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

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

.independence {
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  padding: 10px 0;
}

.independence p {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 14px 22px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
  transition: background 240ms ease, color 240ms ease, box-shadow 240ms ease;
}

.btn:hover {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

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

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

.page-hero {
  padding: calc(var(--section-pad) * 0.7) 0 64px;
}

.page-hero__inner {
  max-width: 820px;
  margin-inline: 0 auto;
}

.hero {
  padding: calc(var(--section-pad) * 0.85) 0 var(--section-pad);
  text-align: center;
}

.hero__copy {
  max-width: 780px;
  margin: 0 auto 72px;
}

.hero__copy p {
  color: var(--text-muted);
  font-size: 18px;
  margin-top: 24px;
}

.hero-frames {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 28px;
  align-items: end;
  max-width: 980px;
  margin-inline: auto;
}

.hero-frames figure {
  margin: 0;
}

.hero-frames img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero-frames figure:nth-child(1) img {
  height: 280px;
}

.hero-frames figure:nth-child(2) img {
  height: 420px;
}

.hero-frames figure:nth-child(3) img {
  height: 340px;
}

.hero-frames figcaption {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

.section--flush {
  padding-top: 0;
}

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

.page-hero__lede {
  color: var(--text-muted);
  max-width: 40rem;
  margin-top: 20px;
}

.venue-loc {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0;
}

.section__head {
  max-width: 720px;
  margin-bottom: 64px;
  margin-inline: 0;
}

.section__head--center {
  text-align: center;
  margin-inline: auto;
}

.section__head p {
  color: var(--text-muted);
  margin-top: 20px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.category-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}

.category-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.category-card__panel {
  position: relative;
  margin: -120px 28px 0;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 32px 40px;
  transition: box-shadow 240ms ease;
}

.category-card:hover .category-card__panel {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.category-card__panel h3 {
  margin-bottom: 12px;
}

.category-card__panel p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.category-card__panel .link-arrow {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.08em;
}

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

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

.approach-block h3 {
  font-size: 20px;
  margin-bottom: 14px;
}

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

.look-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 56px;
}

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

.look-item__num {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 12px;
}

.look-item h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

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

.testimonials {
  background: var(--surface-alt);
  padding: 72px 56px;
  border: 1px solid var(--border);
}

.testimonials blockquote {
  margin: 0;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.testimonials blockquote:first-child {
  padding-top: 0;
}

.testimonials blockquote:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.testimonials p {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.45;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.testimonials footer {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-body);
  letter-spacing: 0.06em;
}

.photo-strip__intro {
  max-width: 640px;
  margin-bottom: 48px;
  color: var(--text-muted);
}

.mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr 1.05fr;
  grid-template-rows: auto auto;
  gap: 20px;
  align-items: end;
}

.mosaic figure {
  margin: 0;
}

.mosaic img {
  width: 100%;
  object-fit: cover;
}

.mosaic figure:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}

.mosaic figure:nth-child(1) img {
  height: 520px;
}

.mosaic figure:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.mosaic figure:nth-child(2) img {
  height: 240px;
}

.mosaic figure:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.mosaic figure:nth-child(3) img {
  height: 260px;
}

.mosaic figure:nth-child(4) {
  grid-column: 3;
  grid-row: 1 / 3;
}

.mosaic figure:nth-child(4) img {
  height: 480px;
}

.mosaic figure:nth-child(5) {
  grid-column: 4;
  grid-row: 1 / 3;
  align-self: center;
}

.mosaic figure:nth-child(5) img {
  height: 360px;
}

.amenities-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
}

.amenities-list li {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.amenities-list strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.amenities-list span {
  color: var(--text-muted);
  display: block;
}

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

.venue-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  height: 100%;
}

.venue-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.venue-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px 28px 32px;
  gap: 12px;
  align-items: flex-start;
}

.venue-card__body .venue-loc {
  width: 100%;
}

.venue-card__body .kicker {
  margin-bottom: 0;
  color: var(--text-muted);
}

.venue-card__body h2 {
  font-size: clamp(24px, 2.2vw, 30px);
}

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

.venue-card__body p:not(.venue-loc) {
  flex: 1;
}

.venue-card__body .btn {
  align-self: flex-start;
  margin-top: auto;
}

.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: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.catalog-row img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.catalog-row__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
}

.catalog-row__text h2 {
  font-size: clamp(22px, 2vw, 28px);
  margin: 0;
}

.catalog-row__text .meta {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0;
}

.catalog-row__text p {
  color: var(--text-muted);
  margin: 0;
}

.catalog-close {
  margin-top: 72px;
  max-width: 640px;
  color: var(--text-muted);
}

.editorial-lead {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.45;
  letter-spacing: -0.5px;
  max-width: none;
  margin-bottom: 72px;
  color: var(--text);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 56px;
}

.editorial-block h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 20px;
}

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

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

.prose-column section:first-of-type {
  padding-top: 0;
}

.prose-column section:last-of-type {
  border-bottom: 0;
}

.prose-column h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 20px;
}

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

.legal-body {
  padding-bottom: var(--section-pad);
}

.legal-body h1 {
  margin-bottom: 12px;
}

.legal-body > p:first-of-type {
  color: var(--text-muted);
  margin-bottom: 48px;
}

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

.legal-body h3 {
  font-size: 20px;
  margin: 28px 0 12px;
}

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

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

.contact-intro {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.contact-email {
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  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: 1px solid var(--accent);
  border-color: var(--accent);
}

.form-agree {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
}

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

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

.form-error {
  color: #e2a090;
  font-size: 13px;
  margin-top: 8px;
  display: none;
}

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

.form-status {
  color: #e2a090;
  font-size: 14px;
  margin-bottom: 16px;
  display: none;
}

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

.confirm-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 36px;
}

.confirm-panel h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

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

.confirm-panel .btn {
  margin-top: 24px;
}

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

.sitemap-group h2 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text-muted);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

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

.sitemap-group li {
  margin-bottom: 12px;
}

.sitemap-group a {
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
}

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

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding-top: 72px;
  margin-top: 0;
}

.footer-band {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-band:last-of-type {
  border-bottom: 0;
  margin-bottom: 0;
}

.footer-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
}

.footer-brand .brand {
  margin-bottom: 0;
}

.footer-blurb {
  color: var(--text-muted);
  max-width: 560px;
  font-size: 15px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 40px;
  align-items: start;
}

.footer-group h3 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text-muted);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

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

.footer-group li {
  margin-bottom: 10px;
}

.footer-group a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
}

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

.footer-top {
  justify-self: end;
  align-self: start;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.06em;
}

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

.footer-notices {
  text-align: center;
}

.footer-notices .independence-line {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 20px;
  line-height: 1.55;
}

.footer-adult {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-consent {
  display: flex;
  justify-content: center;
}

.footer-consent button {
  background: none;
  border: none;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
}

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

[data-reveal] {
  opacity: 0;
  transition: opacity 240ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
}

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

  [data-reveal] {
    opacity: 1;
    transition: none;
  }
}

.consent {
  position: fixed;
  z-index: 1000;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  pointer-events: none;
}

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

.consent__panel {
  pointer-events: auto;
  background: var(--surface);
  box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.55);
  border-radius: 16px;
  padding: 28px 24px 24px;
  max-width: 100%;
  margin: 0 auto;
}

.consent__copy {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.consent__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 20px;
}

.consent__cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
}

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

.consent__cat input:disabled {
  opacity: 0.7;
}

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.consent__btn {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background 240ms ease, color 240ms ease, border-color 240ms ease;
}

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

.consent__btn--accept:hover {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}

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

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

.consent__manage {
  display: none;
}

.consent.is-collapsed .consent__cats {
  display: none;
}

.consent.is-collapsed .consent__manage {
  display: inline-flex;
}

@media (min-width: 900px) {
  .consent {
    left: auto;
    right: 24px;
    bottom: 24px;
    padding: 0;
    width: 420px;
  }

  .consent__panel {
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  }
}

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

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

  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .mosaic figure:nth-child(1),
  .mosaic figure:nth-child(2),
  .mosaic figure:nth-child(3),
  .mosaic figure:nth-child(4),
  .mosaic figure:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }

  .mosaic figure:nth-child(n) img {
    height: 280px;
  }

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

  .footer-top {
    grid-column: 1 / -1;
    justify-self: end;
  }
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-links,
  .nav-contact {
    display: none;
  }

  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--deep);
    border-bottom: 1px solid var(--border);
    padding: 24px 24px 28px;
    gap: 0;
  }

  .nav.is-open .nav-links a {
    display: block;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav.is-open .nav-mobile-contact {
    display: list-item;
    width: 100%;
  }

  .nav.is-open .nav-contact {
    display: none;
  }

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

  .category-card img {
    height: 400px;
  }

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

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

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

  .hero-frames {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
  }

  .hero-frames figure:nth-child(1) img,
  .hero-frames figure:nth-child(2) img,
  .hero-frames figure:nth-child(3) img {
    height: 240px;
  }
}

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

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

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

  .hero-frames {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    max-width: 100%;
    width: 100%;
  }

  .hero-frames figure {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }

  .hero-frames figure:nth-child(n) img {
    height: 320px;
  }

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

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

  .testimonials {
    padding: 48px 28px;
  }

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

  .catalog-row img {
    width: 96px;
    height: 96px;
  }

  .catalog-row .btn {
    grid-column: 2;
    justify-self: start;
  }

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

  .footer-brand {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

  .mosaic figure:nth-child(n) img {
    height: 260px;
  }
}

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

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

  .category-card__panel {
    margin: -100px 16px 0;
    padding: 28px 22px 32px;
  }

  .category-card img {
    height: 340px;
  }

  .nav-contact a {
    padding: 10px 14px;
  }

  .consent__actions {
    flex-direction: column;
  }

  .consent__btn {
    width: 100%;
    text-align: center;
  }
}
