@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #15324a;
  --ink-soft: #526a7d;
  --blue: #43a8dc;
  --blue-deep: #177bb2;
  --blue-soft: #dff4ff;
  --blue-pale: #f2faff;
  --white: #ffffff;
  --line: rgba(47, 126, 167, 0.16);
  --shadow: 0 24px 70px rgba(43, 119, 158, 0.13);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: 'Manrope', 'Segoe UI', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { display: block; max-width: 100%; }

.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(72, 151, 190, 0.12);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: 82px; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; box-shadow: 0 8px 20px rgba(45, 132, 178, .15); }
.brand strong { display: block; font-size: 17px; line-height: 1; letter-spacing: .05em; }
.brand span { display: block; margin-top: 5px; color: var(--ink-soft); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.nav { display: flex; align-items: center; justify-content: center; gap: 25px; margin-left: auto; }
.nav a { position: relative; padding: 30px 0; color: #36556c; font-size: 14px; font-weight: 600; }
.nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 21px; height: 2px; background: var(--blue); transition: right .25s ease; }
.nav a:hover::after, .nav a.active::after { right: 0; }
.header-cta { padding: 12px 19px; border: 1px solid var(--line); border-radius: 999px; background: var(--blue-pale); color: var(--blue-deep); font-size: 13px; font-weight: 700; white-space: nowrap; }
.menu-toggle { display: none; margin-left: auto; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--blue-pale); color: var(--ink); font-size: 22px; cursor: pointer; }

.hero { position: relative; overflow: hidden; padding: 54px 0 80px; background: linear-gradient(145deg, #f9fdff 0%, #eaf8ff 56%, #f7fcff 100%); }
.hero::before { content: ''; position: absolute; width: 530px; height: 530px; top: -300px; right: -90px; border: 88px solid rgba(84, 186, 231, .10); border-radius: 50%; }
.hero-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 20px; color: var(--blue-deep); font-size: 12px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 650px; margin-bottom: 24px; font-size: clamp(44px, 5.4vw, 76px); line-height: .99; letter-spacing: -.055em; }
.hero-copy { max-width: 600px; margin-bottom: 32px; color: var(--ink-soft); font-size: 17px; line-height: 1.72; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 10px; padding: 0 23px; border: 1px solid transparent; border-radius: 999px; cursor: pointer; font-weight: 700; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue-deep); color: white; box-shadow: 0 14px 28px rgba(23, 123, 178, .24); }
.btn-secondary { border-color: var(--line); background: rgba(255,255,255,.8); color: var(--ink); }
.hero-visual { position: relative; min-height: 550px; }
.hero-photo { position: absolute; inset: 0 0 54px 0; overflow: hidden; border-radius: 160px 30px 30px 30px; box-shadow: var(--shadow); }
.hero-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(19, 63, 87, .26), transparent 44%); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.floating-note { position: absolute; right: -18px; bottom: 0; width: 265px; padding: 24px; border: 1px solid rgba(255,255,255,.75); border-radius: 24px; background: rgba(255,255,255,.92); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.floating-note span { display: block; margin-bottom: 10px; color: var(--blue-deep); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.floating-note strong { font-size: 18px; line-height: 1.35; }

.trust-strip { border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 28px 24px; border-right: 1px solid var(--line); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; }
.trust-item b { display: block; margin-bottom: 6px; font-size: 14px; }
.trust-item span { color: var(--ink-soft); font-size: 12px; line-height: 1.45; }

.section { padding: 110px 0; }
.section-soft { background: var(--blue-pale); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 44px; }
.section-head h2 { max-width: 690px; margin-bottom: 0; font-size: clamp(36px, 4.2vw, 58px); line-height: 1.04; letter-spacing: -.04em; }
.section-head p { max-width: 390px; margin-bottom: 4px; color: var(--ink-soft); line-height: 1.65; }
.direction-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 18px; }
.direction-card { position: relative; min-height: 330px; overflow: hidden; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; }
.direction-card.featured { grid-row: span 2; min-height: 680px; background: linear-gradient(170deg, #bfeaff 0%, #ebf9ff 100%); }
.direction-card.photo-card { color: white; background: #176c96; }
.direction-card.photo-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(12, 55, 78, .86), rgba(12, 55, 78, .04)), url('vk-group-cover.jpg') center/cover; }
.direction-card > * { position: relative; z-index: 1; }
.card-index { display: block; margin-bottom: 92px; color: var(--blue-deep); font-size: 12px; font-weight: 800; }
.direction-card h3 { margin-bottom: 12px; font-size: 25px; line-height: 1.15; }
.direction-card p { margin-bottom: 26px; color: var(--ink-soft); font-size: 14px; line-height: 1.6; }
.direction-card.photo-card p { color: rgba(255,255,255,.76); }
.card-arrow { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; background: white; color: var(--blue-deep); font-size: 20px; }
.featured-art { position: absolute; left: -8%; right: -8%; bottom: -22%; height: 58%; border: 54px solid rgba(255,255,255,.65); border-radius: 50%; }

.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.process-card { padding: 30px; border-top: 2px solid var(--blue); background: linear-gradient(180deg, rgba(232,247,255,.74), rgba(255,255,255,0)); }
.process-card b { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; margin-bottom: 55px; border-radius: 50%; background: var(--blue-soft); color: var(--blue-deep); }
.process-card h3 { margin-bottom: 12px; font-size: 21px; }
.process-card p { margin-bottom: 0; color: var(--ink-soft); line-height: 1.65; }

.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-photo { min-height: 560px; overflow: hidden; border-radius: 32px 110px 32px 32px; }
.story-photo img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.story-copy h2 { margin-bottom: 25px; font-size: clamp(38px, 4.4vw, 60px); line-height: 1.02; letter-spacing: -.045em; }
.story-copy > p { color: var(--ink-soft); font-size: 16px; line-height: 1.75; }
.ticks { display: grid; gap: 14px; margin: 32px 0; }
.tick { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.tick::before { content: '✓'; display: inline-flex; width: 28px; height: 28px; align-items: center; justify-content: center; border-radius: 50%; background: var(--blue-soft); color: var(--blue-deep); font-size: 13px; }

.feedback-wrap { position: relative; overflow: hidden; padding: 62px; border-radius: var(--radius-xl); background: linear-gradient(125deg, #0f74ab, #55b7e6); color: white; }
.feedback-wrap::after { content: ''; position: absolute; width: 360px; height: 360px; right: -120px; bottom: -210px; border: 58px solid rgba(255,255,255,.12); border-radius: 50%; }
.feedback-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; }
.feedback-copy h2 { margin-bottom: 18px; font-size: clamp(38px, 4vw, 55px); line-height: 1.04; letter-spacing: -.04em; }
.feedback-copy p { margin-bottom: 0; color: rgba(255,255,255,.77); line-height: 1.7; }
.feedback-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 18px; border-radius: 24px; background: white; color: var(--ink); }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { padding-left: 4px; color: var(--ink-soft); font-size: 11px; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 13px; outline: none; background: #f8fcfe; color: var(--ink); }
.field input, .field select { height: 49px; padding: 0 14px; }
.field textarea { min-height: 92px; padding: 13px 14px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(67,168,220,.12); }
.form-foot { grid-column: 1 / -1; display: flex; align-items: center; gap: 14px; }
.form-note { color: #7890a1; font-size: 10px; line-height: 1.4; }
.form-success { display: none; grid-column: 1 / -1; padding: 15px; border-radius: 13px; background: #e6f8ef; color: #24714e; font-size: 13px; font-weight: 700; }
.form-success.show { display: block; }

.page-hero { padding: 76px 0 70px; background: linear-gradient(140deg, #f7fcff, #e5f7ff); }
.page-hero h1 { max-width: 790px; margin-bottom: 20px; font-size: clamp(43px, 5vw, 68px); }
.page-hero p { max-width: 660px; margin-bottom: 0; color: var(--ink-soft); font-size: 17px; line-height: 1.7; }
.catalog-layout { display: grid; grid-template-columns: 245px 1fr; gap: 30px; }
.filters { align-self: start; position: sticky; top: 105px; padding: 24px; border: 1px solid var(--line); border-radius: 22px; background: white; }
.filters h2 { margin-bottom: 22px; font-size: 21px; }
.filter-field { display: grid; gap: 7px; margin-bottom: 16px; }
.filter-field label, .filter-field > span { color: var(--ink-soft); font-size: 11px; font-weight: 700; }
.filter-field select { width: 100%; height: 45px; padding: 0 12px; border: 1px solid var(--line); border-radius: 11px; background: #f8fcfe; color: var(--ink); }
.filter-reset { width: 100%; border: 0; background: transparent; color: var(--blue-deep); cursor: pointer; font-size: 12px; font-weight: 800; }
.catalog-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.catalog-top p { margin: 0; color: var(--ink-soft); font-size: 13px; }
.demo-label { padding: 7px 11px; border-radius: 999px; background: var(--blue-soft); color: var(--blue-deep); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.catalog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.trip-card { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: white; transition: transform .2s ease, box-shadow .2s ease; }
.trip-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.trip-card.hidden { display: none; }
.trip-visual { position: relative; min-height: 220px; background: linear-gradient(150deg, #c7edff, #effaff); }
.trip-visual::before { content: ''; position: absolute; width: 230px; height: 230px; right: -70px; top: -90px; border: 36px solid rgba(255,255,255,.6); border-radius: 50%; }
.trip-visual.photo { background: linear-gradient(0deg, rgba(8,62,89,.35), rgba(8,62,89,.02)), url('vk-group-cover.jpg') center/cover; }
.trip-visual-copy { position: absolute; right: 20px; bottom: 20px; left: 20px; z-index: 1; display: grid; gap: 5px; color: var(--blue-deep); }
.trip-visual-copy small { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.trip-visual-copy strong { max-width: 90%; font-size: 27px; line-height: 1.05; }
.trip-visual-copy.light { color: white; text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.trip-visual.tone-sky { background: linear-gradient(145deg, #d6f2ff, #eefaff); }
.trip-visual.tone-blue { background: linear-gradient(145deg, #a9ddf5, #e2f5ff); }
.trip-visual.tone-mint { background: linear-gradient(145deg, #d8f3ec, #effbf8); }
.trip-visual.tone-sunset { background: linear-gradient(145deg, #ffe3d3, #fff5ed); }
.trip-visual.tone-honey { background: linear-gradient(145deg, #ffe9a9, #fff8df); }
.trip-visual.tone-lilac { background: linear-gradient(145deg, #e8e0fa, #f7f3ff); }
.trip-type { position: absolute; left: 18px; top: 18px; padding: 8px 11px; border-radius: 999px; background: rgba(255,255,255,.9); color: var(--blue-deep); font-size: 10px; font-weight: 800; }
.trip-body { padding: 22px; }
.trip-meta { display: flex; gap: 9px; margin-bottom: 14px; color: var(--ink-soft); font-size: 11px; }
.trip-body h3 { margin-bottom: 12px; font-size: 21px; }
.trip-body p { min-height: 46px; margin-bottom: 20px; color: var(--ink-soft); font-size: 13px; line-height: 1.6; }
.trip-link { display: flex; align-items: center; justify-content: space-between; color: var(--blue-deep); font-size: 13px; font-weight: 800; }
.catalog-results { min-width: 0; }
.catalog-count { margin: 0 0 22px; color: var(--ink-soft); font-size: 13px; }
.trip-accordion-grid { align-items: start; }
.trip-accordion { min-width: 0; }
.trip-accordion[open] { grid-column: 1 / -1; transform: none; box-shadow: var(--shadow); }
.trip-preview { display: block; list-style: none; cursor: pointer; outline: none; }
.trip-preview::-webkit-details-marker { display: none; }
.trip-preview:focus-visible { box-shadow: inset 0 0 0 3px rgba(29,139,184,.32); border-radius: 23px; }
.trip-photo { position: relative; height: 238px; overflow: hidden; background: #dceff7; }
.trip-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,45,65,.02), rgba(8,45,65,.2)); pointer-events: none; }
.trip-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.trip-card:hover .trip-photo img { transform: scale(1.025); }
.trip-photo .trip-type { z-index: 1; }
.trip-open { display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--blue-deep); font-size: 13px; font-weight: 800; }
.trip-open b { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; background: var(--blue-pale); font-size: 20px; line-height: 1; transition: transform .2s ease, background .2s ease; }
.trip-accordion[open] .trip-open b { transform: rotate(45deg); background: #d8eef7; }
.trip-expanded { padding: 0 28px 28px; border-top: 1px solid var(--line); color: var(--ink-soft); }
.trip-expanded h4 { margin: 24px 0 12px; color: var(--ink); font-size: 20px; }
.trip-expanded p { max-width: 900px; margin: 0 0 12px; font-size: 15px; line-height: 1.72; }
.trip-expanded-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.trip-expanded-footer strong { color: var(--ink); font-size: 16px; }
.trip-accordion[open] .trip-preview { display: grid; grid-template-columns: minmax(280px,.9fr) 1.1fr; }
.trip-accordion[open] .trip-photo { height: 100%; min-height: 290px; }
.trip-accordion[open] .trip-body { align-self: center; padding: 30px; }
.trip-accordion[open] .trip-body p { min-height: 0; }
.empty-state { display: none; padding: 48px; border: 1px dashed var(--line); border-radius: 22px; text-align: center; color: var(--ink-soft); }
.empty-state.show { display: block; }

.schedule-panel { overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: white; box-shadow: 0 18px 55px rgba(43, 119, 158, .09); }
.schedule-bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 28px; border-bottom: 1px solid var(--line); background: var(--blue-pale); }
.schedule-bar h2 { margin: 0; font-size: 22px; }
.schedule-bar span { color: var(--ink-soft); font-size: 12px; }
.schedule-empty { display: grid; min-height: 390px; place-items: center; padding: 52px 24px; text-align: center; }
.schedule-empty-inner { max-width: 590px; }
.schedule-calendar { display: grid; width: 76px; height: 76px; place-items: center; margin: 0 auto 25px; border: 1px solid var(--line); border-radius: 22px; background: var(--blue-soft); color: var(--blue-deep); font-size: 24px; font-weight: 800; box-shadow: inset 0 12px 24px rgba(255,255,255,.7); }
.schedule-empty h3 { margin-bottom: 14px; font-size: 28px; }
.schedule-empty p { margin: 0 auto 26px; color: var(--ink-soft); line-height: 1.7; }

.schedule-hero { overflow: hidden; }
.schedule-hero-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); align-items: end; gap: 56px; }
.departure-note { display: grid; gap: 9px; padding: 24px; border: 1px solid rgba(255,255,255,.8); border-radius: 22px; background: rgba(255,255,255,.72); box-shadow: 0 18px 50px rgba(45,119,155,.08); }
.departure-note span { color: var(--blue-deep); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.departure-note strong { font-size: 17px; line-height: 1.45; }
.departure-note small { color: var(--ink-soft); font-size: 12px; line-height: 1.55; }
.schedule-section { padding-top: 68px; }
.schedule-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 28px; padding: 25px 28px; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: 0 16px 45px rgba(43,119,158,.07); }
.schedule-toolbar-copy h2 { margin: 6px 0 0; font-size: 25px; }
.schedule-filters { display: flex; align-items: end; gap: 12px; }
.schedule-filters label { display: grid; gap: 6px; }
.schedule-filters label > span { color: var(--ink-soft); font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.schedule-filters select { min-width: 190px; height: 46px; padding: 0 38px 0 13px; border: 1px solid var(--line); border-radius: 12px; background: #f8fcfe; color: var(--ink); cursor: pointer; font: inherit; font-size: 13px; }
.schedule-filters .filter-reset { width: auto; min-height: 46px; padding: 0 12px; }
.schedule-list { display: grid; gap: 14px; }
.schedule-card { display: grid; grid-template-columns: 88px minmax(0, 1fr) 190px; gap: 24px; align-items: start; padding: 24px; border: 1px solid var(--line); border-radius: 22px; background: white; box-shadow: 0 12px 36px rgba(39,107,142,.06); transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.schedule-card:hover { border-color: #bdddec; box-shadow: 0 18px 44px rgba(39,107,142,.11); transform: translateY(-2px); }
.schedule-card.hidden { display: none; }
.schedule-card > time { display: grid; min-height: 82px; place-content: center; border: 1px solid #cce6f1; border-radius: 18px; background: var(--blue-pale); color: var(--blue-deep); text-align: center; }
.schedule-card > time b { font-size: 23px; line-height: 1; }
.schedule-card > time span { margin-top: 5px; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.trip-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 9px; }
.trip-tags span { padding: 5px 8px; border-radius: 999px; background: var(--blue-pale); color: var(--blue-deep); font-size: 9px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.schedule-card-main h3 { margin: 0 0 8px; font-size: 21px; }
.schedule-card-main > p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.6; }
.schedule-card details { margin-top: 13px; }
.schedule-card summary { width: max-content; color: var(--blue-deep); cursor: pointer; font-size: 12px; font-weight: 800; }
.schedule-card details div { max-width: 780px; padding: 12px 0 2px; color: var(--ink-soft); font-size: 12px; line-height: 1.65; }
.schedule-price { display: grid; justify-items: end; gap: 7px; text-align: right; }
.schedule-price small { color: var(--ink-soft); font-size: 10px; text-transform: uppercase; }
.schedule-price strong { color: var(--ink); font-size: 19px; line-height: 1.3; }
.schedule-price a { display: inline-flex; min-height: 40px; align-items: center; justify-content: center; padding: 0 15px; border-radius: 11px; background: var(--blue-deep); color: white; font-size: 11px; font-weight: 800; transition: background .2s ease, transform .2s ease; }
.schedule-price a:hover { background: #165f86; transform: translateY(-1px); }
.featured-trip { border-color: #acd7e8; background: linear-gradient(110deg, #fff, #f4fbfe); }
.schedule-disclaimer { margin-top: 22px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--blue-pale); color: var(--ink-soft); font-size: 12px; line-height: 1.6; }
.schedule-disclaimer strong { color: var(--ink); }
.feedback-mini { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.feedback-mini h2 { margin: 7px 0 10px; }
.feedback-mini p { max-width: 690px; margin: 0; color: var(--ink-soft); line-height: 1.7; }

.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.content-card { padding: 32px; border: 1px solid var(--line); border-radius: 24px; background: var(--blue-pale); }
.content-card h3 { font-size: 23px; }
.content-card p { color: var(--ink-soft); line-height: 1.7; }
.contact-box { padding: 36px; border: 1px solid var(--line); border-radius: 26px; background: white; }
.contact-box .muted { color: var(--ink-soft); }

.site-footer { padding: 56px 0 28px; background: #102f43; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 50px; margin-bottom: 45px; }
.footer-brand p { max-width: 390px; margin: 22px 0 0; color: rgba(255,255,255,.64); font-size: 13px; line-height: 1.65; }
.footer-title { margin-bottom: 17px; color: rgba(255,255,255,.46); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 11px; font-size: 13px; }
.footer-links a { color: rgba(255,255,255,.82); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.43); font-size: 10px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

.tour-pickup-note { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 18px; margin-top: 34px; padding: 26px 28px; border: 1px solid rgba(54,151,196,.24); border-radius: 22px; background: linear-gradient(135deg, rgba(231,247,255,.92), rgba(255,255,255,.98)); box-shadow: 0 18px 45px rgba(34,95,125,.08); }
.tour-pickup-note-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--blue); color: white; font-size: 22px; font-weight: 800; font-family: Georgia, serif; }
.tour-pickup-note h2 { margin: 1px 0 8px; font-size: clamp(21px, 2vw, 27px); }
.tour-pickup-note p { margin: 0; color: var(--muted); line-height: 1.65; }
.tour-pickup-note p + p { margin-top: 3px; }
.tour-pickup-note strong { color: var(--ink); }

.mobile-preview-trigger { position: fixed; right: 22px; bottom: 22px; z-index: 40; display: inline-flex; align-items: center; gap: 10px; min-height: 48px; padding: 11px 17px; border: 1px solid rgba(54,151,196,.26); border-radius: 999px; background: white; color: var(--ink); box-shadow: 0 14px 38px rgba(26,73,96,.18); font: inherit; font-size: 13px; font-weight: 800; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.mobile-preview-trigger:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(26,73,96,.24); }
.mobile-preview-trigger:focus-visible { outline: 3px solid rgba(54,151,196,.35); outline-offset: 3px; }
.mobile-preview-trigger svg { width: 20px; height: 20px; fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; }

@media (max-width: 980px) {
  .header-cta { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav { position: fixed; inset: 82px 0 auto; display: none; max-height: calc(100dvh - 82px); overflow-y: auto; padding: 18px 20px calc(28px + env(safe-area-inset-bottom)); background: white; border-bottom: 1px solid var(--line); box-shadow: 0 22px 40px rgba(34,95,125,.12); }
  .nav.open { display: grid; }
  .nav a { display: flex; min-height: 52px; align-items: center; padding: 11px 0; font-size: 16px; line-height: 1.35; }
  .nav a::after { bottom: 5px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 470px; }
  .floating-note { right: 14px; }
  .direction-grid { grid-template-columns: 1fr 1fr; }
  .direction-card.featured { grid-row: auto; grid-column: 1 / -1; min-height: 430px; }
  .story-grid, .feedback-grid { grid-template-columns: 1fr; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filters { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .filters h2, .filter-reset { grid-column: 1 / -1; }
  .filter-field { margin-bottom: 0; }
  .schedule-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .schedule-toolbar { align-items: stretch; flex-direction: column; }
  .schedule-filters { display: grid; grid-template-columns: 1fr 1fr auto; }
  .schedule-card { grid-template-columns: 76px minmax(0, 1fr); }
  .schedule-price { grid-column: 2; justify-items: start; text-align: left; }
}

@media (max-width: 680px) {
  .shell { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 72px; }
  .brand img { width: 45px; height: 45px; }
  .brand span { display: none; }
  .nav { inset: 72px 0 auto; }
  .hero { padding: 40px 0 56px; }
  h1 { font-size: 43px; }
  .hero-copy { font-size: 15px; }
  .actions .btn { width: 100%; }
  .hero-visual { min-height: 405px; }
  .hero-photo { inset: 0 0 42px; border-radius: 90px 24px 24px; }
  .floating-note { left: 18px; right: 18px; width: auto; padding: 18px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item, .trust-item:first-child { padding: 20px 12px; border-bottom: 1px solid var(--line); }
  .trust-item:nth-child(2) { border-right: 0; }
  .section { padding: 78px 0; }
  .section-head { display: block; }
  .section-head h2 { margin-bottom: 18px; }
  .direction-grid, .process, .content-grid, .catalog-grid { grid-template-columns: 1fr; }
  .direction-card.featured { grid-column: auto; min-height: 390px; }
  .direction-card { min-height: 290px; }
  .story-grid { gap: 32px; }
  .story-photo, .story-photo img { min-height: 400px; }
  .feedback-wrap { padding: 38px 18px; border-radius: 25px; }
  .feedback-grid { gap: 30px; }
  .feedback-form { grid-template-columns: 1fr; }
  .field { grid-column: 1 / -1; }
  .form-foot { display: grid; }
  .form-foot .btn { width: 100%; }
  .page-hero { padding: 56px 0; }
  .filters { grid-template-columns: 1fr; }
  .filters h2, .filter-reset { grid-column: auto; }
  .catalog-top { align-items: flex-start; flex-direction: column; }
  .catalog-count { margin-bottom: 16px; }
  .trip-photo { height: 220px; }
  .trip-body { padding: 20px; }
  .trip-accordion[open] { grid-column: auto; }
  .trip-accordion[open] .trip-preview { display: block; }
  .trip-accordion[open] .trip-photo { height: 240px; min-height: 0; }
  .trip-accordion[open] .trip-body { padding: 22px 20px; }
  .trip-expanded { padding: 0 20px 22px; }
  .trip-expanded-footer { align-items: stretch; flex-direction: column; }
  .trip-expanded-footer .btn { width: 100%; }
  .tour-pickup-note { grid-template-columns: 1fr; gap: 14px; padding: 22px 20px; }
  .tour-pickup-note-icon { width: 42px; height: 42px; }
  .mobile-preview-trigger { display: none; }
  .schedule-bar { align-items: flex-start; flex-direction: column; }
  .schedule-toolbar { padding: 20px; }
  .schedule-filters { grid-template-columns: 1fr; }
  .schedule-filters select { width: 100%; min-width: 0; }
  .schedule-filters .filter-reset { justify-self: start; }
  .schedule-card { grid-template-columns: 62px minmax(0, 1fr); gap: 15px; padding: 18px 15px; }
  .schedule-card > time { min-height: 68px; border-radius: 15px; }
  .schedule-card > time b { font-size: 18px; }
  .schedule-card-main h3 { font-size: 18px; }
  .schedule-price { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-start; gap: 9px 14px; padding-left: 77px; }
  .schedule-price a { width: 100%; }
  .feedback-mini { align-items: flex-start; flex-direction: column; }
  .feedback-mini .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
}

/* Mobile-first polish: comfortable touch targets, compact rhythm and readable tour details. */
@media (max-width: 680px) {
  .brand { gap: 9px; }
  .brand > span { display: block; }
  .brand > span > span { display: none; }
  .brand strong { font-size: 14px; }
  .hero { padding: 34px 0 48px; }
  .hero-grid { gap: 38px; }
  h1 { margin-bottom: 20px; font-size: clamp(36px, 10.7vw, 43px); line-height: 1.02; letter-spacing: -.045em; }
  .eyebrow { margin-bottom: 16px; font-size: 10px; line-height: 1.45; }
  .hero-copy { margin-bottom: 26px; font-size: 15px; line-height: 1.65; }
  .hero-visual { min-height: 350px; }
  .hero-photo { inset: 0 0 34px; border-radius: 64px 22px 22px; }
  .floating-note { left: 14px; right: 14px; width: auto; padding: 16px; border-radius: 18px; }
  .floating-note strong { font-size: 17px; }
  .trust-item, .trust-item:first-child { min-width: 0; padding: 18px 11px; }
  .trust-item b { font-size: 12px; line-height: 1.35; }
  .trust-item span { font-size: 10px; line-height: 1.5; }
  .section { padding: 58px 0; }
  .section-head { margin-bottom: 32px; }
  .section-head h2, .story-copy h2, .feedback-copy h2 { margin-bottom: 16px; font-size: clamp(30px, 8.8vw, 38px); line-height: 1.08; }
  .section-head p { font-size: 14px; line-height: 1.65; }
  .direction-card.featured { min-height: 340px; }
  .direction-card { min-height: 260px; padding: 24px; }
  .direction-card h3 { font-size: 27px; }
  .card-arrow { width: 48px; height: 48px; }
  .story-photo, .story-photo img { min-height: 330px; }
  .page-hero { padding: 44px 0; }
  .page-hero h1 { font-size: clamp(36px, 10.5vw, 43px); }
  .page-hero p { font-size: 15px; line-height: 1.65; }
  .filters { padding: 22px; border-radius: 22px; }
  .filter-field select { min-height: 48px; }
  .filter-reset { min-height: 44px; }
  .trip-meta { flex-wrap: wrap; line-height: 1.4; }
  .trip-open { min-height: 44px; }
  .trip-open b { flex: 0 0 34px; width: 34px; height: 34px; }
  .trip-expanded h4 { font-size: 19px; line-height: 1.25; }
  .trip-expanded p { font-size: 14px; line-height: 1.68; }
  .schedule-bar { padding: 20px; }
  .schedule-price { padding-left: 0; text-align: left; }
  .footer-links { gap: 4px; }
  .footer-links a { display: flex; min-height: 44px; align-items: center; }
  input, select, textarea { font-size: 16px; }
  .btn { min-height: 50px; }
}

@media (max-width: 380px) {
  .shell { width: min(100% - 24px, 1180px); }
  .brand strong { font-size: 13px; }
  h1 { font-size: 36px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item:first-child, .trust-item:nth-child(2) { border-right: 0; }
  .hero-visual { min-height: 320px; }
  .trip-photo { height: 205px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
