/* ── UZSans local fonts ───────────────────────────────────────────── */
@font-face { font-family: 'UZSans'; src: url('../fonts/UZSans-Light.ttf')    format('truetype'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'UZSans'; src: url('../fonts/UZSans-Regular.ttf')  format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'UZSans'; src: url('../fonts/UZSans-Medium.ttf')   format('truetype'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'UZSans'; src: url('../fonts/UZSans-SemiBold.ttf') format('truetype'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'UZSans'; src: url('../fonts/UZSans-Bold.ttf')     format('truetype'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'UZSans'; src: url('../fonts/UZSans-Bold.ttf')     format('truetype'); font-weight: 800; font-display: swap; }
@font-face { font-family: 'UZSans'; src: url('../fonts/UZSans-Bold.ttf')     format('truetype'); font-weight: 900; font-display: swap; }

/* ── Reset & Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'UZSans', sans-serif;
  background: #f5f5f7;
  color: #0f1f6e;
  overflow-x: hidden;
}
a { text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f5f5f7; }
::-webkit-scrollbar-thumb { background: #c8c8d8; border-radius: 3px; }

/* ── Tokens ───────────────────────────────────────────────────────── */
:root {
  --navy:    #0f1f6e;
  --navy-d:  #09154f;
  --navy-m:  #162580;
  --navy-l:  #1e3099;
  --gold:    #f5c000;
  --gold-d:  #d9ab00;
  --white:   #ffffff;
  --off:     #f5f5f7;
  --border:  #e2e2ee;
  --muted:   rgba(15,31,110,0.45);
  --muted-l: rgba(15,31,110,0.18);
}

/* ── Nav ──────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(9,21,79,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s;
  height: 60px;
}
.nav.scrolled { border-color: rgba(255,255,255,0.08); }
.nav__inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo { display: flex; align-items: center; gap: 10px; color: #fff; }
.nav__logo-svg { height: 22px; width: auto; flex-shrink: 0; }
.nav__logo-sep { width: 1px; height: 18px; background: rgba(255,255,255,0.25); flex-shrink: 0; }
.nav__sub { color: rgba(255,255,255,0.5); font-size: 11px; font-weight: 500; }
.nav__divider { width: 1px; height: 24px; background: rgba(255,255,255,0.12); margin: 0 18px; }
.nav__links { display: flex; gap: 24px; }
.nav__links a { color: rgba(255,255,255,0.72); font-size: 13px; font-weight: 500; transition: color .15s; }
.nav__links a:hover { color: #fff; }
.nav__right { display: flex; align-items: center; gap: 12px; }
.btn-buy {
  background: var(--gold); color: var(--navy); border: none;
  border-radius: 8px; padding: 7px 18px;
  font-weight: 700; font-size: 13px; transition: background .15s;
}
.btn-buy:hover { background: var(--gold-d); }

/* Hamburger */
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px;
}
.nav__burger span {
  width: 22px; height: 2px; background: #fff;
  border-radius: 2px; transition: all .2s; display: block;
}
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__burger.open span:nth-child(2) { transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.nav__mobile {
  display: none; background: rgba(9,21,79,0.98);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 20px;
}
.nav__mobile.open { display: block; }
.nav__mobile a {
  display: block; color: rgba(255,255,255,0.8); font-size: 15px; font-weight: 600;
  padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav__mobile a:last-of-type { border-bottom: none; }
.nav__mobile .btn-buy { width: 100%; margin-top: 16px; padding: 12px; font-size: 14px; border-radius: 8px; }

/* ── Hero ─────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy-d) 0%, #162580 60%, #2233aa 100%);
  min-height: 100vh;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  padding-top: 60px;
}
.hero__content {
  flex: 1; display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  max-width: 1200px; margin: 0 auto;
  padding: 48px 24px 80px; width: 100%;
}
.hero__breadcrumb { display: flex; align-items: center; gap: 6px; margin-bottom: 24px; }
.hero__breadcrumb .accent { color: var(--gold); font-weight: 600; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.hero__breadcrumb .sep { color: rgba(255,255,255,0.3); font-size: 11px; }
.hero__breadcrumb .curr { color: rgba(255,255,255,0.55); font-size: 11px; font-weight: 500; }
.hero__title {
  color: #fff; font-weight: 900; font-size: 56px;
  line-height: 1.06; letter-spacing: -.02em; text-wrap: balance;
}
.hero__divider { width: 48px; height: 3px; background: var(--gold); margin: 20px 0; }
.hero__desc { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.75; max-width: 400px; margin-bottom: 36px; }
.hero__stats {
  display: flex; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
  overflow: hidden; margin-bottom: 36px;
}
.hero__stat {
  flex: 1; padding: 14px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero__stat:last-child { border-right: none; }
.hero__stat-val { color: var(--gold); font-weight: 800; font-size: 18px; }
.hero__stat-label { color: rgba(255,255,255,0.4); font-size: 10px; font-weight: 500; margin-top: 2px; letter-spacing: .04em; }
.hero__btns { display: flex; gap: 12px; }
.btn-primary {
  background: var(--gold); color: var(--navy); border: none;
  border-radius: 10px; padding: 13px 28px;
  font-weight: 800; font-size: 14px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 28px rgba(245,192,0,0.35);
  transition: all .15s;
}
.btn-primary:hover { background: var(--gold-d); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.25); border-radius: 10px;
  padding: 13px 24px; font-weight: 600; font-size: 14px; transition: all .15s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

/* Train image */
.hero__visual { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.hero__train-wrap {
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.55));
  animation: floatTrain 4s ease-in-out infinite;
}
.hero__train-wrap img { width: 100%; max-width: 460px; }
@keyframes floatTrain {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero__route {
  background: rgba(255,255,255,0.07); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 14px;
  padding: 14px 24px; display: flex; align-items: center;
  gap: 20px; color: #fff; width: 85%;
}
.hero__route-city { text-align: center; }
.hero__route-city-label { font-size: 10px; color: rgba(255,255,255,0.4); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 4px; }
.hero__route-city-name { font-weight: 800; font-size: 17px; line-height: 1; }
.hero__route-city-time { color: var(--gold); font-size: 11px; font-weight: 600; margin-top: 3px; }
.hero__route-line { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; }
.hero__route-line .line { height: 1px; width: 100%; }
.hero__route-line .line-left { background: linear-gradient(90deg, transparent, var(--gold)); }
.hero__route-line .line-right { background: linear-gradient(90deg, var(--gold), transparent); }
.hero__route-dur { font-size: 10px; color: rgba(255,255,255,0.35); font-weight: 500; }

/* ── Search ───────────────────────────────────────────────────────── */
.search-section {
  position: relative; z-index: 10;
  margin-top: -56px; margin-bottom: -56px;
  padding: 0 40px;
}
.search-card {
  max-width: 900px; margin: 0 auto;
  background: #fff; border-radius: 16px;
  padding: 14px 16px 12px;
  box-shadow: 0 8px 40px rgba(9,21,79,0.18);
  border: 1px solid var(--border);
}
.search-tabs { display: flex; gap: 20px; margin-bottom: 10px; }
.search-tab {
  background: none; border: none; padding: 0 0 6px;
  font-size: 13px; font-weight: 500; color: var(--muted);
  border-bottom: 2px solid transparent; transition: all .15s;
}
.search-tab.active { font-weight: 700; color: var(--navy); border-color: var(--gold); }
.search-row { display: grid; grid-template-columns: 1fr 36px 1fr auto auto; align-items: stretch; }
.search-field {
  border: 1.5px solid var(--border); padding: 10px 16px;
  background: #fafafa; cursor: text;
}
.search-field:first-child { border-radius: 10px 0 0 10px; border-right: none; }
.search-field.dest { border-radius: 0; border-left: none; border-right: none; }
.search-field.date { border-radius: 0 10px 10px 0; border-left: none; min-width: 160px; }
.search-field-label {
  font-size: 10px; color: var(--muted); font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 3px;
}
.search-field-row { display: flex; align-items: center; gap: 8px; }
.search-field-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--navy); flex-shrink: 0; }
.search-field-dot.hollow { background: transparent; border: 2px solid var(--navy); }
.search-field input {
  border: none; background: transparent;
  font-family: inherit; font-weight: 700; font-size: 15px;
  color: var(--navy); outline: none; width: 100%;
}
.search-field-hint { font-size: 10px; color: var(--muted-l); margin-top: 4px; }
.search-date-val { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--navy); }
.search-swap {
  width: 36px; border: 1.5px solid var(--border); border-left: none; border-right: none;
  background: #fff; color: var(--navy); transition: background .15s;
  display: flex; align-items: center; justify-content: center;
}
.search-swap:hover { background: var(--off); }
.search-btn {
  background: var(--navy); color: #fff; border: none;
  border-radius: 10px; padding: 0 28px; height: 56px;
  font-weight: 800; font-size: 15px; margin-left: 8px;
  box-shadow: 0 4px 16px rgba(9,21,79,0.25); transition: background .15s;
  white-space: nowrap;
}
.search-btn:hover { background: var(--navy-l); }

/* Dropdown */
.search-dest-wrap { position: relative; }
.search-dropdown {
  display: none; position: absolute;
  top: calc(100% + 4px); left: 0; right: 0; z-index: 200;
  background: #fff; border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(9,21,79,0.14); overflow: hidden;
}
.search-dropdown.open { display: block; }
.search-dropdown-item {
  padding: 10px 16px; cursor: pointer; font-size: 13px;
  font-weight: 600; color: var(--navy);
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--border); transition: background .1s;
}
.search-dropdown-item:last-child { border-bottom: none; }
.search-dropdown-item:hover { background: #f5f5f7; }

/* ── Section header ───────────────────────────────────────────────── */
.section-title { font-weight: 900; font-size: 30px; color: var(--navy); margin-bottom: 8px; }
.section-divider { width: 44px; height: 2.5px; background: var(--gold); }

/* ── Schedule ─────────────────────────────────────────────────────── */
.schedule-section { background: var(--off); padding: 112px 24px 72px; }
.schedule-header {
  display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px;
}
.schedule-updated { font-size: 11px; color: var(--muted); font-weight: 500; }
.boards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.board { background: #0a1240; border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,0.07); }
.board-header {
  background: rgba(255,255,255,0.04); padding: 12px 18px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.board-type { font-size: 14px; }
.board-type.dep { color: #f5c000; }
.board-type.arr { color: #7ab4ff; }
.board-title { color: #fff; font-weight: 700; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.board-cols {
  display: grid; grid-template-columns: 48px 1fr 72px 44px;
  padding: 7px 18px; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.board-col-label { color: rgba(255,255,255,0.28); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.board-row {
  display: grid; grid-template-columns: 48px 1fr 72px 44px;
  padding: 10px 18px; border-bottom: 1px solid rgba(255,255,255,0.04);
  cursor: pointer; transition: background .12s;
}
.board-row:hover { background: rgba(255,255,255,0.04); }
.board-row.first { background: rgba(245,192,0,0.05); }
.board-num { color: #f5c000; font-weight: 700; font-size: 13px; }
.board-route { color: rgba(255,255,255,0.75); font-size: 13px; font-weight: 500; }
.board-time { display: flex; align-items: center; gap: 5px; }
.board-time-val { color: #fff; font-weight: 700; font-size: 14px; font-variant-numeric: tabular-nums; }
.board-delay {
  font-size: 8px; font-weight: 700; padding: 2px 5px; border-radius: 4px;
}
.board-delay.warn { background: rgba(245,192,0,0.18); color: #f5c000; }
.board-delay.err  { background: rgba(229,57,53,0.2);  color: #ef9a9a; }
.board-track { color: rgba(255,255,255,0.4); font-size: 13px; font-weight: 600; }
.board-more { padding: 10px 18px; text-align: right; }
.board-more a { color: #f5c000; font-size: 11px; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }

/* ── Services ─────────────────────────────────────────────────────── */
.services-section { background: #fff; padding: 72px 24px; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 40px; }
.service-card {
  background: var(--off); border-radius: 12px; padding: 22px;
  border: 1px solid var(--border); transition: all .18s; cursor: default;
}
.service-card:hover {
  background: #fff; transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(15,31,110,0.1);
}
.service-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(15,31,110,0.06);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; color: var(--navy);
}
.service-title { font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 5px; }
.service-desc { color: var(--muted); font-size: 12px; line-height: 1.6; }
.services-footer { margin-top: 28px; display: flex; align-items: center; gap: 18px; }
.btn-secondary {
  background: var(--navy); color: #fff; border: none; border-radius: 9px;
  padding: 12px 24px; font-weight: 700; font-size: 13px; transition: background .15s;
}
.btn-secondary:hover { background: var(--navy-l); }
.services-link { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; font-weight: 500; }
.services-link-line { height: 1px; width: 60px; background: var(--gold); }

/* ── Booking ──────────────────────────────────────────────────────── */
.booking-section {
  background: linear-gradient(135deg, var(--navy-d) 0%, var(--navy-m) 100%);
  padding: 72px 24px;
}
.booking-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.booking-tag { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.booking-tag-line { width: 24px; height: 2px; background: var(--gold); }
.booking-tag-text { color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.booking-title { color: #fff; font-weight: 900; font-size: 38px; line-height: 1.1; margin-bottom: 16px; }
.booking-divider { width: 48px; height: 2px; background: var(--gold); margin-bottom: 20px; }
.booking-desc { color: rgba(255,255,255,0.55); font-size: 13px; line-height: 1.75; margin-bottom: 28px; }
.room-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 32px; }
.room-item {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 11px 16px; cursor: pointer; transition: all .15s;
}
.room-item:hover { background: rgba(255,255,255,0.12); border-color: rgba(245,192,0,0.5); }
.room-info .room-name { color: #fff; font-weight: 700; font-size: 13px; }
.room-info .room-meta { color: rgba(255,255,255,0.4); font-size: 11px; margin-top: 1px; }
.room-price { text-align: right; }
.room-price-val { color: var(--gold); font-weight: 800; font-size: 14px; }
.room-price-unit { color: rgba(255,255,255,0.3); font-size: 10px; }
.cta-bar { display: flex; align-items: center; border-radius: 10px; overflow: hidden; }
.cta-btn {
  background: var(--gold); color: var(--navy); border: none;
  padding: 14px 28px; font-weight: 800; font-size: 15px;
  flex-shrink: 0; transition: background .15s;
}
.cta-btn:hover { background: var(--gold-d); }
.cta-label {
  flex: 1; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12); border-left: none;
  padding: 14px 20px; color: rgba(255,255,255,0.85); font-weight: 600; font-size: 14px;
}
.cta-label span { color: var(--gold); font-weight: 900; }

/* Photos */
.photo-grid { display: grid; grid-template-rows: 1fr auto; gap: 8px; }
.photo-main {
  border-radius: 12px; overflow: hidden; height: 280; position: relative;
}
.photo-main img { width: 100%; height: 280px; object-fit: cover; }
.photo-badge {
  position: absolute; top: 10px; right: 10px;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(6px);
  border-radius: 6px; padding: 4px 10px; color: #fff; font-size: 10px; font-weight: 600;
}
.photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,21,79,0.4) 0%, transparent 50%);
}
.photo-thumbs { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.photo-thumb {
  border-radius: 10px; height: 120px; overflow: hidden;
  position: relative; cursor: pointer; transition: opacity .15s;
}
.photo-thumb:hover { opacity: 0.8; }
.photo-thumb img { width: 100%; height: 100%; object-fit: cover; }
.photo-thumb-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  padding: 8px 8px 6px; color: #fff; font-size: 9px; font-weight: 600;
}

/* ── Sights ───────────────────────────────────────────────────────── */
.sights-section { background: var(--off); padding: 72px 24px; }
.sights-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }
.sights-more { font-size: 12px; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 4px; }
.sights-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.sight-card {
  border-radius: 14px; overflow: hidden; cursor: pointer;
  border: 1px solid var(--border); background: #fff;
  box-shadow: 0 2px 12px rgba(15,31,110,0.07); transition: all .2s;
}
.sight-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(15,31,110,0.16); }
.sight-img { height: 160px; position: relative; overflow: hidden; }
.sight-img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .4s;
}
.sight-card:hover .sight-img img { transform: scale(1.06); }
.sight-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,31,110,0.3) 0%, transparent 50%);
}
.sight-tag {
  position: absolute; top: 8px; left: 8px;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(4px);
  border-radius: 20px; padding: 3px 10px;
  color: #fff; font-size: 9px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}
.sight-body { padding: 14px 16px; }
.sight-name { font-weight: 800; font-size: 14px; color: var(--navy); margin-bottom: 4px; }
.sight-desc { color: var(--muted); font-size: 12px; line-height: 1.5; }

/* ── Footer ───────────────────────────────────────────────────────── */
.footer { background: var(--navy-d); padding: 56px 24px 28px; color: rgba(255,255,255,0.6); }
.footer__grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; color: #fff; }
.footer__logo-svg { height: 22px; width: auto; flex-shrink: 0; }
.footer__brand-sub { color: rgba(255,255,255,0.4); font-size: 11px; font-weight: 500; margin-top: 1px; }
.footer__desc { font-size: 12px; line-height: 1.85; max-width: 260px; }
.footer__col-title { color: rgba(255,255,255,0.85); font-weight: 700; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col-item { font-size: 12px; margin-bottom: 9px; line-height: 1.5; }
.footer__col-link { color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 6px; transition: color .15s; }
.footer__col-link:hover { color: var(--gold); }
.footer__bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer__copy { font-size: 11px; }
.footer__links { display: flex; gap: 20px; }
.footer__links a { font-size: 11px; color: rgba(255,255,255,0.4); transition: color .15s; }
.footer__links a:hover { color: #fff; }

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .sights-grid { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  .nav__links, .nav__divider { display: none; }
  .nav__burger { display: flex; }
  .nav__inner { padding: 0 16px; }

  .hero__content { grid-template-columns: 1fr; gap: 32px; padding: 32px 16px 80px; }
  .hero__visual { display: none; }
  .hero__title { font-size: 36px; }

  .search-section { padding: 0 12px; }
  .search-row { grid-template-columns: 1fr; gap: 8px; }
  .search-field:first-child { border-radius: 10px; border-right: 1.5px solid var(--border); }
  .search-field.dest { border-radius: 10px; border-left: 1.5px solid var(--border); border-right: 1.5px solid var(--border); }
  .search-field.date { border-radius: 10px; border-left: 1.5px solid var(--border); }
  .search-swap { display: none; }
  .search-btn { border-radius: 10px; padding: 13px; height: auto; margin-left: 0; }

  .schedule-section { padding: 88px 16px 48px; }
  .schedule-header { flex-direction: column; align-items: flex-start; gap: 4px; }
  .boards { grid-template-columns: 1fr; }

  .services-section { padding: 48px 16px; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

  .booking-section { padding: 48px 16px; }
  .booking-grid { grid-template-columns: 1fr; gap: 32px; }
  .booking-title { font-size: 28px; }
  .photo-grid { display: none; }

  .sights-section { padding: 48px 16px; }
  .sights-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .sight-img { height: 110px; }
  .section-title { font-size: 22px; }
  .sights-header { margin-bottom: 24px; }

  .footer { padding: 40px 16px 28px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}
