/* 1. Токены ---------------------------------------------------------------- */

:root {
  /* Волжская палитра */
  --ink: #0a1f26;
  --ink-2: #12333d;
  --ink-3: #1b4551;
  --river: #17596a;
  --river-2: #2f8296;
  --river-3: #a8c9d0;
  --brass: #a96f1c;
  --brass-2: #cf9a3f;
  --brass-3: #f0dcb4;
  /* Тёмная латунь — для текста на бумаге: --brass на светлом фонаре
     не добирает контраста для мелких подписей. */
  --brass-ink: #8f5b14;
  --paper: #f7f3ea;
  --paper-2: #efe7d7;
  --card: #fffdf7;
  --white: #ffffff;

  --ink-muted: #55686c;
  --line: rgba(10, 31, 38, 0.14);
  --line-soft: rgba(10, 31, 38, 0.08);
  --line-strong: rgba(10, 31, 38, 0.34);
  --line-invert: rgba(255, 253, 247, 0.18);

  /* Типографика: системные семейства, без внешних шрифтов */
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;

  --shadow-s: 0 1px 2px rgba(10, 31, 38, 0.05), 0 10px 26px -20px rgba(10, 31, 38, 0.4);
  --shadow-m: 0 2px 4px rgba(10, 31, 38, 0.06), 0 26px 50px -30px rgba(10, 31, 38, 0.5);
  --shadow-board: 0 30px 70px -40px rgba(4, 16, 20, 0.75);

  --radius: 3px;
  --radius-lg: 6px;
  --shell: 1200px;
}

/* 2. База ------------------------------------------------------------------ */

body {
  background-color: var(--paper);
  /* Мягкая бумажная зернистость: два слоя прозрачных градиентов вместо картинки */
  background-image:
    radial-gradient(circle at 12% 8%, rgba(169, 111, 28, 0.05), transparent 42%),
    radial-gradient(circle at 88% 0%, rgba(23, 89, 106, 0.06), transparent 46%);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, .display-face {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.12;
  color: var(--ink);
}

h1, .h1-face { font-size: clamp(2.1rem, 1.2rem + 3.6vw, 3.75rem); line-height: 1.03; letter-spacing: -0.03em; }
h2, .h2-face { font-size: clamp(1.6rem, 1.1rem + 1.7vw, 2.4rem); }
h3, .h3-face { font-size: clamp(1.2rem, 1.05rem + 0.5vw, 1.5rem); }

a { color: var(--river); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--ink); }

.section { padding: clamp(3rem, 1.5rem + 5vw, 5.5rem) 0; }
.section-tight { padding: clamp(2rem, 1rem + 3vw, 3.25rem) 0; }
.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: 1rem; }

/* Выделение текста. Литеральные цвета: var() в ::selection поддерживается
   не везде, и тогда фон не рисуется, а цвет текста применяется — выделенное
   становится нечитаемым. Плюс цвет текста подобран так, что даже без фона
   выделения текст остаётся контрастным своему окружению. */
::selection {
  background-color: #e3c98d;
  color: #0a1f26;
}

/* Тёмные поверхности: подсветка — глубокий волжский, текст — светлый.
   Если браузер фон не отрисует, светлый текст останется читаемым на тёмном. */
.hero-cruise ::selection,
.band-ink ::selection,
.band-brass ::selection,
.board ::selection,
.site-nav ::selection,
.site-footer ::selection {
  background-color: #17596a;
  color: #fffdf7;
}

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
  border-radius: inherit;
}

/* Кольцо фокуса: не спорит с рамкой и фоном самой кнопки */
.btn-ghost:focus-visible { outline-color: var(--river); }
.btn-ghost-invert:focus-visible { outline-color: var(--brass-2); }
.btn-brass:focus-visible { outline-color: var(--ink); }
.btn-ink:focus-visible { outline-color: var(--brass); }
.nav-link-main:focus-visible,
.nav-item-link:focus-visible,
.nav-caret:focus-visible { outline-offset: 0; }

/* 3. Мелкие типографические детали ---------------------------------------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}

.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.eyebrow-invert { color: var(--brass-2); }

.lede {
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.2rem);
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 64ch;
}

.lede-invert { color: rgba(255, 253, 247, 0.82); }

.num-mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.rule-brass {
  border: 0;
  border-top: 1px solid var(--brass);
  opacity: 0.55;
  margin: 0;
}

/* Буквица в первом SEO-блоке */
.dropcap::first-letter {
  float: left;
  font-family: var(--font-display);
  font-size: 3.4em;
  line-height: 0.82;
  padding: 0.06em 0.1em 0 0;
  color: var(--river);
}

.prose p { margin-bottom: 1rem; }
.prose h3 { margin: 1.9rem 0 0.6rem; }
.prose h3:first-child { margin-top: 0; }

/* Тексты гидов приходят готовым HTML с неразрывными пробелами и длинными
   ссылками: переносим их, чтобы абзац не выезжал за колонку. */
.prose p,
.prose h3 {
  overflow-wrap: break-word;
}

/* 4. Навигация ------------------------------------------------------------- */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(247, 243, 234, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-nav::after {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--brass) 0%, var(--brass-2) 22%, transparent 62%);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark:hover { color: var(--river); }

.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  object-fit: cover;
  background: var(--card);
}

.brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.nav-link-main {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.7rem;
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  border-radius: var(--radius);
}

.nav-link-main:hover,
.nav-link-main.is-active {
  color: var(--ink);
  background: rgba(23, 89, 106, 0.08);
}

.nav-panel {
  min-width: 17rem;
  padding: 0.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-m);
  background: var(--card);
}

.nav-panel-wide { min-width: 34rem; }

.nav-panel .panel-label {
  display: block;
  padding: 0.4rem 0.6rem 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.nav-item-link {
  display: block;
  padding: 0.42rem 0.6rem;
  font-size: 0.9rem;
  color: var(--ink-2);
  text-decoration: none;
  border-radius: var(--radius);
}

.nav-item-link:hover { background: var(--paper-2); color: var(--ink); }

.nav-item-note {
  display: block;
  font-size: 0.76rem;
  color: var(--ink-muted);
}

@media (max-width: 991.98px) {
  .nav-panel, .nav-panel-wide { min-width: 0; border: 0; box-shadow: none; background: transparent; padding-left: 0.75rem; }
}

/* 5. Кнопки ---------------------------------------------------------------- */

.btn-brass,
.btn-ghost,
.btn-ink {
  --btn-pad-y: 0.72rem;
  --btn-pad-x: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn-brass { background: var(--brass); color: #fffdf7; box-shadow: 0 10px 24px -18px rgba(10, 31, 38, 0.9); }
.btn-brass:hover { background: var(--brass-2); color: var(--ink); transform: translateY(-1px); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
/* мягкая заливка вместо инверсии: читается и на бумаге, и на бумаге-2 */
.btn-ghost:hover { background: rgba(23, 89, 106, 0.09); color: var(--ink); border-color: var(--ink); }

.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: var(--river); color: #fff; transform: translateY(-1px); }

.btn-ghost-invert { background: transparent; color: var(--paper); border-color: var(--line-invert); }
.btn-ghost-invert:hover { background: rgba(255, 253, 247, 0.12); color: #fff; border-color: rgba(255, 253, 247, 0.5); }

.btn-sm-pad { --btn-pad-y: 0.5rem; --btn-pad-x: 0.95rem; font-size: 0.875rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--river);
  text-decoration: none;
}

.link-arrow i { transition: transform 0.18s ease; }
.link-arrow:hover i { transform: translateX(4px); }

/* 6. Hero ------------------------------------------------------------------ */

.hero-cruise {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(120% 90% at 82% -10%, rgba(47, 130, 150, 0.55), transparent 58%),
    radial-gradient(90% 70% at -5% 105%, rgba(169, 111, 28, 0.3), transparent 60%),
    linear-gradient(168deg, #071a20 0%, #0d2b34 44%, #123f4c 100%);
  padding: clamp(2.75rem, 1.5rem + 5vw, 5rem) 0 clamp(4.5rem, 2rem + 7vw, 7rem);
}

/* «Изобаты» — тонкие контурные линии течения */
.hero-cruise::before {
  content: "";
  position: absolute;
  inset: -10% -10% 0;
  background-image:
    repeating-radial-gradient(circle at 78% 12%, transparent 0 46px, rgba(255, 253, 247, 0.055) 46px 47px),
    repeating-radial-gradient(circle at 18% 88%, transparent 0 62px, rgba(255, 253, 247, 0.04) 62px 63px),
    repeating-linear-gradient(115deg, rgba(255, 253, 247, 0.028) 0 1px, transparent 1px 9px);
  pointer-events: none;
}

.hero-cruise > * { position: relative; z-index: 1; }

.hero-title {
  color: var(--paper);
  /* Длинные слова и строки без пробелов не должны выезжать
     в соседнюю колонку hero. */
  overflow-wrap: break-word;
}
.hero-title em {
  font-style: normal;
  color: var(--brass-2);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  padding-top: 1.35rem;
  margin-top: 1.6rem;
  border-top: 1px solid var(--line-invert);
  font-size: 0.83rem;
  color: rgba(255, 253, 247, 0.78);
}

.hero-meta span { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero-meta i { color: var(--brass-2); }

/* 7. Табло отправлений ----------------------------------------------------- */

.board {
  background: linear-gradient(180deg, rgba(6, 22, 28, 0.88), rgba(9, 32, 40, 0.94));
  border: 1px solid var(--line-invert);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-board);
  padding: 1.15rem 1.15rem 1.3rem;
  backdrop-filter: blur(4px);
}

.board-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.7rem;
  margin-bottom: 0.35rem;
  border-bottom: 1px solid var(--line-invert);
}

.board-title {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-2);
}

.board-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 253, 247, 0.6);
}

.board-live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass-2);
  box-shadow: 0 0 0 3px rgba(207, 154, 63, 0.18);
}

.board-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.62rem 0.15rem;
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px dotted rgba(255, 253, 247, 0.18);
  transition: background-color 0.18s ease, padding-left 0.18s ease;
}

.board-row:last-child { border-bottom: 0; }
.board-row:hover { background: rgba(255, 253, 247, 0.06); padding-left: 0.5rem; }

.board-city {
  font-family: var(--font-display);
  font-size: 1.18rem;
  letter-spacing: -0.01em;
}

.board-note {
  display: block;
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  color: rgba(255, 253, 247, 0.6);
}

.board-time {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
  color: var(--brass-2);
}

.board-foot {
  margin-top: 0.9rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line-invert);
  font-size: 0.78rem;
  color: rgba(255, 253, 247, 0.66);
}

/* 8. Форма подбора круиза -------------------------------------------------- */

.picker {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-m);
  padding: 1rem 1rem 1.1rem;
}

.picker-label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.picker .form-select {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background-color: var(--white);
  font-size: 0.92rem;
  color: var(--ink);
  padding: 0.55rem 2rem 0.55rem 0.7rem;
}

.picker .form-select:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(169, 111, 28, 0.15);
}

/* 9. Карточки направлений -------------------------------------------------- */

.dir-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(19rem, 1fr)); }

.dir-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 9.5rem;
  padding: 1.15rem 1.15rem 1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.dir-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.25rem;
  height: 2px;
  background: var(--brass);
  transition: width 0.28s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.dir-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); border-color: var(--line-strong); }
.dir-card:hover::before { width: 100%; }

.dir-index {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--brass);
}

.dir-name {
  font-family: var(--font-display);
  font-size: 1.32rem;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.dir-note { font-size: 0.83rem; color: var(--ink-muted); margin: 0; }

.dir-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.7rem;
  border-top: 1px dashed var(--line);
  font-size: 0.78rem;
  color: var(--ink-muted);
}

.dir-foot i { color: var(--river); transition: transform 0.18s ease; }
.dir-card:hover .dir-foot i { transform: translateX(4px); }

.dir-card-featured { background: linear-gradient(180deg, #fffdf7, var(--paper-2)); }

/* 10. Таблица «ближайшие отправления» ------------------------------------- */

.timetable { width: 100%; border-collapse: collapse; }

.timetable caption {
  caption-side: top;
  padding-bottom: 0.75rem;
  font-size: 0.8rem;
  color: var(--ink-muted);
  text-align: left;
}

.timetable th {
  padding: 0.5rem 0.75rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: left;
  border-bottom: 1px solid var(--line-strong);
  white-space: nowrap;
}

.timetable td {
  padding: 0.85rem 0.75rem;
  border-bottom: 1px dashed var(--line);
  vertical-align: middle;
}

.timetable tbody tr { transition: background-color 0.16s ease; }
.timetable tbody tr:hover { background: rgba(23, 89, 106, 0.05); }

.timetable .cell-route {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.2;
}

.timetable .cell-num { font-family: var(--font-mono); font-variant-numeric: tabular-nums; color: var(--ink-2); }
.timetable .cell-price { font-family: var(--font-mono); color: var(--brass); white-space: nowrap; }

/* 11. Полоса преимуществ --------------------------------------------------- */

.fact-list { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); }

.fact-item { padding-top: 1rem; border-top: 1px solid var(--line-strong); }

.fact-index {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--brass);
}

.fact-item h3 { font-size: 1.12rem; margin-bottom: 0.35rem; }
.fact-item p { font-size: 0.89rem; color: var(--ink-muted); margin: 0; }

/* 12. Теплоходы — горизонтальная лента ------------------------------------ */

.ship-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(14rem, 16rem);
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.85rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.ship-strip::-webkit-scrollbar { height: 6px; }
.ship-strip::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 99px; }

.ship-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.ship-card:hover { border-color: var(--brass); transform: translateY(-2px); }

.ship-name { font-family: var(--font-display); font-size: 1.14rem; line-height: 1.2; }
.ship-role { font-size: 0.76rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-muted); }

/* 13. Тёмная полоса: речной вокзал ---------------------------------------- */

.band-ink {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: linear-gradient(155deg, #08191f 0%, #0e2c35 52%, #123c49 100%);
}

.band-ink::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-radial-gradient(circle at 92% 8%, transparent 0 54px, rgba(255, 253, 247, 0.05) 54px 55px),
    repeating-linear-gradient(-30deg, rgba(255, 253, 247, 0.025) 0 1px, transparent 1px 11px);
  pointer-events: none;
}

.band-ink > * { position: relative; z-index: 1; }

/* Билетный корешок с перфорацией */
.ticket {
  position: relative;
  background: var(--card);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-m);
}

.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ink);
  transform: translateY(-50%);
}

.ticket::before { left: -9px; }
.ticket::after { right: -9px; }

.ticket-address {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.25;
  margin: 0.35rem 0 0.9rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px dashed var(--line-strong);
  overflow-wrap: break-word;
}

.ticket-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  font-size: 0.88rem;
  border-bottom: 1px dotted var(--line);
}

.ticket-row:last-child { border-bottom: 0; }
.ticket-row dt { color: var(--ink-muted); margin: 0; }
.ticket-row dd { margin: 0; text-align: right; font-family: var(--font-mono); font-size: 0.86rem; }

/* 14. Латунная полоса акций ------------------------------------------------ */

.band-brass {
  background:
    repeating-linear-gradient(135deg, rgba(255, 253, 247, 0.06) 0 10px, transparent 10px 20px),
    linear-gradient(120deg, var(--brass) 0%, #8f5b14 100%);
  color: #fffdf7;
}

.band-brass .eyebrow { color: rgba(255, 253, 247, 0.9); }

/* На латунном фоне контурная кнопка должна быть заметнее */
.band-brass .btn-ghost-invert {
  color: #fffdf7;
  border-color: rgba(255, 253, 247, 0.65);
}

.band-brass .btn-ghost-invert:hover {
  background: rgba(9, 27, 32, 0.25);
  border-color: #fffdf7;
  color: #fffdf7;
}

/* 15. FAQ ------------------------------------------------------------------ */

.faq .accordion-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.faq .accordion-button {
  position: relative;
  padding: 1.1rem 3rem 1.1rem 2.6rem;
  background: transparent;
  box-shadow: none;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}

.faq .accordion-item:first-child .accordion-button { border-top: 1px solid var(--line); }

.faq .accordion-button::before {
  counter-increment: faq;
  content: counter(faq, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1.15rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--brass);
}

.faq .accordion-button::after {
  position: absolute;
  right: 0.35rem;
  width: 1rem;
  height: 1rem;
  background-size: 1rem;
  opacity: 0.55;
}

.faq .accordion-button:not(.collapsed) { background: transparent; color: var(--river); }
.faq .accordion-button:focus { box-shadow: none; }

.faq .accordion-body {
  padding: 0 3rem 1.35rem 2.6rem;
  font-size: 0.94rem;
  color: var(--ink-muted);
  max-width: 78ch;
}

.faq { counter-reset: faq; }

/* 16. CTA-полоса ----------------------------------------------------------- */

.cta-band {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--card), var(--paper-2));
  padding: clamp(1.75rem, 1rem + 3vw, 3rem);
  /* Карточка всегда светлая: внутри тёмных полос (.band-ink, .band-brass)
     светлый унаследованный текст сливался с фоном. */
  color: var(--ink);
}

/* Внутри карточки не действуют «инверсные» цвета тёмных секций. */
.cta-band .eyebrow { color: var(--brass); }
.cta-band .lede { color: var(--ink-muted); }
.cta-band h1, .cta-band h2, .cta-band h3, .cta-band h4 { color: var(--ink); }
.cta-band .text-muted-ink { color: var(--ink-muted) !important; }
.cta-band a { color: var(--river); }

/* 17. Подвал --------------------------------------------------------------- */

.site-footer {
  margin-top: clamp(3rem, 2rem + 3vw, 4.5rem);
  padding: clamp(2.5rem, 1.5rem + 3vw, 4rem) 0 2rem;
  background: var(--ink);
  color: rgba(255, 253, 247, 0.76);
  font-size: 0.88rem;
}

.site-footer h2, .site-footer h3 { color: var(--paper); }

.footer-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-2);
  margin-bottom: 0.85rem;
}

.site-footer a { color: rgba(255, 253, 247, 0.78); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 0.2em; }

.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }

.footer-legal {
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-invert);
  font-size: 0.78rem;
  color: rgba(255, 253, 247, 0.55);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--paper);
  margin-bottom: 0.5rem;
}

/* 18. Анимация появления --------------------------------------------------- */

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.rise {
  opacity: 0;
  animation: rise 0.72s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  animation-delay: var(--d, 0s);
}

@media (prefers-reduced-motion: reduce) {
  .rise { opacity: 1; animation: none; }
  * { transition-duration: 0.001ms !important; }
  .hero-cruise::before { animation: none; }
}

/* 19. Мелкие утилиты ------------------------------------------------------ */

.bg-paper { background-color: var(--paper); }
.bg-paper-2 { background-color: var(--paper-2); }
.bg-card { background-color: var(--card); }
.text-ink { color: var(--ink) !important; }
.text-muted-ink { color: var(--ink-muted) !important; }
.text-brass { color: var(--brass) !important; }
.border-hair { border-top: 1px solid var(--line); }
.mw-prose { max-width: 72ch; }
.mw-narrow { max-width: 52ch; }
.tag-paper {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--card);
  font-size: 0.78rem;
  color: var(--ink-muted);
}

/* 20. Дополнения для главной ------------------------------------------------- */

/* Кнопка-каретка в навигации */
.nav-caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink-muted);
  font-size: 0.68rem;
  line-height: 1;
  border-radius: var(--radius);
  transition: color 0.16s ease, background-color 0.16s ease;
}

.nav-caret:hover,
.nav-caret[aria-expanded="true"] { color: var(--ink); background: rgba(23, 89, 106, 0.1); }

.nav-more { border: 0; background: transparent; cursor: pointer; }

/* Форма подбора слегка наезжает на тёмный hero */
.pull-up { position: relative; z-index: 2; margin-top: -3.25rem; }

@media (max-width: 991.98px) {
  .pull-up { margin-top: -1.5rem; }
}

/* Календарь навигации по месяцам */
.month-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
}

.month-tile {
  padding: 1.1rem 1.1rem 1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.month-name {
  display: block;
  margin: 0.35rem 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.16rem;
  line-height: 1.2;
}

.month-note { margin: 0; font-size: 0.85rem; color: var(--ink-muted); }

/* Ссылки-карточки в боковой колонке */
aside .dir-card { min-height: 0; padding: 1rem; gap: 0.5rem; }
aside .dir-card .dir-foot { padding-top: 0.5rem; }

/* 21. Карточки офферов — экскурсии, прогулки, активности ------------------- */
/* Разметка собрана из компонентов Bootstrap 5: row row-cols-*, card,
   card-img-top, card-body, badge, stretched-link, утилиты отступов и
   позиционирования. Здесь — только внешний вид: бумага, обложка, латунная
   цена и подъём карточки при наведении. */

.offer-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.offer-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-m);
  border-color: var(--line-strong);
}

/* Обложка. Соотношение задаём обёртке, а картинка заполняет её целиком:
   у <img> атрибут height работает как CSS-подсказка, поэтому высоту нужно
   задавать явно, иначе фото растягивается в портрет. */
.offer-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--paper-2), #d7e0de 60%, var(--river-3));
}

.offer-card .card-img-top {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.offer-card:hover .card-img-top { transform: scale(1.045); }

/* Чип формата и рейтинг — в теле карточки, а не на фото: так они видны
   независимо от того, светлая картинка или тёмная. */
.offer-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}

.offer-chip,
.offer-rating {
  padding: 0.22rem 0.55rem;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.5;
}

.offer-chip {
  background: var(--ink);
  color: var(--paper);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.offer-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--brass-3);
  color: var(--ink);
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.offer-rating i { color: var(--brass); font-size: 0.72rem; }

.offer-title {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
}

.offer-title a { color: var(--ink); text-decoration: none; }
.offer-card:hover .offer-title a { color: var(--river); }

.offer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.9rem;
  font-size: 0.81rem;
  color: var(--ink-muted);
}

.offer-meta span { display: inline-flex; align-items: center; gap: 0.3rem; }
.offer-meta i { color: var(--river); }

.offer-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.7rem;
  border-top: 1px dashed var(--line);
}

.offer-price {
  font-family: var(--font-mono);
  font-size: 0.94rem;
  color: var(--brass);
}

.offer-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--ink-muted);
}

.offer-more i { transition: transform 0.18s ease; }
.offer-card:hover .offer-more i { transform: translateX(3px); }

/* Подпись под сеткой карточек */
.offer-note {
  margin: 1.1rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-muted);
  max-width: 82ch;
}

/* Кнопка бронирования на странице /activity/{slug} — в hero-карточке
   и в билете у блока цены: широкая латунная кнопка и подпись,
   куда ведёт переход. */
.offer-book {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

.offer-book .btn-brass { width: 100%; }

.offer-book-note {
  font-size: 0.76rem;
  line-height: 1.45;
  color: var(--ink-muted);
  text-align: center;
}

/* 22. Расписание навигации 2026 -------------------------------------------- */
/* Страница /raspisanie-2026 собрана из тех же кирпичей: тёмный hero с табло,
   бумажная таблица, латунные акценты и моноширинные цифры. Новое здесь —
   табло сезона (столбики сравнительной загрузки месяцев) и панель фильтров
   со сводной таблицей маршрутов. */

/* Табло сезона в hero: высота столбика — сравнительное число рейсов.
   Столбиков восемь: апрель — ноябрь, то есть весь сезон навигации 2026. */
.season-scale {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  align-items: end;
  gap: 0.4rem;
  height: 7.5rem;
  margin: 1rem 0 0.85rem;
}

.season-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.4rem;
  height: 100%;
  text-align: center;
}

.season-bar {
  height: calc(var(--h, 0.5) * 100%);
  min-height: 8px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, rgba(207, 154, 63, 0.85), rgba(207, 154, 63, 0.16));
}

.season-col.is-peak .season-bar {
  background: linear-gradient(180deg, #fffdf7, var(--brass-2));
}

.season-m {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 253, 247, 0.62);
}

.season-note {
  margin: 0 0 0.9rem;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255, 253, 247, 0.66);
}

/* Фильтры сводной таблицы: панель на бумаге, кнопки-месяцы и селекты */
.sched-tools { margin-bottom: 1.5rem; }

.sched-label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.sched-months { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.sched-chip {
  padding: 0.34rem 0.8rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--ink-2);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 99px;
  cursor: pointer;
  transition: background-color 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.sched-chip:hover { border-color: var(--line-strong); color: var(--ink); }
.sched-chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.sched-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px dashed var(--line);
}

.sched-count {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.sched-reset {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--river);
  background: none;
  border: 0;
  cursor: pointer;
}

.sched-reset:hover { color: var(--ink); }
.sched-reset i { transition: transform 0.25s ease; }
.sched-reset:hover i { transform: rotate(-180deg); }

/* Сводная таблица маршрутов */
.sched-table { min-width: 60rem; }

.sched-table tbody th.cell-route {
  padding: 0.85rem 0.75rem;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
  white-space: normal;
  vertical-align: middle;
  border-bottom: 1px dashed var(--line);
}

.sched-table tbody th.cell-route a { color: var(--ink); text-decoration: none; }
.sched-table tbody th.cell-route a:hover { color: var(--river); }

.row-index {
  display: block;
  margin-bottom: 0.1rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--brass);
}

.cell-sub {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
  color: var(--ink-muted);
}

.cell-stops { max-width: 20rem; font-size: 0.87rem; color: var(--ink-muted); }
.cell-ships { max-width: 17rem; font-size: 0.84rem; color: var(--ink-muted); }

.cell-ships a { color: var(--ink-2); text-decoration: underline; text-decoration-style: dotted; text-underline-offset: 0.2em; white-space: nowrap; }
.cell-ships a:hover { color: var(--river); }

.cell-months { white-space: nowrap; }

.months-text { display: block; font-size: 0.84rem; color: var(--ink-muted); }

/* Мини-шкала месяцев: апрель → октябрь */
.months-bar { display: inline-flex; gap: 2px; margin-top: 0.35rem; }
.months-bar i { width: 9px; height: 5px; border-radius: 1px; background: var(--line); }
.months-bar i.is-on { background: var(--river-2); }

.sched-table tbody tr.is-hidden { display: none; }

.sched-empty td {
  padding: 2.25rem 0.75rem;
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.95rem;
  border-bottom: 0;
}

/* На узких экранах часть колонок уходит: остаются направление, дни и цена */
@media (max-width: 1199.98px) {
  .col-hide-lg { display: none; }
  .sched-table { min-width: 46rem; }
}

@media (max-width: 991.98px) {
  .col-hide-md { display: none; }
  .sched-table { min-width: 34rem; }
}

@media (max-width: 767.98px) {
  .col-hide-sm { display: none; }
  .sched-table { min-width: 0; }
}

/* Плитки месяцев работают как фильтр: кнопка вместо карточки */
.month-tile-btn {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.month-tile-btn:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-s);
}

.month-more {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
  margin-top: 0.85rem;
  padding-top: 0.6rem;
  border-top: 1px dashed var(--line);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--river);
}

.month-more i { transition: transform 0.18s ease; }
.month-tile-btn:hover .month-more i { transform: translateX(3px); }

/* Якорные переходы не прячутся под залипающим меню */
.section[id], .pull-up[id] { scroll-margin-top: 4.25rem; }

/* 23. Уведомление о файлах cookie ------------------------------------------ */
/* Блок собран из тех же кирпичей, что и остальной сайт: бумажная карточка,
   латунная линия, моноширинная подпись и вертикальная «корешковая» плашка,
   как у путевого журнала. Показывается на каждой странице, пока посетитель
   не сделает выбор; после нажатия любой кнопки скрывается и больше не
   появляется (решение хранит static/assets/cookie-consent.js). */

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  padding: 0 0.75rem 0.75rem;
  pointer-events: none;
}

.cookie-card {
  position: relative;
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem 1.4rem;
  max-width: var(--shell);
  margin-inline: auto;
  padding: 1.05rem 1.25rem 1.1rem 0;
  background-color: var(--card);
  background-image: radial-gradient(circle at 100% 0%, rgba(169, 111, 28, 0.09), transparent 55%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-board);
  overflow: hidden;
  pointer-events: auto;
}

/* Латунная линия по верхнему краю — как у навигации */
.cookie-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brass) 0%, var(--brass-2) 30%, transparent 72%);
}

.cookie-rail {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  border-right: 1px dashed var(--line);
}

.cookie-rail::after {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: var(--brass);
}

.cookie-rail-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--brass);
}

.cookie-eyebrow { margin-bottom: 0.3rem; }

.cookie-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--ink);
}

.cookie-text {
  max-width: 64ch;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

.cookie-text a { font-weight: 600; }

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
}

.cookie-note {
  grid-column: 2 / -1;
  margin: 0;
  padding-top: 0.6rem;
  border-top: 1px dashed var(--line);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
}

/* Появление и уход. Сдвиг небольшой: карточка не должна вылезать за край
   экрана, иначе часть тени обрезается. */
@keyframes cookie-rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cookie-sink {
  to { opacity: 0; transform: translateY(14px); }
}

.cookie-bar:not([hidden]) .cookie-card {
  animation: cookie-rise 0.55s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.cookie-bar:not([hidden]) .cookie-body {
  animation: rise 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  animation-delay: 0.12s;
}

.cookie-bar:not([hidden]) .cookie-actions {
  animation: rise 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  animation-delay: 0.2s;
}

.cookie-bar.is-leaving .cookie-card {
  animation: cookie-sink 0.34s cubic-bezier(0.4, 0, 0.6, 1) both;
}

/* Пока блок виден, он не должен закрывать подвал */
body.has-cookie-bar { padding-bottom: 12rem; }

@media (max-width: 991.98px) {
  .cookie-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.85rem;
    padding: 1rem 1.1rem 1.1rem;
  }

  .cookie-rail { display: none; }
  .cookie-actions { justify-content: flex-start; }
  .cookie-note { grid-column: 1 / -1; }
  body.has-cookie-bar { padding-bottom: 15rem; }
}

@media (max-width: 575.98px) {
  .cookie-actions > .btn-brass,
  .cookie-actions > .btn-ghost { flex: 1 1 100%; }
  body.has-cookie-bar { padding-bottom: 17rem; }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-bar:not([hidden]) .cookie-card,
  .cookie-bar:not([hidden]) .cookie-body,
  .cookie-bar:not([hidden]) .cookie-actions,
  .cookie-bar.is-leaving .cookie-card { animation: none; }
}

/* 24. Страница «Как добраться до речного вокзала» ------------------------- */
/* Логика страницы — путь пассажира: подходы к вокзалу сходятся к причальной
   стенке, дальше идут причалы и посадка. Схемы собраны из сетки и
   псевдоэлементов: ни картинок, ни скриптов. */

/* Карточка подходов: четыре точки города над общей линией берега */
.approach-card {
  padding: clamp(1.25rem, 0.9rem + 1.8vw, 2.25rem);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-m);
}

.approach-lines {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 1rem 1.25rem;
  /* Нижний отступ — место для линии берега и подводок к ней */
  padding-bottom: 2.6rem;
}

/* Линия берега: к ней сходятся все четыре подхода */
.approach-lines::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.15rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(169, 111, 28, 0.75) 12%, rgba(169, 111, 28, 0.75) 88%, transparent);
}

.approach-point {
  position: relative;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line-strong);
}

/* Пунктирная подводка от точки к линии берега */
.approach-point::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.45rem;
  width: 1px;
  height: 1.45rem;
  transform: translateX(-50%);
  background: repeating-linear-gradient(180deg, var(--brass) 0 4px, transparent 4px 8px);
  opacity: 0.75;
}

.approach-point-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.14rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.approach-point-way {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--ink-muted);
}

.approach-time {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--brass);
}

/* Сам вокзал: карточка под линией берега, с латунной «меткой» */
.approach-target {
  position: relative;
  display: grid;
  gap: 0.2rem;
  max-width: 34rem;
  margin: 0.9rem auto 0;
  padding: 1.1rem 1.35rem 1.15rem;
  text-align: center;
  background: linear-gradient(180deg, var(--card), var(--paper-2));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}

.approach-target::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 10px;
  height: 10px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--card);
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.approach-target-name {
  font-family: var(--font-display);
  font-size: 1.32rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.approach-target-note {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--ink-muted);
}

/* На узких экранах подводки и линия берега не читаются — убираем их */
@media (max-width: 575.98px) {
  .approach-lines { padding-bottom: 0; }
  .approach-lines::after,
  .approach-point::after { display: none; }
  .approach-target { margin-top: 1.25rem; }
  .approach-target::before { display: none; }
}

/* Схема причальной стенки: пронумерованные причалы вдоль берега */
.berth-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(2.6rem, 1fr));
  gap: 0.35rem;
}

.berth-slot {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 10rem;
  padding: 0.9rem 0.25rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-variant-numeric: tabular-nums;
  color: var(--paper);
  background: linear-gradient(180deg, rgba(255, 253, 247, 0.12), rgba(255, 253, 247, 0.04));
  border: 1px solid var(--line-invert);
  border-radius: var(--radius);
}

.berth-lbl {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 253, 247, 0.55);
}

/* Кромка воды: тонкая волнистая линия под причалами */
.berth-water {
  height: 8px;
  margin-top: 0.4rem;
  background: repeating-linear-gradient(90deg,
    rgba(168, 201, 208, 0.5) 0 5px,
    transparent 5px 11px);
  opacity: 0.65;
}

.berth-note {
  margin: 0 0 0.9rem;
  font-size: 0.84rem;
  line-height: 1.6;
  color: rgba(255, 253, 247, 0.7);
  max-width: 78ch;
}

.berth-note:last-child { margin-bottom: 0; }

/* Что сверить в путёвке перед отправлением.
   Блок встречается и в светлых секциях (.section, .bg-paper-2), и на тёмной
   полосе .band-ink, поэтому базовые цвета рассчитаны на бумагу, а светлый
   текст включается только внутри .band-ink. */
.berth-check {
  margin-top: 1.5rem;
  padding: 1.05rem 1.2rem 1.15rem;
  background: rgba(207, 154, 63, 0.09);
  border: 1px dashed rgba(207, 154, 63, 0.55);
  border-radius: var(--radius);
}

.berth-check-title {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-ink);
}

.berth-check ul {
  display: grid;
  gap: 0.45rem;
  list-style: none;
  padding: 0;
}

.berth-check li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--ink-muted);
}

.berth-check li i {
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--brass-ink);
  font-size: 0.95rem;
}

/* Тёмная полоса: тот же блок светлым текстом */
.band-ink .berth-check-title { color: var(--brass-2); }
.band-ink .berth-check li { color: rgba(255, 253, 247, 0.78); }
.band-ink .berth-check li i { color: var(--brass-2); }

/* Порядок посадки: нумерованные шаги на вертикальной линии */
.route-line {
  list-style: none;
  margin: 0;
  padding: 0;
}

.route-step {
  position: relative;
  padding: 0 0 1.4rem 2.75rem;
}

.route-step:last-child { padding-bottom: 0; }

/* Соединительная линия между шагами */
.route-step::before {
  content: "";
  position: absolute;
  left: 0.78rem;
  top: 1.85rem;
  bottom: 0;
  width: 1px;
  background: rgba(10, 31, 38, 0.16);
}

.route-step:last-child::before { display: none; }

.route-num {
  position: absolute;
  left: 0;
  top: 0.05rem;
  display: grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--brass);
  background: var(--card);
  border: 1px solid var(--brass);
  border-radius: 50%;
}

.route-step h3 {
  margin: 0 0 0.3rem;
  font-size: 1.06rem;
}

.route-step p {
  margin: 0;
  font-size: 0.89rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

/* Инверсия для тёмной полосы речного вокзала */
.route-line-invert .route-step::before { background: var(--line-invert); }
.route-line-invert .route-num { color: var(--brass-2); background: transparent; border-color: rgba(207, 154, 63, 0.6); }
.route-line-invert .route-step h3 { color: var(--paper); }
.route-line-invert .route-step p { color: rgba(255, 253, 247, 0.7); }

/* 25. Однодневные рейсы и прогулки по Волге -------------------------------- */
/* Логика страницы — один речной день. Новое здесь одно: линия времени
   с четырьмя отрезками суток. Всё остальное собрано из уже описанных кирпичей:
   табло, карточки направлений, билетный корешок, лента теплоходов,
   нумерованный порядок посадки и бумажная таблица тарифов. */

/* «Речной день»: линия берега сверху, четыре рейса под ней. Высота блока
   задаётся содержимым, линия и точки позиционируются от верхнего края. */
.day-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 1.5rem 1.25rem;
  padding-top: 2.6rem;
}

/* Линия времени: к правому краю уходит в прозрачность — как русло вдаль */
.day-line::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--river-2) 0%, var(--river-2) 72%, transparent 100%);
  opacity: 0.55;
}

.day-phase {
  position: relative;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-strong);
}

/* Точка рейса на линии времени */
.day-phase::before {
  content: "";
  position: absolute;
  top: -2.2rem;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--brass);
}

.day-hour {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--brass);
}

.day-title {
  display: block;
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.012em;
}

.day-note {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.58;
  color: var(--ink-muted);
}

.day-note b { color: var(--ink-2); font-weight: 600; }

/* На узких экранах линия времени и точки не читаются — остаются карточки */
@media (max-width: 575.98px) {
  .day-line { padding-top: 0; gap: 1.75rem; }
  .day-line::before { display: none; }
  .day-phase::before { display: none; }
}

/* Таблица тарифов: та же бумажная таблица расписания, но первая колонка —
   не ссылка, а название рейса с подписью. */
.fare-table tbody th.cell-route {
  padding: 0.85rem 0.75rem;
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
  white-space: normal;
  vertical-align: middle;
  border-bottom: 1px dashed var(--line);
}

/* Тарифы — цифры моноширинные и не переносятся по слогам */
.fare-table .cell-price,
.fare-table .cell-num { white-space: nowrap; }

/* Широкая карточка оффера: на широком экране обложка слева, текст справа.
   Обложка тянется по высоте карточки, поэтому в этом режиме соотношение
   16/9 снимаем и задаём минимальную высоту. */
@media (min-width: 992px) {
  .offer-card-wide {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    align-items: stretch;
  }

  .offer-card-wide .offer-media {
    aspect-ratio: auto;
    min-height: 18rem;
  }

  .offer-card-wide .card-body { padding: 1.6rem 1.75rem; }
}

/* 26. Круизы по Волге из Самары — развилка направлений --------------------- */
/* Логика страницы /kruizy — одна река и два пути от самарского причала.
   Развилка собрана из сетки и линий: по краям — ветки направлений, в центре —
   узел отправления, сквозь который проходит русло. Картинок и скриптов нет. */

.fork {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1.75rem;
  padding: 0.5rem 0;
}

/* Русло: линия Волги за карточками веток — видна в промежутках и у узла */
.fork::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, rgba(23, 89, 106, 0.45) 12%, rgba(23, 89, 106, 0.45) 88%, transparent);
  pointer-events: none;
}

.fork-branch {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.4rem;
  padding: 1.1rem 1.2rem 1.05rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

/* Латунная засечка по верхнему краю — как у карточек направлений */
.fork-branch::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.25rem;
  height: 2px;
  background: var(--brass);
  transition: width 0.28s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.fork-branch:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-m);
  border-color: var(--line-strong);
  color: var(--ink);
}

.fork-branch:hover::after { width: 100%; }

.fork-dir {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
}

.fork-name {
  font-family: var(--font-display);
  font-size: 1.26rem;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.fork-route {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--ink-muted);
}

.fork-meta {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.77rem;
  color: var(--ink-2);
}

/* Узел отправления: Самара между двух веток */
.fork-node {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.3rem;
  padding: 0.9rem 1.15rem 1rem;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-s);
}

.fork-dot {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--brass);
  color: #fffdf7;
  font-size: 1.05rem;
  box-shadow: 0 0 0 6px rgba(169, 111, 28, 0.14);
}

.fork-node-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.1;
}

.fork-node-note {
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--ink-muted);
}

/* На узких экранах линия русла не читается: узел встаёт над ветками */
@media (max-width: 767.98px) {
  .fork { grid-template-columns: minmax(0, 1fr); gap: 1rem; }
  .fork::before { display: none; }
  .fork-node { order: -1; }
}

/* 27. Круизы из Самары в Казань — профиль маршрута ------------------------- */
/* Подпись направления: семь точек на одной линии Волги. Лента точек
   прокручивается по горизонтали, поэтому подписи стоянок не наезжают
   друг на друга, а на широком экране видны сразу все семь.
   Всё остальное на странице — уже описанные кирпичи: табло, развилка,
   порядок посадки, линия дня, бумажная таблица и лента теплоходов. */

.volga-profile {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(9rem, 1fr);
  overflow-x: auto;
  padding: 0 0 0.85rem;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.volga-profile::-webkit-scrollbar { height: 6px; }
.volga-profile::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 99px; }

/* Русло: линия уходит в прозрачность в сторону Казани */
.volga-profile::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 20px;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(47, 130, 150, 0.85) 0%,
    rgba(47, 130, 150, 0.85) 70%,
    rgba(47, 130, 150, 0.22) 100%);
  pointer-events: none;
}

.volga-stop {
  position: relative;
  scroll-snap-align: start;
  padding: 2.55rem 1rem 0 0;
}

/* Точка стоянки на русле */
.volga-stop::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  box-sizing: border-box;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--brass);
}

.volga-stop.is-start::before { background: var(--brass); }

.volga-stop.is-finish::before {
  border-color: var(--river);
  background: var(--river);
  box-shadow: 0 0 0 5px rgba(23, 89, 106, 0.12);
}

.volga-stop-role {
  display: block;
  margin-bottom: 0.28rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
}

.volga-stop-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.15;
  letter-spacing: -0.012em;
}

.volga-stop-note {
  margin: 0.3rem 0 0;
  font-size: 0.79rem;
  line-height: 1.5;
  color: var(--ink-muted);
}

.volga-profile-note {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

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

/* 26. Теплоходы: палубы и каюты ------------------------------------------- */
/* Страница /teplohody собрана из тех же кирпичей, что и остальные разделы:
   тёмный hero с табло, бумажные карточки и таблицы, латунные акценты
   и моноширинные подписи. Новое здесь одно — разрез теплохода по палубам:
   строка на каждую палубу, чипы категорий кают и ватерлиния под корпусом. */

.deck-plan {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.deck-row {
  display: grid;
  grid-template-columns: clamp(8.5rem, 20%, 12.5rem) 1fr;
  align-items: center;
  gap: 0.6rem 1.25rem;
  padding: 0.7rem 0.95rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--river-3);
  border-radius: var(--radius);
}

/* Верхняя палуба — открытая и «латунная», нижняя — самая простая */
.deck-row.is-top {
  background: linear-gradient(180deg, #fffdf7, var(--paper-2));
  border-left-color: var(--brass);
}

.deck-row.is-bottom {
  background: var(--paper-2);
  border-left-color: var(--line-strong);
}

.deck-head { display: flex; flex-direction: column; gap: 0.1rem; }

.deck-name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.15;
  letter-spacing: -0.012em;
}

.deck-sub {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}

.deck-cabins { display: flex; flex-wrap: wrap; gap: 0.32rem; }

.deck-chip {
  padding: 0.16rem 0.55rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 99px;
}

.deck-chip.is-lux { color: var(--brass); border-color: rgba(169, 111, 28, 0.5); }

/* Кромка воды под корпусом — та же волнистая линия, что у причалов */
.deck-water {
  height: 8px;
  background: repeating-linear-gradient(90deg,
    rgba(23, 89, 106, 0.35) 0 5px,
    transparent 5px 11px);
  opacity: 0.6;
}

/* Карточка судна с изображением: фото выходит под край карточки.
   Снимки судов — static/assets/*.webp, все 1320×792 (5:3). */
.dir-card.has-media { padding-top: 0; }

/* Якорные карточки флагманов: на них ведут ссылки из меню, поэтому
   верх карточки не должен уходить под залипающую навигацию (шапка ≈ 102 px). */
.dir-card[id] { scroll-margin-top: 7rem; }

.ship-media {
  margin: 0 -1.15rem 0.9rem;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.ship-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

@media (max-width: 575.98px) {
  .deck-row { grid-template-columns: 1fr; }
}

/* 28. Цены на круизы из Самары — тарифная линейка --------------------------- */
/* Страница /ceny — прейскурант навигации. Собрана из уже описанных кирпичей:
   тёмный hero с табло, бумажные таблицы тарифов, карточки-месяцы, латунная
   полоса скидок и нумерованный порядок экономии. Новое здесь два элемента:
   тарифная линейка (столбики по форматам поездки) и шкала уровня цены
   в таблице кают. */

/* Тарифная линейка: столбик на каждый формат — от прогулки до дальнего
   круиза. Высота задаётся переменной --h, посчитанной по логарифмической
   шкале: на линейной прогулка за 570 ₽ рядом с круизом за 138 300 ₽ была бы
   неразличима, а сравнивать нужно порядок сумм, а не рубли. */
.price-scale {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: end;
  gap: 0.5rem;
  height: 12rem;
  margin: 1.25rem 0 1rem;
}

.price-step {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
}

/* Опора столбика: общая базовая линия у всех форматов */
.price-bar-wrap {
  display: flex;
  align-items: flex-end;
  flex: 1;
  width: 100%;
  border-bottom: 1px solid var(--line-strong);
}

.price-bar {
  width: 100%;
  height: calc(var(--h, 0.5) * 100%);
  min-height: 8px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, rgba(23, 89, 106, 0.92), rgba(23, 89, 106, 0.16));
  border: 1px solid rgba(23, 89, 106, 0.3);
  border-bottom: 0;
}

/* Прогулочные рейсы без ночёвки — светлее: это другой продукт, не круиз */
.price-step.is-walk .price-bar {
  background: linear-gradient(180deg, var(--river-3), rgba(168, 201, 208, 0.18));
  border-color: rgba(23, 89, 106, 0.22);
}

/* Дальние круизы — латунные: самая дорогая часть линейки */
.price-step.is-peak .price-bar {
  background: linear-gradient(180deg, var(--brass-2), rgba(207, 154, 63, 0.2));
  border-color: rgba(169, 111, 28, 0.45);
}

.price-val {
  margin-top: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-variant-numeric: tabular-nums;
  color: var(--brass);
  white-space: nowrap;
}

.price-lbl {
  margin-top: 0.15rem;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.price-sub {
  margin-top: 0.1rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  line-height: 1.35;
  color: var(--ink-muted);
}

/* На узких экранах столбики не читаются: линейка становится списком цен */
@media (max-width: 767.98px) {
  .price-scale {
    grid-template-columns: 1fr;
    height: auto;
    gap: 0;
    margin-bottom: 0.5rem;
  }

  .price-step {
    flex-direction: row;
    align-items: baseline;
    gap: 0.75rem;
    height: auto;
    padding: 0.7rem 0;
    text-align: left;
    border-top: 1px dashed var(--line);
  }

  .price-step:last-child { border-bottom: 1px dashed var(--line); }

  .price-bar-wrap { display: none; }

  .price-val { order: -1; width: 6.5rem; margin-top: 0; text-align: left; }
  .price-lbl { flex: 1; margin-top: 0; }
  .price-sub { margin-top: 0; }
}

/* Шкала уровня цены в таблице кают: сравнение категорий внутри одного рейса */
.price-dots { display: inline-flex; gap: 3px; }

.price-dots i {
  width: 10px;
  height: 6px;
  border-radius: 1px;
  background: var(--line);
}

.price-dots i.is-on { background: var(--brass); }

@media (max-width: 575.98px) {
  .price-val { width: 5.75rem; font-size: 0.72rem; }
  .price-lbl { font-size: 0.92rem; }
}

/* Витрина активностей на странице цен: тёмная полоса и горизонтальные ленты.
   На других страницах офферы оформлены светлыми сетками, здесь другой ритм —
   прокручиваемая витрина с ценами гидов. Карточки те же. */
.offer-group-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.4rem 1.25rem;
  padding-bottom: 0.6rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line-invert);
}

.offer-group-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--paper);
}

.offer-group-note {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-2);
}

.offer-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(15rem, 17rem);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.9rem;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.offer-rail::-webkit-scrollbar { height: 6px; }
.offer-rail::-webkit-scrollbar-thumb { background: var(--line-invert); border-radius: 99px; }

/* Карточка приходит из сетки Bootstrap (.col): в ленте она становится
   колонкой прокрутки — без своей ширины и отступов. */
.offer-rail > .col {
  width: auto;
  max-width: none;
  padding: 0;
  scroll-snap-align: start;
}

.offer-rail .offer-card { height: 100%; }

/* На тёмной полосе подпись под лентой и ссылки в ней — светлые */
.band-ink .offer-note { color: rgba(255, 253, 247, 0.72); }
.band-ink .offer-note a { color: var(--brass-2); text-decoration-color: rgba(207, 154, 63, 0.5); }
.band-ink .offer-note a:hover { color: #fff; }

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