@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Marcellus&display=swap");

:root {
  --navy: #08233f;
  --navy-2: #12375b;
  --gold: #b99248;
  --gold-2: #d4b06a;
  --ink: #15202b;
  --muted: #69737c;
  --paper: #fbfaf6;
  --cream: #f4efe5;
  --white: #ffffff;
  --line: rgba(8, 35, 63, .13);
  --shadow: 0 22px 60px rgba(8, 35, 63, .13);
  --radius: 8px;
  --max: 1180px;
  --gutter: clamp(18px, 4vw, 54px);
  font-family: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 10%, rgba(185, 146, 72, .14), transparent 34rem),
    linear-gradient(90deg, rgba(244, 239, 229, .74), rgba(251, 250, 246, .82) 48%, rgba(251, 250, 246, .96)),
    var(--paper);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

:focus-visible {
  outline: 3px solid rgba(185, 146, 72, .55);
  outline-offset: 4px;
}

.site-header {
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 118px;
  padding: 0 var(--gutter);
  color: var(--navy);
  background: transparent;
  border-bottom: 0;
}

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

.brand-logo {
  display: block;
  width: auto;
  height: 94px;
  object-fit: contain;
}

.footer-logo {
  display: block;
  width: 120px;
  height: auto;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .12);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  background: var(--navy);
  font-family: "Marcellus", Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
}

.brand-text {
  display: grid;
  gap: 3px;
  line-height: 1;
}

.brand-text strong {
  font-size: 21px;
  font-weight: 800;
}

.brand-text small {
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(15px, 2vw, 26px);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

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

.home-page .site-header {
  position: absolute;
  inset: 0 0 auto;
  min-height: 92px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(21, 19, 16, .34), rgba(21, 19, 16, 0));
}

.home-page .brand-logo {
  height: 76px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .58));
}

.home-page .site-nav {
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .48);
}

.home-page .nav-cta {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--navy);
  background: rgba(185, 146, 72, .1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .2s ease;
}

.menu-toggle.open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 560px) minmax(420px, 740px);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: clamp(34px, 5vw, 58px) var(--gutter) clamp(26px, 4vw, 42px);
  background: transparent;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.intro-band h2,
.section-heading h2,
.offers-content h2,
.why-copy h2,
.contact-copy h2,
.contact-copy h1,
.success-card h1 {
  color: var(--navy);
  font-family: "Marcellus", Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.04;
}

.hero h1 {
  max-width: 620px;
  margin-bottom: 14px;
  font-size: clamp(44px, 5.2vw, 68px);
}

.page-hero {
  width: 100%;
  padding: clamp(54px, 8vw, 100px) var(--gutter) clamp(34px, 5vw, 58px);
  background: transparent;
}

.inner-page .site-header {
  min-height: 92px;
}

.inner-page .brand-logo {
  height: 72px;
}

.inner-page .page-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 8px;
  padding-bottom: 18px;
}

.compact-hero {
  padding-top: clamp(18px, 3vw, 38px);
}

.accommodations-page .site-header {
  min-height: 92px;
}

.accommodations-page .brand-logo {
  height: 72px;
}

.accommodations-page .compact-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 8px;
  padding-bottom: 14px;
}

.accommodations-page .compact-hero h1 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.4vw, 58px);
}

.accommodations-page .compact-hero p {
  max-width: 470px;
  margin-bottom: 4px;
  font-size: 16px;
}

.page-hero h1 {
  max-width: 840px;
  margin-bottom: 16px;
  font-size: clamp(42px, 6vw, 76px);
}

.inner-page .page-hero h1 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(34px, 4.4vw, 58px);
}

.page-hero p {
  max-width: 680px;
  font-size: 19px;
}

.inner-page .page-hero p {
  max-width: 460px;
  margin-bottom: 4px;
  font-size: 16px;
}

.hero-copy > p {
  max-width: 570px;
  font-size: 18px;
}

.offer-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--ink);
  list-style: none;
}

.offer-list li {
  position: relative;
  padding-left: 24px;
  font-weight: 750;
}

.offer-list li::before {
  content: "";
  position: absolute;
  top: .7em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .68);
}

.contact-details span,
.contact-details a {
  color: var(--navy);
  font-weight: 800;
}

.contact-details small {
  display: block;
  margin-bottom: 3px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}

.button-primary:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
}

.button-secondary {
  color: var(--navy);
  background: transparent;
  border-color: rgba(8, 35, 63, .26);
}

.button-dark {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.button-light {
  color: var(--navy);
  background: rgba(255, 255, 255, .94);
  border-color: rgba(255, 255, 255, .94);
}

.hero-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--cream);
}

.hero-visual img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(320px, calc(100% - 44px));
  padding: 18px;
  border-left: 4px solid var(--gold);
  color: var(--navy);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 46px rgba(8, 35, 63, .18);
}

.hero-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  font-family: "Marcellus", Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
}

.booking-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr)) auto;
  gap: 14px;
  align-items: end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(8, 35, 63, .08);
}

.listing-search {
  grid-template-columns: repeat(4, minmax(140px, 1fr)) auto auto;
  max-width: var(--max);
  margin: 0 auto clamp(32px, 5vw, 48px);
}

.accommodations-page .stays {
  padding-top: 10px;
}

.accommodations-page .listing-search {
  margin-bottom: 20px;
  padding: 14px;
}

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

.accommodations-page .section-heading h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.accommodations-page .destination-grid {
  flex-wrap: nowrap;
  overflow-x: auto;
  margin-bottom: 18px;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.accommodations-page .destination-chip {
  flex: 0 0 auto;
}

.booking-panel label,
.contact-form label {
  display: grid;
  gap: 8px;
}

.booking-panel span,
.contact-form span {
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.booking-panel select,
.booking-panel input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
}

.booking-panel select,
.booking-panel input,
.contact-form input,
.contact-form select {
  height: 48px;
  padding: 0 12px;
}

.contact-form textarea {
  resize: vertical;
  padding: 13px 12px;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(52px, 7vw, 86px) var(--gutter);
  color: var(--white);
  background: var(--navy);
}

.intro-band h2 {
  color: var(--white);
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 54px);
}

.intro-band p {
  color: rgba(255, 255, 255, .74);
}

.home-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(58px, 8vw, 96px) var(--gutter);
  background: var(--cream);
}

.home-split article {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(8, 35, 63, .07);
}

.home-split h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Marcellus", Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.world-hero {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 140px var(--gutter) 74px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(16, 14, 12, .22), rgba(17, 15, 12, .42)),
    linear-gradient(90deg, rgba(22, 16, 10, .24), rgba(60, 40, 20, .04) 48%, rgba(18, 15, 12, .24)),
    url("assets/wami-hero-travel-composite.png") center / cover no-repeat;
}

.world-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(180deg, rgba(20, 18, 15, 0), rgba(18, 15, 11, .48));
  pointer-events: none;
}

.world-hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
}

.world-hero .eyebrow,
.home-duo .eyebrow,
.planning-banner .eyebrow {
  color: var(--gold-2);
}

.world-hero h1,
.home-duo h2,
.home-services h2,
.package-intro h2,
.planning-banner h2 {
  font-family: "Marcellus", Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.02;
}

.world-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(46px, 6.1vw, 78px);
  color: var(--white);
}

.world-hero p {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .88);
  font-weight: 650;
}

.world-hero .hero-actions {
  justify-content: center;
  margin-top: 28px;
}

.travel-strip {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  bottom: 24px;
  left: var(--gutter);
  display: flex;
  justify-content: center;
  gap: clamp(10px, 2vw, 22px);
  flex-wrap: wrap;
  color: rgba(255, 255, 255, .86);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.travel-strip span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-left: clamp(10px, 2vw, 22px);
  border-radius: 50%;
  background: var(--gold-2);
  vertical-align: middle;
}

.home-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 540px;
}

.duo-panel {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 540px;
  padding: clamp(34px, 5vw, 70px);
  overflow: hidden;
  color: var(--white);
  background-size: cover;
  background-position: center;
}

.duo-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 35, 63, .78), rgba(8, 35, 63, .35));
}

.duo-panel > div {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.kenya-panel {
  background-image: url("https://images.unsplash.com/photo-1516426122078-c23e76319801?auto=format&fit=crop&w=1300&q=82");
}

.international-panel {
  background-image: url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1300&q=82");
}

.duo-panel h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(50px, 7vw, 86px);
  text-transform: uppercase;
}

.duo-panel p,
.duo-panel li {
  color: rgba(255, 255, 255, .86);
}

.duo-panel ul {
  display: grid;
  gap: 7px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.duo-panel li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--gold-2);
  font-weight: 900;
}

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

.home-services {
  padding: clamp(44px, 6vw, 74px) var(--gutter);
  text-align: center;
  background: var(--white);
}

.home-services .section-heading {
  margin-bottom: 28px;
}

.home-services .section-heading p {
  max-width: 700px;
  margin: 8px auto 0;
}

.home-services h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 48px);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto 30px;
}

.solution-grid article {
  display: grid;
  gap: 8px;
  align-content: start;
  justify-items: center;
  padding: 18px 10px;
}

.solution-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 6px;
}

.solution-grid h3 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 15px;
}

.solution-grid p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.45;
}

.package-section {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 24px;
  padding: clamp(42px, 6vw, 72px) var(--gutter);
  background: var(--paper);
}

.international-packages {
  background: var(--white);
}

.package-intro h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(28px, 3.5vw, 44px);
}

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

.international-packages .package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-grid article {
  display: grid;
  grid-template-rows: auto auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(8, 35, 63, .08);
}

.international-packages .package-grid article {
  background: var(--paper);
}

.package-grid img {
  aspect-ratio: 1.38 / 1;
  height: auto;
  object-fit: cover;
}

.package-grid h3 {
  margin: 14px 14px 4px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.2;
}

.package-grid p {
  align-self: start;
  min-height: 52px;
  margin: 0 14px 18px;
  font-size: 13px;
  line-height: 1.4;
}

.planning-banner {
  min-height: 340px;
  display: grid;
  align-items: center;
  padding: clamp(44px, 8vw, 86px) var(--gutter);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 35, 63, .82), rgba(8, 35, 63, .28)),
    url("https://images.unsplash.com/photo-1505881502353-a1986add3762?auto=format&fit=crop&w=1800&q=82") center / cover no-repeat;
}

.planning-banner > div {
  max-width: 650px;
}

.planning-banner h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(34px, 5vw, 62px);
}

.section {
  padding: clamp(58px, 8vw, 96px) var(--gutter);
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto 28px;
}

.section-heading h2,
.offers-content h2,
.why-copy h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4.6vw, 58px);
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.section-heading-row > div {
  max-width: 720px;
}

.result-count {
  flex: 0 0 auto;
  margin-bottom: 7px;
  color: var(--navy);
  font-weight: 900;
}

.stays {
  background: var(--paper);
}

.destination-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: var(--max);
  margin: 0 auto 28px;
}

.destination-chip {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
}

.destination-chip:hover,
.destination-chip.active {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.destination-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: var(--max);
  margin: 0 auto;
}

.destination-list span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
}

.center-action {
  max-width: var(--max);
  margin: 28px auto 0;
}

.stays-grid,
.feature-destinations,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
}

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

.stay-card,
.feature-destinations article,
.service-grid article,
.why-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(8, 35, 63, .07);
}

.stay-card {
  display: grid;
  overflow: hidden;
}

.stay-link {
  display: grid;
  height: 100%;
  color: inherit;
}

.stay-link:hover h3,
.similar-card:hover strong {
  color: var(--gold);
}

.stay-card[hidden] {
  display: none;
}

.stay-card img,
.feature-destinations img {
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  background: var(--cream);
}

.feature-destinations img {
  aspect-ratio: 1.55 / 1;
}

.stay-body,
.feature-destinations article {
  display: grid;
  gap: 12px;
}

.stay-body {
  padding: 19px;
}

.stay-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.stay-card h3,
.feature-destinations h3,
.service-grid h3,
.why-list h3 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.15;
}

.stay-card p,
.feature-destinations p,
.service-grid p,
.why-list p {
  margin-bottom: 0;
}

.stay-card strong {
  color: var(--navy);
}

.accommodation-detail-hero {
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(420px, 760px);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  justify-content: center;
  padding: clamp(34px, 5vw, 64px) var(--gutter) clamp(34px, 5vw, 58px);
}

.detail-hero-copy h1,
.detail-main h2,
.availability-card h2 {
  color: var(--navy);
  font-family: "Marcellus", Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.05;
}

.detail-hero-copy h1 {
  margin: 8px 0 18px;
  font-size: clamp(42px, 6vw, 78px);
}

.detail-hero-copy strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 24px;
}

.detail-specs {
  color: var(--ink);
  font-weight: 850;
}

.back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-hero-image {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.detail-hero-image img {
  min-height: 520px;
  object-fit: cover;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(300px, 380px);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  max-width: calc(var(--max) + var(--gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(56px, 7vw, 90px);
}

.detail-main {
  display: grid;
  gap: 18px;
}

.detail-main > p {
  color: var(--ink);
  font-size: 19px;
}

.detail-panel,
.availability-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 14px 36px rgba(8, 35, 63, .07);
}

.detail-panel {
  padding: clamp(20px, 3vw, 30px);
}

.detail-panel h2,
.availability-card h2 {
  margin-bottom: 12px;
  font-size: clamp(26px, 3vw, 36px);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.amenity-grid li {
  padding: 12px 14px;
  border: 1px solid rgba(8, 35, 63, .1);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--paper);
  font-weight: 800;
}

.availability-card {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 28px);
}

.availability-card form {
  display: grid;
  gap: 14px;
}

.availability-card label {
  display: grid;
  gap: 8px;
}

.availability-card span {
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.availability-card input,
.availability-card select {
  width: 100%;
  height: 48px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
}

.similar-section {
  background: var(--cream);
}

.similar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
}

.similar-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(8, 35, 63, .07);
}

.similar-card img {
  aspect-ratio: 1.8 / 1;
  object-fit: cover;
}

.similar-card span,
.similar-card strong,
.similar-card small {
  margin-inline: 20px;
}

.similar-card span {
  margin-top: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.similar-card strong {
  margin-top: 7px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.1;
}

.similar-card small {
  margin-top: 8px;
  margin-bottom: 20px;
  color: var(--muted);
  font-weight: 800;
}

.destinations {
  background: var(--cream);
}

.feature-destinations article {
  overflow: hidden;
  padding-bottom: 20px;
}

.feature-destinations h3,
.feature-destinations p {
  padding: 0 20px;
}

.services {
  background: var(--white);
}

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

.service-grid article {
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
}

.service-number {
  color: var(--gold);
  font-weight: 950;
}

.offers {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 540px);
  min-height: 560px;
  background: var(--navy);
}

.offers-image {
  min-height: 420px;
  background-image:
    linear-gradient(90deg, rgba(8, 35, 63, .02), rgba(8, 35, 63, .35)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=82");
  background-size: cover;
  background-position: center;
}

.offers-content {
  display: grid;
  align-content: center;
  padding: var(--gutter);
  color: var(--white);
}

.offers-content h2 {
  color: var(--white);
}

.offers-content ul {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.offers-content li {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .82);
  font-weight: 750;
}

.why {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 5vw, 76px);
  max-width: calc(var(--max) + var(--gutter) * 2);
  margin: 0 auto;
}

.why-list {
  display: grid;
  gap: 14px;
}

.why-list article {
  padding: 24px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  padding: clamp(60px, 8vw, 104px) var(--gutter);
  background: var(--cream);
}

.contact-copy {
  max-width: 620px;
}

.contact-copy h1 {
  margin-bottom: 16px;
  font-size: clamp(42px, 6vw, 76px);
}

.contact-copy p {
  font-size: 18px;
}

.contact-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(220px, .9fr) minmax(180px, .75fr) minmax(260px, 1fr);
  grid-template-areas:
    "brand contact partners nav"
    "brand contact partners social";
  gap: 28px;
  padding: 36px var(--gutter);
  color: var(--white);
  background: var(--navy);
}

.footer-brand {
  grid-area: brand;
  display: flex;
  gap: 14px;
  align-items: center;
  max-width: 460px;
}

.footer-brand p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, .68);
}

.footer-contact {
  grid-area: contact;
  display: grid;
  align-content: center;
  gap: 6px;
  max-width: 320px;
  color: rgba(255, 255, 255, .74);
  font-size: 14px;
}

.footer-contact a {
  color: var(--gold-2);
  font-size: 17px;
  font-weight: 800;
}

.footer-contact a + a {
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
}

.footer-partners {
  grid-area: partners;
  display: grid;
  align-content: center;
  gap: 10px;
}

.footer-partners span,
.footer-social span {
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-partners a {
  width: 142px;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .14);
}

.footer-partners img {
  width: 100%;
  height: auto;
  display: block;
}

.site-footer nav {
  grid-area: nav;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 13px;
  font-weight: 900;
}

.footer-social {
  grid-area: social;
  display: flex;
  justify-content: flex-end;
  align-items: end;
  gap: 10px;
  text-align: right;
}

.footer-social span {
  align-self: center;
  margin-right: 2px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social img {
  width: 38px;
  height: 38px;
}

.site-footer a:hover {
  color: var(--gold-2);
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: var(--gutter);
  background: var(--cream);
}

.success-card {
  width: min(620px, 100%);
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.success-card h1 {
  margin-bottom: 14px;
  font-size: clamp(38px, 7vw, 68px);
}

.success-card p {
  font-size: 18px;
}

@media (max-width: 1080px) {
  .hero,
  .accommodation-detail-hero {
    grid-template-columns: 1fr;
  }

  .home-page .site-nav {
    gap: 13px;
    font-size: 11px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 430px;
  }

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

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

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

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

  .package-intro {
    max-width: 620px;
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .availability-card {
    position: static;
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "brand contact"
      "partners nav"
      "partners social";
  }
}

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

  .brand-logo {
    height: 68px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 61;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    color: var(--navy);
    background: var(--paper);
    font-size: 21px;
  }

  .home-page .site-header {
    position: absolute;
  }

  .home-page .site-nav {
    color: var(--navy);
    font-size: 21px;
    text-transform: none;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-cta {
    min-height: 48px;
  }

  .inner-page .page-hero,
  .accommodations-page .compact-hero {
    display: grid;
    align-items: start;
    gap: 10px;
  }

  .booking-panel,
  .intro-band,
  .offers,
  .why,
  .contact,
  .home-split,
  .similar-grid,
  .form-row,
  .home-duo {
    grid-template-columns: 1fr;
  }

  .world-hero {
    min-height: 620px;
    padding-top: 120px;
    background:
      linear-gradient(180deg, rgba(16, 14, 12, .30), rgba(18, 15, 12, .58)),
      url("assets/wami-hero-travel-composite.png") center / cover no-repeat;
  }

  .travel-strip {
    justify-content: flex-start;
  }

  .duo-panel {
    min-height: 430px;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "contact"
      "partners"
      "nav"
      "social";
  }

  .footer-social {
    justify-content: flex-start;
    text-align: left;
  }

  .section-heading-row {
    display: grid;
  }

  .offers {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-logo {
    height: 60px;
  }

  .footer-logo {
    width: 104px;
  }

  .brand-text strong {
    font-size: 17px;
  }

  .brand-text small {
    font-size: 9px;
  }

  .hero {
    padding-top: 34px;
  }

  .home-page .site-header {
    min-height: 86px;
  }

  .home-page .brand-logo {
    height: 60px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 50px);
  }

  .world-hero {
    min-height: 640px;
    padding: 112px 16px 92px;
  }

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

  .travel-strip {
    right: 16px;
    left: 16px;
    bottom: 18px;
    gap: 9px;
    font-size: 10px;
  }

  .travel-strip span:not(:last-child)::after {
    margin-left: 9px;
  }

  .home-services,
  .package-section,
  .planning-banner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .solution-grid,
  .package-grid,
  .international-packages .package-grid,
  .destination-pins {
    grid-template-columns: 1fr;
  }

  .duo-panel {
    min-height: 420px;
    padding: 30px 16px;
  }

  .hero-visual,
  .hero-visual img,
  .offers-image,
  .detail-hero-image img {
    min-height: 300px;
  }

  .hero-card {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }

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

  .stays-grid,
  .feature-destinations,
  .service-grid,
  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .intro-band,
  .contact,
  .accommodation-detail-hero,
  .detail-layout {
    padding-left: 16px;
    padding-right: 16px;
  }
}
