:root {
  --blue: #0753a4;
  --blue-dark: #061438;
  --green: #2f9a54;
  --green-light: #6fbd38;
  --text: #15213d;
  --muted: #667085;
  --soft: #f6f9fc;
  --white: #ffffff;
  --radius-lg: 54px;
  --shadow: 0 28px 80px rgba(6, 20, 56, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at 84% 20%,
      rgba(47, 154, 84, 0.08),
      transparent 26%
    ),
    radial-gradient(circle at 12% 74%, rgba(7, 83, 164, 0.06), transparent 24%),
    var(--white);
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button {
  font: inherit;
}

.page-shell {
  width: min(100%, 1920px);
  margin-inline: auto;
  overflow: hidden;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: 108px;
  padding: 18px clamp(22px, 4vw, 70px);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(22px);
  transition:
    box-shadow 0.25s ease,
    min-height 0.25s ease;
}

.site-header.is-scrolled {
  min-height: 86px;
  box-shadow: 0 18px 40px rgba(6, 20, 56, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: clamp(104px, 9vw, 154px);
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.6vw, 48px);
  flex: 1 1 auto;
  min-width: 0;
}

.main-nav a {
  position: relative;
  font-size: 15px;
  font-weight: 700;
  color: #111a35;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
  transition: width 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--green);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
}

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  padding: 0;
  color: #0a1028;
  background: transparent;
  cursor: pointer;
}

.search-btn svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.action-divider {
  width: 1px;
  height: 36px;
  background: rgba(17, 26, 53, 0.18);
}

.menu-toggle {
  gap: 7px;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: clamp(38px, 5vw, 92px);
  min-height: 100vh;
  padding: clamp(138px, 14vh, 190px) clamp(22px, 5vw, 95px) 74px;
}

.hero-content {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--blue);
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(48px, 5.3vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 600;
}

.hero h1 span {
  display: block;
  color: var(--green);
}

.hero-text {
  width: min(100%, 620px);
  margin: 30px 0 0;
  color: #4f596e;
  font-size: clamp(18px, 1.45vw, 25px);
  line-height: 1.45;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 42px;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 68px;
  padding: 0 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), #063979);
  color: var(--white);
  font-size: 19px;
  font-weight: 800;
  box-shadow: 0 20px 38px rgba(7, 83, 164, 0.23);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.primary-btn span {
  font-size: 36px;
  line-height: 1;
  margin-top: -3px;
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 52px rgba(7, 83, 164, 0.3);
}

.launch-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 42px;
}

.launch-dot {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(47, 154, 84, 0.16);
}

.launch-dot::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--green);
}

.launch-note p {
  margin: 0;
  color: #5b6476;
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 600;
}

.hero-visual {
  position: relative;
  width: min(100%, 920px);
  aspect-ratio: 1.17 / 1;
  margin-left: auto;
}

.tile {
  position: absolute;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 20, 56, 0.03),
    rgba(6, 20, 56, 0.08)
  );
  pointer-events: none;
}

.airport {
  left: 2%;
  top: 7%;
  width: 28%;
  height: 37%;
  border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
  background-image: url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=900&q=80");
}

.destination {
  left: 32%;
  top: 5%;
  width: 45%;
  height: 90%;
  border-radius: var(--radius-lg);
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=80");
}

.suitcase {
  right: 1%;
  top: 5%;
  width: 19%;
  height: 24%;
  border-radius: 50% 50% 4px 50%;
}

.heritage {
  right: 1%;
  top: 33%;
  width: 19%;
  height: 33%;
  border-radius: 54px;
  background-image: url("https://images.unsplash.com/photo-1551161242-b5af797b7233?auto=format&fit=crop&w=700&q=80");
}

.hotel {
  right: 1%;
  bottom: 7%;
  width: 19%;
  height: 24%;
  border-radius: 54px;
  background-image: url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=700&q=80");
}

.plane {
  left: 2%;
  top: 46%;
  width: 18%;
  aspect-ratio: 1;
  border-radius: 50%;
}

.beach {
  left: 0;
  bottom: 5%;
  width: 30%;
  height: 27%;
  border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
  background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=800&q=80");
}

.service {
  left: 32%;
  bottom: 5%;
  width: 28%;
  height: 23%;
  border-radius: 0 var(--radius-lg) 0 var(--radius-lg);
}

.icon-tile {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green), #287d48);
}

.icon-tile.plane {
  background: linear-gradient(135deg, var(--blue), #063878);
}

.icon-tile svg {
  width: 40%;
  height: 38%;
  fill: none;
  stroke: var(--white);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  z-index: 1;
}

.intro-section,
.focus-grid,
.contact-strip,
.site-footer {
  width: min(100% - 44px, 1440px);
  margin-inline: auto;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) 1fr;
  gap: 42px;
  padding: 88px clamp(26px, 5vw, 80px);
  border-radius: 38px;
  background: linear-gradient(
    135deg,
    rgba(7, 83, 164, 0.06),
    rgba(47, 154, 84, 0.07)
  );
}

.section-heading .eyebrow {
  margin-bottom: 14px;
}

.section-heading h2,
.contact-strip h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(32px, 3vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.intro-text {
  margin: 0;
  color: #4f596e;
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1.55;
  font-weight: 500;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 40px 0 82px;
}

.focus-card {
  min-height: 300px;
  padding: 36px;
  border: 1px solid rgba(7, 83, 164, 0.1);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 50px rgba(6, 20, 56, 0.07);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  margin-bottom: 30px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-weight: 900;
}

.focus-card h3 {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: 28px;
  letter-spacing: -0.03em;
}

.focus-card p {
  margin: 0;
  color: #5d6678;
  font-size: 17px;
  line-height: 1.6;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 54px clamp(26px, 5vw, 70px);
  border-radius: 36px;
  color: var(--white);
  background: linear-gradient(135deg, #053f88, #1f8d4f);
}

.contact-strip .eyebrow,
.contact-strip h2,
.contact-strip p {
  color: var(--white);
}

.contact-strip p {
  margin: 18px 0 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.5;
}

.secondary-btn {
  flex: 0 0 auto;
  min-height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  box-shadow: none;
}

.site-footer {
  padding: 30px 0 38px;
  color: #6b7280;
  text-align: center;
  font-size: 15px;
}

@media (max-width: 1180px) {
  .site-header {
    gap: 18px;
  }

  .main-nav {
    gap: 22px;
  }

  .main-nav a {
    font-size: 14px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 132px;
  }

  .hero-content {
    max-width: 820px;
  }

  .hero-visual {
    margin: 0 auto;
    width: min(100%, 820px);
  }
}

@media (max-width: 960px) {
  .site-header {
    min-height: 88px;
  }

  .brand img {
    width: 112px;
  }

  .main-nav {
    position: fixed;
    top: 88px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border: 1px solid rgba(7, 83, 164, 0.11);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 24px 70px rgba(6, 20, 56, 0.16);
  }

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

  .main-nav a {
    padding: 16px 14px;
    border-radius: 14px;
    font-size: 16px;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover,
  .main-nav a.active {
    color: var(--blue);
    background: rgba(7, 83, 164, 0.06);
  }

  .search-btn,
  .action-divider {
    display: none;
  }

  .hero {
    padding-top: 122px;
  }

  .intro-section {
    grid-template-columns: 1fr;
  }

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

  .contact-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .hero {
    padding: 116px 18px 54px;
    gap: 46px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .hero-text {
    margin-top: 22px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    min-height: 62px;
    padding-inline: 22px;
  }

  .launch-note {
    align-items: flex-start;
  }

  .hero-visual {
    aspect-ratio: 0.78 / 1;
  }

  .airport {
    left: 0;
    top: 0;
    width: 45%;
    height: 28%;
  }

  .destination {
    left: 39%;
    top: 4%;
    width: 61%;
    height: 62%;
  }

  .suitcase {
    display: none;
  }

  .heritage {
    left: 0;
    right: auto;
    top: 31%;
    width: 34%;
    height: 25%;
  }

  .hotel {
    right: 0;
    bottom: 0;
    width: 35%;
    height: 23%;
  }

  .plane {
    left: 0;
    top: 58%;
    width: 18%;
  }

  .beach {
    left: 31%;
    bottom: 0;
    width: 34%;
    height: 25%;
  }

  .service {
    left: 31%;
    bottom: 27%;
    width: 34%;
    height: 18%;
  }

  .intro-section,
  .focus-grid,
  .contact-strip,
  .site-footer {
    width: min(100% - 36px, 1440px);
  }

  .intro-section,
  .contact-strip,
  .focus-card {
    border-radius: 26px;
    padding: 30px;
  }

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