/* russiaguides.ru · design system 9: Bright Regional System */

:root {
  --primary: #159B9A;
  --primary-dark: #1E4F4F;
  --accent: #E75834;
  --ink: #1E2A2F;
  --paper: #F8F5EC;
  --surface: #FFFFFF;
  --muted-bg: #DDEBE7;
  --sand: #F1E6C8;
  --success: #2F7D50;
  --blue: #2F7DD8;
  --gold: #DCA914;
  --muted: #647179;
  --border: rgba(30, 42, 47, 0.13);
  --border-strong: rgba(30, 42, 47, 0.22);
  --shadow: 0 10px 30px rgba(30, 42, 47, 0.13);
  --shadow-soft: 0 18px 54px rgba(30, 42, 47, 0.10);
  --radius: 16px;
  --radius-sm: 10px;
  --button-radius: 14px;
  --container: 1200px;
  --font-head: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  margin-top: 0;
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--ink);
}

p {
  margin-top: 0;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
  text-underline-offset: 3px;
}

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

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.muted {
  color: var(--muted);
}

.section-title {
  margin: 0 0 28px;
  font-size: 34px;
}

main > section {
  padding: 64px 0;
}

main > section:not(.hero):not(.order):not(.breadcrumbs):not(.region-strip):not(.city-cta):nth-of-type(even) {
  background: rgba(255, 255, 255, 0.46);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: var(--button-radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--primary {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(21, 155, 154, 0.20);
}

.btn--primary:hover {
  color: #fff;
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn--primary::after {
  content: "→";
  font-weight: 900;
}

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

.btn--ghost:hover {
  color: var(--primary-dark);
  background: var(--muted-bg);
}

.btn--lg {
  min-height: 52px;
  padding: 14px 24px;
  font-size: 16px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 245, 236, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: saturate(1.25) blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 76px;
}

.logo {
  display: grid;
  grid-template-columns: 48px auto;
  gap: 12px;
  align-items: center;
  min-width: 230px;
}

.logo:hover {
  text-decoration: none;
}

.logo::before {
  content: none;
  grid-row: 1 / span 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 54% 30%, var(--accent) 0 5px, transparent 6px),
    var(--primary);
  box-shadow: inset 0 -9px 0 rgba(30, 79, 79, 0.15);
}

.logo__mark {
  grid-row: 1 / span 2;
  width: 48px;
  height: 48px;
}

.logo__name {
  grid-column: 2;
  display: block;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.1;
  color: var(--ink);
  text-transform: uppercase;
}

.logo__since {
  grid-column: 2;
  display: block;
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.3;
  color: var(--muted);
}

.site-nav {
  margin-left: auto;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--primary-dark);
  background: var(--muted-bg);
  text-decoration: none;
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.15;
}

.header-phone:hover {
  text-decoration: none;
}

.header-phone__num {
  font-weight: 900;
  font-size: 18px;
  color: var(--primary-dark);
}

.header-phone__note {
  font-size: 12px;
  color: var(--muted);
}

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

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 12px;
  background: linear-gradient(90deg, var(--blue) 0 20%, var(--primary) 20% 40%, var(--accent) 40% 60%, var(--success) 60% 80%, var(--gold) 80% 100%);
}

.hero:not(.hero--plain) {
  background-image:
    linear-gradient(90deg, rgba(20, 31, 35, 0.82) 0%, rgba(20, 31, 35, 0.58) 44%, rgba(20, 31, 35, 0.24) 76%, rgba(20, 31, 35, 0.08) 100%),
    var(--hero-img);
  background-size: cover;
  background-position: center;
}

.hero--plain {
  background:
    repeating-linear-gradient(90deg, rgba(21, 155, 154, 0.08) 0 1px, transparent 1px 80px),
    var(--paper);
}

.hero__inner {
  position: relative;
  z-index: 1;
  isolation: isolate;
  max-width: 760px;
}

.hero:not(.hero--plain) .hero__inner::before {
  content: "";
  position: absolute;
  inset: -30px -34px -28px;
  z-index: -1;
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 8%, rgba(21, 155, 154, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(18, 30, 34, 0.42), rgba(18, 30, 34, 0.14));
  box-shadow: 0 24px 72px rgba(8, 18, 22, 0.22);
  pointer-events: none;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: var(--muted-bg);
  font-size: 13px;
  font-weight: 900;
}

.hero__kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.hero:not(.hero--plain) .hero__kicker {
  color: #fff;
  background: rgba(21, 155, 154, 0.9);
  box-shadow: 0 10px 26px rgba(8, 18, 22, 0.18);
}

.hero__title {
  max-width: 720px;
  margin: 0 0 20px;
  font-size: 48px;
  line-height: 1.08;
}

.hero__intro {
  max-width: 700px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.hero:not(.hero--plain) .hero__title,
.hero:not(.hero--plain) .hero__intro,
.hero:not(.hero--plain) .hero__phone,
.hero:not(.hero--plain) .hero__phone .muted {
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.36);
}

.hero:not(.hero--plain) .hero__phone .muted {
  opacity: 0.82;
}

.hero:not(.hero--plain) .hero__phone a {
  color: #fff;
}

.hero:not(.hero--plain) .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.84);
}

.hero:not(.hero--plain) .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero__phone {
  margin: 0;
  font-size: 15px;
}

.hero__phone a {
  font-weight: 900;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.hero__facts li {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(20, 31, 35, 0.46);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 30px rgba(8, 18, 22, 0.14);
}

.hero--plain .hero__facts li {
  color: var(--ink);
  border-color: var(--border);
  background: var(--surface);
}

.hero__facts b,
.hero__facts span {
  display: block;
}

.hero__facts b {
  margin-bottom: 4px;
  font-size: 20px;
  line-height: 1.1;
}

.hero__facts span {
  opacity: 0.84;
  font-size: 13px;
  line-height: 1.35;
}

.hero-return {
  position: fixed;
  right: clamp(16px, 2.6vw, 34px);
  bottom: calc(22px + env(safe-area-inset-bottom));
  z-index: 70;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  color: var(--primary-dark);
  background:
    radial-gradient(circle at 78% 82%, rgba(21, 155, 154, 0.13) 0 26%, transparent 27%),
    var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.hero-return::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--blue) 0 25%, var(--primary) 25% 50%, var(--accent) 50% 75%, var(--success) 75% 100%);
}

.hero-return::after {
  content: "";
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 54px;
  height: 54px;
  border: 9px solid rgba(21, 155, 154, 0.14);
  border-radius: 50%;
}

.hero-return span {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: var(--primary-dark);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.hero-return:hover,
.hero-return:focus-visible {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 18px 44px rgba(21, 155, 154, 0.22);
}

.hero-return:focus-visible {
  outline: 3px solid rgba(21, 155, 154, 0.22);
  outline-offset: 3px;
}

/* Regional navigation */
.region-strip {
  padding: 24px 0 0;
  background: var(--paper);
}

.region-strip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.region-tile {
  display: grid;
  grid-template-columns: 34px auto;
  align-items: center;
  min-height: 88px;
  padding: 18px;
  border-radius: var(--radius);
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.region-tile:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.region-tile--0 {
  background: var(--blue);
}

.region-tile--1 {
  background: var(--primary);
}

.region-tile--2 {
  background: var(--accent);
}

.region-tile--3 {
  background: var(--success);
}

.region-tile--4 {
  background: var(--gold);
}

.region-tile__mark {
  position: relative;
  width: 24px;
  height: 24px;
}

.region-tile__mark::before,
.region-tile__mark::after {
  content: "";
  position: absolute;
  background: #fff;
}

.region-tile__mark::before {
  inset: 5px 10px;
  border-radius: 999px;
}

.region-tile__mark::after {
  inset: 10px 5px;
  border-radius: 999px;
}

.region-tile__name {
  display: block;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
}

.region-tile__count {
  grid-column: 2;
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.56);
  border-bottom: 1px solid var(--border);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.breadcrumbs li + li::before {
  content: "→";
  margin-right: 8px;
  color: var(--muted);
}

.breadcrumbs [aria-current] {
  color: var(--muted);
}

/* Services */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(30, 42, 47, 0.06);
}

.service__mark {
  display: inline-block;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: var(--primary);
}

.service:nth-child(1) .service__mark {
  background: var(--blue);
}

.service:nth-child(2) .service__mark {
  background: var(--primary);
}

.service:nth-child(3) .service__mark {
  background: var(--accent);
}

.service:nth-child(4) .service__mark {
  background: var(--success);
}

.service__title {
  display: flex;
  align-items: flex-start;
  min-height: 48px;
  margin: 0;
  font-size: 20px;
}

.service__desc {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

/* Popular cities */
.popular__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px;
}

.city-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 0;
  min-height: 104px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(30, 42, 47, 0.06);
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.city-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--primary);
}

.city-card:nth-child(5n + 1)::before {
  background: var(--blue);
}

.city-card:nth-child(5n + 2)::before {
  background: var(--primary);
}

.city-card:nth-child(5n + 3)::before {
  background: var(--accent);
}

.city-card:nth-child(5n + 4)::before {
  background: var(--success);
}

.city-card:nth-child(5n)::before {
  background: var(--gold);
}

.city-card__media {
  display: block;
  height: 132px;
  overflow: hidden;
  background: var(--muted-bg);
}

.city-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.24s ease;
}

.city-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  text-decoration: none;
  transform: translateY(-2px);
}

.city-card:hover .city-card__media img {
  transform: scale(1.035);
}

.city-card--static:hover {
  border-color: var(--border);
  box-shadow: 0 8px 22px rgba(30, 42, 47, 0.06);
  transform: none;
}

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

.city-card__name {
  display: block;
  min-height: 48px;
  margin: 18px 20px 0;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--ink);
}

.city-card__region {
  display: block;
  margin: 8px 20px 20px;
  font-size: 13px;
}

.popular__more {
  margin: 28px 0 0;
}

/* Order steps and content sections */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step {
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(30, 42, 47, 0.06);
}

.step__num {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 14px;
  color: #fff;
  background: var(--accent);
  font-size: 18px;
  font-weight: 900;
}

.step p {
  margin: 0;
  font-weight: 700;
}

.section-action {
  margin: 28px 0 0;
}

.section-lead {
  max-width: 720px;
  margin: -12px 0 28px;
  color: var(--muted);
  font-size: 18px;
}

.about-service__intro {
  max-width: 920px;
  margin-bottom: 34px;
}

.about-service__intro .section-title {
  margin-bottom: 18px;
}

.about-service__intro p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.benefits {
  padding: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, var(--blue) 0 25%, var(--primary) 25% 50%, var(--accent) 50% 75%, var(--success) 75% 100%) top / 100% 8px no-repeat,
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.benefits h3 {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.18;
}

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

.benefit {
  position: relative;
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--paper);
}

.benefit__num {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: #fff;
  background: var(--primary);
  font-size: 16px;
  font-weight: 900;
}

.benefit:nth-child(2) .benefit__num {
  background: var(--blue);
}

.benefit:nth-child(3) .benefit__num {
  background: var(--accent);
}

.benefit:nth-child(4) .benefit__num {
  background: var(--success);
}

.benefit h4 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

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

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

.team-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--muted-bg);
}

.team-card h3 {
  margin: 20px 20px 8px;
  font-size: 22px;
}

.team-card__role {
  min-height: 54px;
  margin: 0 20px 14px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.team-card p:last-child {
  margin: 0 20px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

/* Homepage · DS9 regional redesign */
.section-head {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.section-head--split .section-title {
  margin-bottom: 0;
}

.section-head--split .section-lead {
  max-width: 430px;
  margin: 0;
}

.section-head--center {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-eyebrow::before {
  content: "";
  width: 22px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
}

.page-home .hero {
  min-height: auto;
  padding: 72px 0 56px;
  background:
    radial-gradient(circle at 12% 18%, rgba(21, 155, 154, 0.18), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(231, 88, 52, 0.14), transparent 24%),
    linear-gradient(135deg, var(--paper) 0%, #fffaf0 100%);
}

.page-home .hero:not(.hero--plain) {
  background:
    radial-gradient(circle at 12% 18%, rgba(21, 155, 154, 0.18), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(231, 88, 52, 0.14), transparent 24%),
    linear-gradient(135deg, var(--paper) 0%, #fffaf0 100%);
}

.page-home .hero::after {
  content: "";
  position: absolute;
  inset: 22px 0 auto;
  height: 170px;
  opacity: 0.45;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(21, 155, 154, 0.12) 0 2px, transparent 2px 78px),
    repeating-linear-gradient(0deg, rgba(241, 230, 200, 0.62) 0 2px, transparent 2px 78px);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 72%, transparent);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  gap: 54px;
  align-items: center;
}

.hero__content {
  max-width: 720px;
}

.page-home .hero:not(.hero--plain) .hero__kicker {
  color: var(--primary-dark);
  background: var(--muted-bg);
}

.page-home .hero:not(.hero--plain) .hero__title,
.page-home .hero:not(.hero--plain) .hero__intro,
.page-home .hero:not(.hero--plain) .hero__phone {
  color: var(--ink);
  text-shadow: none;
}

.page-home .hero:not(.hero--plain) .hero__phone .muted {
  color: var(--muted);
  opacity: 1;
}

.page-home .hero:not(.hero--plain) .hero__phone a {
  color: var(--primary-dark);
}

.page-home .hero:not(.hero--plain) .btn--ghost {
  color: var(--primary-dark);
  border-color: var(--primary);
}

.page-home .hero:not(.hero--plain) .btn--ghost:hover {
  background: var(--muted-bg);
}

.page-home .hero__title {
  max-width: 780px;
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1.04;
}

.page-home .hero__intro {
  max-width: 650px;
  color: var(--muted);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
  margin: 28px 0 0;
}

.hero__stats div {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 22px rgba(30, 42, 47, 0.06);
}

.hero__stats dt {
  margin-bottom: 4px;
  color: var(--primary-dark);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
}

.hero__stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.region-tile--0 {
  background: var(--blue);
}

.region-tile--1 {
  background: var(--primary);
}

.region-tile--2 {
  background: var(--accent);
}

.region-tile--3 {
  background: var(--success);
}

.region-tile--4 {
  background: var(--gold);
}

.hero-photo {
  position: relative;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 10px);
  background:
    linear-gradient(90deg, var(--blue) 0 20%, var(--primary) 20% 40%, var(--accent) 40% 60%, var(--success) 60% 80%, var(--gold) 80% 100%) top / 100% 10px no-repeat,
    var(--surface);
  box-shadow: var(--shadow);
}

.hero-photo::before {
  content: "";
  position: absolute;
  right: -26px;
  bottom: 46px;
  width: 120px;
  height: 120px;
  border: 10px solid rgba(231, 88, 52, 0.22);
  border-radius: 50%;
}

.hero-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 430px;
  height: clamp(430px, 42vw, 560px);
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--muted-bg);
}

.region-strip {
  padding: 54px 0 34px;
  background: var(--paper);
}

.region-strip__grid {
  grid-template-columns: repeat(5, 1fr);
}

.region-tile {
  grid-template-columns: 1fr;
  grid-template-rows: 40px 64px 1fr;
  align-items: start;
  align-content: start;
  gap: 14px;
  min-height: 190px;
  padding: 18px;
}

.region-tile__symbol {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.region-tile__name {
  display: flex;
  align-items: flex-end;
  margin-top: 0;
  font-size: 23px;
  line-height: 1.1;
}

.region-tile__count {
  grid-column: auto;
  max-width: 210px;
  font-size: 13px;
  line-height: 1.38;
}

.services {
  background:
    radial-gradient(circle at 8% 20%, rgba(47, 125, 216, 0.08), transparent 28%),
    var(--surface);
}

.services__grid {
  gap: 18px;
}

.service {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 24px;
  row-gap: 22px;
}

.service::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 104px;
  height: 104px;
  border: 10px solid rgba(21, 155, 154, 0.12);
  border-radius: 50%;
}

.service__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 0;
  border-radius: 17px;
  background: var(--muted-bg);
}

.service:nth-child(1) .service__icon {
  background: color-mix(in srgb, var(--blue) 15%, white);
}

.service:nth-child(2) .service__icon {
  background: var(--muted-bg);
}

.service:nth-child(3) .service__icon {
  background: color-mix(in srgb, var(--accent) 14%, white);
}

.service:nth-child(4) .service__icon {
  background: color-mix(in srgb, var(--success) 14%, white);
}

.service__icon img {
  width: 32px;
  height: 32px;
}

.popular {
  background:
    linear-gradient(180deg, rgba(221, 235, 231, 0.42), transparent 260px),
    var(--paper);
}

.popular__grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.city-card {
  overflow: hidden;
  min-height: 336px;
  align-content: start;
}

.city-card__region {
  line-height: 1.45;
}

.how-order {
  background: var(--surface);
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 24px;
}

.step::before {
  content: "";
  position: absolute;
  right: -18px;
  top: -18px;
  width: 96px;
  height: 96px;
  opacity: 0.14;
  border-radius: 50%;
  background: var(--accent);
}

.step__num {
  position: absolute;
  top: 18px;
  right: 18px;
  margin: 0;
  background: var(--primary-dark);
}

.step__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 56px;
  border-radius: 18px;
  background: var(--muted-bg);
}

.step h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.step p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

.about-service {
  background:
    radial-gradient(circle at 85% 16%, rgba(231, 88, 52, 0.10), transparent 28%),
    var(--paper);
}

.about-service__layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 30px;
  align-items: start;
}

.about-service__intro {
  position: sticky;
  top: 104px;
  margin: 0;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 8px);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.about-service__intro p {
  font-size: 17px;
  line-height: 1.65;
}

.about-service__note {
  margin-top: 24px;
  padding: 18px;
  border-left: 5px solid var(--accent);
  border-radius: 10px;
  background: var(--sand);
  font-weight: 650;
  line-height: 1.5;
}

.benefits {
  padding: 30px;
  border-radius: calc(var(--radius) + 8px);
}

.benefits h3 {
  font-size: 34px;
}

.benefit {
  display: grid;
  grid-template-rows: 40px 82px 1fr;
  align-content: start;
  row-gap: 18px;
  min-height: 260px;
  background: #fffaf0;
}

.benefit__num {
  margin-bottom: 0;
}

.benefit h4 {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0;
}

.team {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(21, 155, 154, 0.08), rgba(231, 88, 52, 0.07)),
    var(--surface);
}

.team::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 12px;
  background: linear-gradient(90deg, var(--blue) 0 20%, var(--primary) 20% 40%, var(--accent) 40% 60%, var(--success) 60% 80%, var(--gold) 80% 100%);
}

.team__grid {
  gap: 18px;
}

.team-card {
  position: relative;
  box-shadow: 0 8px 22px rgba(30, 42, 47, 0.08);
}

.team-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  height: 7px;
  background: var(--primary);
}

.team-card:nth-child(1)::before {
  background: var(--blue);
}

.team-card:nth-child(3)::before {
  background: var(--accent);
}

.team-card:nth-child(4)::before {
  background: var(--success);
}

.team-card__photo {
  aspect-ratio: 4 / 5;
}

.team-card h3 {
  display: flex;
  align-items: flex-start;
  min-height: 49px;
}

/* Rich city pages */
.city-snapshot {
  background:
    radial-gradient(circle at 10% 0%, rgba(47, 125, 216, 0.08), transparent 28%),
    var(--paper);
}

.city-snapshot__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.city-snapshot__layout > .section-head {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.city-snapshot__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.city-snapshot-card,
.city-plan-card,
.route-step,
.city-fact,
.city-recommendation {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(30, 42, 47, 0.06);
}

.city-snapshot-card {
  position: relative;
  min-height: 176px;
  padding: 22px;
  overflow: hidden;
}

.city-snapshot-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7px;
  background: var(--primary);
}

.city-snapshot-card:nth-child(4n + 1)::before {
  background: var(--blue);
}

.city-snapshot-card:nth-child(4n + 2)::before {
  background: var(--primary);
}

.city-snapshot-card:nth-child(4n + 3)::before {
  background: var(--accent);
}

.city-snapshot-card:nth-child(4n)::before {
  background: var(--success);
}

.city-snapshot-card__label {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.city-snapshot-card h3,
.route-step h3,
.city-fact h3,
.city-recommendation h3 {
  margin: 0 0 10px;
  color: var(--ink);
  line-height: 1.18;
}

.city-snapshot-card h3 {
  font-size: 23px;
}

.city-snapshot-card p,
.route-step p,
.city-fact p,
.city-recommendation p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.city-plan-card {
  position: sticky;
  top: 96px;
  padding: 24px;
  background:
    linear-gradient(90deg, var(--blue) 0 25%, var(--primary) 25% 50%, var(--accent) 50% 75%, var(--success) 75% 100%) top / 100% 7px no-repeat,
    var(--surface);
}

.city-plan-card h3 {
  margin: 0 0 18px;
  font-size: 25px;
}

.city-plan-card ul {
  display: grid;
  gap: 14px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.city-plan-card li {
  display: grid;
  gap: 4px;
  padding-left: 18px;
  border-left: 4px solid var(--muted-bg);
}

.city-plan-card b {
  color: var(--ink);
}

.city-plan-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.city-plan-card .btn {
  width: 100%;
}

.city-route {
  background:
    linear-gradient(180deg, rgba(221, 235, 231, 0.42), transparent 280px),
    var(--surface);
}

.city-route__layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 30px;
  align-items: start;
}

.city-route__intro {
  position: sticky;
  top: 104px;
}

.city-route__intro p {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.route-timeline {
  display: grid;
  gap: 14px;
  counter-reset: route;
}

.route-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 18px;
  padding: 22px;
}

.route-step__num {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #fff;
  background: var(--primary);
  font-size: 18px;
  font-weight: 900;
}

.route-step:nth-child(4n + 1) .route-step__num {
  background: var(--blue);
}

.route-step:nth-child(4n + 2) .route-step__num {
  background: var(--primary);
}

.route-step:nth-child(4n + 3) .route-step__num {
  background: var(--accent);
}

.route-step:nth-child(4n) .route-step__num {
  background: var(--success);
}

.city-facts {
  background: var(--paper);
}

.city-facts__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.city-fact {
  min-height: 250px;
  padding: 22px;
}

.city-fact__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 14px;
  color: #fff;
  background: var(--accent);
  font-weight: 900;
}

.city-fact h3 {
  min-height: 54px;
  font-size: 20px;
}

.city-gallery-section {
  background:
    radial-gradient(circle at 92% 10%, rgba(231, 88, 52, 0.10), transparent 24%),
    var(--surface);
}

.city-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 14px;
}

.city-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--muted-bg);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.city-gallery__item--wide {
  grid-column: span 2;
  grid-row: span 2;
}

.city-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.city-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(30, 42, 47, 0.76));
}

.city-gallery__item span {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 16px;
  font-weight: 900;
  line-height: 1.25;
}

.city-gallery__item:hover {
  color: #fff;
  text-decoration: none;
}

.city-gallery__item:hover img {
  transform: scale(1.035);
}

.city-recommendations {
  background: var(--paper);
}

.city-recommendations__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.city-recommendation {
  display: block;
  min-height: 210px;
  padding: 22px;
  overflow: hidden;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.city-recommendation--photo {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.city-recommendation__media {
  position: relative;
  height: 178px;
  overflow: hidden;
  background: var(--muted-bg);
}

.city-recommendation__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(180deg, transparent, rgba(30, 42, 47, 0.34));
  pointer-events: none;
}

.city-recommendation__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.22s ease;
}

.city-recommendation:hover .city-recommendation__media img {
  transform: scale(1.04);
}

.city-recommendation__body {
  display: grid;
  align-content: start;
  gap: 10px;
}

.city-recommendation--photo .city-recommendation__body {
  flex: 1;
  padding: 20px;
}

.city-recommendation:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  text-decoration: none;
  transform: translateY(-2px);
}

.city-recommendation--static:hover {
  border-color: var(--border);
  box-shadow: 0 8px 22px rgba(30, 42, 47, 0.06);
  transform: none;
}

.city-recommendation__label {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.city-recommendation h3 {
  font-size: 23px;
}

.city-cta {
  padding: 16px 0;
}

.city-cta--after-hero {
  padding-top: 22px;
}

.city-cta__card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    radial-gradient(circle at 96% 10%, rgba(220, 169, 20, 0.07), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 245, 236, 0.74));
  box-shadow: 0 12px 34px rgba(30, 42, 47, 0.06);
}

.city-cta__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  width: 92px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--blue) 0 20%, var(--primary) 20% 40%, var(--accent) 40% 60%, var(--success) 60% 80%, var(--gold) 80% 100%);
  pointer-events: none;
  z-index: 1;
}

.city-cta__card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -58px;
  width: 122px;
  height: 122px;
  border: 18px solid rgba(21, 155, 154, 0.055);
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

.city-cta__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.city-cta__mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(21, 155, 154, 0.20);
  border-radius: 14px;
  background: rgba(221, 235, 231, 0.70);
}

.city-cta__mark::before {
  content: "?";
  color: var(--primary-dark);
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
}

.city-cta__eyebrow {
  margin: 0 0 3px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.city-cta__title {
  margin: 0 0 3px;
  color: var(--ink);
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 900;
  line-height: 1.16;
}

.city-cta__text {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.city-cta__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.city-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 13px;
  border: 1px solid rgba(30, 79, 79, 0.22);
  border-radius: 999px;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  box-shadow: none;
}

.city-cta__button:hover {
  color: var(--primary-dark);
  background: var(--muted-bg);
  border-color: var(--primary-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

.city-cta__button--order {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 10px 22px rgba(21, 155, 154, 0.14);
}

.city-cta__button--order:hover {
  color: #fff;
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.city-cta__button-icon {
  display: inline-grid;
  place-items: center;
  min-width: 25px;
  height: 25px;
  padding: 0 6px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: rgba(221, 235, 231, 0.80);
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
}

.city-cta__button--order .city-cta__button-icon {
  color: var(--primary-dark);
  background: #fff;
}

.city-order-steps,
.city-benefits-detail,
.city-manager {
  background:
    radial-gradient(circle at 10% 12%, rgba(21, 155, 154, 0.10), transparent 26%),
    radial-gradient(circle at 88% 16%, rgba(220, 169, 20, 0.11), transparent 24%),
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
}

.city-order-steps__grid,
.city-benefits-detail__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.city-order-step,
.city-benefit-detail,
.city-manager__inner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.city-order-step {
  min-height: 270px;
  padding: 28px;
}

.city-order-step::before,
.city-benefit-detail::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: var(--primary);
  z-index: -1;
}

.city-order-step::after,
.city-benefit-detail::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -48px;
  width: 140px;
  height: 140px;
  border: 18px solid rgba(21, 155, 154, 0.11);
  border-radius: 999px;
  z-index: -1;
}

.city-order-step:nth-child(3n + 1)::before,
.city-benefit-detail:nth-child(4n + 1)::before {
  background: var(--blue);
}

.city-order-step:nth-child(3n + 2)::before,
.city-benefit-detail:nth-child(4n + 2)::before {
  background: var(--primary);
}

.city-order-step:nth-child(3n)::before,
.city-benefit-detail:nth-child(4n + 3)::before {
  background: var(--accent);
}

.city-benefit-detail:nth-child(4n)::before {
  background: var(--success);
}

.city-order-step:nth-child(3n + 1)::after,
.city-benefit-detail:nth-child(4n + 1)::after {
  border-color: rgba(47, 125, 216, 0.13);
}

.city-order-step:nth-child(3n)::after,
.city-benefit-detail:nth-child(4n + 3)::after {
  border-color: rgba(231, 88, 52, 0.13);
}

.city-benefit-detail:nth-child(4n)::after {
  border-color: rgba(47, 125, 80, 0.13);
}

.city-order-step__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.city-order-step__icon,
.city-benefit-detail__icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 22px;
  background-color: var(--muted-bg);
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px rgba(30, 42, 47, 0.05);
}

.city-order-step__icon {
  width: 70px;
  height: 70px;
  background-image: url("/assets/icons/ds9/route.svg");
  background-size: 48px;
}

.city-order-step:nth-child(2) .city-order-step__icon {
  background-image: url("/assets/icons/ds9/guide.svg");
}

.city-order-step:nth-child(3) .city-order-step__icon {
  background-image: url("/assets/icons/ds9/walk.svg");
}

.city-order-step__num {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  color: #fff;
  background: var(--primary-dark);
  box-shadow: 0 10px 22px rgba(30, 79, 79, 0.16);
  font-weight: 900;
}

.city-order-step h3,
.city-benefit-detail h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.city-order-step p,
.city-benefit-detail p,
.city-manager__body p {
  margin: 0;
  color: var(--muted);
}

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

.city-benefit-detail {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 20px;
  min-height: 190px;
  padding: 30px;
}

.city-benefit-detail__icon {
  width: 64px;
  height: 64px;
  background-image: url("/assets/icons/ds9/guide.svg");
  background-size: 44px;
}

.city-benefit-detail:nth-child(2) .city-benefit-detail__icon {
  background-image: url("/assets/icons/ds9/route.svg");
}

.city-benefit-detail:nth-child(3) .city-benefit-detail__icon {
  background-image: url("/assets/icons/ds9/group.svg");
}

.city-benefit-detail:nth-child(4) .city-benefit-detail__icon {
  background-image: url("/assets/icons/ds9/architecture.svg");
}

.city-manager__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 32px;
  padding: 38px;
}

.city-manager__inner::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, var(--blue) 0 24%, var(--primary) 24% 48%, var(--accent) 48% 72%, var(--success) 72% 100%);
  z-index: -1;
}

.city-manager__inner::after {
  content: "";
  position: absolute;
  left: -54px;
  bottom: -58px;
  width: 180px;
  height: 180px;
  border: 22px solid rgba(220, 169, 20, 0.13);
  border-radius: 999px;
  z-index: -1;
}

.city-manager__intro {
  display: grid;
  align-content: start;
  gap: 20px;
}

.city-manager__intro .section-title {
  margin-bottom: 0;
}

.city-manager__phone {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  color: var(--primary-dark);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 950;
  line-height: 1.1;
}

.city-manager__phone:hover {
  color: var(--primary);
  text-decoration: none;
}

.city-manager__phone span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

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

.city-manager__badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: var(--muted-bg);
  font-size: 14px;
  font-weight: 900;
}

.city-manager__badges span:first-child {
  color: #fff;
  background: var(--primary-dark);
}

.city-manager__body {
  display: grid;
  gap: 22px;
}

.city-manager__people {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.city-manager-person {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 126px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(135deg, #fff 0%, rgba(221, 235, 231, 0.58) 100%);
}

.city-manager-person img {
  width: 118px;
  height: 92px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 12px 26px rgba(30, 42, 47, 0.13);
}

.city-manager-person h3 {
  margin: 0 0 4px;
  font-size: 20px;
}

.city-manager-person p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 14px;
}

.city-manager-person a {
  color: var(--primary-dark);
  font-weight: 900;
}

.city-manager__copy {
  display: grid;
  gap: 12px;
}

.city-manager__copy p {
  margin: 0;
  color: var(--muted);
}

.city-manager__actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.city-manager__channel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 18px;
  border: 2px solid var(--primary);
  border-radius: var(--button-radius);
  color: #fff;
  background: var(--primary);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 14px 28px rgba(21, 155, 154, 0.18);
}

.city-manager__channel:hover {
  color: #fff;
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

.city-manager__channel--max {
  color: var(--primary-dark);
  background: #fff;
  border-color: var(--primary-dark);
  box-shadow: none;
}

.city-manager__channel--max:hover {
  color: #fff;
  background: var(--primary-dark);
}

.city-manager__channel--order {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 14px 28px rgba(241, 80, 49, 0.16);
}

.city-manager__channel--order:hover {
  color: #fff;
  background: #c84427;
  border-color: #c84427;
}

.city-manager__channel-icon {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  border-radius: 12px;
  color: var(--primary-dark);
  background: #fff;
  font-size: 12px;
  line-height: 1;
}

.city-manager__channel--max .city-manager__channel-icon {
  color: #fff;
  background: var(--primary-dark);
}

.city-manager__channel--order .city-manager__channel-icon {
  color: var(--accent);
}

/* Tours */
.programs__list {
  display: grid;
  gap: 24px;
}

.tour {
  display: grid;
  grid-template-columns: 320px 1fr;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.tour__media {
  min-height: 250px;
  background: var(--muted-bg);
}

.tour__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.tour__media-ph {
  position: relative;
  display: grid;
  place-items: end start;
  min-height: 250px;
  height: 100%;
  padding: 24px;
  overflow: hidden;
  color: #fff;
  background: var(--primary);
  font-weight: 900;
}

.tour__media-ph::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 36px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0 2px, transparent 2px 26px);
}

.tour__media-ph span {
  position: relative;
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(30, 79, 79, 0.78);
}

.tour__body {
  padding: 28px 30px;
}

.tour__title {
  margin: 0 0 12px;
  font-size: 25px;
}

.tour__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.tour__meta li {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(221, 235, 231, 0.42);
}

.tour__desc {
  margin: 0 0 16px;
}

.tour__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
}

.tour__gallery-link {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: var(--muted-bg);
  aspect-ratio: 1.45;
  cursor: zoom-in;
}

.tour__gallery-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.tour__gallery-link:hover img {
  transform: scale(1.04);
}

.is-lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(20, 28, 32, 0.82);
  backdrop-filter: blur(10px);
  cursor: zoom-out;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  display: block;
  width: auto;
  max-width: min(1120px, 94vw);
  max-height: 88vh;
  border-radius: 22px;
  object-fit: contain;
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.42);
}

.lightbox__close {
  position: fixed;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: #fff;
  background: rgba(30, 42, 47, 0.54);
  font: inherit;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.lightbox__close:hover {
  background: rgba(231, 88, 52, 0.88);
}

.tour-fact {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  margin: -4px 36px 0;
  padding: 24px 28px;
  overflow: hidden;
  border: 1px solid rgba(28, 158, 158, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at right bottom, rgba(232, 178, 14, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(221, 235, 231, 0.72), rgba(255, 255, 255, 0.96));
  box-shadow: var(--shadow-soft);
}

.tour-fact::before {
  content: "";
  position: absolute;
  inset: 8px auto 8px 8px;
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary), var(--gold));
}

.tour-fact__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 22px;
  color: #fff;
  background: var(--primary);
  box-shadow: inset 0 -10px 18px rgba(0, 0, 0, 0.12);
}

.tour-fact__icon::before {
  content: "✦";
  color: #fff;
  font-size: 32px;
  line-height: 1;
}

.tour-fact__icon::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 12px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.tour-fact__label {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tour-fact p {
  margin: 0;
  color: var(--text);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.45;
}

.tour__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.tour__highlights li {
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: var(--muted-bg);
  font-size: 13px;
  font-weight: 800;
}

.tour__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.price {
  display: flex;
  flex-direction: column;
  gap: 7px;
  line-height: 1.22;
}

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

.price__cards--single .price__item {
  min-width: min(260px, 100%);
}

.price__cards--dual .price__item {
  min-width: 142px;
}

.price__item {
  position: relative;
  display: grid;
  gap: 2px;
  min-height: 58px;
  padding: 10px 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
}

.price__item::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -22px;
  width: 58px;
  height: 58px;
  border: 10px solid rgba(28, 158, 158, 0.12);
  border-radius: 50%;
}

.price__item--base {
  min-width: 178px;
  border-color: rgba(28, 158, 158, 0.42);
  background:
    radial-gradient(circle at right bottom, rgba(28, 158, 158, 0.2), transparent 52%),
    linear-gradient(135deg, rgba(221, 235, 231, 0.92), rgba(255, 255, 255, 0.98));
  box-shadow: 0 14px 30px rgba(28, 158, 158, 0.12);
}

.price__item--holiday {
  align-self: center;
  min-height: 50px;
  border-color: rgba(30, 79, 79, 0.12);
  background: rgba(255, 255, 255, 0.62);
}

.price__item--holiday::after {
  display: none;
}

.price__item--custom {
  border-color: rgba(30, 79, 79, 0.22);
}

.price__item--custom .price__value {
  font-size: 22px;
  line-height: 1.14;
}

.price__label {
  position: relative;
  z-index: 1;
  color: var(--primary-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price__item--holiday .price__label {
  color: var(--muted);
}

.price__value {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.05;
}

.price__item--base .price__value {
  color: var(--primary-dark);
  font-size: 31px;
}

.price__item--holiday .price__value {
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
}

.price__note {
  color: var(--muted);
  font-size: 12px;
}

/* Trust */
body main > section.trust {
  background: var(--primary-dark) !important;
  color: #fff;
}

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

.trust__item {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.trust__num {
  display: block;
  margin-bottom: 8px;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

.trust__item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

/* Reviews */
.reviews__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.review {
  margin: 0;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(30, 42, 47, 0.06);
}

.review__stars {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 18px;
}

.review blockquote {
  margin: 0 0 12px;
  font-size: 16px;
}

.review figcaption {
  font-size: 14px;
  font-weight: 800;
}

/* FAQ */
.faq__list {
  display: grid;
  gap: 12px;
  max-width: 860px;
}

.faq__item {
  padding: 4px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.faq__item summary {
  position: relative;
  padding: 14px 38px 14px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  position: absolute;
  top: 13px;
  right: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  font-weight: 900;
}

.faq__item[open] summary::after {
  content: "−";
  background: var(--accent);
}

.faq__item p {
  margin: 0 0 16px;
}

/* Order form */
.order {
  background: var(--ink);
  color: #fff;
}

.order__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  gap: 40px;
  align-items: start;
}

.order__title {
  margin: 0 0 14px;
  color: #fff;
  font-size: 34px;
}

.order__lead p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.order__lead a {
  color: #fff;
  font-weight: 900;
}

.order-form {
  width: 100%;
  min-width: 0;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.field {
  min-width: 0;
  margin-bottom: 16px;
}

.order-form__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 12px;
  min-width: 0;
}

.order-form__details .field:last-child {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 800;
}

.field__required {
  color: var(--accent);
  font-weight: 900;
}

.field input,
.field select {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--button-radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.field select {
  padding-right: 38px;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.field input[data-date-mask],
.field select {
  display: block;
  -webkit-appearance: none;
  appearance: none;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(21, 155, 154, 0.16);
}

.field input.invalid,
.field select.invalid {
  border-color: var(--accent);
}

.order-form .btn {
  width: 100%;
}

.order-form__consent {
  margin: 12px 0 0;
  font-size: 12px;
  text-align: center;
}

.order-form__status {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: var(--button-radius);
  font-size: 15px;
}

.order-form__status.ok {
  color: #1c6b3f;
  background: #e7f5ec;
}

.order-form__status.err {
  color: #b03030;
  background: #fbeaea;
}

.hp {
  display: none;
}

/* Nearby */
.nearby__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nearby__list a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  font-size: 15px;
  font-weight: 800;
}

.nearby__list a:hover {
  border-color: var(--primary);
  text-decoration: none;
}

/* Page heads and city clusters */
.page-head {
  padding: 58px 0;
  background:
    repeating-linear-gradient(90deg, rgba(21, 155, 154, 0.08) 0 1px, transparent 1px 80px),
    var(--paper);
  border-bottom: 1px solid var(--border);
}

.page-head h1 {
  margin: 0;
  font-size: 44px;
}

.page-head .lead {
  max-width: 700px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.cities-all .container {
  display: grid;
  gap: 18px;
}

.cluster {
  scroll-margin-top: 96px;
}

.cluster--big {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(30, 42, 47, 0.06);
}

.cluster__name {
  margin: 0 0 10px;
  font-size: 21px;
}

.cluster__meta {
  margin: -4px 0 14px;
  font-size: 13px;
  font-weight: 800;
}

.cluster__list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cluster__list a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--muted-bg);
  color: var(--primary-dark);
  font-size: 15px;
  font-weight: 800;
}

.cluster__list a:hover {
  color: #fff;
  background: var(--primary);
  text-decoration: none;
}

.prose {
  max-width: 760px;
}

.prose h2 {
  margin: 28px 0 10px;
  font-size: 24px;
}

/* Footer */
.site-footer {
  padding: 54px 0 30px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.city-grid {
  margin-bottom: 42px;
  padding: 0;
}

.city-grid__title {
  margin: 0 0 20px;
  font-size: 24px;
}

.city-grid__clusters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.city-grid .cluster {
  padding: 0;
}

.city-grid .cluster__name {
  font-size: 17px;
}

.city-grid .cluster__list {
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.city-grid .cluster__list a {
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.city-grid .cluster__list a:hover {
  color: var(--primary);
  background: transparent;
  text-decoration: underline;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.8fr;
  gap: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.site-footer__col p {
  margin: 4px 0;
  font-size: 15px;
}

.site-footer__heading {
  margin: 0 0 12px;
  color: var(--primary-dark);
  font-size: 15px;
  text-transform: uppercase;
}

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

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

.site-footer__copy {
  margin: 24px 0 0;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 980px) {
  .site-header__inner {
    gap: 16px;
  }

  .hero__grid,
  .about-service__layout,
  .city-snapshot__layout,
  .city-route__layout {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    max-width: 720px;
  }

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

  .about-service__intro,
  .city-plan-card,
  .city-route__intro {
    position: static;
  }

  .header-phone__note {
    display: none;
  }

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

  .steps,
  .benefits__grid,
  .city-facts__grid,
  .city-order-steps__grid,
  .city-benefits-detail__grid {
    grid-template-columns: 1fr;
  }

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

  .city-manager__inner {
    grid-template-columns: 1fr;
  }

  .city-cta__card {
    grid-template-columns: 1fr;
  }

  .city-cta__actions {
    justify-content: flex-start;
  }

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

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

  .tour__media,
  .tour__media-ph {
    min-height: 240px;
  }

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

@media (max-width: 760px) {
  .container {
    padding: 0 18px;
  }

  main > section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    flex-wrap: nowrap;
    min-height: 68px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .logo {
    grid-template-columns: 42px auto;
    min-width: 0;
  }

  .logo::before {
    width: 42px;
    height: 42px;
  }

  .logo__mark {
    width: 42px;
    height: 42px;
  }

  .logo__name {
    font-size: 16px;
  }

  .logo__since {
    max-width: 180px;
  }

  .nav-toggle {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    margin-left: auto;
  }

  .header-phone {
    display: none;
  }

  .header-phone__num {
    font-size: 15px;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    margin-left: 0;
  }

  .site-nav.open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 8px 0 0;
  }

  .site-nav a {
    justify-content: center;
    border: 1px solid var(--border);
    background: var(--surface);
  }

  .city-manager__inner {
    padding: 24px;
  }

  .city-cta {
    padding: 14px 0;
  }

  .city-cta__card {
    gap: 14px;
    padding: 16px;
  }

  .city-cta__mark {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .city-cta__mark::before {
    font-size: 20px;
  }

  .city-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .city-cta__button {
    justify-content: center;
    min-height: 42px;
  }

  .city-manager__people,
  .city-manager__actions {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 62px 0 70px;
  }

  .hero:not(.hero--plain) {
    background-image:
      linear-gradient(180deg, rgba(20, 31, 35, 0.86) 0%, rgba(20, 31, 35, 0.68) 58%, rgba(20, 31, 35, 0.42) 100%),
      var(--hero-img);
  }

  .hero:not(.hero--plain) .hero__inner::before {
    inset: -22px -18px -22px;
    border-radius: 26px;
    background:
      radial-gradient(circle at 12% 8%, rgba(21, 155, 154, 0.14), transparent 36%),
      linear-gradient(180deg, rgba(18, 30, 34, 0.42), rgba(18, 30, 34, 0.16));
  }

  .page-home .hero {
    padding: 54px 0 44px;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__intro {
    font-size: 17px;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .section-head--split {
    display: grid;
    gap: 16px;
  }

  .section-head--split .section-lead {
    max-width: none;
    margin-top: 0;
  }

  .section-head--split > .btn {
    justify-self: stretch;
    width: 100%;
    min-height: 54px;
    border-width: 2px;
  }

  .popular .section-head--split {
    margin-bottom: 24px;
  }

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

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

  .hero-photo img {
    min-height: 320px;
    height: 58vw;
  }

  .region-strip__grid,
  .popular__grid,
  .city-snapshot__grid,
  .city-facts__grid,
  .city-recommendations__grid,
  .city-order-steps__grid,
  .city-benefits-detail__grid {
    grid-template-columns: 1fr;
  }

  .route-step {
    grid-template-columns: 44px 1fr;
    column-gap: 14px;
    padding: 20px;
  }

  .route-step__num {
    width: 42px;
    height: 42px;
  }

  .city-gallery {
    grid-auto-rows: 210px;
  }

  .city-gallery__item--wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .hero-photo,
  .region-tile,
  .city-card,
  .service,
  .step,
  .benefit,
  .team-card {
    min-width: 0;
  }

  .region-tile,
  .city-card {
    min-height: 150px;
  }

  .tour__body {
    padding: 24px;
  }

  .tour__title {
    font-size: 23px;
  }

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

  .tour-fact {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    margin: -4px 0 0;
    padding: 20px;
    border-radius: 24px;
  }

  .tour-fact__icon {
    width: 48px;
    height: 48px;
    border-radius: 18px;
  }

  .tour-fact__icon::before {
    font-size: 26px;
  }

  .tour-fact p {
    font-size: 18px;
  }

  .tour__footer {
    align-items: stretch;
  }

  .price {
    width: 100%;
  }

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

  .price__cards--single {
    grid-template-columns: 1fr;
  }

  .price__cards--dual .price__item {
    min-width: 0;
  }

  .tour__footer .btn {
    width: 100%;
  }

  .page-head h1 {
    font-size: 36px;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  .services__grid,
  .trust__grid,
  .team__grid,
  .steps,
  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .benefits {
    padding: 22px;
  }

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

  .price__value {
    font-size: 23px;
  }

  .hero-photo {
    padding: 14px;
  }

  .hero-photo img {
    min-height: 230px;
    height: 62vw;
  }

  .service,
  .step,
  .benefit,
  .city-snapshot-card,
  .city-fact,
  .city-recommendation {
    min-height: auto;
  }

  .benefits h3 {
    font-size: 23px;
  }

  .benefit {
    min-height: auto;
    padding: 20px;
  }

  .city-order-step,
  .city-benefit-detail {
    min-height: auto;
    padding: 24px;
  }

  .city-benefit-detail {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .city-order-step__top {
    margin-bottom: 22px;
  }

  .city-order-step__icon {
    width: 62px;
    height: 62px;
    background-size: 42px;
  }

  .city-benefit-detail__icon {
    width: 58px;
    height: 58px;
    background-size: 40px;
  }

  .city-manager-person {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .city-manager-person img {
    width: 92px;
    height: 92px;
  }

  .city-manager__channel {
    min-height: 50px;
    padding: 10px 14px;
  }

  .header-phone {
    display: none;
  }

  .logo__since {
    display: none;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__kicker {
    align-items: flex-start;
    border-radius: 14px;
  }

  .btn {
    white-space: normal;
  }

  .hero-return {
    right: 14px;
    bottom: calc(84px + env(safe-area-inset-bottom));
    width: 50px;
    height: 50px;
    border-radius: 17px;
  }

  .hero-return span {
    width: 30px;
    height: 30px;
    border-radius: 11px;
    font-size: 21px;
  }

  .order-form {
    padding: 22px;
  }

  .order-form__details {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cluster--big {
    padding: 20px;
  }
}
