:root {
  --bg: #fff3e0;
  --bg-soft: #fff8eb;
  --surface: rgba(255, 250, 241, 0.9);
  --surface-solid: #ffffff;
  --text: #111111;
  --muted: #5f5a50;
  --line: rgba(159, 110, 55, 0.22);
  --brand: #1f5a3a;
  --brand-2: #d33a2c;
  --brand-3: #f2c94c;
  --brand-4: #f28c28;
  --teal: #0e6d6d;
  --ink: #143321;
  --shadow: 0 28px 70px rgba(31, 90, 58, 0.16);
  --shadow-soft: 0 14px 34px rgba(47, 35, 15, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --grid-gap: 22px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 11% 8%, rgba(31, 90, 58, 0.14), transparent 27%),
    radial-gradient(circle at 82% 12%, rgba(211, 58, 44, 0.12), transparent 26%),
    radial-gradient(circle at 78% 88%, rgba(242, 201, 76, 0.2), transparent 26%),
    linear-gradient(180deg, #fff8eb 0%, #fff3e0 42%, #fffaf3 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

img {
  display: block;
  width: 100%;
}

.page-glow {
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  filter: blur(8px);
  opacity: 0.82;
}

.page-glow-a {
  top: 4rem;
  right: -8rem;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 93, 31, 0.34), rgba(232, 93, 31, 0));
}

.page-glow-b {
  left: -7rem;
  bottom: 8rem;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 107, 69, 0.22), rgba(31, 107, 69, 0));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(270px, 310px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  padding: 9px clamp(24px, 4vw, 56px);
  backdrop-filter: blur(18px);
  background: rgba(255, 248, 235, 0.94);
  border-bottom: 1px solid var(--line);
  animation: headerReveal 520ms 80ms ease-out both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  width: clamp(270px, 22vw, 306px);
  overflow: hidden;
  padding: 4px 10px 4px 6px;
  border: 1px solid rgba(31, 107, 69, 0.08);
  border-radius: 10px;
  background: rgba(255, 252, 244, 0.58);
  box-shadow: 0 10px 26px rgba(61, 42, 16, 0.06);
}

.brand-mark-image {
  width: clamp(306px, 25vw, 352px);
  height: auto;
  max-height: 82px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: normal;
  filter: drop-shadow(0 8px 14px rgba(31, 90, 58, 0.1));
}

.brand-copy {
  display: none;
  gap: 2px;
  min-width: 0;
}

.brand-copy strong {
  color: var(--brand);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.brand-copy span {
  color: var(--brand-2);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: inline-grid;
  grid-template-columns: repeat(3, max-content);
  align-items: center;
  justify-self: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(159, 110, 55, 0.14);
  border-radius: 16px;
  background: rgba(255, 252, 244, 0.72);
  box-shadow: 0 14px 28px rgba(61, 42, 16, 0.08);
  backdrop-filter: blur(14px);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.34rem;
  padding: 0.48rem 0.78rem;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-nav .site-nav__promo {
  background: linear-gradient(135deg, #bc3e2d, #d94c38);
  border-color: rgba(188, 62, 45, 0.45);
  color: #fff8eb;
  box-shadow: 0 12px 24px rgba(188, 62, 45, 0.22);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(31, 107, 69, 0.08);
  color: var(--brand);
  transform: translateY(-1px);
  outline: none;
}

.site-nav .site-nav__promo:hover,
.site-nav .site-nav__promo:focus-visible {
  background: linear-gradient(135deg, #a83225, #c73d2d);
  color: #fff;
}

.cart-pill {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  padding: 0.62rem 0.78rem;
  border: 1px solid rgba(31, 90, 58, 0.22);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 243, 224, 0.92));
  box-shadow: var(--shadow-soft);
  color: var(--text);
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.cart-pill strong {
  display: inline-grid;
  place-items: center;
  min-width: 1.82rem;
  padding: 0.26rem 0.62rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--teal));
  color: #fff;
  font-size: 0.95rem;
}

.cart-pill:hover,
.cart-pill:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(31, 107, 69, 0.36);
  box-shadow: 0 18px 38px rgba(109, 61, 28, 0.12);
  outline: none;
}

main {
  padding: 0 0 100px;
}

.catalog,
.promo,
.process {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.catalog {
  width: 100%;
}

.catalog,
.promo,
.process {
  scroll-margin-top: 130px;
}

.screen-section {
  display: none !important;
}

body[data-view="home"] .screen-section[data-screen="home"],
body[data-view="catalog"] .screen-section[data-screen="catalog"],
body[data-view="promo"] .screen-section[data-screen="promo"] {
  display: grid !important;
}

.site-nav a.is-active {
  background: rgba(31, 107, 69, 0.1);
  color: var(--brand);
  box-shadow: inset 0 0 0 1px rgba(31, 107, 69, 0.12);
}

.site-nav .site-nav__promo.is-active {
  background: linear-gradient(135deg, #bc3e2d, #d94c38);
  color: #fff8eb;
  box-shadow: 0 12px 24px rgba(188, 62, 45, 0.22);
}

.hero {
  --hero-x: 0;
  --hero-y: 0;
  display: grid;
  grid-template-columns: minmax(340px, 0.76fr) minmax(560px, 1.24fr);
  grid-template-areas:
    "copy visual"
    "benefits benefits";
  gap: clamp(14px, 2.5vw, 34px);
  align-items: center;
  width: 100%;
  min-height: calc(100svh - 74px);
  padding: clamp(34px, 4.8vw, 78px) clamp(20px, 5vw, 86px) clamp(18px, 2.8vw, 38px);
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(92deg, rgba(255, 248, 235, 0.99) 0%, rgba(255, 248, 235, 0.92) 32%, rgba(255, 248, 235, 0.24) 62%, rgba(255, 248, 235, 0.06) 100%),
    radial-gradient(circle at 80% 15%, rgba(242, 201, 76, 0.5), transparent 24%),
    radial-gradient(circle at 82% 90%, rgba(31, 90, 58, 0.32), transparent 31%),
    linear-gradient(120deg, transparent 0 40%, rgba(31, 90, 58, 0.08) 40% 40.4%, transparent 40.8% 100%),
    url("./assets/brand/matreshka-tour/patterns/pattern-khokhloma-light-wide-2400x360.png"),
    linear-gradient(120deg, #fff8eb 0%, #fff1dc 44%, #f8e7cf 100%);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat-x, no-repeat;
  background-position: left center, 78% 16%, 82% 88%, center, left bottom, center;
  background-size: auto, auto, auto, auto, auto 150px, auto;
  box-shadow: none;
  position: relative;
  overflow: clip;
  transform-style: preserve-3d;
}

.hero-copy {
  grid-area: copy;
  position: relative;
  z-index: 3;
  max-width: 700px;
  animation: heroCopyReveal 760ms cubic-bezier(0.2, 0.72, 0.18, 1) both;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(255, 248, 235, 0) 0 42%, rgba(255, 248, 235, 0.08) 56%, rgba(255, 248, 235, 0.32) 100%),
    radial-gradient(ellipse at 63% 58%, transparent 0 27%, rgba(31, 90, 58, 0.1) 27.3% 27.8%, transparent 28.2%),
    radial-gradient(circle at 78% 46%, rgba(255, 255, 255, 0.08), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  content: none;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-2);
}

.section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

.hero-copy h1,
.section-head h2,
.step-card h3,
.contact-panel h2,
.dialog-copy h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.hero-route-line {
  margin-bottom: clamp(14px, 2vw, 24px);
  max-width: 58ch;
  color: var(--brand-2);
  background: transparent;
  font-size: clamp(0.7rem, 0.9vw, 0.84rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
  animation: heroTextReveal 640ms 80ms cubic-bezier(0.2, 0.72, 0.18, 1) both;
}

.hero-copy h1 {
  max-width: 11.2ch;
  color: var(--brand);
  font-size: clamp(3.35rem, 6.35vw, 6.9rem);
  line-height: 0.88;
  text-wrap: balance;
  text-shadow: 0 24px 42px rgba(31, 90, 58, 0.1);
  animation: heroTextReveal 720ms 160ms cubic-bezier(0.2, 0.72, 0.18, 1) both;
}

.hero-copy h1 span {
  display: inline-block;
  width: max-content;
  max-width: 100%;
  margin-top: 0.1em;
  padding: 0.05em 0.12em 0.08em;
  color: #fff8eb;
  background: linear-gradient(135deg, #d33a2c, #b62922);
  border-radius: 8px;
  box-shadow: 0 20px 38px rgba(172, 39, 28, 0.22);
  font-size: 0.54em;
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: none;
  transform: rotate(-1.6deg);
  transform-origin: left center;
  animation: heroStampReveal 820ms 660ms cubic-bezier(0.18, 1.18, 0.22, 1) both;
}

.hero-lead {
  margin: clamp(18px, 2.4vw, 28px) 0 0;
  max-width: 48ch;
  color: #24372c;
  font-size: clamp(1rem, 1.24vw, 1.22rem);
  line-height: 1.72;
  animation: heroTextReveal 680ms 280ms cubic-bezier(0.2, 0.72, 0.18, 1) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: clamp(24px, 3vw, 34px);
  animation: heroTextReveal 680ms 400ms cubic-bezier(0.2, 0.72, 0.18, 1) both;
}

.hero-route-map {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.38;
  transform: translate3d(calc(var(--hero-x) * -0.55px), calc(var(--hero-y) * -0.38px), 0);
}

.hero-route-track {
  position: absolute;
  left: 38%;
  top: 24%;
  width: 48%;
  height: 52%;
  border: 1px solid rgba(31, 90, 58, 0.12);
  border-left-color: transparent;
  border-bottom-color: rgba(211, 58, 44, 0.08);
  border-radius: 50%;
  transform: rotate(-11deg) scaleX(0);
  transform-origin: left center;
  filter: drop-shadow(0 20px 28px rgba(31, 90, 58, 0.08));
  animation: heroRouteDraw 1100ms 520ms cubic-bezier(0.2, 0.72, 0.18, 1) forwards;
}

.hero-route-point {
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  color: transparent;
  font-size: 0;
  line-height: 0;
  opacity: 0;
  transform: translateY(7px);
  animation: heroRoutePoint 520ms cubic-bezier(0.2, 0.72, 0.18, 1) forwards;
}

.hero-route-point::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 248, 235, 0.82);
  border-radius: 50%;
  background: rgba(211, 58, 44, 0.72);
  box-shadow:
    0 0 0 3px rgba(211, 58, 44, 0.06),
    0 7px 16px rgba(211, 58, 44, 0.1);
}

.hero-route-point--nhatrang {
  left: 39%;
  top: 70%;
  animation-delay: 760ms;
}

.hero-route-point--dalat {
  left: 50%;
  top: 54%;
  animation-delay: 900ms;
}

.hero-route-point--phanrang {
  left: 58%;
  top: 41%;
  animation-delay: 1040ms;
}

.hero-route-point--danang {
  right: 16%;
  top: 47%;
  animation-delay: 1180ms;
}

.hero-route-point--saigon {
  right: 15%;
  top: 78%;
  animation-delay: 1320ms;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #0f4a2e);
  box-shadow: 0 18px 32px rgba(31, 90, 58, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 38px rgba(31, 90, 58, 0.28);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 250, 241, 0.72);
  border-color: rgba(31, 90, 58, 0.16);
  box-shadow: none;
}

.hero-visual {
  grid-area: visual;
  position: relative;
  z-index: 2;
  min-height: clamp(560px, 55vw, 820px);
  max-width: 980px;
  margin: clamp(-42px, -2.4vw, -8px) clamp(-90px, -5vw, -24px) clamp(-22px, -1.4vw, 0px) clamp(-92px, -5vw, -28px);
  isolation: isolate;
  overflow: visible;
  border: 0;
  background: none;
  transform: translate3d(calc(var(--hero-x) * 0.42px), calc(var(--hero-y) * 0.28px), 0);
  animation: heroVisualReveal 980ms 220ms cubic-bezier(0.2, 0.72, 0.18, 1) both;
  transition: transform 220ms ease-out;
}

.hero-visual::before {
  content: "";
  position: absolute;
  right: -8%;
  top: -5%;
  width: 110%;
  height: 108%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 50%, rgba(255, 251, 241, 0.22) 0 42%, rgba(242, 201, 76, 0.2) 43%, rgba(31, 90, 58, 0.12) 44%, transparent 47%),
    radial-gradient(ellipse at 56% 54%, rgba(255, 248, 235, 0.56), rgba(255, 248, 235, 0.1) 62%, transparent 74%);
  box-shadow: none;
  opacity: 1;
  z-index: 0;
  transform: translate3d(calc(var(--hero-x) * -0.24px), calc(var(--hero-y) * -0.18px), 0);
}

.hero-visual::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 6%;
  bottom: 6%;
  height: 16%;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(31, 90, 58, 0.24), transparent 68%);
  filter: blur(10px);
  opacity: 0.8;
  z-index: 1;
}

.hero-scene {
  position: absolute;
  inset: clamp(-70px, -3.5vw, -24px) clamp(-68px, -3.2vw, -12px) clamp(-20px, -1.2vw, 0px) clamp(-132px, -6vw, -42px);
  z-index: 2;
  background-image: url("./assets/brand/matreshka-tour/mascot/mascot-full-scene-kokoshnik-1600.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: min(116%, 1120px) auto;
  opacity: 1;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 94%, transparent 100%);
  filter:
    drop-shadow(0 46px 36px rgba(31, 90, 58, 0.28))
    saturate(1.24)
    contrast(1.06);
  transform: translate3d(calc(var(--hero-x) * 0.2px), calc(var(--hero-y) * 0.14px), 0) scale(1.015);
  transition:
    opacity 320ms ease,
    transform 220ms ease-out;
}

.hero-visual:hover .hero-scene,
.hero-visual:focus-within .hero-scene,
.hero.is-kokoshnik-hover .hero-scene,
.hero.is-kokoshnik-visible .hero-scene {
  transform: translate3d(calc(var(--hero-x) * 0.28px), calc(var(--hero-y) * 0.18px), 0) scale(1.02);
}

.hero-travel-note {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 5px;
  max-width: min(276px, 38%);
  padding: 12px 42px 13px 15px;
  border: 1px solid rgba(159, 110, 55, 0.18);
  border-left: 4px solid var(--brand-2);
  border-radius: 6px;
  background: rgba(255, 252, 244, 0.84);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(61, 42, 16, 0.1);
  backdrop-filter: blur(16px);
  animation: heroNoteReveal 680ms 760ms cubic-bezier(0.2, 0.72, 0.18, 1) both;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.hero-travel-note--top {
  top: 15%;
  left: 4%;
  right: auto;
  transform: translate3d(calc(var(--hero-x) * -0.16px), calc(var(--hero-y) * -0.12px), 0);
}

.hero-travel-note--cta {
  position: relative;
  inset: auto;
  width: 184px;
  max-width: 100%;
  min-height: 56px;
  align-self: center;
  padding: 10px 32px 10px 12px;
  transform: none;
}

.hero-travel-note::after {
  content: "→";
  position: absolute;
  right: 15px;
  top: 50%;
  color: var(--brand);
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  transform: translateY(-50%);
}

.hero-travel-note:hover,
.hero-travel-note:focus-visible {
  border-color: rgba(188, 62, 45, 0.32);
  background: rgba(255, 252, 244, 0.96);
  box-shadow: 0 20px 34px rgba(61, 42, 16, 0.14);
  outline: none;
  transform: translate3d(calc(var(--hero-x) * -0.16px), calc(var(--hero-y) * -0.12px - 2px), 0);
}

.hero-travel-note--cta:hover,
.hero-travel-note--cta:focus-visible {
  transform: translateY(-2px);
}

.hero-travel-note span {
  color: var(--brand-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-travel-note strong {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.05rem, 1.5vw, 1.34rem);
  line-height: 1.06;
}

.hero-float {
  position: absolute;
  z-index: 3;
  display: block;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 248, 235, 0.85), rgba(255, 248, 235, 0.18) 52%, transparent 70%),
    linear-gradient(135deg, rgba(211, 58, 44, 0.78), rgba(242, 201, 76, 0.72));
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  pointer-events: none;
  opacity: 0.34;
  filter: drop-shadow(0 14px 18px rgba(31, 90, 58, 0.16));
  animation: heroFloat 5.8s ease-in-out infinite;
}

.hero-float--boat {
  left: 20%;
  bottom: 27%;
  width: clamp(30px, 3.8vw, 52px);
  height: clamp(30px, 3.8vw, 52px);
  mask-image: url("./assets/brand/matreshka-tour/icons/svg/boat.svg");
  -webkit-mask-image: url("./assets/brand/matreshka-tour/icons/svg/boat.svg");
  animation-delay: 260ms;
  transform: translate3d(calc(var(--hero-x) * -0.24px), calc(var(--hero-y) * -0.18px), 0);
}

.hero-float--lantern {
  right: 13%;
  top: 28%;
  width: clamp(28px, 3.3vw, 46px);
  height: clamp(28px, 3.3vw, 46px);
  mask-image: url("./assets/brand/matreshka-tour/icons/svg/lantern.svg");
  -webkit-mask-image: url("./assets/brand/matreshka-tour/icons/svg/lantern.svg");
  animation-delay: 900ms;
  transform: translate3d(calc(var(--hero-x) * 0.18px), calc(var(--hero-y) * -0.26px), 0);
}

.hero-float--lotus {
  right: 28%;
  bottom: 19%;
  width: clamp(34px, 4vw, 56px);
  height: clamp(34px, 4vw, 56px);
  mask-image: url("./assets/brand/matreshka-tour/icons/svg/lotus.svg");
  -webkit-mask-image: url("./assets/brand/matreshka-tour/icons/svg/lotus.svg");
  animation-delay: 1500ms;
  transform: translate3d(calc(var(--hero-x) * 0.26px), calc(var(--hero-y) * 0.18px), 0);
}

.hero-benefits {
  grid-area: benefits;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(4px, 1.4vw, 18px);
  padding: 12px clamp(10px, 1vw, 16px);
  border: 1px solid rgba(159, 110, 55, 0.18);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.82), rgba(255, 248, 235, 0.68)),
    url("./assets/brand/matreshka-tour/patterns/pattern-khokhloma-light.png");
  background-size: auto, auto 130%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 18px 34px rgba(61, 42, 16, 0.08);
  backdrop-filter: blur(12px);
}

.hero-benefits article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  padding: 12px clamp(10px, 1.2vw, 18px);
  border-right: 1px solid rgba(159, 110, 55, 0.18);
}

.hero-benefits article:last-child {
  border-right: 0;
}

.benefit-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  background: linear-gradient(135deg, #a84f1e, var(--brand-2) 42%, var(--brand-3));
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.benefit-icon-location {
  mask-image: url("./assets/brand/matreshka-tour/icons/svg/location.svg");
  -webkit-mask-image: url("./assets/brand/matreshka-tour/icons/svg/location.svg");
}

.benefit-icon-heart {
  mask-image: url("./assets/brand/matreshka-tour/icons/svg/heart.svg");
  -webkit-mask-image: url("./assets/brand/matreshka-tour/icons/svg/heart.svg");
}

.benefit-icon-shield {
  mask-image: url("./assets/brand/matreshka-tour/icons/svg/shield.svg");
  -webkit-mask-image: url("./assets/brand/matreshka-tour/icons/svg/shield.svg");
}

.benefit-icon-pagoda {
  mask-image: url("./assets/brand/matreshka-tour/icons/svg/pagoda.svg");
  -webkit-mask-image: url("./assets/brand/matreshka-tour/icons/svg/pagoda.svg");
}

.benefit-icon-lotus {
  mask-image: url("./assets/brand/matreshka-tour/icons/svg/lotus.svg");
  -webkit-mask-image: url("./assets/brand/matreshka-tour/icons/svg/lotus.svg");
}

.hero-benefits span {
  color: #2b342d;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.section-band {
  margin-top: 42px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 34px;
  border: 1px solid rgba(37, 97, 70, 0.1);
  background: rgba(255, 252, 244, 0.78);
  box-shadow: var(--shadow-soft);
}

.catalog.section-band {
  margin-top: 0;
  padding: clamp(28px, 3.2vw, 48px) clamp(24px, 5vw, 72px) 72px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 248, 235, 0.96), rgba(255, 250, 243, 0.9) 58%, rgba(255, 239, 222, 0.82));
  box-shadow: none;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.catalog .section-head {
  align-items: start;
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.96;
}

.catalog .section-head h2 {
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.section-head p {
  margin: 0;
  max-width: 44ch;
  color: var(--muted);
  line-height: 1.65;
}

.catalog .section-head p {
  max-width: 31ch;
  padding-top: 10px;
  font-size: 0.98rem;
  line-height: 1.45;
}

.section-head-compact {
  margin-bottom: 18px;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: 18px;
  align-items: end;
  max-width: 1180px;
  margin-bottom: 22px;
}

.promo {
  margin-top: 42px;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.promo-grid article,
.promo-tour {
  min-height: 120px;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  border: 1px solid rgba(93, 53, 29, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 15%, rgba(244, 177, 62, 0.2), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 241, 0.94));
  box-shadow: 0 16px 34px rgba(85, 28, 7, 0.08);
  color: var(--ink);
  text-decoration: none;
  overflow: hidden;
}

.promo-tour__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #e9ded2;
}

.promo-tour__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.promo-tour__content {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px 20px 20px;
}

.promo-tour strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 900;
  line-height: 1.08;
}

.promo-tour__city,
.promo-tour__route,
.promo-tour__price {
  font-family: "Montserrat", "Segoe UI", sans-serif;
}

.promo-tour__city {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo-tour__route {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
}

.promo-tour__price {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.promo-tour:hover,
.promo-tour:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(85, 28, 7, 0.12);
  outline: none;
}

.promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  border: 1px solid rgba(37, 97, 70, 0.14);
  background: rgba(255, 252, 244, 0.72);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.62rem 0.82rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.filter-chip:hover,
.filter-chip:focus-visible {
  transform: translateY(-1px);
  color: var(--text);
  border-color: rgba(31, 107, 69, 0.22);
  outline: none;
}

.filter-chip.is-active {
  background: linear-gradient(135deg, rgba(31, 107, 69, 0.14), rgba(244, 177, 62, 0.2));
  color: var(--text);
  border-color: rgba(31, 107, 69, 0.26);
}

.request-form input,
.request-form textarea {
  width: 100%;
  padding: 0.78rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(37, 97, 70, 0.13);
  background: rgba(255, 252, 244, 0.94);
  color: var(--text);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: rgba(31, 107, 69, 0.36);
  box-shadow: 0 0 0 4px rgba(31, 107, 69, 0.08);
}

.tour-grid {
  display: grid;
  gap: 18px;
}

.city-block {
  display: grid;
  gap: 14px;
  padding: 0;
}

.city-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.catalog-result-note {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.city-head h3 {
  margin: 2px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.city-head span {
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
  justify-content: center;
  align-items: stretch;
  gap: var(--grid-gap);
}

.catalog-more {
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.catalog-more .button {
  min-width: min(100%, 260px);
}

.tour-card {
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface-solid);
  border: 1px solid rgba(37, 97, 70, 0.1);
  box-shadow: 0 14px 28px rgba(47, 35, 15, 0.07);
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  width: 100%;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.tour-card:hover,
.tour-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(47, 35, 15, 0.11);
  border-color: rgba(31, 107, 69, 0.2);
}

.tour-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f1e8df;
}

.tour-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.tour-card:hover .tour-card__media img {
  transform: none;
}

.tour-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.16));
}

.tour-card__content {
  display: grid;
  grid-template-rows: auto minmax(3.5rem, auto) minmax(3rem, auto) auto auto;
  gap: 12px;
  padding: 16px;
}

.tour-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.tour-card__meta > div {
  min-width: 0;
}

.tour-city-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.68rem;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(31, 107, 69, 0.1);
  color: #1f6b45;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.tour-card h4 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.26rem;
  font-weight: 900;
  line-height: 1.05;
  min-height: 2.65rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.tour-card__route,
.tour-card__summary {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.tour-card__route {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.tour-card__summary {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.tour-card__notes {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 6px;
  min-height: 3.55rem;
}

.tour-card__notes--empty {
  pointer-events: none;
}

.tour-card__notes span {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  max-width: 100%;
  padding: 0.32rem 0.56rem;
  border: 1px solid rgba(31, 107, 69, 0.12);
  border-radius: 999px;
  background: rgba(31, 107, 69, 0.07);
  color: #1f6b45;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: normal;
}

.tour-card__notes span:first-child {
  border-color: rgba(188, 62, 45, 0.13);
  background: rgba(188, 62, 45, 0.08);
  color: #9e3428;
}

.tour-prices,
.dialog-prices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
}

.price-chip {
  display: grid;
  gap: 3px;
  padding: 0.72rem 0.78rem;
  border-radius: 12px;
  border: 1px solid rgba(37, 97, 70, 0.11);
  background: linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(255, 245, 229, 0.94));
}

.price-chip span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.price-chip strong {
  font-size: 1rem;
  font-weight: 900;
  color: var(--brand-2);
}

.price-chip-wide {
  grid-column: 1 / -1;
}

.tour-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.tour-actions .button {
  min-height: 2.75rem;
  padding-inline: 0.8rem;
  border-radius: 14px;
  font-size: 0.88rem;
}

.tour-actions .button-secondary {
  background: rgba(255, 250, 241, 0.72);
}

.tour-actions .button:nth-child(3) {
  grid-column: 1 / -1;
}

.process {
  margin-top: 42px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.step-card {
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(93, 53, 29, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 241, 0.94));
  box-shadow: 0 16px 36px rgba(85, 28, 7, 0.08);
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(31, 107, 69, 0.14), rgba(244, 177, 62, 0.2));
  color: var(--brand);
  font-weight: 900;
  letter-spacing: 0.05em;
}

.step-card h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.cart-drawer {
  position: fixed;
  top: 96px;
  right: 20px;
  bottom: 20px;
  width: min(390px, calc(100vw - 40px));
  z-index: 40;
  transform: translateX(calc(100% + 20px));
  transition: transform 260ms ease;
  pointer-events: none;
}

.cart-drawer.is-open {
  transform: translateX(0);
  pointer-events: auto;
}

.cart-shell {
  display: grid;
  grid-template-rows: auto auto auto auto auto;
  height: 100%;
  border-radius: 30px;
  border: 1px solid rgba(93, 53, 29, 0.11);
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 177, 90, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 248, 243, 0.95));
  box-shadow: 0 28px 70px rgba(75, 23, 8, 0.22);
  overflow: auto;
}

.cart-head,
.cart-summary,
.request-form,
.cart-footer {
  padding-inline: 20px;
}

.cart-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
}

.cart-head h2,
.dialog-copy h3 {
  font-size: 2rem;
  line-height: 0.96;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(93, 53, 29, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(223, 37, 31, 0.24);
  box-shadow: 0 12px 24px rgba(85, 28, 7, 0.08);
  outline: none;
}

.cart-summary {
  display: grid;
  gap: 4px;
  padding-top: 8px;
  padding-bottom: 16px;
}

.cart-summary strong {
  font-size: 1.08rem;
}

.cart-summary span {
  color: var(--muted);
  line-height: 1.5;
}

.cart-list {
  display: grid;
  gap: 10px;
  overflow: auto;
  min-height: 150px;
  max-height: min(240px, 30vh);
  padding: 0 20px 16px;
  scrollbar-width: thin;
}

.cart-item {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(93, 53, 29, 0.1);
  background: rgba(255, 255, 255, 0.94);
}

.cart-item img {
  width: 68px;
  height: 68px;
  border-radius: 14px;
  object-fit: contain;
  background: #f1e8df;
}

.cart-item h4 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.15;
}

.cart-item__body {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.cart-item__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.cart-item__head strong {
  white-space: nowrap;
}

.cart-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cart-item__summary,
.cart-item__meta {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.cart-item__summary {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.cart-item__meta {
  font-weight: 700;
}

.cart-qty {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  min-width: 52px;
}

.cart-qty button {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(93, 53, 29, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand);
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.cart-qty button:hover,
.cart-qty button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(223, 37, 31, 0.24);
  box-shadow: 0 12px 24px rgba(85, 28, 7, 0.08);
  outline: none;
}

.cart-qty strong {
  font-size: 1rem;
}

.cart-item button {
  border: 0;
  background: transparent;
  color: var(--brand);
  cursor: pointer;
  font-weight: 800;
}

.cart-empty {
  padding: 22px;
  border-radius: 24px;
  border: 1px dashed rgba(93, 53, 29, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  line-height: 1.65;
}

.request-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  padding-top: 6px;
  padding-bottom: 18px;
  background: linear-gradient(180deg, rgba(255, 248, 243, 0.96), rgba(255, 255, 255, 0.98));
}

.request-form button:disabled {
  cursor: wait;
  opacity: 0.64;
  transform: none;
}

.request-draft {
  display: grid;
  gap: 12px;
  margin: 0 20px 16px;
  padding: 14px;
  border: 1px solid rgba(31, 90, 58, 0.16);
  border-radius: 18px;
  background: rgba(255, 250, 241, 0.86);
}

.request-draft strong,
.request-draft span {
  display: block;
}

.request-draft span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.request-draft__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.request-form label {
  display: grid;
  gap: 8px;
}

.request-form label span {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.request-form textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cart-footer {
  display: grid;
  gap: 8px;
  padding-top: 14px;
  padding-bottom: 18px;
  border-top: 1px solid rgba(93, 53, 29, 0.08);
  background: linear-gradient(180deg, rgba(255, 250, 246, 0.76), rgba(255, 255, 255, 0.9));
}

.cart-footer div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.cart-footer span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.cart-footer strong {
  font-size: 1.05rem;
}

.cart-footer small {
  color: var(--muted);
  line-height: 1.45;
}

.tour-dialog {
  width: min(1080px, calc(100vw - 24px));
  max-height: calc(100dvh - 24px);
  border: 0;
  border-radius: 34px;
  padding: 0;
  box-shadow: 0 40px 90px rgba(45, 17, 8, 0.3);
  background: transparent;
  overflow: hidden;
}

.tour-dialog::backdrop {
  background: rgba(34, 16, 9, 0.52);
  backdrop-filter: blur(8px);
}

.dialog-shell {
  position: relative;
  display: grid;
  max-height: calc(100dvh - 24px);
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 241, 0.96));
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
}

.dialog-media {
  display: none;
}

.dialog-media img {
  width: 100%;
  height: auto;
  max-height: calc(100dvh - 24px);
  object-fit: contain;
  display: block;
}

.dialog-copy {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto auto;
  gap: 14px;
  padding: 28px;
  align-content: start;
  max-height: calc(100dvh - 24px);
  overflow: hidden;
}

.dialog-copy p,
.dialog-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.dialog-text {
  display: grid;
  gap: 14px;
  min-height: 0;
  padding: 0;
  overflow: auto;
  align-content: start;
  scrollbar-color: rgba(188, 62, 45, 0.42) rgba(188, 62, 45, 0.08);
}

.dialog-intro-card {
  display: grid;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(48, 35, 28, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
}

.dialog-intro-card strong,
.dialog-text strong {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.45;
}

.dialog-intro-card span,
.dialog-text span {
  line-height: 1.65;
}

.dialog-gallery {
  display: grid;
  gap: 12px;
}

.dialog-gallery--grid .dialog-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.dialog-gallery__hero,
.dialog-gallery__thumb,
.dialog-gallery__card {
  position: relative;
  display: grid;
  border: 1px solid rgba(48, 35, 28, 0.08);
  border-radius: 18px;
  background: #e9ded2;
  isolation: isolate;
  overflow: hidden;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.dialog-gallery__hero::before,
.dialog-gallery__thumb::before,
.dialog-gallery__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--photo);
  background-position: center;
  background-size: cover;
  filter: blur(18px) saturate(1.08);
  opacity: 0.28;
  transform: scale(1.08);
  pointer-events: none;
}

.dialog-gallery__hero {
  min-height: 100%;
  grid-template-rows: minmax(0, 1fr) auto;
}

.dialog-gallery__hero img,
.dialog-gallery__thumb img,
.dialog-gallery__card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dialog-gallery__hero img {
  min-height: 340px;
}

.dialog-gallery__hero-caption {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2px;
  padding: 12px 14px 13px;
  background: rgba(255, 255, 255, 0.84);
}

.dialog-gallery__hero-caption strong {
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.2;
}

.dialog-gallery__rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.dialog-gallery__thumb {
  grid-template-columns: 1fr;
  min-height: 0;
}

.dialog-gallery__thumb img {
  aspect-ratio: 4 / 3;
}

.dialog-gallery__thumb span {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  min-height: 3.7rem;
  padding: 10px 12px 12px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.dialog-gallery__card {
  grid-template-columns: 1fr;
}

.dialog-gallery__card img {
  aspect-ratio: 4 / 3;
}

.dialog-gallery__card span {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  min-height: 3.85rem;
  padding: 11px 12px 12px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.24;
  overflow-wrap: anywhere;
}

@media (min-width: 901px) {
  .dialog-gallery__hero:hover,
  .dialog-gallery__thumb:hover,
  .dialog-gallery__card:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(45, 17, 8, 0.12);
  }
}

.gallery-lightbox {
  width: 100vw;
  min-width: 100vw;
  height: 100dvh;
  max-height: 100dvh;
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  overflow: hidden;
}

.gallery-lightbox::backdrop {
  background: rgba(17, 10, 6, 0.84);
  backdrop-filter: blur(10px);
}

.gallery-lightbox__shell {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  gap: 16px;
  align-items: center;
  min-height: 100dvh;
  width: 100vw;
  padding: 28px;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(26, 18, 14, 0.98), rgba(39, 26, 20, 0.96));
}

.gallery-lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
}

.gallery-lightbox__nav {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.gallery-lightbox__stage {
  display: grid;
  gap: 12px;
  margin: 0;
}

.gallery-lightbox__stage img {
  width: 100%;
  max-height: min(72dvh, 860px);
  border-radius: 22px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
}

.gallery-lightbox__stage img[data-derived="true"] {
  width: auto;
  max-width: min(100%, 720px);
  justify-self: center;
}

.gallery-lightbox__stage figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
}

.gallery-lightbox__stage strong {
  font-size: 1rem;
  line-height: 1.2;
}

.gallery-lightbox__stage span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.gallery-lightbox__thumbs {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.gallery-lightbox__thumb {
  display: grid;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  text-align: left;
}

.gallery-lightbox__thumb.is-active {
  border-color: rgba(242, 201, 76, 0.62);
  background: rgba(242, 201, 76, 0.12);
}

.gallery-lightbox__thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  object-fit: cover;
}

.gallery-lightbox__thumb span {
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.25;
}

.dialog-details {
  display: grid;
  gap: 9px;
  max-height: min(330px, 34dvh);
  margin-top: 2px;
  padding: 16px;
  overflow: auto;
  border: 1px solid rgba(48, 35, 28, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 247, 236, 0.86)),
    radial-gradient(circle at 0 0, rgba(188, 62, 45, 0.08), transparent 34%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  scrollbar-color: rgba(188, 62, 45, 0.42) rgba(188, 62, 45, 0.08);
}

.dialog-details h4 {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin: 10px 0 2px;
  padding: 0.34rem 0.68rem;
  border-radius: 999px;
  background: rgba(188, 62, 45, 0.1);
  color: #9e3428;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.25;
}

.dialog-details h4:first-child {
  margin-top: 0;
}

.dialog-detail {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.58;
  overflow-wrap: anywhere;
}

.dialog-detail-list {
  position: relative;
  padding-left: 19px;
}

.dialog-detail-list::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: rgba(31, 107, 69, 0.72);
  transform: rotate(45deg);
}

.dialog-detail-day {
  color: var(--ink);
  font-weight: 800;
}

.dialog-detail-day {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 8px 0 1px;
}

.dialog-detail-day::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: rgba(188, 62, 45, 0.48);
}

.dialog-detail-time {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  align-items: start;
  padding: 10px 12px;
  border: 1px solid rgba(31, 107, 69, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
}

.dialog-detail-time strong {
  min-width: 0;
  color: #1f6b45;
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.5;
}

.dialog-detail-time span {
  min-width: 0;
  color: var(--muted);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.dialog-detail-spot {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.6;
}

.dialog-detail-spot-index {
  color: rgba(31, 107, 69, 0.92);
  font-weight: 800;
}

.dialog-detail-spot-text {
  color: var(--ink);
  font-weight: 400;
}

.dialog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dialog-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(48, 35, 28, 0.08);
  border-radius: 999px;
  background: rgba(255, 252, 245, 0.92);
  color: var(--ink);
  font-size: 0.79rem;
  font-weight: 700;
  line-height: 1.1;
}

.dialog-prices {
  margin-top: 2px;
}

.dialog-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

@media (min-width: 901px) {
  .dialog-text {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 16px 18px;
    align-items: start;
  }

  .dialog-intro-card {
    grid-column: 2;
  }

  .dialog-gallery {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
  }

  .dialog-gallery__card img {
    aspect-ratio: 16 / 10;
  }

  .dialog-gallery__card span {
    min-height: 3.35rem;
  }

  .dialog-details {
    grid-column: 2;
    max-height: min(420px, 48dvh);
    margin-top: 0;
  }

  .dialog-gallery__hero img {
    min-height: 420px;
  }
}

@keyframes heroCopyReveal {
  from {
    opacity: 0;
    transform: translate3d(-22px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes headerReveal {
  from {
    opacity: 0;
    transform: translate3d(0, -10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroTextReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroStampReveal {
  0% {
    opacity: 0;
    transform: rotate(-1.6deg) scale(1.24) translate3d(-12px, 8px, 0);
    filter: blur(4px);
  }
  58% {
    opacity: 1;
    transform: rotate(-1.6deg) scale(0.96) translate3d(0, 0, 0);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: rotate(-1.6deg) scale(1) translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes heroVisualReveal {
  from {
    opacity: 0;
    transform: translate3d(40px, 18px, 0) scale(0.975);
  }
  to {
    opacity: 1;
    transform: translate3d(calc(var(--hero-x) * 0.42px), calc(var(--hero-y) * 0.28px), 0) scale(1);
  }
}

@keyframes heroNoteReveal {
  from {
    opacity: 0;
    filter: blur(5px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes heroRouteDraw {
  from {
    opacity: 0;
    transform: rotate(-11deg) scaleX(0);
  }
  to {
    opacity: 1;
    transform: rotate(-11deg) scaleX(1);
  }
}

@keyframes heroRoutePoint {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFloat {
  0%,
  100% {
    margin-top: 0;
  }
  50% {
    margin-top: -10px;
  }
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translate3d(-50%, 24px, 0);
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  background: rgba(35, 21, 15, 0.94);
  color: #fff;
  box-shadow: 0 18px 40px rgba(33, 15, 7, 0.25);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
  z-index: 60;
  max-width: min(92vw, 560px);
}

.toast.is-visible {
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: minmax(230px, 280px) minmax(0, 1fr) auto;
    padding-inline: clamp(18px, 3vw, 34px);
  }

  .brand {
    width: clamp(230px, 27vw, 276px);
  }

  .brand-mark-image {
    width: clamp(272px, 32vw, 322px);
    max-height: 76px;
  }

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

  .site-nav {
    gap: 3px;
    padding: 4px;
  }

  .site-nav a {
    padding-inline: 0.62rem;
    font-size: 0.76rem;
  }

  .hero-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-benefits article {
    border-right: 0;
  }

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

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 14px;
    padding: 8px clamp(18px, 3vw, 28px) 10px;
  }

  .brand {
    width: min(46vw, 248px);
  }

  .brand-mark-image {
    width: min(54vw, 292px);
    max-height: 70px;
  }

  .site-nav {
    order: 3;
    grid-column: 1 / -1;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
  }

  .site-nav a {
    min-width: 0;
    white-space: normal;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "benefits";
    min-height: auto;
    padding-top: 34px;
    gap: 14px;
  }

  .hero-copy h1 {
    max-width: 13ch;
  }

  .hero-actions {
    display: flex;
    align-items: stretch;
  }

  .hero-actions .button-primary {
    min-width: min(260px, 100%);
  }

  .hero-travel-note--cta {
    width: 230px;
  }

  .hero-visual {
    width: min(100%, 720px);
    min-height: clamp(430px, 62vw, 560px);
    justify-self: center;
    margin: -4px auto 0;
  }

  .hero-scene {
    inset: 0 clamp(-38px, -3vw, -14px) 0 clamp(-58px, -5vw, -24px);
    background-size: min(112%, 900px) auto;
  }

  .hero-route-map {
    opacity: 0.42;
  }

  .hero-route-point {
    display: none;
  }

  .hero-travel-note--top {
    top: auto;
    right: auto;
    bottom: 22px;
    left: 22px;
    max-width: min(270px, 54%);
  }

  .dialog-shell {
    grid-template-columns: 1fr;
    max-height: calc(100dvh - 24px);
  }

  .dialog-media {
    aspect-ratio: 4 / 3;
  }

  .dialog-media img {
    height: 100%;
  }

  .dialog-copy {
    max-height: calc(100dvh - 24px);
    overflow: hidden;
  }
}

@media (max-width: 760px) {
  .site-header {
    gap: 10px 12px;
    padding: 8px 18px 10px;
  }

  .brand {
    gap: 0;
    width: min(54vw, 206px);
    padding: 3px 7px 3px 4px;
    border-radius: 8px;
  }

  .brand-mark-image {
    width: min(65vw, 248px);
    height: auto;
    max-height: 66px;
  }

  .cart-pill {
    gap: 7px;
    padding: 0.5rem 0.58rem;
    font-size: 0.94rem;
  }

  .cart-pill strong {
    min-width: 1.58rem;
    padding: 0.22rem 0.5rem;
    font-size: 0.86rem;
  }

  .brand-copy strong {
    font-size: clamp(1.2rem, 6vw, 1.55rem);
  }

  .brand-copy span {
    font-size: 0.56rem;
    letter-spacing: 0.08em;
  }

  .site-nav {
    padding-top: 2px;
  }

  .site-nav a {
    min-width: 0;
    padding: 0.48rem 0.28rem;
    font-size: 0.64rem;
    letter-spacing: 0.03em;
    white-space: normal;
  }

  .catalog,
  .promo,
  .process {
    scroll-margin-top: 265px;
  }

  .hero {
    min-height: auto;
    padding: 24px 18px 26px;
    border-radius: 0;
    background-size: auto, auto, auto, auto, auto 96px, auto;
    gap: 12px;
  }

  .hero-copy h1 {
    max-width: 10.4ch;
    font-size: clamp(2.5rem, 11.2vw, 3.9rem);
    line-height: 0.92;
  }

  .hero-copy h1 span {
    display: block;
    width: fit-content;
    margin-top: 0.14em;
    border-radius: 6px;
    font-size: 0.48em;
    line-height: 0.94;
  }

  .hero-route-line {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .hero-lead {
    font-size: 0.96rem;
    line-height: 1.56;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(150px, max-content);
    gap: 10px;
    align-items: stretch;
  }

  .hero-visual {
    width: min(100%, 620px);
    min-height: clamp(340px, 58vw, 430px);
    margin: 0 auto;
  }

  .catalog.section-band {
    padding: 24px 18px 56px;
  }

  .catalog .section-head {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
  }

  .catalog .section-head h2 {
    max-width: 10ch;
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 0.98;
  }

  .catalog .section-head p {
    padding-top: 0;
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .catalog-toolbar {
    gap: 12px;
    margin-bottom: 18px;
  }

  .filters {
    gap: 7px;
  }

  .filter-chip {
    padding: 0.58rem 0.74rem;
    font-size: 0.84rem;
  }

  .city-head {
    align-items: start;
  }

  .city-head h3 {
    font-size: 1.48rem;
  }

  .catalog-result-note {
    font-size: 0.82rem;
  }

  .hero-route-map {
    display: none;
  }

  .hero-scene {
    inset: 0 -28px 0 -28px;
    background-size: min(112%, 620px) auto;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  }

  .hero-travel-note {
    max-width: calc(100% - 36px);
    padding: 10px 34px 10px 11px;
    border-radius: 6px;
  }

  .hero-travel-note--cta {
    width: auto;
    max-width: 100%;
    min-height: 100%;
  }

  .hero-travel-note--top {
    top: auto;
    bottom: 14px;
    right: auto;
    left: 18px;
  }

  .hero-travel-note strong {
    font-size: 0.94rem;
  }

  .hero-float {
    opacity: 0.5;
  }

  .hero-float--boat {
    left: 8%;
    bottom: 24%;
  }

  .hero-float--lantern {
    right: 8%;
    top: 18%;
  }

  .hero-float--lotus {
    right: 12%;
    bottom: 12%;
  }

  .hero-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    background-size: auto, auto 112%;
  }

  .hero-benefits article {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    justify-content: stretch;
    min-height: 58px;
    padding: 7px 8px;
    background: rgba(255, 253, 247, 0.5);
  }

  .hero-benefits span {
    font-size: 0.75rem;
    line-height: 1.15;
  }

  .benefit-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

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

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

  .city-head,
  .cart-item__head {
    flex-direction: column;
    align-items: start;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .cart-drawer {
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: min(86dvh, calc(100dvh - 92px));
    transform: translateY(calc(100% + 16px));
    pointer-events: none;
  }

  .cart-drawer.is-open {
    transform: translateY(0);
  }

  .cart-shell {
    display: block;
    border-radius: 28px 28px 0 0;
    background:
      radial-gradient(circle at 14% 5%, rgba(255, 177, 90, 0.12), transparent 28%),
      linear-gradient(180deg, #fffdf8, #fff8f0);
    box-shadow: 0 -18px 54px rgba(75, 23, 8, 0.24);
  }

  .cart-list {
    min-height: 0;
    max-height: none;
    overflow: visible;
  }

  body:has(.cart-drawer.is-open) .toast {
    bottom: calc(16px + env(safe-area-inset-bottom));
    max-width: calc(100vw - 32px);
    border-radius: 18px;
  }

  .cart-item {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .cart-qty {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-start;
  }

  .cart-qty strong {
    min-width: 1.5rem;
    text-align: center;
  }

  .dialog-shell {
    grid-template-columns: 1fr;
    max-height: calc(100dvh - 24px);
  }

  .dialog-media {
    aspect-ratio: 4 / 3;
  }

  .dialog-media img {
    height: 100%;
  }

  .dialog-copy {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px 18px calc(20px + env(safe-area-inset-bottom));
    max-height: calc(100dvh - 12px);
    overflow: auto;
  }

  .dialog-text {
    min-height: auto;
    overflow: visible;
  }

  .dialog-details {
    max-height: none;
    padding: 14px;
  }

  .dialog-gallery {
    margin-inline: 0;
  }

  .dialog-gallery__hero img {
    min-height: 232px;
  }

  .dialog-gallery--grid .dialog-gallery__grid {
    gap: 10px;
  }

  .dialog-gallery__card span {
    min-height: 3.3rem;
    padding: 10px 10px 11px;
    font-size: 0.8rem;
  }

  .dialog-tags {
    gap: 6px;
  }

  .dialog-tags span {
    font-size: 0.75rem;
  }

  .dialog-prices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dialog-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .dialog-actions .button {
    width: 100%;
  }

  .gallery-lightbox {
    width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
  }

  .gallery-lightbox__shell {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 100dvh;
    padding: 16px 0 12px;
    border-radius: 0;
  }

  .gallery-lightbox__nav {
    position: absolute;
    top: calc(50% - 29px);
    z-index: 2;
  }

  .gallery-lightbox__nav--prev {
    left: 10px;
  }

  .gallery-lightbox__nav--next {
    right: 10px;
  }

  .gallery-lightbox__stage img {
    max-height: 64dvh;
    border-radius: 0;
  }

  .gallery-lightbox__stage figcaption {
    display: grid;
    padding-inline: 14px;
  }

  .gallery-lightbox__thumbs {
    grid-template-columns: repeat(4, 160px);
    overflow-x: auto;
    padding-inline: 14px;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .gallery-lightbox__thumbs::-webkit-scrollbar {
    display: none;
  }

  .dialog-detail-time {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .request-draft__actions {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero,
  .hero-route-map,
  .hero-visual,
  .hero-scene,
  .hero-travel-note,
  .hero-float {
    transform: none !important;
  }
}
