:root {
  --ink: #10212a;
  --muted: #60727c;
  --paper: #f5fbfc;
  --white: #ffffff;
  --line: rgba(16, 33, 42, 0.14);
  --navy: #092433;
  --teal: #027e91;
  --aqua: #4bd6df;
  --sun: #f5b43d;
  --coral: #f05f3f;
  --sand: #f0e4d2;
  --shadow: 0 26px 70px rgba(7, 30, 43, 0.2);
  font-family: "Avenir Next", Avenir, "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  height: 76px;
  padding: 0 clamp(18px, 4vw, 58px);
  color: #fff;
  background: linear-gradient(180deg, rgba(4, 21, 31, 0.88), rgba(4, 21, 31, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 214px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--aqua);
  color: var(--navy);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 900;
}

.header-action {
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(22px, 1fr) minmax(0, 680px) minmax(310px, 380px) minmax(22px, 1fr);
  gap: 32px;
  align-items: end;
  padding: 128px 0 56px;
  color: #fff;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 21, 31, 0.92), rgba(4, 21, 31, 0.62) 46%, rgba(4, 21, 31, 0.08)),
    linear-gradient(180deg, rgba(4, 21, 31, 0.05), rgba(4, 21, 31, 0.85));
}

.hero-photo,
.hero-photo img {
  position: absolute;
  inset: 0;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transform: scale(1.04);
}

.hero-copy {
  position: relative;
  z-index: 1;
  grid-column: 2;
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--teal);
}

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

h1 {
  max-width: 660px;
  margin-bottom: 22px;
  font-size: clamp(4rem, 8vw, 7.1rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  line-height: 1.08;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
  line-height: 1.58;
}

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

.button {
  padding: 0 23px;
}

.button.primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 18px 40px rgba(240, 95, 63, 0.32);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
}

.hero-panel {
  position: relative;
  z-index: 1;
  grid-column: 3;
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.hero-panel span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
}

.tour-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  color: #fff;
}

.tour-strip div {
  min-height: 190px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.tour-strip span {
  color: var(--sun);
  font-weight: 900;
}

.tour-strip strong {
  display: block;
  margin: 18px 0 10px;
  font-size: 1.26rem;
}

.tour-strip p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.section {
  max-width: 1220px;
  margin: 0 auto;
  padding: 100px clamp(20px, 4vw, 48px);
}

.split,
.meeting {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.copy-block p,
.meeting p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

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

.check-list li {
  padding: 16px 18px;
  border-left: 4px solid var(--aqua);
  background: #fff;
  box-shadow: 0 14px 40px rgba(7, 30, 43, 0.07);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.tour-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.tour-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(7, 30, 43, 0.08);
}

.tour-card.feature {
  grid-row: span 3;
  padding: 0;
  overflow: hidden;
}

.tour-card.feature img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.tour-card.feature div {
  padding: 30px;
}

.tour-card p {
  color: var(--muted);
  line-height: 1.6;
}

.tour-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--teal);
  font-weight: 900;
}

.price {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--coral);
  font-weight: 900;
}

.image-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  background: #d7f5f6;
}

.image-band img {
  width: 100%;
  min-height: 520px;
  height: 100%;
  object-fit: cover;
}

.image-band div {
  padding: clamp(42px, 6vw, 82px);
}

.image-band p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.reviews {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 54px;
  align-items: center;
}

.review-score {
  padding: 30px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
}

.review-score span {
  color: var(--aqua);
  font-weight: 900;
  text-transform: uppercase;
}

.review-score strong {
  display: block;
  margin: 14px 0 8px;
  font-size: 5rem;
  line-height: 0.9;
}

.review-score p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

blockquote {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.3rem);
  line-height: 1.08;
  font-weight: 800;
}

cite {
  display: block;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-card strong {
  margin-bottom: 6px;
  color: var(--teal);
  text-transform: uppercase;
}

.contact-card a {
  padding: 16px 18px;
  border-radius: 8px;
  background: var(--paper);
  font-weight: 800;
}

.final-cta {
  padding: 96px clamp(20px, 4vw, 48px);
  text-align: center;
  background: var(--navy);
  color: #fff;
}

.final-cta h2 {
  margin-inline: auto;
  max-width: 760px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  nav {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    grid-template-columns: 20px minmax(0, 1fr) 20px;
    align-items: end;
    min-height: 760px;
    padding-top: 116px;
  }

  .hero-copy,
  .hero-panel {
    grid-column: 2;
  }

  .hero-panel {
    grid-template-columns: repeat(3, 1fr);
  }

  .tour-strip,
  .split,
  .meeting,
  .tour-grid,
  .image-band,
  .reviews {
    grid-template-columns: 1fr;
  }

  .tour-card.feature {
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 66px;
    padding-inline: 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    display: none;
  }

  .header-action {
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: auto;
    padding: 126px 0 30px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(4, 21, 31, 0.28), rgba(4, 21, 31, 0.94)),
      linear-gradient(90deg, rgba(4, 21, 31, 0.66), rgba(4, 21, 31, 0.12));
  }

  h1 {
    font-size: 3.65rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-panel div {
    padding: 18px;
  }

  .tour-strip {
    display: block;
  }

  .tour-strip div {
    min-height: 0;
    padding: 24px 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section {
    padding-block: 68px;
  }

  .split,
  .meeting {
    gap: 24px;
  }

  .tour-card,
  .tour-card.feature div,
  .contact-card {
    padding: 22px;
  }

  .tour-card.feature img {
    height: 250px;
  }

  .image-band img {
    min-height: 300px;
  }

  .image-band div {
    padding: 38px 20px 54px;
  }

  .reviews {
    gap: 26px;
  }

  blockquote {
    font-size: 2rem;
  }

  .final-cta {
    padding-block: 70px;
  }
}
