:root {
  --ink: #033046;
  --muted: #5b6f79;
  --line: #d9e4e8;
  --paper: #f7fafb;
  --white: #ffffff;
  --blue: #0b526b;
  --blue-dark: #033046;
  --orange: #fa8518;
  --orange-soft: #ffb722;
  --sand: #fff7eb;
  --shadow: 0 18px 60px rgba(3, 48, 70, 0.14);
  --font-heading: "Urbane Rounded Demi Bold", "Arial Rounded MT Bold", "Lexend Giga", system-ui, sans-serif;
  --font-body: "Lexend Giga", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 64px);
  color: var(--white);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(13, 59, 74, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-icon {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(3, 48, 70, 0.18);
}

.brand-name {
  color: currentColor;
  font-size: 22px;
  font-weight: 800;
  font-family: var(--font-heading);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
  font-weight: 700;
}

.nav-cta {
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  color: inherit;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 140px clamp(20px, 5vw, 64px) 90px;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 48, 70, 0.94) 0%, rgba(3, 48, 70, 0.68) 42%, rgba(3, 48, 70, 0.12) 100%),
    linear-gradient(0deg, rgba(3, 48, 70, 0.35), rgba(3, 48, 70, 0));
}

.hero-content {
  position: relative;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
  font-family: var(--font-heading);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
  font-family: var(--font-heading);
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  font-family: var(--font-heading);
}

.hero-copy,
.section-heading p,
.split p,
.feature-panel p,
.guide-preview p,
.booking-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.82);
  max-width: 660px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 22px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(250, 133, 24, 0.28);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.button.full {
  width: 100%;
}

.section,
.section-band {
  padding: 96px clamp(20px, 5vw, 64px);
}

.section-band {
  background: var(--paper);
}

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.trust-item {
  padding: 34px 24px;
  background: var(--paper);
  text-align: center;
}

.trust-item strong {
  display: block;
  color: var(--orange);
  font-size: 34px;
  font-family: var(--font-heading);
}

.trust-item span {
  color: var(--muted);
  font-weight: 700;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading.compact {
  max-width: 880px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 420px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.card-number {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--orange);
  font-weight: 800;
}

.service-card p,
.service-card li,
.destination-grid p,
.testimonial-grid blockquote {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.service-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding-left: 18px;
}

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

.destination-grid article {
  min-height: 210px;
  padding: 28px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(3, 48, 70, 0.96), rgba(11, 82, 107, 0.94)),
    linear-gradient(135deg, var(--orange), var(--orange-soft));
}

.destination-grid span {
  display: block;
  margin-bottom: 54px;
  font-size: 24px;
  font-weight: 800;
}

.destination-grid p {
  color: rgba(255, 255, 255, 0.82);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.step strong {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: var(--sand);
  color: var(--orange);
}

.step span {
  color: var(--muted);
  line-height: 1.55;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: stretch;
  background: var(--sand);
}

.feature-panel {
  padding: 48px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--orange);
  font-weight: 800;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.feature-list span {
  display: grid;
  min-height: 90px;
  place-items: center;
  border-radius: 8px;
  background: var(--blue-dark);
  color: var(--white);
  font-weight: 800;
  text-align: center;
}

.app-showcase {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(260px, 0.42fr);
  grid-template-areas:
    "photo copy"
    "photo phone";
  gap: 28px clamp(28px, 4vw, 56px);
  align-items: center;
  background: var(--white);
}

.city-photo {
  grid-area: photo;
  min-height: 620px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.city-photo img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.phone-copy {
  grid-area: copy;
  align-self: end;
}

.phone-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.phone-frame {
  grid-area: phone;
  position: relative;
  width: min(250px, 100%);
  min-height: 520px;
  justify-self: center;
  padding: 18px;
  border: 10px solid var(--ink);
  border-radius: 36px;
  background: #0a1820;
  box-shadow: 0 28px 70px rgba(3, 48, 70, 0.28);
}

.phone-speaker {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 74px;
  height: 5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.22);
  transform: translateX(-50%);
}

.app-screen {
  height: 100%;
  min-height: 460px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
}

.app-real-screen {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center top;
}

.guide-preview {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
}

.mock-guide {
  overflow: hidden;
  padding: 0;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.mock-guide-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.mock-header {
  display: flex;
  gap: 8px;
  margin: 26px 28px 22px;
}

.mock-header span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--line);
}

.mock-guide h3,
.mock-guide p {
  margin-right: 28px;
  margin-left: 28px;
}

.mock-guide p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.mock-route {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 28px;
}

.mock-route span {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 16px 10px;
  border-radius: 8px;
  background: var(--sand);
  color: var(--orange);
  text-align: center;
}

.mock-route strong {
  font-weight: 800;
}

.mock-route small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

.testimonials {
  background: var(--paper);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.testimonial-grid blockquote {
  margin: 0;
  padding: 34px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  font-size: 19px;
}

.testimonial-grid cite {
  display: block;
  margin-top: 22px;
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: start;
  background: var(--blue-dark);
  color: var(--white);
}

.booking-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.download-panel {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.store-button {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 8px;
  background: #000;
  color: var(--white);
}

.store-button small {
  display: block;
  margin-bottom: 3px;
  font-size: 10px;
  font-weight: 600;
  opacity: 0.82;
}

.store-button strong {
  font-family: var(--font-heading);
  font-size: 19px;
  line-height: 1;
}

.badge-icon {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.apple-logo {
  fill: var(--white);
}

.play-icon::before {
  content: "";
  position: absolute;
  inset: 3px 4px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: linear-gradient(135deg, #35d07f 0 30%, #47a7ff 31% 58%, #ffce45 59% 78%, #ff5a3d 79%);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 14px;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: grid;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 64px);
  color: var(--muted);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
}

.footer-contact {
  display: grid;
  gap: 10px;
  justify-items: end;
  text-align: right;
  max-width: 560px;
}

.contact-label {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact a {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--sand);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.footer-logo {
  width: 108px;
  height: auto;
}

.site-footer p {
  margin: 0;
}

.legal-links {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.legal-page-link {
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.legal-disclosure {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.legal-disclosure summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  list-style-position: inside;
}

.legal-disclosure[open] summary {
  border-bottom: 1px solid var(--line);
}

.legal-content {
  display: grid;
  gap: 14px;
  padding: 18px;
  color: var(--muted);
}

.legal-content h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 15px;
}

.legal-content p {
  font-size: 13px;
  line-height: 1.75;
}

.legal-note {
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--sand);
  color: var(--ink);
  font-weight: 700;
}

.copyright {
  font-size: 12px;
}

.legal-page-body {
  background:
    linear-gradient(135deg, rgba(255, 247, 235, 0.9), rgba(247, 250, 251, 0.96)),
    var(--paper);
}

.legal-page {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 72px;
}

.legal-brand {
  color: var(--ink);
}

.legal-page-card {
  display: grid;
  gap: 20px;
  margin-top: 34px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-page-card h1 {
  margin-bottom: 0;
  font-size: clamp(36px, 5vw, 58px);
}

.back-link {
  width: fit-content;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
}

.legal-page-content {
  padding: 0;
}

.legal-page-content p {
  font-size: 14px;
}

.legal-back-button {
  width: fit-content;
  margin-top: 12px;
}

.app-modal[hidden] {
  display: none;
}

.app-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
}

.app-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 48, 70, 0.64);
  backdrop-filter: blur(8px);
}

.app-modal-card {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: clamp(28px, 5vw, 46px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(3, 48, 70, 0.28);
}

.app-modal-card h2 {
  font-size: clamp(30px, 4vw, 42px);
}

.app-modal-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.app-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: var(--sand);
  color: var(--ink);
  font: inherit;
  font-size: 24px;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 940px) {
  .menu-button {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 74px;
    right: 18px;
    display: none;
    width: min(320px, calc(100vw - 36px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 700px;
  }

  .trust,
  .service-grid,
  .destination-grid,
  .split,
  .feature,
  .guide-preview,
  .testimonial-grid,
  .booking {
    grid-template-columns: 1fr;
  }

  .app-showcase {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "copy"
      "phone";
  }

  .trust {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 18px;
  }

  .hero {
    min-height: 680px;
    padding: 116px 20px 72px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(3, 48, 70, 0.96), rgba(3, 48, 70, 0.68));
  }

  h1 {
    font-size: 42px;
  }

  .section,
  .section-band {
    padding: 70px 20px;
  }

  .trust {
    grid-template-columns: 1fr;
    padding-top: 0;
    padding-bottom: 0;
  }

  .feature-panel,
  .service-card,
  .testimonial-grid blockquote,
  .booking-form {
    padding: 24px;
  }

  .feature-list,
  .mock-route {
    grid-template-columns: 1fr;
  }

  .city-photo,
  .city-photo img {
    min-height: 360px;
  }

  .phone-frame {
    min-height: 520px;
  }

  .footer-contact {
    justify-items: start;
    text-align: left;
  }

  .hero-actions .button {
    width: 100%;
  }
}
