:root {
  --ink: #061b38;
  --muted: #56677e;
  --paper: #f5f8fc;
  --panel: #ffffff;
  --line: #d5e2f0;
  --blue-deep: #061b38;
  --blue: #006fe6;
  --blue-bright: #16a6ff;
  --blue-soft: #e8f3ff;
  --shadow: 0 24px 80px rgba(6, 27, 56, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  box-shadow: 0 0 22px rgba(22, 166, 255, 0.65);
}

[data-animate] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 760ms ease, transform 760ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

i[data-lucide] {
  width: 1.1em;
  height: 1.1em;
  stroke-width: 2.2;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 10;
  width: min(1120px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: rgba(245, 248, 252, 0.88);
  box-shadow: 0 16px 50px rgba(6, 27, 56, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 111, 230, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

.site-nav a {
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(0, 111, 230, 0.1);
}

.site-nav .nav-booking {
  color: #fff;
  background: var(--blue);
}

.site-nav .nav-booking:hover,
.site-nav .nav-booking:focus-visible {
  color: #fff;
  background: var(--blue-deep);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: var(--blue-deep);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 150px max(24px, calc((100vw - 1120px) / 2)) 34px;
  overflow: hidden;
  background: #061326;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 16, 35, 0.92) 0%, rgba(6, 28, 63, 0.76) 45%, rgba(0, 111, 230, 0.16) 100%),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1800&q=82") center / cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  max-width: 700px;
  color: #fff;
  animation: rise-in 700ms ease both;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1,
h2 {
  font-family: "Source Serif 4", serif;
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 4.6rem;
}

h2 {
  margin-bottom: 18px;
  font-size: 3rem;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: #fff;
  background: var(--blue);
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.hero-panel {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1120px;
  margin-top: 70px;
  color: #fff;
}

.hero-panel span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  font-weight: 800;
}

.story-showcase {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 70px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0 40px;
}

.story-visual {
  position: sticky;
  top: 128px;
  min-height: 620px;
  align-self: start;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(6, 27, 56, 0.06), rgba(6, 27, 56, 0.64)),
    url("https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=1100&q=84") center / cover;
  box-shadow: var(--shadow);
}

.route-line {
  position: absolute;
  right: 16%;
  bottom: -18%;
  width: 190px;
  height: 78%;
  border-right: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  transform: rotate(19deg);
  animation: route-glow 3.8s ease-in-out infinite;
}

.story-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #fff;
  background: rgba(6, 27, 56, 0.58);
  backdrop-filter: blur(16px);
  font-weight: 800;
}

.story-copy {
  display: grid;
  gap: 36px;
}

.story-step {
  min-height: 430px;
  display: grid;
  align-content: center;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 54px rgba(6, 27, 56, 0.08);
}

.story-step > span {
  width: fit-content;
  margin-bottom: 34px;
  padding: 8px 12px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-size: 0.84rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.story-step p:last-child {
  color: var(--muted);
  font-size: 1.04rem;
}

.section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
  scroll-margin-top: 120px;
}

.story-showcase,
.coverage,
.experience-section,
.contact {
  scroll-margin-top: 120px;
}

.intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: end;
}

.intro > p,
.coverage-copy p,
.about-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 650px;
  margin-bottom: 34px;
}

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

.service-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 38px rgba(6, 27, 56, 0.06);
}

.card-icon,
.premium-band i[data-lucide],
.coverage-list i[data-lucide] {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  padding: 10px;
  border-radius: 8px;
  color: var(--blue);
  background: var(--blue-soft);
}

.card-number {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.premium-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 84px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 22px 64px rgba(6, 27, 56, 0.08);
}

.premium-band div {
  min-height: 190px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(22, 166, 255, 0.14), transparent 34%),
    #fff;
}

.premium-band strong {
  font-size: 1.18rem;
}

.premium-band span {
  color: var(--muted);
}

.coverage {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 30px;
  padding: 48px;
  border-radius: 8px;
  background: var(--blue-deep);
  color: #fff;
  box-shadow: var(--shadow);
}

.coverage h2,
.coverage p {
  color: #fff;
}

.coverage-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.coverage-list {
  display: grid;
  gap: 14px;
}

.coverage-list div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.coverage-list strong,
.coverage-list span {
  display: block;
}

.coverage-list strong {
  margin-bottom: 5px;
}

.coverage-list span {
  color: rgba(255, 255, 255, 0.72);
}

.coverage-list i[data-lucide] {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.experience-section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 94px 0 24px;
}

.experience-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

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

.experience-grid article {
  min-height: 300px;
  display: grid;
  align-content: end;
  padding: 28px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(6, 27, 56, 0.08), rgba(6, 27, 56, 0.92)),
    url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=900&q=84") center / cover;
  box-shadow: var(--shadow);
}

.experience-grid i[data-lucide] {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  padding: 10px;
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.experience-grid article:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(6, 27, 56, 0.08), rgba(6, 27, 56, 0.92)),
    url("https://images.unsplash.com/photo-1502877338535-766e1452684a?auto=format&fit=crop&w=900&q=84") center / cover;
}

.experience-grid article:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(6, 27, 56, 0.08), rgba(6, 27, 56, 0.92)),
    url("https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?auto=format&fit=crop&w=900&q=84") center / cover;
}

.experience-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.about {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.about-image {
  min-height: 520px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(18, 60, 52, 0.05), rgba(18, 60, 52, 0.3)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1200&q=80") center / cover;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.check-list i[data-lucide] {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  padding: 7px;
  border-radius: 8px;
  color: var(--blue);
  background: var(--blue-bright);
  color: #fff;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 44px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 86px;
  padding: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(233, 240, 241, 0.9), rgba(255, 255, 255, 0.92)),
    url("https://images.unsplash.com/photo-1494515843206-f3117d3f51b7?auto=format&fit=crop&w=1400&q=80") center / cover;
}

.contact-card {
  display: grid;
  gap: 24px;
  align-content: center;
  padding: 30px;
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 54px rgba(6, 27, 56, 0.12);
}

.contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 1.35rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-card .booking-link {
  width: fit-content;
  padding: 12px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-size: 1rem;
  text-decoration: none;
}

address {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  color: var(--muted);
  font-style: normal;
}

address i[data-lucide] {
  margin-top: 4px;
  color: var(--blue);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(24px, calc((100vw - 1120px) / 2));
  color: rgba(255, 255, 255, 0.76);
  background: var(--blue-deep);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

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

@keyframes route-glow {
  0%,
  100% {
    opacity: 0.55;
    filter: drop-shadow(0 0 0 rgba(22, 166, 255, 0));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 18px rgba(22, 166, 255, 0.8));
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 920px) {
  .site-nav {
    position: fixed;
    top: 78px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--shadow);
  }

  .nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    color: var(--ink);
  }

  .nav-toggle {
    display: block;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .intro,
  .story-showcase,
  .coverage,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .story-showcase {
    gap: 28px;
    padding-top: 80px;
  }

  .story-visual {
    position: relative;
    top: auto;
    min-height: 390px;
  }

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

  .premium-band,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 390px;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 96vh;
    padding: 118px 20px 28px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(4, 16, 35, 0.94) 0%, rgba(6, 28, 63, 0.76) 55%, rgba(0, 111, 230, 0.3) 100%),
      url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1000&q=82") center / cover;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy,
  .intro > p,
  .coverage-copy p,
  .about-copy p,
  .contact-copy p {
    font-size: 1rem;
  }

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

  .section {
    width: calc(100% - 40px);
    padding: 70px 0;
  }

  .story-showcase,
  .premium-band,
  .experience-section {
    width: calc(100% - 40px);
  }

  .story-step {
    min-height: auto;
    padding: 30px;
  }

  .premium-band div,
  .experience-grid article {
    min-height: 240px;
  }

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

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

  .card-number {
    margin-bottom: 30px;
  }

  .coverage,
  .contact {
    width: calc(100% - 40px);
    padding: 28px;
  }

  .about-image {
    min-height: 300px;
  }

  .contact-card {
    padding: 24px;
  }

  .contact-card a {
    font-size: 1.05rem;
  }

  .site-footer {
    flex-direction: column;
  }
}
