:root {
  --bg: #fbfbf9;
  --surface: #ffffff;
  --surface-alt: #f0f0ec;
  --text: #1b1b1a;
  --text-muted: #585856;
  --border: rgba(27, 27, 26, 0.12);
  --accent: #2e2e2c;
  --accent-2: #9a7b4f;
  --secondary: #3d3d3a;
  --on-accent: #fbfbf9;
  --dark: #1b1b1a;
  --radius: 2px;
  --radius-btn: 0px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: Constantia, Georgia, serif;
  --font-body: 'Trebuchet MS', 'Segoe UI', sans-serif;
  --max: 1160px;
  --section-pad: 112px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

h1 {
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.14;
}

h2 {
  font-size: clamp(24px, 4vw, 38px);
}

h3 {
  font-size: clamp(20px, 2.5vw, 26px);
}

p {
  margin: 0 0 1.1em;
}

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

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

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

.band {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--bg), var(--surface-alt));
}

.band--alt {
  background: linear-gradient(180deg, var(--surface-alt), var(--bg));
}

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

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 40;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: 0.4px;
  flex-shrink: 0;
}

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

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

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

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 0.04em;
}

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

.nav-links a[aria-current="page"] {
  box-shadow: inset 0 -1px 0 var(--accent-2);
}

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

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

.btn {
  display: inline-block;
  padding: 12px 22px;
  background: var(--accent);
  color: var(--on-accent);
  text-decoration: none;
  border: 1px solid var(--accent);
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

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

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

.btn--ghost:hover {
  background: var(--surface-alt);
  color: var(--text);
}

.hero-corner {
  position: relative;
  padding: calc(var(--section-pad) * 0.85) 0 calc(var(--section-pad) + 80px);
  background: linear-gradient(180deg, var(--bg), var(--surface-alt));
  overflow: visible;
}

.hero-corner__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.hero-corner h1 {
  margin: 0;
  max-width: 14ch;
}

.hero-corner__intro {
  grid-column: 2;
  margin-top: 2.5rem;
  color: var(--text-muted);
  max-width: 38ch;
}

.hero-corner__photo {
  position: absolute;
  right: max(24px, calc((100% - var(--max)) / 2));
  bottom: -72px;
  width: min(320px, 38vw);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 5;
}

.hero-corner__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-title {
  padding: calc(var(--section-pad) * 0.7) 0 calc(var(--section-pad) * 0.45);
  background: linear-gradient(180deg, var(--bg), var(--surface-alt));
}

.page-title p {
  max-width: 62ch;
  color: var(--text-muted);
}

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

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

.cat-card__img {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.cat-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.cat-card:hover .cat-card__img img {
  transform: scale(1.02);
}

.cat-card__panel {
  position: relative;
  margin: 0 18px 18px;
  padding: 28px 26px;
  background: var(--surface);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  transition: transform 0.25s ease;
}

.cat-card:hover .cat-card__panel {
  transform: translateY(-2px);
}

.cat-card h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  margin-bottom: 0.5em;
}

.cat-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 1.2em;
}

.cat-card a {
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--accent);
  border-bottom: 1px solid var(--accent-2);
}

.arrival-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.arrival-card {
  position: relative;
  border: 1px solid var(--border);
  padding: 36px 32px 32px;
  background: var(--surface);
  overflow: hidden;
  min-height: 200px;
}

.arrival-card__num {
  position: absolute;
  top: 12px;
  right: 18px;
  font-family: var(--font-heading);
  font-size: clamp(64px, 8vw, 96px);
  line-height: 1;
  color: var(--border);
  pointer-events: none;
}

.arrival-card h3 {
  position: relative;
  margin-bottom: 0.6em;
}

.arrival-card p {
  position: relative;
  color: var(--text-muted);
  font-size: 15px;
}

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

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

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 8px;
}

.step__num {
  width: 36px;
  height: 36px;
  margin: 0 auto 20px;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--text-muted);
  border-radius: 50%;
}

.step h3 {
  margin-bottom: 0.5em;
}

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

.region-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.region-tile {
  border: 1px solid var(--border);
  padding: 28px 24px;
  background: var(--surface);
}

.region-tile h3 {
  font-size: 20px;
  margin-bottom: 0.45em;
}

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

.pull-quote {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.pull-quote blockquote {
  margin: 0 0 1.4rem;
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.35;
  color: var(--accent);
  font-weight: 400;
  letter-spacing: 0.4px;
}

.pull-quote p {
  color: var(--text-muted);
  font-size: 16px;
}

.masonry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 32px;
}

.masonry .venue-card:nth-child(even) {
  margin-top: 48px;
}

.venue-card {
  background: var(--surface);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
}

.venue-card:hover {
  transform: translateY(-2px);
}

.venue-card__media {
  overflow: hidden;
}

.venue-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.venue-card__body {
  padding: 32px 28px 36px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.venue-card__body h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  margin: 0;
}

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

.venue-card__body p:not(.venue-card__meta) {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
}

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

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

.heritage-list {
  display: flex;
  flex-direction: column;
}

.heritage-band {
  padding: 0 0 64px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 64px;
}

.heritage-band:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.heritage-band__media {
  overflow: hidden;
  margin-bottom: 36px;
}

.heritage-band__media img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.heritage-band__body {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  padding: 0 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.heritage-band__body h2 {
  margin: 0;
}

.heritage-band__body .venue-card__meta {
  margin: 0;
}

.heritage-band__body p:not(.venue-card__meta) {
  margin: 0;
  color: var(--text-muted);
}

.heritage-band__body .btn {
  margin-top: 8px;
}

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

.row-card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  transition: transform 0.25s ease;
}

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

.row-card:hover {
  transform: translateY(-2px);
}

.row-card__thumb {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.row-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.row-card:hover .row-card__thumb img {
  transform: scale(1.02);
}

.row-card__text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.row-card__text .venue-card__meta {
  margin: 0;
}

.row-card__text h2 {
  font-size: clamp(20px, 2.2vw, 26px);
  margin: 0;
}

.row-card__text p:not(.venue-card__meta) {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 52ch;
  margin: 0;
}

.catalog-close {
  padding: 64px 0 var(--section-pad);
  text-align: center;
}

.catalog-close p {
  max-width: 56ch;
  margin-inline: auto;
  color: var(--text-muted);
}

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

.editorial-band:first-of-type {
  border-top: none;
  padding-top: 0;
}

.editorial-band:nth-child(even) .editorial-band__copy {
  order: 2;
}

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

.editorial-band__aside {
  border-left: 1px solid var(--border);
  padding: 12px 0 12px 32px;
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-self: stretch;
  display: flex;
  align-items: flex-start;
}

.editorial-band:nth-child(even) .editorial-band__aside {
  border-left: none;
  border-right: 1px solid var(--border);
  padding: 12px 32px 12px 0;
  text-align: right;
  justify-content: flex-end;
}

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

.editorial-band__copy h2 {
  margin-bottom: 0.8em;
}

.contact-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 0 var(--section-pad);
}

.contact-wrap .page-title-inline {
  text-align: center;
  padding: calc(var(--section-pad) * 0.7) 0 32px;
}

.contact-wrap .page-title-inline p {
  color: var(--text-muted);
}

.contact-email {
  text-align: center;
  margin-bottom: 36px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: 0.04em;
}

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

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

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

.form-agree input {
  margin-top: 6px;
  flex-shrink: 0;
}

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

.form-error {
  color: #8a2e2e;
  font-size: 13px;
  margin: 6px 0 16px;
  min-height: 1.2em;
}

.form-error[hidden] {
  display: none;
}

.confirm-panel {
  text-align: center;
  padding: 48px 28px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.confirm-panel h2 {
  margin-bottom: 0.6em;
}

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

.confirm-actions {
  margin-top: 1.5rem;
}

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

.legal-body h1 {
  margin-top: calc(var(--section-pad) * 0.55);
}

.legal-body h2 {
  margin-top: 2em;
  font-size: clamp(20px, 3vw, 28px);
}

.legal-body h3 {
  margin-top: 1.4em;
}

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

.sitemap-body {
  padding: calc(var(--section-pad) * 0.55) 0 var(--section-pad);
}

.sitemap-body p.lead {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.sitemap-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  align-items: center;
  line-height: 2;
}

.sitemap-links a {
  text-decoration: none;
  color: var(--text);
  padding: 0 4px;
}

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

.sitemap-links .sep {
  color: var(--text-muted);
  padding: 0 10px;
  user-select: none;
}

.site-footer {
  background: var(--dark);
  color: var(--on-accent);
  padding: 72px 0 0;
}

.site-footer a {
  color: rgba(251, 251, 249, 0.78);
  text-decoration: none;
}

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

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-group__title {
  display: block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(251, 251, 249, 0.55);
  margin-bottom: 12px;
}

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

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

.footer-group a {
  font-size: 14px;
}

.footer-brand .brand {
  color: var(--on-accent);
  margin-bottom: 18px;
}

.footer-brand .brand img {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer-brand p {
  color: rgba(251, 251, 249, 0.7);
  font-size: 15px;
  max-width: 52ch;
  margin-bottom: 1.2em;
}

.footer-regions {
  color: rgba(251, 251, 249, 0.55);
  font-size: 13px;
  letter-spacing: 0.02em;
  margin: 20px 0;
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 22px;
}

.footer-pills span {
  border: 1px solid rgba(251, 251, 249, 0.22);
  padding: 4px 12px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(251, 251, 249, 0.7);
}

.footer-notice {
  font-size: 12px;
  color: rgba(251, 251, 249, 0.55);
  line-height: 1.55;
  max-width: 62ch;
  margin-bottom: 16px;
}

.footer-requisites {
  font-size: 12px;
  color: rgba(251, 251, 249, 0.45);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(251, 251, 249, 0.12);
  padding: 22px 0 28px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(251, 251, 249, 0.55);
}

.footer-bottom .cookie-settings-wrap {
  margin-top: 10px;
}

.footer-bottom button {
  background: none;
  border: none;
  color: rgba(251, 251, 249, 0.7);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
}

.footer-bottom button:hover {
  color: var(--on-accent);
}

.cookie-settings-btn {
  background: none;
  border: none;
  color: var(--accent-2);
  font-family: var(--font-body);
  font-size: 15px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
}

.cookie-settings-btn:hover {
  color: var(--accent);
}

.consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  padding: 22px 0;
}

.consent[hidden] {
  display: none;
}

.consent__inner {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  display: grid;
  gap: 18px;
}

.consent__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 72ch;
}

.consent__text strong {
  color: var(--text);
  font-weight: 600;
}

.consent__options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
}

.consent__options label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
}

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

.consent__actions .btn {
  font-size: 13px;
  padding: 10px 16px;
}

.section-head {
  margin-bottom: 48px;
  max-width: 58ch;
}

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

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

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

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

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

  .hero-corner__intro {
    grid-column: 1;
    margin-top: 0;
  }

  .hero-corner {
    padding-bottom: calc(var(--section-pad) + 120px);
  }

  .region-tiles {
    grid-template-columns: 1fr 1fr;
  }

  .masonry {
    gap: 32px 24px;
  }

  .editorial-band {
    gap: 36px;
  }
}

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

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 0;
    z-index: 50;
  }

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

  .nav-links li {
    border-bottom: 1px solid var(--border);
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
  }
}

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

  .wrap,
  .nav-bar,
  .independence p,
  .footer-grid,
  .consent__inner {
    width: min(100% - 32px, var(--max));
  }

  .arrival-grid,
  .steps,
  .masonry,
  .footer-grid,
  .editorial-band {
    grid-template-columns: 1fr;
  }

  .masonry .venue-card:nth-child(even) {
    margin-top: 0;
  }

  .steps::before {
    display: none;
  }

  .row-card {
    grid-template-columns: 96px 1fr;
    gap: 18px;
  }

  .row-card__thumb {
    width: 96px;
    height: 96px;
  }

  .row-card .btn {
    grid-column: 2;
    justify-self: center;
  }

  .row-card__text {
    text-align: left;
    align-items: flex-start;
  }

  .row-card__text p:not(.venue-card__meta) {
    margin-inline: 0;
  }

  .editorial-band:nth-child(even) .editorial-band__copy,
  .editorial-band:nth-child(even) .editorial-band__aside {
    order: initial;
  }

  .editorial-band__aside,
  .editorial-band:nth-child(even) .editorial-band__aside {
    border: none;
    padding: 0;
    text-align: left;
    margin-bottom: -24px;
  }

  .hero-corner__photo {
    width: min(240px, 55vw);
    bottom: -48px;
    right: 16px;
  }

  .heritage-band__media img {
    aspect-ratio: 16 / 9;
  }
}

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

  .region-tiles {
    grid-template-columns: 1fr;
  }

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

  .row-card {
    grid-template-columns: 1fr;
  }

  .row-card__thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .row-card .btn {
    grid-column: 1;
    justify-self: start;
  }

  .consent__actions {
    flex-direction: column;
  }

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

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

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