:root {
  --navy: #23246e;
  --blue: #36a9dc;
  --sea: #dff6ff;
  --green: #20bd64;
  --orange: #f28a13;
  --ink: #172338;
  --muted: #607083;
  --panel: #ffffff;
  --line: rgba(35, 36, 110, 0.14);
  --shadow: 0 26px 70px rgba(35, 36, 110, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 800;
}

.brand img {
  width: 68px;
  height: 54px;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 8px;
}

nav a {
  padding: 10px 13px;
  border-radius: 8px;
  color: var(--navy);
  font-weight: 800;
}

nav a:hover {
  background: var(--sea);
}

nav a.active {
  color: #ffffff;
  background: var(--navy);
}

.hero {
  min-height: calc(100vh - 79px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(28px, 6vw, 88px);
  padding: clamp(48px, 8vw, 108px) clamp(20px, 6vw, 84px) 76px;
  background:
    linear-gradient(110deg, rgba(223, 246, 255, 0.96) 0%, rgba(255, 255, 255, 0.94) 57%, rgba(255, 239, 216, 0.86) 100%),
    radial-gradient(circle at 80% 18%, rgba(242, 138, 19, 0.24), transparent 22%);
  overflow: hidden;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.45rem, 5.8vw, 5.55rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.9rem, 4vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 12px 0 10px;
  color: var(--navy);
  font-size: 1.18rem;
}

.hero-text {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  line-height: 1.72;
}

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

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

.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), #ffad32);
  box-shadow: 0 18px 34px rgba(242, 138, 19, 0.28);
}

.secondary {
  color: var(--navy);
  background: #ffffff;
  border: 1px solid var(--line);
}

.hero-logo {
  display: grid;
  place-items: center;
}

.hero-logo img {
  width: min(100%, 500px);
  height: auto;
  filter: drop-shadow(0 28px 48px rgba(35, 36, 110, 0.22));
}

.services,
.destinations,
.contact {
  padding: 78px clamp(20px, 6vw, 84px);
}

.page-hero {
  padding: clamp(54px, 8vw, 104px) clamp(20px, 6vw, 84px);
  background:
    linear-gradient(110deg, rgba(223, 246, 255, 0.96), rgba(255, 255, 255, 0.96) 58%, rgba(255, 239, 216, 0.86)),
    radial-gradient(circle at 86% 20%, rgba(32, 189, 100, 0.2), transparent 24%);
}

.page-hero h1 {
  max-width: 980px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  line-height: 1.72;
}

.destinations-hero {
  background:
    linear-gradient(110deg, rgba(223, 246, 255, 0.98), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 82% 18%, rgba(54, 169, 220, 0.22), transparent 24%);
}

.contact-hero {
  background:
    linear-gradient(110deg, rgba(255, 250, 243, 0.98), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 82% 18%, rgba(242, 138, 19, 0.22), transparent 24%);
}

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

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

.home-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 78px clamp(20px, 6vw, 84px);
}

.home-summary article {
  padding: clamp(26px, 4vw, 42px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(35, 36, 110, 0.08);
}

.home-summary p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.68;
}

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

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

.service-card {
  min-height: 220px;
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(35, 36, 110, 0.08);
}

.service-card:nth-child(1),
.service-card:nth-child(4) {
  border-top: 5px solid var(--blue);
}

.service-card:nth-child(2),
.service-card:nth-child(5) {
  border-top: 5px solid var(--green);
}

.service-card:nth-child(3),
.service-card:nth-child(6) {
  border-top: 5px solid var(--orange);
}

.service-card span {
  color: var(--blue);
  font-weight: 800;
}

.service-card p {
  color: var(--muted);
  line-height: 1.65;
}

.destinations {
  background: linear-gradient(180deg, var(--sea), #ffffff);
}

.destination-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.destination-list span {
  padding: 12px 16px;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid rgba(54, 169, 220, 0.26);
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(35, 36, 110, 0.08);
}

.destination-list.large span {
  font-size: 1.04rem;
}

.feature-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 5vw, 70px);
  padding: 70px clamp(20px, 6vw, 84px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(35, 36, 110, 0.94), rgba(54, 169, 220, 0.86)),
    linear-gradient(90deg, var(--navy), var(--blue));
}

.feature-strip h2 {
  color: #ffffff;
}

.feature-strip .eyebrow {
  color: #ffe1b0;
}

.feature-strip p:not(.eyebrow) {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.75;
}

.contact {
  background: #fffaf3;
}

.contact-card {
  max-width: 940px;
  padding: clamp(28px, 5vw, 52px);
  background: #ffffff;
  border: 1px solid rgba(242, 138, 19, 0.22);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-card p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: 22px;
  align-items: start;
}

.contact-layout .contact-card {
  max-width: none;
}

.contact-info {
  padding: 28px;
  background: #ffffff;
  border: 1px solid rgba(35, 36, 110, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(35, 36, 110, 0.08);
}

.contact-info p {
  color: var(--muted);
  line-height: 1.65;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 54px clamp(20px, 6vw, 84px);
  color: #ffffff;
  background: var(--navy);
}

.cta-band h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

footer {
  padding: 28px 20px;
  color: #ffffff;
  background: var(--navy);
  text-align: center;
}

footer p {
  margin: 0;
}

@media (max-width: 940px) {
  .hero,
  .feature-strip,
  .home-summary,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-logo img {
    max-width: 360px;
  }

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

@media (max-width: 660px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  nav {
    width: 100%;
    overflow-x: auto;
  }

  nav a {
    flex: 1;
    text-align: center;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
  }

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

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

  .destination-list span {
    width: 100%;
  }

  .cta-band {
    align-items: stretch;
    flex-direction: column;
  }
}
