:root {
  --ink: #201b16;
  --charcoal: #151712;
  --deep-green: #17362b;
  --malachite: #1f6b52;
  --sage: #8d9b7b;
  --sand: #e6d5bb;
  --ivory: #f8f3e9;
  --warm-white: #fffaf0;
  --clay: #a7653f;
  --gold: #c5a15a;
  --line: rgba(32, 27, 22, 0.14);
  --shadow: 0 24px 70px rgba(24, 20, 16, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--warm-white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(248, 243, 233, 0.94);
  box-shadow: 0 12px 40px rgba(20, 18, 15, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: block;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 250, 240, 0.54);
}

.brand-name,
.brand-place {
  display: block;
}

.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.brand-place {
  margin-top: 3px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav a {
  opacity: 0.86;
}

.primary-nav a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 5vw, 72px) 58px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 15, 12, 0.82), rgba(14, 15, 12, 0.45) 48%, rgba(14, 15, 12, 0.2)),
    linear-gradient(0deg, rgba(14, 15, 12, 0.72), rgba(14, 15, 12, 0.05) 48%),
    url("assets/malachite-kingfisher-hero.png") center / cover;
  transform: scale(1.02);
}

.section-dark {
  color: var(--warm-white);
  background: var(--charcoal);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  max-width: 780px;
  font-size: clamp(72px, 10vw, 146px);
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 78px);
}

h3 {
  font-size: clamp(28px, 3vw, 40px);
}

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--warm-white);
  background: var(--malachite);
  border-color: var(--malachite);
}

.button-ghost {
  color: var(--warm-white);
  border-color: rgba(255, 250, 240, 0.54);
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 72px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 250, 240, 0.25);
}

.hero-panel span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: 999px;
  color: rgba(255, 250, 240, 0.86);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-band,
.section,
.site-footer {
  padding-inline: clamp(20px, 5vw, 72px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 80px);
  padding-block: clamp(64px, 8vw, 112px);
  background: var(--warm-white);
  border-bottom: 1px solid var(--line);
}

.intro-band h2 {
  font-size: clamp(38px, 5vw, 70px);
}

.intro-band p:last-child,
.section-copy p,
.contact-copy p {
  max-width: 640px;
  margin: 0;
  color: rgba(32, 27, 22, 0.76);
  font-size: 17px;
}

.section {
  padding-block: clamp(78px, 10vw, 138px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(38px, 7vw, 100px);
}

.section-copy p {
  margin-top: 24px;
}

.image-stack {
  position: relative;
}

.image-stack img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.stat-card {
  position: absolute;
  right: clamp(18px, 4vw, 44px);
  bottom: clamp(18px, 4vw, 44px);
  width: min(270px, calc(100% - 36px));
  padding: 24px;
  color: var(--warm-white);
  background: rgba(23, 54, 43, 0.9);
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 6px;
  backdrop-filter: blur(12px);
}

.stat-card strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 44px;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 250, 240, 0.84);
  font-size: 14px;
}

.destinations {
  background: #efe4d3;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(34px, 6vw, 62px);
}

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

.destination-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--deep-green);
}

.destination-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.destination-card img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.88);
  transition: transform 500ms ease, filter 500ms ease;
}

.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.68));
}

.destination-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.02);
}

.destination-card div {
  position: absolute;
  inset: auto 22px 22px;
  z-index: 1;
  color: var(--warm-white);
}

.destination-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--sand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.experiences {
  background:
    linear-gradient(rgba(15, 19, 14, 0.94), rgba(15, 19, 14, 0.94)),
    url("assets/botswana-safari-sunset.png") center / cover fixed;
}

.experiences .section-heading {
  align-items: start;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 1px;
  background: rgba(255, 250, 240, 0.18);
  border: 1px solid rgba(255, 250, 240, 0.18);
}

.experience-grid article {
  min-height: 480px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(21, 23, 18, 0.84);
}

.experience-card-reel {
  position: relative;
  height: clamp(150px, 16vw, 210px);
  margin: calc(clamp(24px, 3vw, 34px) * -1) calc(clamp(24px, 3vw, 34px) * -1) clamp(22px, 3vw, 30px);
  overflow: hidden;
  background: var(--deep-green);
}

.experience-card-reel img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
  opacity: 0;
  transform: scale(1.02);
  animation: experience-card-fade 9s ease-in-out infinite;
}

.experience-card-reel img:nth-child(2) {
  animation-delay: 4.5s;
}

.experience-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.experience-grid h3 {
  margin-top: 34px;
  font-size: 34px;
}

.experience-grid p {
  margin: 18px 0 0;
  color: rgba(255, 250, 240, 0.74);
  font-size: 15px;
}

@keyframes experience-card-fade {
  0%,
  8% {
    opacity: 0;
  }

  18%,
  50% {
    opacity: 1;
  }

  60%,
  100% {
    opacity: 0;
  }
}

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

.journey-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) 1fr;
  align-items: center;
  gap: clamp(18px, 5vw, 72px);
  padding: clamp(22px, 4vw, 36px) 0;
  border-top: 1px solid var(--line);
}

.journey-card:last-child {
  border-bottom: 1px solid var(--line);
}

.journey-card p {
  margin: 0 0 8px;
  color: var(--malachite);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.journey-card span {
  max-width: 640px;
  color: rgba(32, 27, 22, 0.7);
  font-size: clamp(17px, 2vw, 21px);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(34px, 8vw, 100px);
  background: var(--warm-white);
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  color: var(--deep-green);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  background: #eee0ca;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.enquiry-form label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(32, 27, 22, 0.18);
  border-radius: 3px;
  padding: 12px 13px;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.82);
  font: inherit;
  letter-spacing: 0;
}

.enquiry-form textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 28px;
  color: var(--warm-white);
  background: var(--charcoal);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
}

.site-footer span {
  color: rgba(255, 250, 240, 0.7);
}

.site-footer a {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .destination-grid,
  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-grid article {
    min-height: 260px;
  }
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .primary-nav {
    position: absolute;
    top: 74px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    color: var(--ink);
    background: var(--warm-white);
    border-radius: 6px;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 92vh;
    padding-top: 124px;
  }

  .intro-band,
  .split,
  .contact,
  .journey-card {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

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

  .destination-card.large {
    grid-column: auto;
    grid-row: auto;
  }

  .destination-card {
    min-height: 300px;
  }

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

  .experience-grid article {
    min-height: 230px;
  }

  .experience-grid h3 {
    margin-top: 34px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand-name {
    font-size: 19px;
  }

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

  .brand-place {
    font-size: 10px;
  }

  h1 {
    font-size: 64px;
  }

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

  .hero-panel span {
    width: 100%;
  }

  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .stat-card {
    position: static;
    width: auto;
    margin-top: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .experience-card-reel img {
    animation: none;
  }

  .experience-card-reel img:first-child {
    opacity: 1;
  }
}
