:root {
  --navy: #16263f;
  --navy-2: #22365a;
  --cream: #f6f0e6;
  --paper: #ffffff;
  --terra: #b4472c;
  --terra-soft: #f3dfd4;
  --sand: #e9dcc5;
  --line: #e3d6bf;
  --peach: #f2c49b;
  --teal: #1f5f6b;
  --sea: #1a8c99;       /* бирюза — «летняя» часть тура */
  --sun: #f0a04b;       /* солнечный акцент */
  --text: #1d2433;
  --muted: #5d6475;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Lora", Georgia, "Times New Roman", serif;
  --radius: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.12; margin: 0; color: var(--navy); }
h2 { font-size: clamp(34px, 5vw, 54px); }
h3 { font-size: 26px; }
p { margin: 0 0 1em; }

.wrap { max-width: 1120px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
section { padding-top: 88px; padding-bottom: 88px; }
.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--terra); margin: 0 0 14px;
}
.lead { font-size: 15.5px; color: var(--muted); margin: 10px 0 0; }
.intro { font-size: 18px; max-width: 820px; margin: 28px 0 0; }
.subhead {
  font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy); margin: 48px 0 0; padding-bottom: 12px; border-bottom: 2px solid var(--navy);
}
.note { font-size: 14px; color: var(--muted); margin-top: 16px; }

/* Фото: мягкая заливка, если файла нет */
.ph {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: linear-gradient(135deg, #d8e2e8, #eef2f4);
}
.ph img { width: 100%; height: 100%; object-fit: cover; }
.caption { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--muted); margin-top: 8px; }

.btn {
  display: inline-block; text-decoration: none; cursor: pointer; border: 0;
  font: 600 16px/1 var(--sans); padding: 17px 28px; border-radius: 8px;
  background: var(--terra); color: #fff; transition: background .2s;
}
.btn:hover { background: #983a23; }
.btn-ghost { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.6); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }

/* ---------- ШАПКА ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(22,38,63,.96); color: #fff;
  backdrop-filter: blur(6px);
}
.topbar .wrap { display: flex; align-items: center; gap: 28px; height: 64px; }
.brand { font-weight: 700; font-size: 15px; letter-spacing: .04em; text-decoration: none; white-space: nowrap; }
.brand span { color: var(--peach); }
.nav { display: flex; gap: 22px; font-size: 14.5px; margin-left: auto; }
.nav a { text-decoration: none; opacity: .85; }
.nav a:hover { opacity: 1; }
.top-phone { text-decoration: none; font-weight: 600; white-space: nowrap; }
.topbar .btn { padding: 11px 18px; font-size: 14.5px; }

/* ---------- HERO ---------- */
.hero { background: var(--navy); color: #fff; padding: 0; }
.hero-photo { height: min(52vh, 500px); border-radius: 0; }
.hero-photo img { object-position: center 45%; }
.hero-badge {
  position: absolute; left: 24px; top: 24px;
  background: rgba(22,38,63,.88); color: #fff; font-size: 12.5px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; padding: 10px 16px; border-radius: 6px;
}
.hero-body { padding-top: 56px; padding-bottom: 64px; }
.hero .eyebrow { color: var(--peach); }
.hero h1 { color: #fff; font-size: clamp(52px, 9vw, 104px); }
.hero h1 em { color: var(--peach); font-style: italic; display: block; }
.hero-sub { font-size: 20px; max-width: 640px; margin: 24px 0 36px; color: rgba(255,255,255,.88); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.stat { border-top: 1px solid rgba(255,255,255,.3); padding-top: 18px; }
.stat b { display: block; font-family: var(--serif); font-weight: 500; font-size: 48px; line-height: 1; color: var(--peach); }
.stat span { display: block; font-size: 15px; margin-top: 10px; color: rgba(255,255,255,.85); }

/* ---------- СЕЗОНЫ ---------- */
.seasons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.season .ph { aspect-ratio: 16 / 9; }
.season-label { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin: 16px 0 4px; }
.season-label.winter { color: var(--teal); }
.season-label.summer { color: var(--terra); }
.season h3 { font-size: 28px; }
.season p { color: var(--muted); font-size: 15px; margin: 4px 0 0; }

/* ---------- КАРТОЧКИ ---------- */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 20px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; display: flex; gap: 18px; align-items: flex-start;
}
.card.col { flex-direction: column; gap: 6px; }
.ico {
  flex: 0 0 44px; width: 44px; height: 44px; border-radius: 50%;
  background: var(--terra-soft); color: var(--terra);
  display: grid; place-items: center;
}
.ico svg { width: 22px; height: 22px; }
.card h4 { margin: 0 0 4px; font-size: 17px; font-weight: 700; color: var(--navy); }
.card p { margin: 0; font-size: 15px; color: var(--muted); }

/* ---------- ФОРМАТЫ ---------- */
#formaty { background: var(--paper); }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; align-items: start; }
.plan {
  position: relative; background: var(--cream); border: 1px solid var(--line);
  border-radius: 12px; padding: 32px 28px;
}
.plan.featured { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-12px); box-shadow: 0 18px 40px rgba(22,38,63,.25); }
.plan-flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--terra); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: 7px 14px; border-radius: 5px; white-space: nowrap;
}
.plan-len { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--terra); }
.plan.featured .plan-len { color: var(--peach); }
.plan h3 { font-size: 34px; margin: 14px 0 10px; }
.plan.featured h3 { color: #fff; }
.plan-dates { font-weight: 700; }
.plan-price { font-size: 30px; font-weight: 700; color: var(--terra); margin: 8px 0; }
.plan.featured .plan-price { color: var(--peach); }
.plan-for { font-size: 15px; color: var(--muted); padding-bottom: 18px; border-bottom: 1px solid var(--sand); margin: 0; }
.plan.featured .plan-for { color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.25); }
.checks { list-style: none; padding: 0; margin: 18px 0 0; }
.checks li { position: relative; padding-left: 28px; margin-bottom: 10px; font-size: 15.5px; }
.checks li::before {
  content: ""; position: absolute; left: 2px; top: 6px; width: 12px; height: 7px;
  border-left: 2px solid var(--teal); border-bottom: 2px solid var(--teal); transform: rotate(-45deg);
}
.plan.featured .checks li::before { border-color: var(--peach); }
.plan .btn { width: 100%; text-align: center; margin-top: 18px; }
.plan:not(.featured) .btn { background: var(--navy); }
.plan:not(.featured) .btn:hover { background: var(--navy-2); }
.included { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px; margin-top: 22px; }
.included div { display: flex; align-items: center; gap: 14px; font-weight: 600; font-size: 15.5px; }
.custom {
  margin-top: 40px; background: var(--sand); border-radius: 12px; padding: 28px 32px;
  display: flex; gap: 24px; align-items: center;
}
.custom h3 { font-size: 26px; margin-bottom: 6px; }
.custom p { margin: 0; }
.custom .btn { margin-left: auto; white-space: nowrap; }

/* ---------- МАРШРУТ ---------- */
.route-line { display: flex; justify-content: space-between; margin-top: 40px; position: relative; }
.route-line::before { content: ""; position: absolute; left: 5%; right: 5%; top: 21px; border-top: 2px dashed #cdb892; }
.stop { position: relative; text-align: center; font-size: 14px; font-weight: 600; flex: 1; }
.stop i {
  display: grid; place-items: center; width: 44px; height: 44px; margin: 0 auto 10px;
  border-radius: 50%; background: var(--navy); color: var(--peach); font-style: normal;
}
.stop svg { width: 20px; height: 20px; }
.days { margin-top: 40px; border-top: 1px solid var(--line); }
.day { display: grid; grid-template-columns: 190px 1fr; gap: 24px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.day-date { font-family: var(--serif); font-size: 22px; color: var(--terra); line-height: 1.2; }
.day-date small { display: block; font-family: var(--sans); font-size: 14px; color: var(--muted); margin-top: 4px; }
.day h4 { margin: 0 0 4px; font-size: 18px; color: var(--navy); }
.day p { margin: 0; color: var(--muted); font-size: 15.5px; }

/* ---------- ДОСТОПРИМЕЧАТЕЛЬНОСТИ ---------- */
.wide-photo { aspect-ratio: 21 / 8; margin-top: 36px; }
.sights { margin-top: 0; }
.sight { display: flex; gap: 24px; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--line); }
.sight b { display: block; color: var(--navy); }
.sight span { font-size: 15px; color: var(--muted); }
.price { font-weight: 700; color: var(--terra); white-space: nowrap; }
.price.free { color: var(--teal); }
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.trio .ph { aspect-ratio: 4 / 3; }

/* ---------- ОТЕЛИ ---------- */
.gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px; margin-top: 24px; height: 380px; }
.gallery .ph:first-child { grid-row: span 2; }
.hotel {
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  padding: 32px; margin-top: 20px;
}
.hotel-tag {
  display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--terra); border: 1.5px solid var(--terra); border-radius: 5px; padding: 6px 12px;
}
.hotel h3 { font-size: 36px; margin: 18px 0 8px; }
.stars { color: #c98a2e; font-size: 20px; letter-spacing: 2px; vertical-align: middle; margin-left: 8px; }
.hotel-meta { color: var(--muted); font-size: 15px; margin-bottom: 14px; }

/* ---------- КРУИЗ ---------- */
#kruiz { background: var(--paper); }
.table { margin-top: 0; }
.trow { display: grid; grid-template-columns: 160px 1fr 1fr; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.trow b:first-child { color: var(--terra); }
.trow span { color: var(--muted); }

/* ---------- КАЮТЫ ---------- */
.cabins { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.cabin { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; position: relative; }
.cabin .ph { aspect-ratio: 16 / 10; border-radius: 0; }
.cabin-body { padding: 20px 24px 24px; }
.cabin-head { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.cabin-head h4 { margin: 0; font-size: 19px; color: var(--navy); }
.cabin-head span { font-size: 14px; font-weight: 700; color: var(--teal); white-space: nowrap; }
.cabin p { margin: 6px 0 0; color: var(--muted); font-size: 15px; }
.premium { position: absolute; top: 14px; left: 14px; background: var(--terra); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .12em; padding: 6px 12px; border-radius: 5px; }
.callout { background: var(--sand); border-radius: 10px; padding: 20px 24px; margin-top: 24px; }
.callout b { color: var(--terra); }
.upgrade { font-size: 18px; margin-top: 24px; }
.upgrade b { color: var(--terra); }

/* ---------- ОСТРОВА ---------- */
.island + .island { margin-top: 64px; }
.island .ph { aspect-ratio: 21 / 7; }
.island-title { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 18px; margin: 24px 0 12px; }
.island-title .eyebrow { margin: 0; }

/* ---------- ПЛЯЖИ ---------- */
.beach { padding: 0; overflow: hidden; }
.beach .ph { aspect-ratio: 16 / 9; border-radius: 0; }
.beach div:last-child { padding: 18px 22px 22px; }

/* ---------- ЭКСКУРСИИ ---------- */
#ekskursii { background: var(--paper); }
.tours { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px; }
.tour { background: var(--cream); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.tour .ph { aspect-ratio: 4 / 3; border-radius: 0; }
.tour div:last-child { padding: 18px 20px 22px; }
.tour h4 { margin: 0 0 4px; font-size: 18px; color: var(--navy); }
.tour p { margin: 0; font-size: 15px; color: var(--muted); }
.tour.wide { grid-column: span 3; display: grid; grid-template-columns: 1fr 2fr; }
.tour.wide .ph { aspect-ratio: auto; height: 100%; min-height: 200px; }
.tour.wide div:last-child { align-self: center; padding: 28px 32px; }
.tour.wide h4 { font-size: 24px; font-family: var(--serif); font-weight: 500; }

.escort { background: var(--navy); color: #fff; }
.escort h2 { color: #fff; }
.escort .eyebrow { color: var(--peach); }
.escort p { font-size: 18px; max-width: 720px; color: rgba(255,255,255,.88); margin-top: 20px; }

/* ---------- ВИДЕО ---------- */
.videos { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.videos iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: var(--radius); }

/* ---------- ВИЗА ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 20px; }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 22px; }
.step i {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: var(--peach); font-style: normal; font-weight: 700; margin-bottom: 14px;
}
.step h4 { margin: 0 0 6px; font-size: 17px; color: var(--navy); }
.step p { margin: 0; font-size: 14.5px; color: var(--muted); }
.visa-center { background: var(--navy); color: #fff; border-radius: 10px; padding: 22px 26px; margin-top: 28px; }
.visa-center .btn { display: inline-block; }
.visa-center b { display: block; color: var(--peach); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 6px; }

/* ---------- ЗАЯВКА ---------- */
#zayavka { background: var(--navy); color: #fff; }
#zayavka h2 { color: #fff; }
#zayavka .eyebrow { color: var(--peach); }
.lead-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start; }
.lead-text p { color: rgba(255,255,255,.85); font-size: 18px; margin-top: 20px; }
.contact-line { margin-top: 28px; border-top: 1px solid rgba(255,255,255,.25); padding-top: 18px; }
.contact-line small { display: block; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.contact-line a { font-size: 24px; font-weight: 600; text-decoration: none; }
.form { background: var(--paper); color: var(--text); border-radius: 14px; padding: 32px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--navy); }
.field input, .field select, .field textarea {
  width: 100%; font: 16px var(--sans); color: var(--text); background: #fbf8f3;
  border: 1px solid #d9ccb4; border-radius: 8px; padding: 13px 14px;
}
.field textarea { min-height: 90px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--terra); outline-offset: 0; border-color: transparent; }
.radios { display: flex; flex-wrap: wrap; gap: 8px; }
.radios label {
  display: inline-flex; align-items: center; gap: 8px; margin: 0; font-weight: 500;
  border: 1px solid #d9ccb4; border-radius: 8px; padding: 10px 14px; cursor: pointer; background: #fbf8f3;
}
.form .btn { width: 100%; margin-top: 6px; }
.form .btn[disabled] { opacity: .6; cursor: wait; }
.agree { font-size: 13px; color: var(--muted); margin: 12px 0 0; }
.form-msg { display: none; border-radius: 8px; padding: 16px 18px; margin-top: 16px; font-size: 15.5px; }
.form-msg.ok { display: block; background: #e3f0ea; color: #1d5a3f; }
.form-msg.err { display: block; background: var(--terra-soft); color: #7c2c18; }
.hp { position: absolute; left: -9999px; }

/* ---------- ПОДВАЛ ---------- */
footer { background: #0f1b2e; color: rgba(255,255,255,.8); padding: 64px 0 40px; font-size: 15px; }
footer h3 { color: #fff; font-size: 28px; margin-bottom: 12px; }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; }
.foot-grid small { display: block; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: 14px; }
.foot-grid a { color: #fff; text-decoration: none; font-weight: 600; }
.legal { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.15); font-size: 13px; color: rgba(255,255,255,.5); }

.mobile-cta { display: none; }
.swipe-hint { display: none; font-size: 13px; color: var(--muted); margin: 10px 0 0; }

/* ---------- АДАПТИВ ---------- */
@media (max-width: 900px) {
  .nav { display: none; }
  .topbar .btn { margin-left: auto; }
  .plans { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .plan.featured { transform: none; order: -1; }
  .cards.three, .tours { grid-template-columns: 1fr 1fr; }
  .tour.wide { grid-column: span 2; }
  .steps { grid-template-columns: 1fr 1fr; }
  .lead-grid { grid-template-columns: 1fr; gap: 36px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  body { font-size: 16px; padding-bottom: 68px; }
  .wrap { padding-left: 16px; padding-right: 16px; }
  section { padding-top: 60px; padding-bottom: 60px; }
  .topbar .wrap { gap: 12px; }
  .top-phone { display: none; }
  .hero-photo { height: 42vh; }
  .hero-badge { left: 16px; top: 16px; font-size: 11px; }
  .hero-body { padding-top: 36px; padding-bottom: 48px; }
  .hero-sub { font-size: 17px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
  .stat b { font-size: 40px; }
  .seasons, .cards, .cards.three, .cabins, .tours, .included, .trio, .videos, .foot-grid { grid-template-columns: 1fr; }
  .tour.wide { grid-column: auto; grid-template-columns: 1fr; }
  .tour.wide .ph { aspect-ratio: 16 / 9; height: auto; min-height: 0; }
  .tour.wide div:last-child { padding: 18px 20px 22px; }
  .route-line { overflow-x: auto; justify-content: flex-start; gap: 4px; padding-bottom: 6px; }
  .route-line::before { display: none; }
  .stop { flex: 0 0 96px; font-size: 13px; }
  .day { grid-template-columns: 1fr; gap: 4px; }
  .trow { grid-template-columns: 1fr; gap: 2px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 110px 110px; height: auto; }
  .gallery .ph:first-child { grid-column: span 2; grid-row: auto; }
  .hotel { padding: 24px 20px; }
  .hotel h3 { font-size: 30px; }
  .wide-photo, .island .ph { aspect-ratio: 16 / 9; }
  .custom { flex-direction: column; align-items: flex-start; padding: 24px; }
  .custom .btn { margin-left: 0; }
  .steps { grid-template-columns: 1fr; }
  .form { padding: 24px 18px; }

  /* Первое фото: в кадре нос лайнера с логотипом */
  .hero-photo img { object-position: 22% 45%; }

  /* Плотнее карточки «Почему этот тур» */
  .card { padding: 16px 18px; gap: 14px; }
  .ico { flex-basis: 36px; width: 36px; height: 36px; }
  .ico svg { width: 18px; height: 18px; }
  .card h4 { font-size: 16px; }
  .card p { font-size: 14.5px; }

  /* «На борту» — две колонки */
  .cards.onboard { grid-template-columns: 1fr 1fr; gap: 10px; }
  .onboard .card { padding: 14px; }

  /* Маршрут: полоса с городами дублирует подзаголовок — прячем, дата слева */
  .route-line { display: none; }
  .days { margin-top: 28px; }
  .day { grid-template-columns: 84px 1fr; gap: 14px; padding: 14px 0; }
  .day-date { font-size: 17px; }
  .day-date small { font-size: 12.5px; }
  .day h4 { font-size: 16px; }
  .day p { font-size: 14.5px; }

  /* Ленты, которые листают пальцем: фото Рима, каюты, пляжи, экскурсии */
  .trio, .cabins, .tours, .beaches {
    display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
    margin-left: -16px; margin-right: -16px; padding: 0 16px 6px; scroll-padding-left: 16px;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
  }
  .trio::-webkit-scrollbar, .cabins::-webkit-scrollbar, .tours::-webkit-scrollbar, .beaches::-webkit-scrollbar { display: none; }
  .trio > *, .cabins > *, .tours > *, .beaches > * { flex: 0 0 80%; scroll-snap-align: start; }
  .tour.wide { display: block; }
  .tour.wide .ph { aspect-ratio: 4 / 3; }
  .tour.wide h4 { font-size: 18px; font-family: var(--sans); font-weight: 700; }
  .swipe-hint { display: block; margin-top: 20px; }
  .swipe-hint + .cabins, .swipe-hint + .tours { margin-top: 10px; }

  /* Виза: номер шага слева от текста */
  .step { display: grid; grid-template-columns: 36px 1fr; gap: 0 14px; padding: 16px; }
  .step i { width: 36px; height: 36px; margin: 0; grid-row: span 2; }
  .mobile-cta {
    display: grid; grid-template-columns: 1fr 1fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: var(--navy); box-shadow: 0 -4px 16px rgba(0,0,0,.2);
  }
  .mobile-cta a { text-align: center; padding: 20px 8px; color: #fff; font-weight: 700; text-decoration: none; font-size: 15px; }
  .mobile-cta a:last-child { background: var(--terra); }
}

/* ================= НЕСКОЛЬКО СТРАНИЦ ================= */

/* Текущая страница в меню */
.nav a[aria-current="page"] { opacity: 1; color: var(--peach); }

/* Меню для телефона: кнопка-«гамбургер» без скриптов */
.menu { display: none; position: static; }
.menu summary {
  list-style: none; cursor: pointer; width: 44px; height: 44px; border-radius: 8px;
  display: grid; place-items: center; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.35);
}
.menu summary::-webkit-details-marker { display: none; }
.menu summary span, .menu summary span::before, .menu summary span::after {
  display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px; position: relative; content: "";
}
.menu summary span::before { position: absolute; top: -6px; }
.menu summary span::after { position: absolute; top: 6px; }
.menu[open] summary span { background: transparent; }
.menu[open] summary span::before { top: 0; transform: rotate(45deg); }
.menu[open] summary span::after { top: 0; transform: rotate(-45deg); }
.menu nav {
  position: absolute; left: 0; right: 0; top: 64px; background: var(--navy);
  display: flex; flex-direction: column; padding: 8px 16px 16px;
  box-shadow: 0 12px 24px rgba(0,0,0,.25);
}
.menu nav a { text-decoration: none; padding: 13px 4px; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 16px; }
.menu nav a:last-child { border-bottom: 0; color: var(--peach); font-weight: 600; }
.menu nav a[aria-current="page"] { color: var(--peach); }

/* Путь «Главная / Рим» */
.crumbs { font-size: 14px; color: var(--muted); padding: 18px 0 0; }
.crumbs a { color: var(--terra); text-decoration: none; font-weight: 600; }
.crumbs span { margin: 0 6px; }
.crumbs + section { padding-top: 40px; }
.crumbs + section[style] { margin-top: 18px; }

/* Карточки-переходы на главной */
.teasers { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 36px; }
.teaser {
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  background: var(--cream); border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.teaser:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(22,38,63,.12); }
.teaser .ph { aspect-ratio: 4 / 3; border-radius: 0; }
.teaser > div:last-child { padding: 16px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.teaser .eyebrow { font-size: 11.5px; margin-bottom: 6px; }
.teaser h3 { font-size: 22px; margin-bottom: 6px; }
.teaser p { font-size: 14.5px; color: var(--muted); margin: 0 0 12px; }
.teaser .more { margin-top: auto; font-weight: 700; font-size: 14.5px; color: var(--terra); }

/* Блок в конце страниц подробностей */
.next-block { background: var(--navy); color: #fff; padding-top: 64px; padding-bottom: 48px; }
.next-cta { display: flex; gap: 32px; align-items: center; justify-content: space-between; }
.next-cta h3 { color: #fff; font-size: 34px; margin-bottom: 8px; }
.next-cta p { color: rgba(255,255,255,.8); margin: 0; }
.next-cta .eyebrow { color: var(--peach); margin-bottom: 10px; }
.next-actions { display: flex; flex-wrap: wrap; gap: 12px; flex-shrink: 0; }
.next-links {
  display: flex; justify-content: space-between; gap: 16px; margin-top: 40px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.next-links a { color: #fff; text-decoration: none; font-weight: 600; }
.next-links a:last-child { color: var(--peach); }

@media (max-width: 1180px) {
  .top-phone { display: none; }
  .nav { gap: 16px; font-size: 14px; }
}
@media (max-width: 900px) {
  .menu { display: block; }
  .topbar .btn { margin-left: auto; }
  .teasers { grid-template-columns: repeat(3, 1fr); }
  .next-cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 680px) {
  /* Кнопка заявки на телефоне — в нижней панели, в шапке только меню */
  .topbar .btn { display: none; }
  .menu { margin-left: auto; }
  .brand { font-size: 16px; }

  /* На телефоне переходы — компактным списком: фото слева, текст справа */
  .teasers { grid-template-columns: 1fr; gap: 10px; margin-top: 24px; }
  .teaser { flex-direction: row; }
  .teaser .ph { flex: 0 0 104px; aspect-ratio: auto; }
  .teaser > div:last-child { padding: 12px 14px; }
  .teaser h3 { font-size: 19px; margin-bottom: 2px; }
  .teaser p { font-size: 13.5px; margin-bottom: 6px; }
  .teaser .eyebrow { font-size: 10.5px; margin-bottom: 2px; }
  .teaser .more { font-size: 13.5px; }
  .next-cta h3 { font-size: 28px; }
  .next-links { flex-direction: column; gap: 12px; }
}

/* ================= ГЛАВНАЯ: КАЮТЫ, ВИДЕО, ВИЗА ================= */
.kayuty-top { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: center; }
.video { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; background: var(--navy); box-shadow: 0 16px 36px rgba(22,38,63,.18); }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.more-link { display: inline-block; margin-top: 20px; font-weight: 700; color: var(--terra); text-decoration: none; }
.more-link:hover { text-decoration: underline; }
.cabins.four { grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.cabins.four .cabin-head { flex-direction: column; gap: 2px; }
.cabins.four .cabin-head h4 { font-size: 17px; }
.cabins.four .cabin p { font-size: 14.5px; }
#podrobnee .teaser { background: var(--paper); }
.messengers { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.msg-btn {
  text-decoration: none; font-weight: 600; font-size: 15px; color: #fff;
  padding: 11px 16px; border-radius: 8px; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.45);
}
.msg-btn:hover { background: rgba(255,255,255,.1); }

@media (max-width: 900px) {
  .kayuty-top { grid-template-columns: 1fr; gap: 28px; }
  .cabins.four { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .cabins.four { display: flex; margin-top: 10px; }
}

/* ================= ЖИВЕЕ: ПЕРВЫЙ ЭКРАН, ЛЕНТА, ВОПРОСЫ ================= */

/* Кнопки чуть заметнее */
.btn { box-shadow: 0 8px 20px rgba(180,71,44,.28); transition: background .2s, transform .2s, box-shadow .2s; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(180,71,44,.34); }
.btn-ghost, .plan:not(.featured) .btn { box-shadow: none; }
.price.free { color: var(--sea); }

/* Первый экран: зима | лето */
.hero-split { position: relative; display: grid; grid-template-columns: 1fr 1fr; height: min(58vh, 540px); }
.hero-half { border-radius: 0; }
.hero-half img { object-position: center 40%; }
.hero-temp {
  position: absolute; left: 24px; bottom: 24px; padding: 14px 18px; border-radius: 10px; color: #fff;
  background: rgba(22,38,63,.78); backdrop-filter: blur(4px);
}
.summer .hero-temp { left: auto; right: 24px; background: rgba(26,140,153,.86); }
.hero-temp span { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .85; }
.hero-temp b { display: block; font-family: var(--serif); font-weight: 500; font-size: 38px; line-height: 1.1; }
.hero-temp small { display: block; font-size: 14px; opacity: .9; }
.hero-arrow {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center;
  background: var(--sun); color: var(--navy); font-size: 28px; font-weight: 700;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
.hero-split .hero-badge { z-index: 1; }

/* Лента «Что нас ждёт» */
.strip-head { display: flex; align-items: flex-end; gap: 16px; }
.strip-head .subhead { flex: 1; }
.strip-nav { display: flex; gap: 8px; padding-bottom: 8px; }
.strip-nav button {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--navy); background: transparent;
  color: var(--navy); font-size: 18px; cursor: pointer; transition: background .2s, color .2s;
}
.strip-nav button:hover { background: var(--navy); color: #fff; }
.strip {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; margin-top: 22px; padding-bottom: 6px;
  scrollbar-width: none;
}
.strip::-webkit-scrollbar { display: none; }
.strip figure { flex: 0 0 300px; height: 400px; margin: 0; scroll-snap-align: start; }
.strip figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 60px 18px 18px; color: #fff; font-weight: 600; font-size: 16px; line-height: 1.35;
  background: linear-gradient(to top, rgba(12,22,38,.85), rgba(12,22,38,0));
}
.strip figcaption span { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--sun); margin-bottom: 4px; }

/* Раскрывающиеся строки: дни маршрута и вопросы */
.day { display: block; padding: 0; }
.day summary, .faq summary { list-style: none; cursor: pointer; position: relative; padding-right: 44px; }
.day summary::-webkit-details-marker, .faq summary::-webkit-details-marker { display: none; }
.day summary::after, .faq summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: var(--terra-soft); color: var(--terra); font-size: 20px; font-weight: 600; transition: transform .2s;
}
.day[open] summary::after, .faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.day summary { display: grid; grid-template-columns: 190px 1fr; gap: 24px; align-items: center; padding-top: 16px; padding-bottom: 16px; }
.day-title { font-size: 18px; font-weight: 700; color: var(--navy); }
.day > p { margin: -4px 44px 18px 214px; color: var(--muted); font-size: 15.5px; }
.days-tools { display: flex; justify-content: flex-end; margin-top: 28px; }
.days-tools button { background: none; border: 0; padding: 0; font: 700 14.5px var(--sans); color: var(--terra); cursor: pointer; }
.days-tools + .days { margin-top: 10px; }

.faq { max-width: 860px; margin-top: 32px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { padding-top: 20px; padding-bottom: 20px; font-size: 18px; font-weight: 700; color: var(--navy); }
.faq p { margin: -6px 44px 20px 0; color: var(--muted); }
.faq a, #voprosy .note a { color: var(--terra); }

/* Плавающая кнопка связи (на компьютере) */
.fab { position: fixed; right: 24px; bottom: 24px; z-index: 70; }
.fab summary {
  list-style: none; cursor: pointer; width: 62px; height: 62px; border-radius: 50%;
  display: grid; place-items: center; background: var(--terra); color: #fff;
  box-shadow: 0 10px 28px rgba(180,71,44,.4); transition: transform .2s;
}
.fab summary::-webkit-details-marker { display: none; }
.fab summary:hover { transform: scale(1.06); }
.fab summary svg { width: 28px; height: 28px; }
.fab-panel {
  position: absolute; right: 0; bottom: 76px; width: 300px; background: var(--paper); border-radius: 14px;
  padding: 18px; box-shadow: 0 18px 40px rgba(22,38,63,.25); display: flex; flex-direction: column; gap: 4px;
}
.fab-panel b { font-family: var(--serif); font-weight: 500; font-size: 20px; color: var(--navy); margin-bottom: 6px; }
.fab-panel a { text-decoration: none; color: var(--navy); font-weight: 600; padding: 10px 12px; border-radius: 8px; background: var(--cream); }
.fab-panel a:hover { background: var(--sand); }

@media (max-width: 680px) {
  .hero-split { height: 40vh; }
  .hero-split .hero-badge { display: none; }
  .hero-temp { left: 10px; bottom: 10px; padding: 8px 10px; }
  .summer .hero-temp { right: 10px; }
  .hero-temp span { font-size: 9.5px; letter-spacing: .06em; }
  .hero-temp b { font-size: 24px; }
  .hero-temp small { font-size: 11px; }
  .hero-arrow { width: 44px; height: 44px; font-size: 20px; }
  .strip-nav { display: none; }
  .strip { margin-left: -16px; margin-right: -16px; padding: 0 16px 6px; scroll-padding-left: 16px; gap: 12px; }
  .strip figure { flex-basis: 72%; height: 340px; }
  .day summary { grid-template-columns: 84px 1fr; gap: 14px; padding-top: 12px; padding-bottom: 12px; }
  .day-title { font-size: 16px; }
  .day > p { margin: -2px 0 14px 98px; font-size: 14.5px; }
  .faq summary { font-size: 16px; padding-top: 16px; padding-bottom: 16px; }
  .faq p { margin-right: 0; font-size: 15px; }
  .fab { display: none; }
}

/* ================= ПРОГРАММА, КОМАНДА, ВИДЕО ================= */

/* Текст дня — под названием, в две строки-абзаца */
.day-text { margin: -2px 44px 20px 214px; }
.day-text p { margin: 0 0 8px; color: var(--muted); font-size: 16px; }
.day-text p:first-child { color: var(--text); }

/* Команда: фото слева, текст справа */
.team { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.team-photos { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; height: 560px; }
.team-photos .team-main { grid-row: span 2; }
.team-photos img { object-position: center 60%; }
.team-text .intro { margin-top: 20px; }

/* Видео о местах маршрута */
.videos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 36px; }
.yt { margin: 0; }
.yt button, .yt iframe {
  display: block; width: 100%; aspect-ratio: 16 / 9; border: 0; padding: 0; border-radius: var(--radius);
  overflow: hidden; position: relative; cursor: pointer; background: #000;
}
.yt button img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.yt button:hover img { transform: scale(1.04); }
.yt-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 56px; height: 56px;
  border-radius: 50%; background: var(--terra); box-shadow: 0 8px 20px rgba(0,0,0,.35);
}
.yt-play::after {
  content: ""; position: absolute; left: 22px; top: 17px;
  border-left: 16px solid #fff; border-top: 11px solid transparent; border-bottom: 11px solid transparent;
}
.yt figcaption { margin-top: 10px; color: #fff; }
.yt figcaption b { display: block; font-size: 16px; }
.yt figcaption span { display: block; font-size: 12.5px; color: rgba(255,255,255,.55); }

@media (max-width: 900px) {
  .team { grid-template-columns: 1fr; gap: 32px; }
  .videos { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .day-text { margin: 0 0 16px; }
  .day-text p { font-size: 14.5px; }
  .team-photos { height: 420px; }
  .videos { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 12px;
    margin-left: -16px; margin-right: -16px; padding: 0 16px 6px; scroll-padding-left: 16px; scrollbar-width: none; }
  .videos::-webkit-scrollbar { display: none; }
  .yt { flex: 0 0 80%; scroll-snap-align: start; }
}

#marshrut .note a { color: var(--terra); font-weight: 700; }

/* ================= ВКЛАДКИ-НАВИГАЦИЯ ================= */
.topbar .top-phone { display: inline; margin-left: auto; }
.tabs { background: var(--paper); border-bottom: 1px solid var(--line); }
.tabs .wrap { display: flex; gap: 4px; height: auto; padding-top: 8px; padding-bottom: 8px; overflow-x: auto; scrollbar-width: none; }
.tabs .wrap::-webkit-scrollbar { display: none; }
.tabs a {
  flex: 0 0 auto; text-decoration: none; color: var(--navy); font-weight: 600; font-size: 15px;
  padding: 9px 16px; border-radius: 999px; transition: background .2s, color .2s;
}
.tabs a:hover { background: var(--cream); }
.tabs a[aria-current="page"] { background: var(--navy); color: #fff; }
html { scroll-padding-top: 130px; }

/* ================= ТАРИФЫ: ТАБЛИЦА СРАВНЕНИЯ ================= */
.price-note {
  display: inline-block; margin: 18px 0 0; padding: 10px 16px; border-radius: 8px;
  background: var(--terra-soft); color: #7c2c18; font-weight: 600; font-size: 15px;
}
.compare { margin-top: 48px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); }
.cmp-row { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; border-top: 1px solid var(--line); }
.cmp-row:first-child { border-top: 0; }
.cmp-label { padding: 14px 22px; font-size: 15.5px; display: flex; align-items: center; }
.cmp-cell { padding: 14px 12px; text-align: center; display: flex; align-items: center; justify-content: center; font-size: 15px; }
.cmp-cell.featured { background: #eef3f7; }
.cmp-head .cmp-label span { font-family: var(--serif); font-size: 26px; color: var(--navy); }
.cmp-plan { position: relative; padding: 30px 18px 22px; text-align: center; }
.cmp-plan.featured { background: var(--navy); color: #fff; border-radius: 12px 12px 0 0; margin-top: -14px; padding-top: 44px; }
.cmp-plan h3 { font-size: 28px; margin: 10px 0 6px; }
.cmp-plan.featured h3 { color: #fff; }
.cmp-plan .plan-for { border: 0; padding: 0; margin-top: 8px; font-size: 14px; }
.cmp-plan.featured .plan-for { color: rgba(255,255,255,.75); }
.cmp-plan .plan-flag { top: -12px; }
.cmp-group { display: block; background: var(--cream); border-top: 1px solid var(--line); }
.cmp-group div { padding: 10px 22px; font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--terra); }
.yes { display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: #dcefe6; color: #1d6b48; font-weight: 700; }
.no { color: #b9ad97; font-size: 20px; }
.val { font-weight: 700; color: var(--navy); }
.cmp-foot .cmp-cell { padding: 20px 14px 24px; }
.cmp-foot .btn { width: 100%; }
.cmp-foot .cmp-cell:not(.featured) .btn { background: var(--navy); box-shadow: none; }
.plan-switch, .plan-card { display: none; }

/* ================= ЛАЙНЕР: КАЮТА И ПОМОЩЬ ================= */
.cabin-inc { display: grid; grid-template-columns: 200px 1fr; gap: 20px; align-items: center; margin-top: 28px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 14px; }
.cabin-inc .ph { aspect-ratio: 4 / 3; }
.cabin-inc h4 { margin: 8px 0 4px; font-size: 19px; color: var(--navy); }
.cabin-inc p { margin: 0 0 6px; color: var(--muted); font-size: 15px; }
.cabin-inc.big { grid-template-columns: 1.1fr 1fr; gap: 32px; padding: 20px; max-width: 980px; }
.cabin-inc.big h4 { font-size: 24px; }
.cabin-inc.big p { font-size: 16px; }
.inc-badge, .opt-badge {
  display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px; background: #dcefe6; color: #1d6b48; margin: 0 6px 6px 0;
}
.opt-badge { background: var(--sand); color: var(--navy); }
.concierge {
  display: flex; gap: 20px; align-items: center; margin-top: 32px; padding: 26px 28px; border-radius: 14px;
  background: linear-gradient(120deg, var(--navy), var(--navy-2)); color: #fff;
}
.concierge .ico { background: rgba(240,160,75,.2); color: var(--sun); }
.concierge h3 { color: #fff; font-size: 24px; margin-bottom: 6px; }
.concierge p { margin: 0; color: rgba(255,255,255,.85); }
.concierge .more-link { color: var(--sun); white-space: nowrap; margin: 0 0 0 auto; }

/* ================= МАРШРУТ: ОСТАНОВКИ-ССЫЛКИ ================= */
a.stop { text-decoration: none; color: inherit; }
a.stop:hover i { background: var(--terra); }
.day-more { font-weight: 700; color: var(--terra); text-decoration: none; white-space: nowrap; }
.day-more:hover { text-decoration: underline; }

/* ================= КОМАНДА И СОПРОВОЖДАЮЩИЕ ================= */
.team { grid-template-columns: 1fr 1.1fr; }
.team-flag { height: 620px; }
.team-flag img { object-position: center 35%; }
.guides { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.guide { display: grid; grid-template-columns: 180px 1fr; gap: 20px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 16px; }
.guide .ph { aspect-ratio: 3 / 4; }
.guide h3 { font-size: 26px; margin-top: 6px; }
.guide-role { color: var(--terra); font-weight: 700; font-size: 14.5px; margin: 4px 0 10px; }
.guide p:last-child { color: var(--muted); font-size: 15px; margin: 0; }
.team-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 24px; }
.team-strip .ph { aspect-ratio: 3 / 4; }

/* ================= ЭКСКУРСИИ ================= */
.tours-full { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.tours-full .tour { display: flex; flex-direction: column; background: var(--paper); }
.tours-full .tour .ph { aspect-ratio: 16 / 10; }
.tours-full .tour > div:last-child { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.tours-full .tour h4 { font-size: 20px; margin: 4px 0 6px; }
.tour-video { margin-top: auto; padding-top: 12px; }
.tour-video summary { cursor: pointer; font-weight: 700; color: var(--terra); list-style: none; display: inline-flex; align-items: center; gap: 8px; }
.tour-video summary::-webkit-details-marker { display: none; }
.tour-video summary::before { content: "\25B6"; font-size: 11px; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--terra); color: #fff; }
.tour-video .video { margin-top: 12px; }
.tour-video .caption { font-size: 12.5px; }

@media (max-width: 900px) {
  .compare { display: none; }
  .plan-switch { display: flex; gap: 6px; margin-top: 28px; padding: 5px; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; }
  .plan-switch button {
    flex: 1; border: 0; background: none; padding: 11px 6px; border-radius: 999px; cursor: pointer;
    font: 700 13.5px/1.2 var(--sans); color: var(--navy);
  }
  .plan-switch button[aria-selected="true"] { background: var(--navy); color: #fff; }
  .plan-card { display: block; position: relative; margin-top: 26px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 26px 20px 22px; }
  .plan-card[hidden] { display: none; }
  .plan-card.featured { border: 2px solid var(--navy); }
  .plan-card h3 { font-size: 30px; margin: 8px 0 4px; }
  .plan-card .plan-for { margin-bottom: 4px; }
  .pc-group { margin: 18px 0 6px; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--terra); }
  .pc-list { list-style: none; margin: 0; padding: 0; }
  .pc-list li { position: relative; padding: 5px 0 5px 28px; font-size: 15px; }
  .pc-list li.on::before { content: "\2713"; position: absolute; left: 0; top: 5px; width: 20px; height: 20px; border-radius: 50%; background: #dcefe6; color: #1d6b48; font-size: 12px; font-weight: 700; display: grid; place-items: center; }
  .pc-list li.off { color: #b0a58f; text-decoration: line-through; }
  .pc-list li.off::before { content: "\2014"; position: absolute; left: 4px; color: #c9bea8; }
  .plan-card .btn { width: 100%; text-align: center; margin-top: 18px; }
  .team { grid-template-columns: 1fr; }
  .team-flag { height: 520px; }
  .guides { grid-template-columns: 1fr; }
  .tours-full { grid-template-columns: 1fr 1fr; }
  .concierge { flex-wrap: wrap; }
  .concierge .more-link { margin: 0; }
}
@media (max-width: 680px) {
  html { scroll-padding-top: 118px; }
  .topbar .top-phone { display: none; }
  .topbar .wrap { height: 56px; }
  .tabs .wrap { padding: 6px 16px; }
  .tabs a { font-size: 14px; padding: 8px 13px; background: var(--cream); }
  .cabin-inc, .cabin-inc.big { grid-template-columns: 1fr; }
  .team-flag { height: 440px; }
  .guide { grid-template-columns: 110px 1fr; gap: 14px; padding: 12px; }
  .guide h3 { font-size: 21px; }
  .guide p:last-child { font-size: 14px; }
  .team-strip { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; margin-left: -16px; margin-right: -16px; padding: 0 16px; scrollbar-width: none; }
  .team-strip .ph { flex: 0 0 44%; scroll-snap-align: start; }
  .tours-full { display: grid; grid-template-columns: 1fr; margin: 24px 0 0; padding: 0; overflow: visible; }
  .tours-full > * { flex: none; }
  .concierge { padding: 20px; }
}

/* ================= ТАРИФЫ: ШАПКА С ФОТО (v2) ================= */
/* Условие по каюте — в самой таблице; на телефоне показываем тихой строкой */
.price-note { display: none; }
.compare { overflow: visible; border-radius: 16px; box-shadow: 0 16px 40px rgba(22,38,63,.07); }
.cmp-row { grid-template-columns: 1.25fr 1fr 1fr 1fr; }

.cmp-head { align-items: stretch; position: sticky; top: 122px; z-index: 5; background: var(--paper); border-radius: 16px 16px 0 0; box-shadow: 0 1px 0 var(--line); }
.cmp-intro { flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 22px; }
.cmp-intro p { margin: 0; color: var(--muted); font-size: 14.5px; }
.cmp-intro .cmp-intro-title { font-family: var(--serif); font-size: 26px; line-height: 1.15; color: var(--navy); margin-bottom: 10px; }

.cmp-plan, .cmp-plan.featured {
  display: flex; flex-direction: column; padding: 12px 12px 18px; margin: 0; text-align: left;
  background: transparent; color: var(--text); border-radius: 0;
}
.cmp-plan.featured { background: #eef3f7; box-shadow: inset 0 3px 0 var(--terra); }
.cmp-photo { position: relative; height: 110px; border-radius: 10px; }
.cmp-photo .plan-flag {
  position: absolute; left: 10px; top: 10px; transform: none; font-size: 10.5px; padding: 5px 9px;
}
.cmp-plan-body { display: flex; flex-direction: column; flex: 1; padding: 14px 6px 0; }
.cmp-plan h3, .cmp-plan.featured h3 { color: var(--navy); font-size: 23px; margin: 0; white-space: nowrap; }
.cmp-meta { font-size: 13px; color: var(--muted); margin-top: 4px; }
.cmp-price { font-size: 32px; font-weight: 700; color: var(--terra); line-height: 1; margin: 14px 0 8px; letter-spacing: -.01em; }
.cmp-price small { font-size: 15px; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.cmp-plan .plan-for, .cmp-plan.featured .plan-for { color: var(--muted); font-size: 13.5px; line-height: 1.45; margin: 0 0 14px; }
.cmp-plan .btn { margin-top: auto; width: 100%; text-align: center; padding: 13px 10px; font-size: 15px; }
.cmp-plan:not(.featured) .btn { background: var(--paper); color: var(--navy); box-shadow: inset 0 0 0 1.5px var(--navy); }
.cmp-plan:not(.featured) .btn:hover { background: var(--navy); color: #fff; }

.cmp-cell.featured { background: #f3f7fa; }
.cmp-row:not(.cmp-head):hover .cmp-label, .cmp-row:not(.cmp-head):hover .cmp-cell { background-color: #fbf7f0; }
.cmp-row:not(.cmp-head):hover .cmp-cell.featured { background-color: #e9f0f5; }
.cmp-label { font-size: 15px; }
.cmp-group div { padding: 14px 22px 8px; background: var(--paper); }
.cmp-group { background: var(--paper); }
.yes { width: 26px; height: 26px; background: var(--sea); color: #fff; font-size: 14px; }
.no { color: #cfc5b3; }
.val { font-size: 14.5px; }
.cmp-foot { display: none; }

@media (max-width: 900px) {
  .price-note {
    display: block; background: none; padding: 0; margin: 10px 0 0; color: var(--muted); font-weight: 600; font-size: 14px;
  }
}
@media (max-width: 680px) {
  .cmp-head { top: 110px; }
}

/* Jost мельче Manrope: текст чуть крупнее, жирный — полегче */
body { font-size: 18px; }
.card h4, .day-title, .faq summary, .cabin-head h4, .step h4, .tour h4, .cabin-inc h4, .guide-role, .val, .btn, .tabs a { font-weight: 600; }
@media (max-width: 680px) { body { font-size: 17px; } }

/* ================= MSC YACHT CLUB ================= */
.yacht {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 36px; align-items: center; margin-top: 36px;
  padding: 20px; border-radius: 16px; background: var(--paper); border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(22,38,63,.07);
}
.yacht .ph { height: 100%; min-height: 340px; }
.yacht h3 { font-size: 30px; margin: 10px 0 10px; }
.yacht p { color: var(--muted); }
.yacht .checks { margin-top: 8px; }
.yacht .inc-badge { background: var(--navy); color: var(--sun); }
.val { white-space: nowrap; }

@media (max-width: 900px) {
  .yacht { grid-template-columns: 1fr; gap: 20px; }
  .yacht .ph { min-height: 0; aspect-ratio: 16 / 10; }
}
@media (max-width: 680px) {
  .yacht { padding: 14px; }
  .yacht h3 { font-size: 24px; }
  .val { white-space: normal; }
}

/* ================= ПРАВКИ: LORA, ОТЕЛИ, ЛЁГКИЙ ТЕЛЕФОН ================= */

body { font-size: 17px; }

/* Таблица форматов открыта целиком, без «липкой» шапки */
.cmp-head { position: static; box-shadow: none; }

/* Короткое описание дня — только на телефоне */
.day-short { display: none; }

/* Лента команды — три фото */
.team-strip { grid-template-columns: repeat(3, 1fr); }
.team-strip .ph { aspect-ratio: 4 / 5; }

/* Раздел «Что посмотреть» — четыре карточки */
.teasers { grid-template-columns: repeat(4, 1fr); }

/* Отели на главной */
.hotels { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.hotel-card {
  display: grid; grid-template-rows: 240px auto; text-decoration: none; color: inherit;
  background: var(--cream); border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.hotel-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(22,38,63,.12); }
.hotel-card .ph { border-radius: 0; }
.hotel-card > div:last-child { padding: 20px 22px 22px; }
.hotel-card .eyebrow { margin-bottom: 6px; }
.hotel-card h3 { font-size: 24px; }
.hotel-card .stars { font-size: 16px; }
.hotel-card .checks { margin-top: 12px; }
.hotel-card .checks li { font-size: 15.5px; margin-bottom: 6px; }
.hotel-card .more { font-weight: 700; color: var(--terra); font-size: 15px; }

@media (max-width: 900px) {
  .teasers { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  section { padding-top: 44px; padding-bottom: 44px; }
  h2 { font-size: 30px; }
  .intro { font-size: 16px; margin-top: 16px; }
  .lead { font-size: 14.5px; }
  .subhead { margin-top: 32px; }

  /* Маршрут: на телефоне — одна-две строки на день */
  .day-short { display: block; margin: 0 0 6px; color: var(--text); font-size: 15px; }
  .day-text > p:not(.day-short) { display: none; }
  .day-text { margin-bottom: 12px; }
  .day summary { padding-top: 10px; padding-bottom: 10px; }
  .days-tools { display: none; }

  /* «Почему этот тур» — плотнее */
  .cards { gap: 8px; }
  .card { padding: 12px 14px; }
  .card p { font-size: 14px; }

  .hotels { grid-template-columns: 1fr; gap: 14px; margin-top: 20px; }
  .hotel-card { grid-template-rows: 180px auto; }
  .hotel-card h3 { font-size: 21px; }

  .teasers { grid-template-columns: 1fr; }
  .team-strip .ph { flex-basis: 60%; }
  .plan-card { padding: 20px 16px 18px; }
  .pc-list li { font-size: 14.5px; padding-top: 4px; padding-bottom: 4px; }
}

/* На компьютере дни открыты целиком — кнопка не нужна */
@media (min-width: 681px) { .days-tools { display: none; } }

/* ================= ПЕРВЫЙ ЭКРАН: РИМ → ЛАЙНЕР → ТЕНЕРИФЕ ================= */
.hero-three { grid-template-columns: 1fr 1.15fr 1fr; }
.hero-three .ship img { object-position: 30% 50%; }
.hero-three .hero-temp { left: 50%; right: auto; transform: translateX(-50%); white-space: nowrap; text-align: center; }
.hero-three .summer .hero-temp { background: rgba(26,140,153,.86); }
.hero-three .ship .hero-temp { background: rgba(180,71,44,.9); }
.hero-three .hero-arrow { width: 52px; height: 52px; font-size: 22px; z-index: 2; }
.hero-three .a1 { left: calc(100% * 1 / 3.15); }
.hero-three .a2 { left: calc(100% * 2.15 / 3.15); }

@media (max-width: 680px) {
  /* Телефон: лайнер сверху во всю ширину, Рим и Тенерифе — под ним */
  .hero-three { grid-template-columns: 1fr 1fr; grid-template-rows: 1.1fr 1fr; height: 56vh; }
  .hero-three .ship { grid-column: 1 / -1; grid-row: 1; }
  .hero-three .winter { grid-row: 2; }
  .hero-three .summer { grid-row: 2; }
  .hero-three .hero-arrow { display: none; }
  .hero-three .hero-temp { bottom: 8px; padding: 6px 10px; }
  .hero-three .hero-temp b { font-size: 20px; }
}

/* ================= ВИДЕО ПОВЕРХ СТРАНИЦЫ ================= */
.tour-play {
  margin-top: auto; align-self: flex-start; display: inline-flex; align-items: center; gap: 10px;
  border: 0; background: none; padding: 12px 0 0; cursor: pointer;
  font: 600 16px var(--sans); color: var(--terra);
}
.tour-play::before {
  content: "\25B6"; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: var(--terra); color: #fff; font-size: 12px; padding-left: 2px; transition: transform .2s;
}
.tour-play:hover::before { transform: scale(1.1); }
.vbox { position: fixed; inset: 0; z-index: 200; background: rgba(8,14,26,.9); display: grid; place-items: center; padding: 24px; }
.vbox[hidden] { display: none; }
.vbox-inner { position: relative; width: min(1200px, 100%); }
.vbox-frame { aspect-ratio: 16 / 9; width: 100%; background: #000; border-radius: 12px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.vbox-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.vbox-close {
  position: absolute; top: -52px; right: 0; width: 44px; height: 44px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.15); color: #fff; font-size: 28px; line-height: 1;
}
.vbox-close:hover { background: rgba(255,255,255,.3); }
.vbox-credit { color: rgba(255,255,255,.55); font-size: 13px; margin: 10px 0 0; }
@media (max-width: 680px) { .vbox { padding: 12px; } }

.cabin-up { margin-top: 10px !important; padding: 10px 14px; border-radius: 8px; background: var(--cream); color: var(--navy) !important; font-size: 14.5px !important; }

/* ================= ДРУГИЕ КАТЕГОРИИ КАЮТ ================= */
.cabin-other {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 16px; align-items: stretch; margin-top: 28px;
  padding: 20px; border-radius: 16px; background: var(--paper); border: 1px solid var(--line);
}
.cabin-other-text { display: flex; flex-direction: column; justify-content: center; padding: 6px 10px; }
.cabin-other-title { font-family: var(--serif); font-size: 26px; line-height: 1.2; color: var(--navy); margin: 0 0 8px; }
.cabin-other-text p:not(.cabin-other-title) { color: var(--muted); margin: 0 0 16px; }
.cabin-other-text .btn { align-self: flex-start; }
.cabin-other figure { margin: 0; min-height: 180px; }
.cabin-other figcaption {
  position: absolute; left: 10px; bottom: 10px; padding: 5px 12px; border-radius: 999px;
  background: rgba(22,38,63,.82); color: #fff; font-size: 13.5px; font-weight: 600;
}
.note.terms { color: var(--text); }
@media (max-width: 900px) {
  .cabin-other { grid-template-columns: 1fr 1fr; }
  .cabin-other-text { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .cabin-other { padding: 14px; gap: 10px; }
  .cabin-other-title { font-size: 22px; }
  .cabin-other figure { min-height: 130px; }
}

/* Условия под тарифами — компактной строкой */
.plan-facts { list-style: none; padding: 0; margin: 24px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.plan-facts li { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; }
.plan-facts b { display: block; color: var(--navy); font-size: 16px; }
.plan-facts span { color: var(--muted); font-size: 14.5px; }
.plan-facts a { color: var(--terra); }
.plan-small { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 14px 0 0; text-align: right; }
.plan-small b { color: var(--navy); font-weight: 600; }
@media (max-width: 900px) { .plan-small { text-align: left; } }
@media (max-width: 680px) { .plan-facts { grid-template-columns: 1fr; gap: 8px; } }

.cmp-row { grid-template-columns: 1fr 1fr 1fr 1fr; }

/* Карточка каюты: фото на всю высоту, без пустых полей */
.cabin-inc { grid-template-columns: 240px 1fr; align-items: stretch; padding: 0; overflow: hidden; }
.cabin-inc .ph { aspect-ratio: auto; height: 100%; min-height: 200px; border-radius: 0; }
.cabin-inc > div:last-child { padding: 18px 20px 18px 0; }
.cabin-inc.big { padding: 0; }
.cabin-inc.big > div:last-child { padding: 24px 28px 24px 0; }
@media (max-width: 680px) {
  .cabin-inc > div:last-child, .cabin-inc.big > div:last-child { padding: 0 16px 16px; }
  .cabin-inc .ph { min-height: 190px; }
}
