:root {
  --bg: #0d0d0f;
  --surface: #151517;
  --surface-alt: #1d1d20;
  --text: #f0f0f2;
  --text-muted: #a8a8ae;
  --border: rgba(240, 240, 242, 0.15);
  --accent: #c7ccd4;
  --accent-2: #9e8a5e;
  --secondary: #222226;
  --on-accent: #111113;
  --deep: #08080a;
  --radius: 2px;
  --radius-card: 18px;
  --font-heading: 'Times New Roman', Times, serif;
  --font-body: Verdana, Geneva, sans-serif;
  --max: 1320px;
  --header-h: 84px;
  --header-h-shrunk: 64px;
  --section-pad: 120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  min-height: 100vh;
}

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(--accent-2);
}

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

h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.06;
}

h2 {
  font-size: clamp(28px, 4.6vw, 44px);
}

h3 {
  font-size: clamp(22px, 2.8vw, 30px);
}

p {
  margin: 0 0 1.1em;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.btn:focus-visible,
.nav-toggle:focus-visible,
.consent__btn:focus-visible,
.consent__manage:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

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

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

.site-header.is-shrunk .header-inner {
  min-height: var(--header-h-shrunk);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  transition: min-height 180ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

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

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

.nav-list a[aria-current="page"] {
  border-bottom: 1px solid var(--accent-2);
  padding-bottom: 2px;
}

.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;
  padding: 0;
  align-items: center;
  justify-content: center;
}

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

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

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

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

.hero {
  padding: calc(var(--section-pad) - 24px) 0 var(--section-pad);
  text-align: center;
  background: var(--bg);
}

.hero-copy {
  max-width: 820px;
  margin: 0 auto 3.5rem;
}

.hero-copy p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-frames {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 1.25rem;
  align-items: end;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-frame {
  margin: 0;
}

.hero-frame img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
}

.hero-frame:nth-child(1) img {
  height: 220px;
}

.hero-frame:nth-child(2) img {
  height: 360px;
}

.hero-frame:nth-child(3) img {
  height: 280px;
}

.hero-frame figcaption {
  margin-top: 0.65rem;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

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

.section-intro {
  max-width: 720px;
  margin-bottom: 3.5rem;
}

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

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

.category-card {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
}

.category-card__panel {
  position: relative;
  z-index: 1;
  margin: 0 1.25rem 1.25rem;
  padding: 1.75rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}

.category-card__panel h3 {
  margin-bottom: 0.5rem;
}

.category-card__panel p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

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

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

.step {
  position: relative;
  text-align: center;
  padding-top: 0.25rem;
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg);
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--accent-2);
  position: relative;
  z-index: 1;
}

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

.step p {
  color: var(--text-muted);
  max-width: 280px;
  margin-inline: auto;
}

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

.photo-strip figure {
  margin: 0;
}

.photo-strip img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
}

.photo-strip figcaption {
  margin-top: 0.65rem;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

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

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

.amenity h3 {
  margin-bottom: 0.85rem;
  color: var(--accent);
}

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

.page-hero {
  padding: 4.5rem 0 3rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.page-hero p {
  max-width: 680px;
  color: var(--text-muted);
}

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

.catalog-close {
  max-width: 720px;
  margin: 4rem auto 0;
  text-align: center;
  color: var(--text-muted);
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.band-stack {
  display: flex;
  flex-direction: column;
}

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

.venue-band:first-child {
  padding-top: 0;
}

.venue-band:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.venue-band__media {
  position: relative;
  margin-bottom: 2rem;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
}

.venue-band__media img {
  width: 100%;
  height: clamp(280px, 42vw, 520px);
  object-fit: cover;
}

.venue-band__name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 1.25rem 1.5rem;
  background: rgba(8, 8, 10, 0.72);
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
}

.venue-band__body {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.venue-band__meta {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

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

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

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

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

.venue-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.75rem 1.5rem 1.5rem;
}

.venue-card__body h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  margin-bottom: 0.4rem;
}

.venue-card__meta {
  color: var(--accent-2);
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
}

.venue-card__body > p {
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.5rem;
}

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

.masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.venue-card--flip {
  display: flex;
  flex-direction: column;
}

.venue-card--flip img {
  order: 2;
}

.venue-card--flip .venue-card__body {
  order: 1;
}

.venue-card--flip > .btn {
  order: 3;
  align-self: flex-start;
  margin: 0 1.5rem 1.5rem;
}

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

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

.editorial-band:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

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

.editorial-band--reverse .editorial-band__copy {
  order: 2;
}

.editorial-band--reverse .editorial-band__aside {
  order: 1;
}

.editorial-band__aside {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--surface);
  padding: 2.5rem 2rem;
  min-height: 100%;
}

.editorial-band__aside .aside-label {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1rem;
}

.editorial-band__aside p {
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.35;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  padding: var(--section-pad) 0;
  align-items: start;
}

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

.contact-email {
  font-size: 1.05rem;
}

.contact-form {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}

.form-field {
  margin-bottom: 1.25rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

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

.form-agree {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.form-agree input {
  margin-top: 0.35rem;
  flex-shrink: 0;
}

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

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

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

.form-status {
  margin-top: 1rem;
  color: #d4a09a;
  font-size: 0.9rem;
}

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

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

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

.legal-content {
  padding: var(--section-pad) 0;
  max-width: 800px;
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.85rem;
}

.legal-content h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.65rem;
}

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

.legal-content ul {
  padding-left: 1.25rem;
}

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

.sitemap-wrap > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 640px;
}

.sitemap-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.15rem;
  line-height: 2;
}

.sitemap-row a {
  color: var(--text);
  text-decoration: none;
  padding: 0.15rem 0.35rem;
}

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

.sitemap-row .dot {
  color: var(--text-muted);
  padding: 0 0.35rem;
  user-select: none;
}

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

.footer-main {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: 3rem;
  width: min(100% - 48px, var(--max));
  margin: 0 auto 3rem;
  padding-bottom: 3rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-group h3 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

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

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

.footer-group a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
}

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

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

.footer-brand p {
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 1rem;
}

.footer-adult {
  font-size: 12px;
  color: var(--text-muted);
  margin: 1.25rem 0;
}

.footer-independence {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

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

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

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

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

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

.footer-bottom-links a:hover,
.footer-bottom-links button:hover {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transition: opacity 240ms ease;
}

.reveal.is-visible {
  opacity: 1;
}

@media (scripting: none) {
  .reveal {
    opacity: 1;
  }
}

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

  .reveal {
    opacity: 1;
    transition: none;
  }
}

.consent-banner {
  display: none;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  color: var(--text);
  position: relative;
  z-index: 200;
}

.consent-banner.is-visible {
  display: block;
}

.consent-banner__inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 0.85rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.consent-banner__copy {
  flex: 1 1 280px;
  min-width: 0;
}

.consent-banner__copy strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.consent-banner__copy p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}

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

.consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.consent__btn {
  appearance: none;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  line-height: 1.2;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

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

.consent__manage {
  appearance: none;
  border: none;
  background: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  cursor: pointer;
  padding: 0.35rem 0.5rem;
}

.consent-panel {
  display: none;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 0 0 1rem;
}

.consent-panel.is-open {
  display: block;
}

.consent-panel__list {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.consent-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
}

.consent-row__text strong {
  display: block;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 0.15rem;
}

.consent-row__text span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.consent-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.consent-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.consent-switch span {
  position: absolute;
  inset: 0;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: background 160ms ease;
}

.consent-switch span::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 3px;
  left: 3px;
  background: var(--text);
  border-radius: 50%;
  transition: transform 160ms ease;
}

.consent-switch input:checked + span {
  background: var(--accent-2);
  border-color: var(--accent-2);
}

.consent-switch input:checked + span::after {
  transform: translateX(20px);
}

.consent-switch input:disabled + span {
  opacity: 0.55;
  cursor: not-allowed;
}

.cookie-settings-inline {
  margin-top: 1.5rem;
}

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

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

  .category-card {
    min-height: 460px;
  }

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

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

  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--deep);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
  }

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

  .nav-list li {
    border-top: 1px solid var(--border);
  }

  .nav-list a {
    display: block;
    padding: 0.9rem 24px;
    white-space: normal;
  }

  .site-header {
    position: sticky;
  }

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

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

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

  .container,
  .header-inner,
  .independence p,
  .footer-main,
  .footer-bottom-inner,
  .consent-banner__inner,
  .consent-panel {
    width: min(100% - 32px, var(--max));
  }

  .hero-frames {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    align-items: flex-end;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }

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

  .hero-frame img,
  .hero-frame:nth-child(1) img,
  .hero-frame:nth-child(2) img,
  .hero-frame:nth-child(3) img {
    height: 260px;
  }

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

  .steps::before {
    display: none;
  }

  .photo-strip {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
  }

  .photo-strip figure {
    flex: 0 0 70%;
    scroll-snap-align: start;
  }

  .photo-strip img {
    height: 220px;
  }

  .editorial-band,
  .editorial-band--reverse .editorial-band__copy,
  .editorial-band--reverse .editorial-band__aside {
    grid-template-columns: 1fr;
    order: unset;
  }

  .editorial-band--reverse .editorial-band__copy,
  .editorial-band--reverse .editorial-band__aside {
    order: unset;
  }

  .category-card {
    min-height: 420px;
  }

  .consent-banner__inner {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .card-grid,
  .category-grid,
  .amenities,
  .masonry {
    grid-template-columns: 1fr;
  }
}

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

  h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .brand span {
    font-size: 1rem;
  }

  .hero-frame {
    flex-basis: 85%;
  }

  .photo-strip figure {
    flex-basis: 82%;
  }

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

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

  .consent-banner__actions {
    width: 100%;
  }

  .venue-card__body {
    padding: 1.35rem 1.15rem 1.25rem;
  }
}
