:root {
  --red: #cc1939;
  --red-dark: #a90f2b;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --cream: #f7f3ed;
  --soft: #f7f8fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.wrap {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: #fff;
  color: #1f2937;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
}

.topbar-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.topbar a:hover {
  color: var(--red);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: 250px;
  height: 54px;
  overflow: hidden;
}

.brand img {
  width: auto;
  max-width: none;
  height: 50px;
  max-height: none;
  object-fit: initial;
}

.header-contact {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 72px);
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111827;
  line-height: 1.2;
  white-space: nowrap;
}

.contact-item svg,
.header-search svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--red);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
}

.contact-item small {
  display: block;
  margin-top: 2px;
  color: #4b5563;
  font-size: 14px;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 28px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.language-switch em {
  color: #9ca3af;
  font-style: normal;
  font-weight: 600;
}

.language-switch a:last-child {
  color: var(--red);
}

.header-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
}

.header-search svg {
  width: 22px;
  height: 22px;
}

.nav-bar {
  background: var(--red);
}

.nav-inner {
  min-height: 45px;
  display: flex;
  align-items: center;
}

.main-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 40px);
}

.nav-links-right {
  gap: clamp(22px, 3vw, 38px);
}

.nav-links > a,
.nav-item > a {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  transition: color 0.18s ease;
}

.main-nav a:hover {
  color: #fff;
}

.nav-item {
  position: relative;
}

.nav-item > a::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown {
  position: absolute;
  left: 50%;
  top: 45px;
  width: 210px;
  padding: 10px 0;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  pointer-events: none;
  transition: 0.18s ease;
}

.dropdown a {
  display: block;
  padding: 10px 16px;
  color: #263238;
  font-size: 14px;
  font-weight: 700;
}

.dropdown a:hover {
  color: var(--red);
}

.nav-item:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 9px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 22px;
  border: 0;
  border-radius: 30px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition: background 0.18s ease, transform 0.18s ease;
}

.button:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.button-light {
  background: #fff;
  color: var(--red);
}

.button-light:hover {
  background: #f4f4f4;
  color: var(--red);
}

.hero {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  background: #111;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.35) 48%, rgba(0, 0, 0, 0.15));
}

.hero-content {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 50%;
  width: min(1200px, calc(100% - 40px));
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 68px 0 92px;
  color: #fff;
  transform: translateX(-50%);
}

.hero-copy-panel {
  max-width: 680px;
  padding: 20px 0 22px 24px;
  border-left: 5px solid var(--red);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0));
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.46);
}

.hero-content .eyebrow {
  color: #fff;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.18;
  font-weight: 800;
}

.hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 32px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
}

.hero-dots button.is-active {
  width: 24px;
  background: #fff;
}

.section {
  padding: 88px 0;
}

.gray {
  background: var(--soft);
}

.section-center {
  width: min(780px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.section-center h2,
.section-head h2,
.home-base h2,
.insights h2,
.contact-band h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.24;
}

.section-center p:not(.eyebrow),
.home-base p,
.insights p,
.contact-band p {
  color: var(--muted);
}

.rating {
  margin-top: 20px;
  color: #f59e0b;
  font-weight: 800;
}

.rating span {
  color: var(--ink);
  margin-left: 10px;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.icon-card {
  text-align: center;
}

.icon-card img {
  width: 82px;
  height: 82px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.icon-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.3;
}

.icon-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.steps {
  background: var(--cream);
}

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

.step-grid article {
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}

.step-grid span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

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

.step-grid p {
  margin: 0;
  color: var(--muted);
}

.base-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 54px;
}

.base-image img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.section-head a {
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 28px;
}

.poster-card {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: #111;
  box-shadow: var(--shadow);
}

.poster-card img,
.image-card img,
.tour-card img,
.business-grid img,
.catalog-card img,
.type-grid img,
.guide-grid img {
  width: 100%;
  object-fit: cover;
}

.poster-card img {
  height: 100%;
  position: absolute;
  inset: 0;
}

.poster-card::after,
.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.72));
}

.poster-card > div {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 34px;
}

.poster-card span,
.tour-body span,
.catalog-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.poster-card span {
  color: #fff;
}

.poster-card h3 {
  max-width: 560px;
  margin: 0 0 12px;
  font-size: 36px;
  line-height: 1.2;
}

.poster-card p {
  max-width: 620px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.9);
}

.side-cards {
  display: grid;
  gap: 28px;
}

.image-card {
  position: relative;
  min-height: 246px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: #111;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.11);
}

.image-card img {
  position: absolute;
  inset: 0;
  height: 100%;
}

.image-card div {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
}

.image-card h3 {
  margin: 0 0 6px;
  font-size: 23px;
}

.image-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.tour-row,
.catalog-grid,
.type-grid,
.guide-grid,
.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tour-card,
.catalog-card,
.type-grid article,
.guide-grid article,
.business-grid article {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

.tour-card img,
.catalog-card img,
.type-grid img,
.guide-grid img,
.business-grid img {
  height: 236px;
}

.tour-body,
.catalog-card > div,
.type-grid article > div,
.guide-grid article,
.business-grid article {
  padding: 24px;
}

.tour-body h3,
.catalog-card h3,
.type-grid h3,
.guide-grid h3,
.business-grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.28;
}

.tour-body p,
.catalog-card p,
.type-grid p,
.guide-grid p,
.business-grid p {
  margin: 0 0 16px;
  color: var(--muted);
}

.tour-body strong {
  color: var(--red);
}

.business-grid article {
  padding: 0 0 24px;
}

.business-grid h3,
.business-grid p {
  padding: 0 24px;
}

.catalog-card a {
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}

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

.destination-grid article,
.city-strip a {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  border-radius: 8px;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.66)), var(--bg);
  background-size: cover;
  background-position: center;
  color: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

.destination-grid span,
.city-strip span {
  position: relative;
  z-index: 1;
  font-size: 25px;
  font-weight: 900;
}

.city-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.city-strip a {
  min-height: 340px;
  align-items: flex-end;
}

.guide-grid article {
  padding: 0 0 24px;
}

.guide-grid h3,
.guide-grid p {
  padding: 0 24px;
}

.insight-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 54px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
}

.review-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-row article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.review-row div {
  color: #f59e0b;
  font-weight: 900;
}

.review-row p {
  color: var(--muted);
}

.contact-band {
  padding: 72px 0;
  background: linear-gradient(90deg, #7f1025, #cc1939);
  color: #fff;
}

.contact-band .eyebrow,
.contact-band h2,
.contact-band p {
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  background: #151515;
  color: rgba(255, 255, 255, 0.78);
}

.footer-main {
  padding: 58px 0 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 44px;
}

.footer-brand img {
  width: 235px;
  margin-bottom: 18px;
  background: #fff;
}

.footer-brand p {
  max-width: 380px;
  margin: 0 0 18px;
}

.footer-grid h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 20px;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
}

.footer-grid a:hover {
  color: #fff;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.footer-trust {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 17px 0;
}

.footer-trust-row,
.legal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-legal {
  padding: 20px 0;
  font-size: 14px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.86);
}

.float-phone {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #24b85a;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(36, 184, 90, 0.36);
}

.admin-page {
  min-height: 100vh;
  background: #f3f4f6;
}

.admin-page [hidden] {
  display: none !important;
}

.admin-page .container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.admin-login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 38px 18px;
  background: linear-gradient(135deg, #111827, #3b0a16 52%, #111827);
}

.admin-login-card {
  width: min(430px, 100%);
  padding: 34px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.admin-login-card img {
  width: 230px;
  max-height: 64px;
  object-fit: contain;
  margin-bottom: 22px;
}

.admin-login-card h1 {
  margin: 0 0 22px;
  font-size: 28px;
  line-height: 1.25;
}

.admin-login-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--red);
  font-weight: 800;
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.admin-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.admin-header h1 {
  margin: 0;
  font-size: 24px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.admin-page button,
.admin-page .button,
.file-label {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.admin-page .primary,
.admin-page button.primary {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.admin-page .secondary {
  background: #f9fafb;
}

.file-label input {
  display: none;
}

.admin-shell {
  display: grid;
  gap: 24px;
  padding: 32px 0 56px;
}

.admin-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.admin-card h2 {
  margin: 0 0 18px;
  font-size: 24px;
}

.admin-form {
  display: grid;
  gap: 16px;
}

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

.admin-page label {
  display: grid;
  gap: 7px;
  color: #374151;
  font-size: 14px;
  font-weight: 800;
}

.admin-page input,
.admin-page textarea,
.admin-page select {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 11px 12px;
  font-size: 15px;
  outline: none;
}

.admin-page input:focus,
.admin-page textarea:focus,
.admin-page select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204, 25, 57, 0.12);
}

.admin-page textarea {
  min-height: 110px;
  resize: vertical;
}

.admin-preview {
  width: min(360px, 100%);
  max-height: 220px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fafb;
  padding: 10px;
}

.admin-status {
  min-height: 22px;
  margin: 0;
  color: var(--red);
  font-weight: 800;
}

.admin-products {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.admin-product {
  display: grid;
  grid-template-columns: 96px 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fafb;
}

.admin-product img {
  width: 96px;
  height: 68px;
  object-fit: cover;
  border-radius: 8px;
}

.admin-product strong,
.admin-product span {
  display: block;
}

.admin-product span {
  color: var(--muted);
  font-size: 14px;
}

.visual-admin-page {
  overflow: hidden;
}

.visual-admin {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
  background: #e5e7eb;
}

.visual-toolbar {
  position: relative;
  z-index: 30;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 18px;
  background: #111827;
  color: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
}

.visual-toolbar strong {
  display: block;
  font-size: 18px;
}

.visual-toolbar span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.visual-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.visual-toolbar button,
.visual-toolbar .button {
  min-height: 38px;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.visual-toolbar .secondary {
  background: #fff;
  color: var(--ink);
}

.visual-workspace {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
}

.visual-preview-wrap {
  min-width: 0;
  min-height: 0;
  padding: 14px;
  background: #d1d5db;
}

.visual-preview {
  width: 100%;
  height: calc(100vh - 96px);
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

.visual-panel {
  min-height: 0;
  padding: 22px;
  overflow: auto;
  border-left: 1px solid #d1d5db;
  background: #fff;
}

.visual-panel h2 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.25;
}

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

.visual-edit-form {
  display: grid;
  gap: 16px;
}

.visual-image-preview {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fafb;
  padding: 10px;
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 13px;
    font-size: 13px;
  }

  .header-contact {
    gap: 24px;
  }

  .contact-item small {
    font-size: 13px;
  }

  .brand img {
    height: 44px;
  }

  .brand {
    width: 218px;
    height: 48px;
  }

  .icon-grid,
  .step-grid,
  .city-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .icon-grid {
    gap: 34px 24px;
  }
}

@media (max-width: 900px) {
  .wrap {
    width: min(100% - 28px, 1200px);
  }

  .topbar-inner {
    min-height: 68px;
    justify-content: space-between;
    gap: 18px;
  }

  .header-contact {
    display: none;
  }

  .header-tools {
    gap: 14px;
  }

  .nav-bar {
    background: transparent;
  }

  .nav-inner {
    min-height: 0;
  }

  .menu-toggle {
    display: block;
    border-color: rgba(204, 25, 57, 0.25);
  }

  .main-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 0;
    background: var(--red);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow);
  }

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

  .nav-links,
  .nav-links-right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-links > a,
  .nav-item > a {
    min-height: auto;
    padding: 13px 18px;
  }

  .nav-item > a::after {
    display: none;
  }

  .dropdown {
    position: static;
    display: block;
    width: auto;
    padding: 0 0 8px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .dropdown a {
    padding: 7px 18px;
    color: rgba(255, 255, 255, 0.82);
  }

  .hero {
    min-height: 610px;
  }

  .hero-content {
    width: min(1200px, calc(100% - 28px));
  }

  .hero h1 {
    font-size: 42px;
  }

  .section {
    padding: 68px 0;
  }

  .feature-grid,
  .base-grid,
  .insight-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .tour-row,
  .catalog-grid,
  .type-grid,
  .guide-grid,
  .business-grid,
  .destination-grid,
  .review-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .admin-header .container,
  .admin-product {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .admin-header .container {
    display: grid;
  }

  .visual-workspace {
    grid-template-columns: 1fr;
  }

  .visual-panel {
    border-left: 0;
    border-top: 1px solid #d1d5db;
  }

  .visual-preview {
    height: 58vh;
  }
}

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

  .brand img {
    width: 190px;
  }

  .icon-grid,
  .step-grid,
  .tour-row,
  .catalog-grid,
  .type-grid,
  .guide-grid,
  .business-grid,
  .destination-grid,
  .city-strip,
  .review-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 590px;
  }

  .hero-content {
    padding-top: 40px;
  }

  .hero-copy-panel {
    padding: 18px 0 18px 18px;
    border-left-width: 4px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .section-head,
  .footer-trust-row,
  .legal-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .poster-card {
    min-height: 470px;
  }

  .poster-card > div {
    left: 22px;
    right: 22px;
    bottom: 24px;
  }

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

  .city-strip a {
    min-height: 250px;
  }

  .admin-page .container {
    width: min(100% - 28px, 1180px);
  }

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

  .admin-card,
  .admin-login-card {
    padding: 22px;
  }

  .visual-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .visual-actions {
    justify-content: flex-start;
  }
}
