:root {
  --navy: #0b3d8c;
  --blue: #0a5bd8;
  --blue-deep: #072a63;
  --cyan: #3ec6ff;
  --ink: #12203a;
  --muted: #5b6b86;
  --line: #d7e0ee;
  --bg: #f4f7fb;
  --paper: #ffffff;
  --max: 1200px;
  --radius: 22px;
  --shadow: 0 18px 50px rgba(11, 61, 140, 0.12);
  --font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, p, .lead {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero-grid,
.split,
.feature-grid,
.partner-grid,
.hero-grid > *,
.split > * {
  min-width: 0;
}

a {
  color: var(--blue);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
.nav-toggle-label:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  background: var(--navy);
  color: #fff;
  padding: 8px 12px;
  z-index: 20;
}

.skip-link:focus {
  top: 12px;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(244, 247, 251, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  width: 100%;
  position: relative;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  min-height: 56px;
}

.brand img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.05;
}

.brand-name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--blue);
  text-transform: uppercase;
}

.brand-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 4px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-phone:hover,
.header-phone:focus-visible {
  color: var(--blue);
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-label span::before { top: -6px; }
.nav-toggle-label span::after { top: 6px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px 14px;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 15px;
}

.site-nav a.btn {
  color: #fff;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 24px rgba(10, 91, 216, 0.28);
}

.btn-primary:hover {
  background: #084bb4;
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
}

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

.note {
  color: var(--muted);
  font-size: 15px;
  margin: 10px 0 0;
}

.kicker {
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
  margin: 0 0 10px;
}

h1, h2, h3 {
  line-height: 1.15;
  margin: 0 0 14px;
}

h1 { font-size: clamp(34px, 5vw, 56px); }
h2 { font-size: clamp(26px, 3vw, 36px); }
h3 { font-size: 20px; }

.lead {
  font-size: 20px;
  color: var(--muted);
  margin: 0 0 24px;
  max-width: min(38em, 100%);
}

section {
  padding: 72px 0;
}

/* HERO: stretched photo like the reference */
.hero {
  padding: 12px 0 56px;
}

.hero-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

.hero-panel {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  border-radius: 36px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 0;
  display: block;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(6, 16, 36, 0.82) 0%,
    rgba(6, 16, 36, 0.55) 46%,
    rgba(6, 16, 36, 0.18) 100%
  );
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 40px 44px 48px;
  color: #fff;
}

.hero-copy h1 {
  font-size: clamp(28px, 4.2vw, 52px);
}

.hero-copy .kicker,
.hero-copy h1,
.hero-copy .lead,
.hero-copy .note {
  color: #fff;
}

.hero-copy .lead {
  max-width: 28em;
}

.hero-copy .btn-ghost {
  background: #fff;
  color: var(--navy);
  border: 0;
}

.hero-caps {
  margin: 20px 0 0;
  max-width: 28em;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.hero-caps span {
  color: rgba(255, 255, 255, 0.38);
  font-weight: 400;
  padding: 0 4px;
}

.phone {
  width: min(250px, 60%);
  position: absolute;
  right: 24px;
  bottom: 4px;
  z-index: 3;
  line-height: 0;
}

.phone img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.4));
}

/* FEATURES */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 8px 24px rgba(18, 32, 58, 0.05);
}

.icon-tile {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 18px rgba(18, 32, 58, 0.08);
  transition: transform 0.2s ease;
}

.card:hover .icon-tile {
  transform: translateY(-3px) rotate(-4deg);
}

.icon-tile svg {
  width: 32px;
  height: 32px;
  display: block;
}

.icon-tile-radio {
  background: linear-gradient(160deg, #e7f6ff 0%, #b7e0ff 100%);
}

.icon-tile-map {
  background: linear-gradient(160deg, #e5f8ec 0%, #b6ebc4 100%);
}

.icon-tile-want {
  background: linear-gradient(160deg, #ffe9d4 0%, #ffc396 100%);
}

.icon-tile-trip {
  background: linear-gradient(160deg, #eee6ff 0%, #d0c0ff 100%);
}

/* HOW */
.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.step-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.section-map {
  background:
    radial-gradient(900px 420px at 82% 35%, rgba(72, 196, 122, 0.16), transparent 62%),
    radial-gradient(640px 360px at 92% 88%, rgba(10, 91, 216, 0.1), transparent 58%),
    #eef6f2;
}

.split-map {
  min-height: 520px;
  gap: 28px 40px;
  grid-template-columns: 0.92fr 1.08fr;
}

.map-points {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.map-points li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: var(--ink);
}

.map-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 12px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: #e24b4a;
}

.map-stage {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.map-art {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
  box-shadow: 0 18px 40px rgba(18, 32, 58, 0.12);
}

.split img.photo {
  width: 100%;
  border-radius: 28px;
  display: block;
  object-fit: cover;
  min-height: 280px;
  max-height: 420px;
}

.now-playing {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #0b3d8c;
  color: #fff;
  text-decoration: none;
  border-radius: 16px;
  padding: 12px 16px;
  margin-top: 18px;
  max-width: 420px;
  min-height: 64px;
}

.now-playing:hover {
  background: #084bb4;
}

.play-btn {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  display: grid;
  place-items: center;
}

.play-btn svg {
  margin-left: 2px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 22px;
}

.chip {
  background: #e8f3ff;
  color: var(--navy);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 700;
}

.privacy {
  background: #eefaf3;
  border-left: 4px solid #1f9d5b;
  padding: 14px 16px;
  border-radius: 12px;
}

.partners {
  background: var(--blue-deep);
  color: #fff;
}

.partners h2,
.partners .lead,
.partners h3 {
  color: #fff;
}

.partners .lead { color: #c9d7ef; }

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

.partner-grid .card {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: none;
}

.about p {
  max-width: 46em;
  margin: 0 0 16px;
}

.prose p {
  margin: 0 0 14px;
}

.final {
  text-align: center;
}

.final-panel {
  background:
    linear-gradient(180deg, rgba(7, 42, 99, 0.45), rgba(7, 42, 99, 0.72)),
    url("../img/trip.jpg") center/cover no-repeat;
  color: #fff;
  border-radius: 32px;
  padding: 56px 28px;
}

.final-panel h2,
.final-panel p {
  color: #fff;
}

.final-panel .lead {
  margin-left: auto;
  margin-right: auto;
}

.faq details {
  background: var(--paper);
  border-radius: 16px;
  padding: 4px 18px;
  margin-bottom: 10px;
}

.faq summary {
  min-height: 52px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  align-items: center;
}

.faq summary::-webkit-details-marker { display: none; }

.faq details p {
  margin: 0 0 16px;
  color: var(--muted);
}

.contacts {
  padding-bottom: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

a.contact-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: #eef4ff;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.contact-icon-img {
  background: transparent;
  overflow: hidden;
}

.contact-icon-img img {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
  border-radius: 12px;
}

.contact-icon-mail { background: #e7f0ff; }
.contact-icon-phone { background: #e5f8ec; }
.contact-icon-tg { background: #e4f6ff; }

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.contact-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: var(--ink);
}

.contact-value {
  margin: 0;
  color: var(--blue);
  font-weight: 600;
  font-size: 15px;
  overflow-wrap: anywhere;
}

a.contact-card:hover {
  box-shadow: var(--shadow);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 48px;
  background: #eef3f9;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1.4fr);
  gap: 32px 48px;
  align-items: start;
}

.footer-brand .brand {
  margin-right: 0;
}

.footer-cta {
  margin-top: 16px;
}

.footer-legal {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.footer-legal p {
  margin: 0 0 8px;
}

.footer-org {
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  overflow-wrap: anywhere;
}

.footer-legal,
.footer-docs a,
a.contact-card {
  overflow-wrap: anywhere;
  min-width: 0;
}

.footer-docs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 12px;
}

.footer-trust {
  margin-top: 12px;
  font-size: 13px;
}

.muted { color: var(--muted); font-size: 15px; }

@media (max-width: 1280px) {
  .nav-toggle-label { display: inline-flex; flex-shrink: 0; }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    flex-direction: column;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--line);
    align-items: stretch;
    z-index: 11;
  }

  .site-nav a { width: 100%; }

  .nav-toggle:checked ~ .site-nav { display: flex; }
}

@media (max-width: 1024px) {
  .feature-grid,
  .partner-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .actions .btn {
    width: 100%;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .split-map {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .map-art {
    min-height: 280px;
  }

  .hero-panel {
    min-height: 0;
  }

  .hero-copy {
    padding: 24px 20px 190px;
  }

  .hero-bg {
    min-height: 440px;
  }

  .hero-panel::after {
    background: linear-gradient(
      180deg,
      rgba(6, 16, 36, 0.78) 0%,
      rgba(6, 16, 36, 0.45) 55%,
      rgba(6, 16, 36, 0.2) 100%
    );
  }

  .phone {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -188px auto 20px;
  }

  .wrap {
    padding-left: 12px;
    padding-right: 12px;
  }

  h1 { font-size: 22px; }
  .hero-copy h1 {
    font-size: 22px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .hero-copy {
    max-width: 100%;
    padding: 20px 14px 180px;
  }
  .hero-copy .kicker,
  .hero-copy .lead,
  .hero-copy p {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
  }
  .hero-copy .lead { font-size: 15px; }
  .hero-copy .kicker {
    font-size: 11px;
    letter-spacing: 0.02em;
    line-height: 1.35;
  }
  .lead { font-size: 16px; max-width: 100%; }
  .brand {
    font-size: 16px;
    min-width: 0;
    margin-right: 8px;
  }
  .brand img {
    width: 44px;
    height: 44px;
  }
  .brand-text { min-width: 0; }
  .brand-name {
    font-size: 12px;
    letter-spacing: 0.03em;
  }
  .header-inner { gap: 8px; }
  .header-phone {
    font-size: 13px;
    min-height: 44px;
  }
  .brand-sub { display: none; }
  .nav-toggle-label {
    flex-shrink: 0;
    padding: 0 8px;
    gap: 6px;
    font-size: 13px;
  }
  .note { max-width: 100%; }

  .feature-grid,
  .partner-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-cta {
    width: 100%;
  }

  .step { grid-template-columns: 44px 1fr; }
}

@media (max-width: 480px) {
  .header-inner {
    flex-wrap: wrap;
    row-gap: 0;
  }

  .brand { order: 1; margin-right: auto; }
  .nav-toggle { order: 2; }
  .nav-toggle-label { order: 3; }

  .header-phone {
    order: 4;
    flex: 1 0 100%;
    justify-content: center;
    font-size: 15px;
    border-top: 1px solid var(--line);
  }

  .site-nav { order: 5; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.js .reveal.is-in {
  opacity: 1;
  transform: none;
}
