:root {
  --bg: #0b1220;
  --surface: #121b2c;
  --surface-alt: #18243a;
  --text: #eef2f8;
  --text-muted: #9fb0c6;
  --border: rgba(238, 242, 248, 0.14);
  --accent: #d9b382;
  --accent-2: #6fa3b8;
  --secondary: #1b2942;
  --on-accent: #111a29;
  --deep: #070d17;
  --radius: 0px;
  --font-heading: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  --font-body: Cambria, Georgia, serif;
  --max: 1140px;
  --header-h: 72px;
  --header-h-shrink: 56px;
}

*,
*::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: 1.05rem;
  line-height: 1.7;
  min-height: 100vh;
}

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

a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

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

h2 {
  font-size: clamp(26px, 4vw, 40px);
}

.kicker {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: min-height 0.25s ease;
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.3px;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.brand img {
  width: 36px;
  height: 37px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.1rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
}

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

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  width: 42px;
  height: 42px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}

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

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

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

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

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

main {
  overflow-x: hidden;
}

.section {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface-alt) 100%);
}

.section:nth-child(even) {
  background: linear-gradient(180deg, var(--surface-alt) 0%, var(--bg) 100%);
}

.section-plain {
  background: var(--bg);
}

.section-alt {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-alt) 100%);
}

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

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.15rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

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

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

.text-link {
  font-family: var(--font-heading);
  letter-spacing: 0.03em;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

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

.page-hero {
  padding: 72px 0 48px;
}

.page-hero .lede {
  max-width: 42rem;
  color: var(--text-muted);
  margin-top: 1rem;
  font-size: 1.08rem;
}

.hero {
  padding: 88px 0 64px;
  text-align: center;
}

.hero .lede {
  max-width: 38rem;
  margin: 1.25rem auto 0;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.hero-frames {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
  margin-top: 3.5rem;
}

.hero-frame {
  flex: 1;
  max-width: 280px;
}

.hero-frame figcaption {
  margin-top: 0.65rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

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

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

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

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

.category-card-body {
  padding: 1.35rem 1.35rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}

.category-card h3 {
  font-size: 1.35rem;
}

.category-card p {
  color: var(--text-muted);
  flex: 1;
}

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

.quote-band blockquote {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.25;
  color: var(--accent);
  letter-spacing: -0.5px;
  font-weight: 600;
}

.quote-band .frame {
  margin-top: 1.25rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.regions-band {
  text-align: center;
}

.regions-names {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3rem;
  margin: 2rem 0 1.75rem;
}

.regions-names span {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.5vw, 36px);
  letter-spacing: -0.5px;
  color: var(--text);
  font-weight: 600;
}

.regions-band .frame {
  max-width: 40rem;
  margin-inline: auto;
  color: var(--text-muted);
}

.testimonials-band {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
}

.testimonial + .testimonial {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}

.testimonial p {
  font-size: 1.15rem;
}

.testimonial cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
}

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

.arrival-card {
  position: relative;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1.75rem 1.5rem 1.5rem;
  overflow: hidden;
  border-radius: var(--radius);
}

.arrival-card .num {
  position: absolute;
  top: 0.35rem;
  right: 0.75rem;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--border);
  font-weight: 600;
  pointer-events: none;
}

.arrival-card h3 {
  position: relative;
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}

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

.section-head {
  margin-bottom: 2.5rem;
  max-width: 40rem;
}

.gem-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gem-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1rem;
  border-radius: var(--radius);
}

.gem-row img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.gem-row-body {
  text-align: center;
}

.gem-row-body .kicker {
  margin-bottom: 0.4rem;
}

.gem-row-body h2 {
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  margin-bottom: 0.5rem;
}

.gem-row-body p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.gem-row .btn {
  white-space: nowrap;
}

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

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

.past-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.past-card-body {
  padding: 1.35rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.85rem;
}

.past-card h2 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: -0.3px;
}

.past-card .loc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.past-card-body > p:not(.loc) {
  color: var(--text-muted);
  flex: 1;
}

.past-card .btn {
  width: 100%;
  margin-top: auto;
}

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

.offer-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.offer-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.offer-card h2 {
  font-size: 1.25rem;
  margin-top: 1rem;
}

.offer-card .loc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.offer-card .desc {
  color: var(--text-muted);
  margin-top: 0.75rem;
  flex: 1;
}

.offer-card .card-foot {
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border);
}

.offer-card .btn {
  width: 100%;
}

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

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

.editorial-band.is-flip .band-copy {
  order: 2;
}

.editorial-band.is-flip .band-rule {
  order: 1;
}

.editorial-band .band-copy h2 {
  margin-bottom: 1.15rem;
}

.editorial-band .band-copy p + p {
  margin-top: 1rem;
}

.editorial-band .band-rule {
  border-left: 1px solid var(--border);
  min-height: 100%;
  padding-left: 3rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: flex-start;
  padding-top: 0.35rem;
}

.editorial-band.is-flip .band-rule {
  border-left: none;
  border-right: 1px solid var(--border);
  padding-left: 0;
  padding-right: 3rem;
  justify-content: flex-end;
  text-align: right;
}

.adults-lead {
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  line-height: 1.55;
  max-width: 52rem;
  margin-bottom: 3rem;
  color: var(--text);
}

.adults-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
}

.adults-grid article h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  margin-bottom: 1rem;
}

.adults-grid article p + p {
  margin-top: 0.9rem;
}

.adults-grid article p {
  color: var(--text-muted);
}

.contact-intro {
  background: var(--surface-alt);
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.contact-intro .lede {
  max-width: 40rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.contact-intro .email-line {
  margin-top: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.contact-form-wrap {
  padding: 72px 0 96px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
  max-width: 720px;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

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

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 1px solid var(--accent-2);
  border-color: var(--accent-2);
}

.agree-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.agree-row input {
  margin-top: 0.3rem;
  flex-shrink: 0;
  width: auto;
}

.agree-row label {
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

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

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

.form-status {
  margin-top: 0.75rem;
  color: #e8a0a0;
  font-size: 0.92rem;
  display: none;
}

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

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

.confirm-panel h2 {
  font-size: 1.75rem;
  margin-bottom: 0.85rem;
}

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

.confirm-panel .ref {
  margin: 1rem 0 1.5rem;
  font-family: var(--font-heading);
  color: var(--accent);
  letter-spacing: 0.06em;
}

.legal-body {
  padding: 72px 0 96px;
}

.legal-body h1 {
  margin-bottom: 0.5rem;
}

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

.legal-body h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin: 2.25rem 0 0.85rem;
}

.legal-body h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.6rem;
  color: var(--accent);
}

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

.legal-body p + p {
  margin-top: 0.85rem;
}

.legal-body ul {
  margin: 0.75rem 0 0.75rem 1.25rem;
}

.sitemap-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.sitemap-row {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: 1.5rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.sitemap-row a {
  font-family: var(--font-heading);
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.2px;
}

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

.sitemap-row span {
  color: var(--text-muted);
  font-size: 0.98rem;
}

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

.footer-brand-band {
  padding: 4.5rem 0 2.5rem;
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 1.15rem;
}

.footer-brand-lockup img {
  width: 48px;
  height: 49px;
}

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

.footer-blurb {
  max-width: 36rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.footer-email-large {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--accent);
  text-decoration: none;
  margin-bottom: 2.5rem;
}

.footer-email-large:hover {
  color: var(--accent-2);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-variant: small-caps;
  font-weight: 600;
  color: var(--text);
  padding-bottom: 0.65rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
}

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

.footer-col button {
  background: none;
  border: none;
  padding: 0;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.92rem;
  cursor: pointer;
  text-align: left;
}

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

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

.footer-independence {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  padding: 1rem 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.footer-meta {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  padding: 1rem 0 1.35rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  align-items: flex-start;
}

.footer-meta .copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-meta .requisites {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.85;
}

.footer-meta .cookie-settings-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

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

.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  box-shadow: none;
}

.consent-inner {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.consent-banner h2 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.consent-banner > .consent-inner > p,
.consent-banner .consent-copy {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1rem;
  max-width: 48rem;
}

.consent-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.15rem;
}

.consent-options label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

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

.is-hidden {
  display: none !important;
}

@media (max-width: 1024px) {
  .footer-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

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

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

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

  .nav-links a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    position: relative;
  }

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

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

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

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

  .editorial-band.is-flip .band-copy,
  .editorial-band.is-flip .band-rule {
    order: initial;
  }

  .editorial-band .band-rule,
  .editorial-band.is-flip .band-rule {
    border: none;
    padding: 0;
    border-top: 1px solid var(--border);
    padding-top: 0.85rem;
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .hero-frames {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
  }

  .hero-frame {
    flex: 0 0 70%;
    max-width: none;
    scroll-snap-align: start;
  }

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

  .gem-row {
    grid-template-columns: 100px 1fr;
    grid-template-rows: auto auto;
  }

  .gem-row img {
    width: 100px;
    height: 100px;
    grid-row: 1 / 2;
  }

  .gem-row-body {
    text-align: left;
  }

  .gem-row .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

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

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

  .contact-form {
    grid-template-columns: 1fr;
  }

  .sitemap-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

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

  .regions-names {
    gap: 1rem 1.75rem;
  }
}

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

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

  .container,
  .header-inner,
  .independence-notice p,
  .footer-independence,
  .footer-meta {
    width: min(100% - 1.5rem, var(--max));
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 64px 0 48px;
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .testimonials-band {
    padding: 1.75rem 1.15rem;
  }

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

  .consent-actions .btn {
    width: 100%;
  }
}
