:root {
  --bg: #120e0e;
  --surface: #1b1414;
  --surface-alt: #241a1a;
  --text: #f3ece9;
  --text-muted: #b4a29d;
  --border: rgba(243, 236, 233, 0.14);
  --accent: #bf8f4f;
  --accent-2: #9d5a4e;
  --secondary: #2a1e1e;
  --on-accent: #171111;
  --deep: #0a0707;
  --radius: 14px;
  --radius-btn: 2px;
  --font-heading: Didot, "Bodoni MT", Georgia, serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 1240px;
  --section-pad: 128px;
  --header-h: 88px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-size: 17px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

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

ul,
ol {
  list-style: none;
}

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, 3vw, 28px);
}

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

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

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

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

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

.btn--block {
  width: 100%;
}

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

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

.text-link {
  color: var(--accent);
  border-bottom: 1px solid transparent;
  font-size: 15px;
  letter-spacing: 0.04em;
}

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

.notice-strip {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
  padding: 8px 24px;
  text-align: center;
}

.notice-strip p {
  font-size: 11px;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 960px;
  margin-inline: auto;
}

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

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

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

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

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

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

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px 22px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text-muted);
  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-contact-mobile {
  display: none;
}

.nav-contact a {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: var(--radius-btn);
}

.nav-contact a:hover,
.nav-contact a[aria-current="page"] {
  border-color: var(--accent);
  color: var(--text);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.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);
}

.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid;
  align-items: stretch;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0 0 0 28%;
  z-index: 0;
}

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

.hero__panel {
  position: relative;
  z-index: 1;
  width: min(520px, 92%);
  margin: 10vh 0 10vh max(24px, calc((100% - var(--max)) / 2));
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(36px, 5vw, 64px);
}

.hero__panel p {
  margin-top: 1.25rem;
  max-width: 38ch;
  font-size: 17px;
}

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

.section--tight {
  padding: 96px 0;
}

.section__head {
  max-width: 640px;
  margin-bottom: 64px;
}

.section__head p {
  margin-top: 1rem;
}

.page-hero {
  padding: 96px 0 64px;
  border-bottom: 1px solid var(--border);
}

.page-hero .section__head {
  margin-bottom: 0;
  max-width: 720px;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

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

.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.category-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius) - 4px);
}

.category-card h3 {
  font-size: 28px;
}

.category-card p {
  flex: 1;
  font-size: 15px;
}

.closing-cta {
  background: var(--deep);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.closing-cta .container {
  max-width: 640px;
}

.closing-cta h2 {
  margin-bottom: 1.25rem;
}

.closing-cta p + p {
  margin-top: 1rem;
}

.closing-cta .text-link {
  display: inline-block;
  margin-top: 2rem;
}

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

.arrival-note {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.arrival-note h3 {
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 500;
}

.arrival-note p {
  font-size: 15px;
}

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

.quote-band blockquote {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.5vw, 46px);
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--accent);
  font-weight: 500;
}

.quote-band p {
  margin-top: 1.5rem;
  font-size: 16px;
}

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

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

.region-tile h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.region-tile p {
  font-size: 15px;
}

.catalog-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.band-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 28px;
}

.band-card + .band-card {
  margin-top: 48px;
}

.band-card__photo {
  margin-bottom: 36px;
}

.band-card__photo img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: calc(var(--radius) - 4px);
}

.band-card__body {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.band-card__body h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 8px;
}

.band-card__meta {
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.band-card__body p {
  margin-bottom: 1.5rem;
}

.band-card__action {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-top: 8px;
}

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

.urban-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.urban-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: calc(var(--radius) - 4px);
  margin-bottom: 20px;
}

.urban-card h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 4px;
}

.urban-card__title-line {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  flex: 0 0 auto;
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -1px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.2;
}

.urban-card__title-line span {
  display: block;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1.4;
}

.urban-card > p:not(.urban-card__title-line) {
  flex: 1;
  margin-bottom: 24px;
  font-size: 16px;
}

.discovery-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.discovery-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 40px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

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

.discovery-row--flip .discovery-row__photo {
  order: 2;
}

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

.discovery-row__photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: calc(var(--radius) - 4px);
}

.discovery-row__body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.discovery-row__title-line {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  flex: 0 0 auto;
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -1px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.2;
}

.discovery-row__title-line span {
  display: block;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1.4;
}

.discovery-row__body > p:not(.discovery-row__title-line) {
  flex: 1;
  margin-bottom: 24px;
}

.catalog-close {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  max-width: 640px;
}

.catalog-close p {
  margin-bottom: 1rem;
}

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

.editorial-band:last-of-type {
  border-bottom: none;
}

.editorial-band--flip .editorial-band__visual {
  order: -1;
}

.editorial-band__visual {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 36px;
  background: var(--surface);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.editorial-band__visual .mark {
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 96px);
  color: var(--accent);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.editorial-band__visual p {
  font-size: 15px;
  max-width: 28ch;
}

.editorial-band__copy h2 {
  margin-bottom: 1.5rem;
}

.editorial-band__copy p {
  margin-bottom: 1.15rem;
}

.editorial-band__copy p:last-child {
  margin-bottom: 0;
}

.prose-column {
  max-width: 70ch;
  margin-inline: auto;
  padding: 96px 0 var(--section-pad);
}

.prose-column .page-intro {
  margin-bottom: 64px;
}

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

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

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

.prose-section p {
  margin-bottom: 1.15rem;
}

.prose-section p:last-child {
  margin-bottom: 0;
}

.legal-body {
  max-width: 72ch;
  margin-inline: auto;
  padding: 96px 0 var(--section-pad);
}

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

.legal-body > p:first-of-type {
  margin-bottom: 2.5rem;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.legal-body h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin: 2.5rem 0 1rem;
}

.legal-body h3 {
  font-size: 20px;
  margin: 1.75rem 0 0.75rem;
}

.legal-body p {
  margin-bottom: 1rem;
}

.legal-body a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  padding: 96px 0 var(--section-pad);
  align-items: start;
}

.contact-intro h1 {
  font-size: clamp(36px, 6vw, 56px);
  margin-bottom: 1.25rem;
}

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

.contact-email {
  font-size: 18px;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
}

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

.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(--bg);
  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: none;
  border-color: var(--accent);
}

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

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

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

.form-agree label a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-error {
  color: var(--accent-2);
  font-size: 13px;
  margin-top: 8px;
  display: none;
}

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

.form-status {
  margin-top: 16px;
  color: var(--accent-2);
  font-size: 14px;
  display: none;
}

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

.confirm-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
}

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

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

.confirm-panel .ref {
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 0.04em;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 96px 0 var(--section-pad);
}

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

.sitemap-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sitemap-col a {
  color: var(--text-muted);
  font-size: 16px;
}

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

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

.footer-inner {
  text-align: center;
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  padding-bottom: 64px;
}

.footer-inner .brand {
  justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
}

.footer-blurb {
  max-width: 540px;
  margin: 0 auto 40px;
  font-size: 15px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 0;
  max-width: 900px;
  margin-inline: auto;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 4px 0;
}

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

.footer-links .sep {
  color: var(--border);
  padding: 0 10px;
  user-select: none;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 36px auto 12px;
  max-width: 900px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

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

.footer-bottom__notice {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  padding: 16px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.footer-bottom__notice p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}

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

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

.footer-bottom__bar button {
  background: transparent;
  border: none;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 12px;
  cursor: pointer;
  padding: 0;
  letter-spacing: 0.04em;
}

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

.consent-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.consent-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.consent-modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 520px;
  width: 100%;
  padding: 28px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}

.consent-modal p {
  font-size: 15px;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.consent-btn {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.consent-btn:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.consent-btn--reject {
  border-color: var(--accent);
  color: var(--accent);
}

.consent-manage {
  background: transparent;
  border: none;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

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

.consent-cats {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  margin-bottom: 8px;
}

.consent-cats.is-open {
  grid-template-rows: 1fr;
  margin-bottom: 16px;
}

.consent-cats__inner {
  overflow: hidden;
}

.consent-cat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
}

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

.consent-cat input {
  margin-top: 3px;
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
}

.consent-cat label {
  font-size: 14px;
  color: var(--text);
}

.consent-cat label small {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 4px;
  line-height: 1.5;
}

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

.consent-policy a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.consent-open {
  overflow: hidden;
}

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

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

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

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

@media (max-width: 900px) {
  .nav {
    grid-template-columns: auto 1fr auto;
  }

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

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

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

  .nav-links a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-contact {
    display: none;
  }

  .nav-links a.nav-contact-mobile {
    display: block !important;
    margin-top: 8px;
    color: var(--accent);
    border: 1px solid var(--border);
    text-align: center;
    border-radius: var(--radius-btn);
    padding: 12px;
  }

  .nav-links a.nav-contact-mobile:last-child {
    border: 1px solid var(--border);
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .hero__media {
    position: relative;
    inset: auto;
    height: 48vw;
    min-height: 260px;
    order: -1;
  }

  .hero__panel {
    width: 100%;
    margin: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

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

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

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

  .editorial-band--flip .editorial-band__visual {
    order: 0;
  }
}

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

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

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

  .discovery-row--flip .discovery-row__photo,
  .discovery-row--flip .discovery-row__body {
    order: initial;
  }

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

  .band-card__photo img {
    aspect-ratio: 16 / 10;
  }

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

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

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

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

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

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

  .consent-actions {
    flex-direction: column;
  }

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

  .hero__panel {
    padding: 32px 24px;
  }

  .band-card {
    padding: 16px;
  }
}
