:root {
  --ink: #15201d;
  --soft-ink: #31413c;
  --muted: #64736d;
  --paper: #fbfaf4;
  --paper-2: #f1eee3;
  --white: #ffffff;
  --line: rgba(21, 32, 29, 0.14);
  --pool: #0c8d93;
  --pool-deep: #075d64;
  --clay: #b6653a;
  --saffron: #f2b45f;
  --night: #111816;
  --mist: #eaf5f2;
  --shadow: 0 24px 70px rgba(19, 34, 31, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}

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

a {
  color: inherit;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(12, 22, 20, 0.72), rgba(12, 22, 20, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 900;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 31%, #d7fffb 0 18%, #3fc2c2 19% 43%, #075d64 44% 100%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.82), 0 8px 22px rgba(0, 0, 0, 0.28);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 790px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 18, 16, 0.86) 0%, rgba(8, 18, 16, 0.58) 38%, rgba(8, 18, 16, 0.08) 78%),
    linear-gradient(0deg, rgba(8, 18, 16, 0.72) 0%, rgba(8, 18, 16, 0.06) 54%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1 {
  max-width: 830px;
  margin: 20px 0 0;
  font-size: clamp(50px, 7vw, 94px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 700px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
  font-weight: 850;
  backdrop-filter: blur(16px);
}

.button.primary {
  color: var(--ink);
  background: var(--saffron);
  border-color: var(--saffron);
}

.quick-search {
  width: min(1180px, calc(100% - 36px));
  margin: -54px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr auto;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.search-cell {
  min-height: 108px;
  padding: 18px 20px;
  background: var(--white);
}

.search-cell span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.search-cell strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
}

.search-submit {
  min-width: 180px;
  border: 0;
  color: var(--white);
  background: var(--pool-deep);
  font: inherit;
  font-weight: 900;
}

.wrap {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 86px 0;
}

.section.tight {
  padding-top: 58px;
}

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

.section-title {
  max-width: 710px;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.metric {
  min-height: 132px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.metric strong {
  display: block;
  color: var(--pool-deep);
  font-size: 36px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.feature-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 14px;
  color: var(--white);
  background: var(--night);
}

.feature-card.small {
  min-height: 271px;
}

.stack {
  display: grid;
  gap: 18px;
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 19, 17, 0.76) 0%, rgba(9, 19, 17, 0.08) 62%);
}

.feature-copy {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: 26px;
}

.feature-copy h3 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.05;
}

.feature-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.guide-band {
  background: var(--night);
  color: var(--white);
}

.guide-band h2 {
  color: var(--white);
}

.guide-band .lead {
  color: rgba(255, 255, 255, 0.72);
}

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

.destination {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.destination img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.destination-body {
  padding: 20px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  color: #d9fbf5;
  background: rgba(12, 141, 147, 0.24);
  font-size: 12px;
  font-weight: 900;
}

.destination h3 {
  margin: 12px 0 8px;
  font-size: 23px;
}

.destination p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.planner-preview {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.phone {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.phone img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.phone-body {
  padding: 24px;
}

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

.chip {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.chip span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.chip strong {
  display: block;
  margin-top: 5px;
  font-size: 16px;
}

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

.checklist li {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 12px;
  color: var(--soft-ink);
}

.dot {
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--pool);
}

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

.moat-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.moat-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.moat-card p {
  margin: 0;
  color: var(--muted);
}

.image-note {
  margin-top: 22px;
  padding: 18px;
  border-left: 4px solid var(--pool);
  border-radius: 0 10px 10px 0;
  color: var(--muted);
  background: var(--mist);
}

.footer {
  padding: 40px clamp(18px, 4vw, 54px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 920px) {
  .topbar {
    min-height: 58px;
    padding: 12px 18px;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 740px;
  }

  .hero-inner {
    padding-top: 90px;
  }

  h1 {
    font-size: 52px;
  }

  .quick-search {
    grid-template-columns: 1fr;
    margin-top: -28px;
  }

  .search-submit {
    min-height: 64px;
  }

  .section {
    padding: 64px 0;
  }

  .section-head {
    display: block;
  }

  .metric-row,
  .story-grid,
  .destination-grid,
  .planner-preview,
  .moat {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card.small {
    min-height: 390px;
  }

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