:root{

  /* Primary Brand */
  --blue:#D1AF78;
  --cyan:#C49A5C;
  --aqua:#E2C89F;

  /* Background */
  --ice:#F8F5EF;
  --mist:#FCFBF8;

  /* Text */
  --ink:#1D2B36;
  --muted:#6F7A83;

  /* Base */
  --white:#FFFFFF;
  --line:#E8DED0;

  /* Dark Sections */
  --navy:#18344A;

  /* Hover */
  --gold-dark:#B88947;
  --gold-light:#E8D6B6;

  /* Extra */
  --footer:#0F2435;
  --section:#F5F2EC;

  /* Shadow */
  --shadow:0 18px 45px rgba(24,52,74,.12);

}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: "Trebuchet MS", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65
}

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

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

button,
input,
select {
  font: inherit
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: auto
}

.topbar {
  background: var(--navy);
  color: #dff6ff;
  font-size: 10px;
  padding: 8px 0
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  flex-wrap: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(220, 231, 238, .9);
  backdrop-filter: blur(14px)
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 21px;
  letter-spacing: -.5px
}
.brand img {
  width: 240px;
  height:40px;
  border-radius: 5px;
}
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--blue), var(--aqua));
  display: grid;
  place-items: center;
  box-shadow: 0 9px 22px rgba(62, 193, 244, .28)
}

.brand-mark svg {
  width: 28px;
  fill: white
}

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

.nav-links a:hover {
  color: #168fc8
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: none;
  border-radius: 12px;
  padding: 13px 20px;
  font-weight: 800;
  cursor: pointer;
  transition: .25s ease;
  font-size: 14px;
}

.btn-primary {
  background: #D1AF78;
  color: #fff;
  box-shadow: 0 9px 24px rgba(12, 53, 88, .18)
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #082942
}

.btn-light {
  background: #fff;
  color: var(--navy);
  border: 1px solid #cfe3ed
}

.menu-btn {
  display: none;
  border: 0;
  background: var(--mist);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  font-size: 22px
}

.hero {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 74px 0 30px
}


.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 25px;
  align-items: center
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #c6eff8;
  color: #167ca8;
  padding: 7px 11px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .4px
}

.hero h1 {
  font-size: clamp(22px, 4vw, 48px);
  line-height: .98;
  letter-spacing: -3px;
  margin: 20px 0 22px;
  max-width: 760px
}

.hero h1 span {
  color: #D1AF78
}

.hero p {
  font-size: 16px;
  color: var(--muted);
  max-width: 650px;
  margin: 0 0 28px
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
}

.hero-notes {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 15px;
  color: #39566d;
  font-size: 13px;
  font-weight: 700
}

.hero-notes span:before {
  content: "✓";
  color: #0f9bc8;
  margin-right: 7px
}

.hero-media {
  position: relative
}

.hero-photo {
  height: 325px;
  object-fit: cover;
  border-radius: 34px 8px 34px 8px;
  box-shadow: var(--shadow)
}

.floating-card {
  position: absolute;
  left: -48px;
  bottom: 42px;
  width: 265px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow)
}

.floating-card strong {
  display: block;
  font-size: 24px;
  color: #0c6f9d
}

.search-band {
  margin-top: -36px;
  position: relative;
  z-index: 3
}

.search-panel {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr .9fr auto;
  gap: 12px;
  align-items: end;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow)
}

.field label {
  display: block;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 7px;
  color: #547085
}

.field input,
.field select {
  width: 100%;
  height: 50px;
  border: 1px solid #cadde7;
  border-radius: 11px;
  padding: 0 14px;
  background: #fbfdfe;
  color: var(--ink);
  outline: none
}

.field input:focus,
.field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(78, 178, 239, .13)
}

.section {
  padding: 30px 0
}

.section-soft {
  background: var(--mist)
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 38px
}

.section-head h2 {
  font-size: clamp(20px, 3vw, 36px);
  letter-spacing: -1.8px;
  line-height: 1.08;
  margin-top: 15px;
}

.section-head p {
  max-width: 560px;
  margin: 0;
  color: var(--muted)
}

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

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  min-height: 190px;
  transition: .25s
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: #b9e8f4
}

.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--ice);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 10px
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 19px
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: center
}

.collage {
  position: relative;
  min-height: 560px
}

.collage .main-img {
  width: 82%;
  height: 510px;
  object-fit: cover;
  border-radius: 12px 30px 12px 30px
}

.collage .small-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 250px;
  object-fit: cover;
  border: 8px solid #fff;
  border-radius: 24px 8px 24px 8px;
  box-shadow: var(--shadow)
}

.content h2 {
  font-size: clamp(20px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin: 16px 0
}

.content p {
  color: var(--muted)
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none
}

.check-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 12px;
  font-size: 14px;
  font-weight: 800
}

.check-list li:before {
  content: "✓";
  color: #1199c8;
  margin-right: 8px
}

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

.city-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  transition: .25s
}

.city-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow)
}

.city-card img {
  width: 100%;
  height: 220px;
  object-fit: cover
}

.city-card-body {
  padding: 20px
}

.city-card small {
  color: #1299c9;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .6px
}

.city-card h3 {
  margin: 6px 0 8px;
  font-size: 22px
}

.city-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: #fff
}

.step {
  padding: 30px;
  border-right: 1px solid var(--line)
}

.step:last-child {
  border-right: 0
}

.step b {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ice);
  color: #087da9;
  margin-bottom: 25px
}

.step h3 {
  font-size: 18px;
  margin: 0 0 8px
}

.step p {
  font-size: 14px;
  color: var(--muted);
  margin: 0
}

.faq-wrap {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: start
}

.faq-item {
  border-bottom: 1px solid #cfe0e8
}

.faq-question {
  width: 100%;
  padding: 19px 0;
  border: 0;
  background: none;
  text-align: left;
  font-weight: 900;
  color: var(--ink);
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  cursor: pointer
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  transition: max-height .3s ease
}

.faq-answer p {
  padding: 0 0 18px;
  margin: 0
}

.faq-item.active .faq-answer {
  max-height: 180px
}

.cta {
  background: var(--navy);
  color: #fff;
  border-radius: 28px;
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  position: relative;
  overflow: hidden
}

.cta:after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: .18
}

.cta h2 {
  font-size: clamp(20px, 3vw, 38px);
  margin: 0 0 8px;
  line-height: 1.08
}

.cta p {
  margin: 0;
  color: #cde6f3;
  max-width: 650px
}

.footer {
  background: #071d2f;
  color: #c9dce7;
  padding: 62px 0 22px;
  margin-top: 30px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 10px
}

.footer h4 {
  color: #fff;
  margin: 0 0 16px
}

.footer a {
  display: block;
  margin: 8px 0;
  font-size: 14px
}

.footer p {
  font-size: 14px
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 35px;
  padding-top: 20px;
  font-size: 12px;
  text-align: center
}

.legal-hero {
  padding: 30px 0;
  background: var(--ice)
}

.legal-hero h1 {
  font-size: 36px;
  margin: 0 0 10px;
  letter-spacing: -2px
}

.legal-content {
  padding: 30px 0
}

.legal-box {
  margin: auto
}

.legal-box h2 {
  margin-top: 20px
}

.legal-box p,
.legal-box li {
  color: #526d80
}

.notice {
  background: #edfaff;
  border-left: 4px solid var(--blue);
  padding: 16px 18px;
  border-radius: 8px
}

@media(max-width:920px) {
  .nav-links {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow)
  }

  .nav-links.open {
    display: flex
  }

  .menu-btn {
    display: block
  }

  .desktop-cta {
    display: none
  }

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

  .hero-media {
    max-width: 720px
  }

  .floating-card {
    left: 18px
  }

  .search-panel {
    grid-template-columns: 1fr 1fr
  }

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

  .destinations {
    grid-template-columns: 1fr 1fr
  }

  .steps {
    grid-template-columns: 1fr 1fr
  }

  .step:nth-child(2) {
    border-right: 0
  }

  .step:nth-child(-n+2) {
    border-bottom: 1px solid var(--line)
  }

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

@media(max-width:600px) {
  .container {
    width: min(100% - 28px, 1160px)
  }

  .hero {
    padding-top: 48px
  }

  .hero h1 {
    font-size: 32px;
    letter-spacing: -2px
  }

  .hero-photo {
    height: 400px
  }

  .floating-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px
  }

  .search-panel,
  .service-grid,
  .destinations,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .section {
    padding: 30px 0
  }

  .section-head {
    display: block
  }

  .section-head p {
    margin-top: 12px
  }

  .check-list {
    grid-template-columns: 1fr
  }

  .collage {
    min-height: 430px
  }

  .collage .main-img {
    height: 390px;
    width: 92%
  }

  .collage .small-img {
    height: 180px
  }

  .step {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line)
  }

  .step:last-child {
    border-bottom: 0
  }

  .cta {
    padding: 34px 24px;
    display: block
  }

  .cta .btn {
    margin-top: 22px
  }
}