/* ==========================================================================
   Duna Tours Egypt — duna.css
   A single stylesheet for a static one-page site. No build step, no framework.

   Layout order:
     1. Tokens          2. Reset & base      3. Typography & ornaments
     4. Buttons         5. Header & nav      6. Hero
     7. Sections        8. Footer            9. Motion & utilities
   ========================================================================== */

/* 1. Tokens ---------------------------------------------------------------- */
:root {
  /* Palette lifted from the logo: the olive globe, the bronze Atlas figure,
     temple-green lettering and the warm limestone of the banner artwork. */
  --green-900: #0c1a0f;
  --green-800: #142b18;
  --green-700: #1c3a20;
  --green-600: #27512b;
  --green-500: #386f38;
  --leaf-400: #7fb05a;
  --leaf-300: #9cc776;

  --gold-700: #8a6d1f;
  --gold-600: #a9862b;
  --gold-500: #c9a227;
  --gold-400: #e0c46a;
  --gold-200: #f2e3b4;

  --sand-050: #fdfbf6;
  --sand-100: #faf6ec;
  --sand-200: #f3ecdc;
  --sand-300: #e6dbc2;
  --sand-400: #d3c4a3;

  --ink: #16180f;
  --ink-soft: #3b4034;
  --muted: #6b7061;
  --muted-on-dark: #bdc7b4;

  --white: #ffffff;

  /* Type */
  --font-display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --font-brand: "Cinzel", "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Rhythm */
  --shell: 1240px;
  --gutter: clamp(1.15rem, 4vw, 2.75rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);
  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 22px;

  /* Depth */
  --shadow-sm: 0 2px 10px rgba(12, 26, 15, 0.06);
  --shadow: 0 14px 40px -18px rgba(12, 26, 15, 0.35);
  --shadow-lg: 0 32px 70px -28px rgba(12, 26, 15, 0.5);

  /* Paper grain used by .section--paper */
  --paper-url: url("../assets/img/texture/papyrus-1400.webp");

  --header-h: 74px;
  --ease: cubic-bezier(0.22, 0.68, 0.35, 1);
}

/* 2. Reset & base ---------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Contains the off-canvas nav sheet. `clip` rather than `hidden` so the
     sticky header keeps working. */
  overflow-x: clip;
  /* Anchor targets clear the sticky header. */
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--sand-100);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.68;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50% -150%;
  z-index: 200;
  padding: 0.75rem 1.4rem;
  background: var(--green-800);
  color: var(--sand-100);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  transition: translate 0.2s var(--ease);
}

.skip-link:focus-visible {
  translate: -50% 0;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.shell--wide {
  max-width: 1480px;
}

/* 3. Typography & ornaments ------------------------------------------------ */
h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.6rem, 1.6rem + 4.4vw, 5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2.05rem, 1.35rem + 2.9vw, 3.55rem);
}

h3 {
  font-size: clamp(1.3rem, 1.1rem + 0.75vw, 1.65rem);
}

p {
  margin: 0 0 1.1em;
  text-wrap: pretty;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 600;
  color: var(--green-700);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.15rem;
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  flex: none;
  background: currentColor;
  opacity: 0.7;
}

.eyebrow--center {
  justify-content: center;
}

.eyebrow--center::after {
  content: "";
  width: 26px;
  height: 1px;
  flex: none;
  background: currentColor;
  opacity: 0.7;
}

.lede {
  font-size: clamp(1.06rem, 1rem + 0.32vw, 1.24rem);
  color: var(--ink-soft);
  line-height: 1.68;
}

.section-head {
  max-width: 62ch;
  margin-bottom: clamp(2.4rem, 4vw, 3.6rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head p {
  margin-top: 1.1rem;
}

/* Hairline rule with a small lozenge — used between major bands. */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  color: var(--gold-500);
}

.ornament::before,
.ornament::after {
  content: "";
  height: 1px;
  width: min(120px, 18vw);
  background: linear-gradient(90deg, transparent, currentColor);
}

.ornament::after {
  background: linear-gradient(90deg, currentColor, transparent);
}

.ornament span {
  width: 8px;
  height: 8px;
  rotate: 45deg;
  background: currentColor;
}

/* 4. Buttons --------------------------------------------------------------- */
.btn {
  --btn-bg: var(--gold-500);
  --btn-fg: var(--green-900);
  --btn-bd: var(--gold-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.92rem 1.7rem;
  border: 1px solid var(--btn-bd);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -12px rgba(140, 108, 20, 0.75);
}

.btn:active {
  transform: translateY(0);
}

.btn svg {
  width: 1.05em;
  height: 1.05em;
  flex: none;
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--sand-100);
  --btn-bd: rgba(250, 246, 236, 0.5);
  backdrop-filter: blur(2px);
}

.btn--ghost:hover {
  --btn-bg: rgba(250, 246, 236, 0.12);
  --btn-bd: var(--sand-100);
  box-shadow: none;
}

.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--green-700);
  --btn-bd: rgba(39, 81, 43, 0.35);
}

.btn--outline:hover {
  --btn-bg: var(--green-700);
  --btn-fg: var(--sand-100);
  --btn-bd: var(--green-700);
  box-shadow: 0 12px 26px -14px rgba(28, 58, 32, 0.8);
}

.btn--sm {
  padding: 0.62rem 1.15rem;
  font-size: 0.85rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Text link with an animated underline. */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--green-600);
}

.link-arrow::after {
  content: "→";
  transition: translate 0.25s var(--ease);
}

.link-arrow:hover::after {
  translate: 4px 0;
}

/* 5. Header & nav ---------------------------------------------------------- */
.topbar {
  position: relative;
  z-index: 60;
  background: var(--green-900);
  color: var(--muted-on-dark);
  font-size: 0.8rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 40px;
  padding-block: 0.4rem;
}

.topbar__creds {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-brand);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--gold-400);
}

.topbar__creds span:not(:last-child)::after {
  content: "·";
  margin-left: 0.65rem;
  color: rgba(224, 196, 106, 0.5);
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.topbar__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.2s var(--ease);
}

.topbar__links a:hover {
  color: var(--gold-400);
}

.topbar__links svg {
  width: 14px;
  height: 14px;
  opacity: 0.75;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(250, 246, 236, 0.9);
  backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid rgba(39, 81, 43, 0.1);
  transition: box-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
}

.site-header.is-stuck {
  background: rgba(250, 246, 236, 0.97);
  box-shadow: var(--shadow-sm);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

/* Brand lockup: the globe mark plus a typeset wordmark, so it stays crisp
   at every size instead of relying on the raster logo. */
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: none;
}

.brand__mark {
  width: auto;
  height: 46px;
  filter: drop-shadow(0 2px 5px rgba(12, 26, 15, 0.18));
}

.brand__text {
  display: grid;
  gap: 0.1rem;
}

.brand__name {
  font-family: var(--font-brand);
  font-size: clamp(0.95rem, 0.86rem + 0.3vw, 1.12rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--green-700);
  white-space: nowrap;
}

.brand__tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-600);
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.1rem);
  margin-left: auto;
}

.nav a {
  position: relative;
  padding-block: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-500);
  scale: 0 1;
  transform-origin: left;
  transition: scale 0.28s var(--ease);
}

.nav a:hover,
.nav a[aria-current="true"] {
  color: var(--green-700);
}

.nav a:hover::after,
.nav a[aria-current="true"]::after {
  scale: 1 1;
}

.header-cta {
  flex: none;
}

/* The nav's own CTA is for the mobile sheet only — the header already has one. */
.nav > .btn {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--green-700);
}

.nav-toggle span {
  position: relative;
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: background-color 0.2s var(--ease);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: translate 0.25s var(--ease), rotate 0.25s var(--ease);
}

.nav-toggle span::before {
  translate: 0 -7px;
}

.nav-toggle span::after {
  translate: 0 7px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  translate: 0 0;
  rotate: 45deg;
}

.nav-toggle[aria-expanded="true"] span::after {
  translate: 0 0;
  rotate: -45deg;
}

/* 6. Hero ------------------------------------------------------------------ */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: clamp(560px, 86svh, 900px);
  padding-block: clamp(3.5rem, 9vw, 6.5rem);
  background: var(--green-900);
  color: var(--sand-100);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  animation: heroDrift 26s var(--ease) infinite alternate;
}

@keyframes heroDrift {
  from {
    scale: 1;
  }
  to {
    scale: 1.07;
  }
}

/* Two scrims: a directional one that clears the left column for copy, and a
   base vignette so the trust strip at the bottom stays readable. */
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      100deg,
      rgba(8, 20, 10, 0.94) 0%,
      rgba(8, 20, 10, 0.82) 26%,
      rgba(8, 20, 10, 0.42) 50%,
      rgba(8, 20, 10, 0.05) 72%,
      transparent 88%
    ),
    linear-gradient(to top, rgba(8, 20, 10, 0.85) 0%, transparent 42%);
}

.hero__inner {
  position: relative;
  width: 100%;
}

.hero__copy {
  max-width: 44rem;
}

.hero .eyebrow {
  color: var(--gold-400);
}

.hero h1 {
  margin-bottom: 1.15rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-400);
}

.hero__lede {
  max-width: 40rem;
  margin-bottom: 2rem;
  font-size: clamp(1.05rem, 0.98rem + 0.38vw, 1.28rem);
  color: rgba(250, 246, 236, 0.88);
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2.4rem;
}

.hero__proof li {
  padding: 0.42rem 0.95rem;
  border: 1px solid rgba(224, 196, 106, 0.4);
  border-radius: 999px;
  background: rgba(8, 20, 10, 0.4);
  backdrop-filter: blur(4px);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-200);
}

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 1.75rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(250, 246, 236, 0.6);
  writing-mode: vertical-rl;
}

.hero__scroll::after {
  content: "";
  width: 1px;
  height: 54px;
  background: linear-gradient(to bottom, var(--gold-400), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.35;
    scale: 1 0.55;
  }
  50% {
    opacity: 1;
    scale: 1 1;
  }
}

/* 7. Sections -------------------------------------------------------------- */
.section {
  position: relative;
  padding-block: var(--section-y);
}

.section--sand {
  background: var(--sand-100);
}

.section--sand-deep {
  background: var(--sand-200);
}

.section--green {
  background: var(--green-800);
  color: var(--sand-100);
}

.section--green .lede,
.section--green p {
  color: rgba(250, 246, 236, 0.82);
}

.section--green .eyebrow {
  color: var(--gold-400);
}

.section--green strong {
  color: var(--gold-400);
}

/* Papyrus wash: a barely-there paper grain on the light bands. */
.section--paper::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--paper-url);
  background-size: cover;
  background-position: center;
  opacity: 0.13;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.section--paper > * {
  position: relative;
  z-index: 1;
}

/* -- Credentials strip ----------------------------------------------------- */
.creds {
  position: relative;
  z-index: 20;
  margin-top: -1px;
  background: var(--green-800);
  color: var(--sand-100);
  border-bottom: 1px solid rgba(224, 196, 106, 0.16);
}

.creds__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(224, 196, 106, 0.16);
}

.creds__item {
  display: grid;
  gap: 0.2rem;
  padding: clamp(1.4rem, 3vw, 2.1rem) clamp(0.9rem, 2vw, 1.6rem);
  background: var(--green-800);
  text-align: center;
}

.creds__num {
  font-family: var(--font-brand);
  font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold-400);
}

.creds__label {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}

/* -- Brand showcase -------------------------------------------------------- */
/* The client's own key art, framed and deliberately left free of any overlay. */
.showcase {
  padding-block: clamp(3rem, 6vw, 5rem);
  background: var(--green-900);
  color: var(--sand-100);
}

.showcase .eyebrow {
  color: var(--gold-400);
  margin-bottom: 1.6rem;
  font-size: 0.8rem;
}

.showcase__frame {
  margin: 0;
  padding: clamp(0.5rem, 1.2vw, 0.85rem);
  border: 1px solid rgba(224, 196, 106, 0.38);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(224, 196, 106, 0.12), rgba(224, 196, 106, 0.02));
  box-shadow: var(--shadow-lg);
}

.showcase__frame img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 8px);
}

.showcase__ar {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 1.15em;
  font-weight: 500;
  /* Arabic must never be letter-spaced — it breaks the joining. */
  letter-spacing: normal;
  color: var(--leaf-300);
}

.showcase__frame figcaption {
  padding: 1.1rem 0.5rem 0.3rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.35rem);
  font-style: italic;
  color: var(--gold-200);
}

/* -- Split (about) --------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.2rem, 5vw, 4.5rem);
  align-items: center;
}

.split__body > .btn-row {
  margin-top: 1.9rem;
}

/* Framed image with an offset gold rule behind it. */
.framed {
  position: relative;
}

.framed::before {
  content: "";
  position: absolute;
  inset: 1.35rem -1.35rem -1.35rem 1.35rem;
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-lg);
  opacity: 0.55;
  z-index: 0;
}

.framed img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.framed--flip::before {
  inset: 1.35rem 1.35rem -1.35rem -1.35rem;
}

/* Small pull-quote badge that overlaps the framed image. */
.badge-card {
  position: absolute;
  z-index: 2;
  left: -2.25rem;
  bottom: -1.75rem;
  max-width: 15rem;
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius);
  background: var(--green-800);
  color: var(--sand-100);
  box-shadow: var(--shadow-lg);
}

.badge-card strong {
  display: block;
  font-family: var(--font-brand);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold-400);
  margin-bottom: 0.3rem;
}

.badge-card span {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--muted-on-dark);
}

.tick-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.6rem 0 0;
}

.tick-list li {
  position: relative;
  padding-left: 1.9rem;
  font-size: 0.98rem;
}

.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  rotate: 45deg;
  background: var(--gold-500);
}

/* -- Service cards --------------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17.5rem), 1fr));
  gap: clamp(1.1rem, 2.2vw, 1.8rem);
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(39, 81, 43, 0.12);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.55);
  box-shadow: var(--shadow);
}

.card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--sand-300);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.7s var(--ease);
}

.card:hover .card__media img {
  scale: 1.06;
}

.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 20, 10, 0.55), transparent 55%);
}

.card__tag {
  position: absolute;
  z-index: 1;
  left: 1rem;
  top: 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(250, 246, 236, 0.92);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-700);
}

.card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.7rem;
  padding: 1.5rem 1.5rem 1.7rem;
}

.card__body p {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
}

.card__meta {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(39, 81, 43, 0.1);
  font-size: 0.82rem;
  color: var(--green-600);
  font-weight: 500;
}

/* -- Destination mosaic ---------------------------------------------------- */
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.7rem, 1.4vw, 1.1rem);
}

.tile {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 15rem;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-800);
  color: var(--sand-100);
}

.tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.8s var(--ease);
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 20, 10, 0.88) 4%, rgba(8, 20, 10, 0.15) 52%, transparent 78%);
  transition: opacity 0.4s var(--ease);
}

.tile:hover img {
  scale: 1.07;
}

.tile__label {
  position: relative;
  z-index: 1;
  padding: 1.3rem 1.4rem;
}

.tile__label h3 {
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.55rem);
  margin-bottom: 0.15rem;
}

.tile__label p {
  margin: 0;
  font-size: 0.83rem;
  color: rgba(250, 246, 236, 0.78);
}

/* Feature tiles span two columns and stand taller. */
.tile--wide {
  grid-column: span 2;
}

.tile--tall {
  grid-row: span 2;
  min-height: 22rem;
}

/* -- Journeys (sample itineraries) ----------------------------------------- */
.journeys {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr));
  gap: clamp(1.1rem, 2.2vw, 1.8rem);
}

.journey {
  display: flex;
  flex-direction: column;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border: 1px solid rgba(224, 196, 106, 0.28);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(250, 246, 236, 0.06), rgba(250, 246, 236, 0.015));
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.journey:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 196, 106, 0.7);
}

.journey__no {
  font-family: var(--font-brand);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  color: var(--gold-400);
  margin-bottom: 0.9rem;
}

.journey h3 {
  color: var(--sand-050);
  margin-bottom: 1rem;
}

.journey ul {
  display: grid;
  gap: 0.55rem;
  margin: 1.2rem 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(224, 196, 106, 0.2);
  font-size: 0.9rem;
  color: rgba(250, 246, 236, 0.8);
}

.journey li {
  position: relative;
  padding-left: 1.5rem;
}

.journey li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  rotate: 45deg;
  border: 1px solid var(--gold-400);
}

/* -- Statement band -------------------------------------------------------- */
/* A short breath between the destination mosaic and the itineraries. */
.statement {
  position: relative;
  isolation: isolate;
  padding-block: clamp(3.5rem, 8vw, 6rem);
  text-align: center;
  color: var(--sand-100);
  overflow: hidden;
}

.statement__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.statement__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.statement__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 24, 12, 0.86), rgba(10, 24, 12, 0.78));
}

.statement__quote {
  max-width: 26ch;
  margin: 0 auto 1.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.05rem + 1.9vw, 2.6rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.28;
  text-wrap: balance;
  color: var(--sand-050);
}

/* -- Partners -------------------------------------------------------------- */
.partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.partner {
  display: grid;
  gap: 0.4rem;
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(39, 81, 43, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.partner:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.6);
  box-shadow: var(--shadow-sm);
}

.partner__name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--green-700);
  line-height: 1.2;
}

.partner__kind {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.partner__where {
  font-size: 0.87rem;
  color: var(--muted);
}

/* Partner cards on the left, the cruise artwork balancing them on the right. */
.partners-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: center;
}

.partners-split .partners {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partners-split__art {
  margin: 0;
}

.partners-split__art figcaption {
  position: relative;
  z-index: 1;
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--green-600);
}

/* -- Wellness feature band ------------------------------------------------- */
.feature-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  min-height: 30rem;
}

.feature-split__media {
  position: relative;
  min-height: 22rem;
}

.feature-split__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-split__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.2rem, 5vw, 4.5rem);
  background: var(--green-800);
  color: var(--sand-100);
}

.feature-split__body p {
  color: rgba(250, 246, 236, 0.82);
}

/* This panel is dark but is not a .section--green, so emphasis needs its own rule. */
.feature-split__body strong {
  color: var(--gold-400);
}

/* -- Reasons --------------------------------------------------------------- */
.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15.5rem), 1fr));
  gap: clamp(1.4rem, 3vw, 2.6rem);
}

.reason__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.5);
  color: var(--gold-600);
  background: rgba(201, 162, 39, 0.08);
}

.reason__icon svg {
  width: 24px;
  height: 24px;
}

.reason h3 {
  font-size: 1.22rem;
  margin-bottom: 0.5rem;
}

.reason p {
  font-size: 0.94rem;
  color: var(--muted);
  margin: 0;
}

/* -- Call to action band --------------------------------------------------- */
.cta {
  position: relative;
  isolation: isolate;
  padding-block: clamp(4.5rem, 10vw, 8rem);
  text-align: center;
  color: var(--sand-100);
  overflow: hidden;
}

.cta__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 20, 10, 0.72), rgba(8, 20, 10, 0.88));
}

.cta h2 {
  max-width: 20ch;
  margin-inline: auto;
}

.cta p {
  max-width: 52ch;
  margin: 1.2rem auto 2.1rem;
  color: rgba(250, 246, 236, 0.86);
}

.cta .btn-row {
  justify-content: center;
}

/* -- Contact --------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: start;
}

.desks {
  display: grid;
  gap: 1rem;
}

.desk {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.15rem 1.35rem;
  border: 1px solid rgba(39, 81, 43, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.desk:hover {
  border-color: rgba(201, 162, 39, 0.6);
  transform: translateX(4px);
}

.desk__icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--gold-400);
}

.desk__icon svg {
  width: 20px;
  height: 20px;
}

.desk__text {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.desk__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.desk__value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--green-700);
  overflow-wrap: anywhere;
}

.info-card {
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border-radius: var(--radius-lg);
  background: var(--green-800);
  color: var(--sand-100);
  box-shadow: var(--shadow);
}

.info-card h3 {
  color: var(--sand-050);
  margin-bottom: 1.2rem;
}

.info-row {
  display: grid;
  gap: 0.15rem;
  padding-block: 0.85rem;
  border-top: 1px solid rgba(224, 196, 106, 0.18);
}

.info-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.info-row dt {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.info-row dd {
  margin: 0;
  font-size: 0.97rem;
  color: rgba(250, 246, 236, 0.9);
}

.info-row dd a:hover {
  color: var(--gold-400);
}

.info-row dd span {
  display: block;
}

.map-frame {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(224, 196, 106, 0.25);
  line-height: 0;
}

.map-frame iframe {
  width: 100%;
  height: 230px;
  border: 0;
  filter: saturate(0.85) contrast(1.05);
}

/* 8. Footer ---------------------------------------------------------------- */
.site-footer {
  background: var(--green-900);
  color: var(--muted-on-dark);
  font-size: 0.92rem;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

/* The logo needs a light ground — the wordmark is dark green on white. */
.footer-plaque {
  display: inline-flex;
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius);
  background: var(--sand-100);
  box-shadow: var(--shadow);
}

.footer-plaque img {
  height: 132px;
  width: auto;
}

.site-footer__blurb {
  max-width: 34ch;
  margin-top: 1.5rem;
  line-height: 1.7;
}

.footer-head {
  margin-bottom: 1.1rem;
  font-family: var(--font-brand);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.footer-list {
  display: grid;
  gap: 0.6rem;
}

.footer-list a:hover {
  color: var(--gold-400);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding-block: 1.4rem;
  border-top: 1px solid rgba(224, 196, 106, 0.14);
  font-size: 0.82rem;
  color: rgba(189, 199, 180, 0.75);
}

.site-footer__bottom a:hover {
  color: var(--gold-400);
}

/* Floating WhatsApp affordance. */
.wa-fab {
  position: fixed;
  right: clamp(0.9rem, 2.5vw, 1.75rem);
  bottom: clamp(0.9rem, 2.5vw, 1.75rem);
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  background: var(--green-600);
  color: var(--sand-050);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 14px 34px -12px rgba(8, 20, 10, 0.7);
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease);
}

.wa-fab:hover {
  transform: translateY(-3px);
  background: var(--green-500);
}

.wa-fab svg {
  width: 20px;
  height: 20px;
  flex: none;
}

/* 9. Motion & utilities ---------------------------------------------------- */
.reveal {
  opacity: 0;
  translate: 0 26px;
  transition: opacity 0.75s var(--ease), translate 0.75s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  translate: 0 0;
}

/* Children stagger in sequence when the container enters the viewport. */
.stagger > * {
  opacity: 0;
  translate: 0 22px;
  transition: opacity 0.65s var(--ease), translate 0.65s var(--ease);
  transition-delay: calc(var(--i, 0) * 85ms);
}

.stagger.is-in > * {
  opacity: 1;
  translate: 0 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.no-js .reveal,
.no-js .stagger > * {
  opacity: 1;
  translate: none;
}

/* ---- Responsive ---------------------------------------------------------- */
@media (max-width: 1080px) {
  .mosaic {
    grid-template-columns: repeat(2, 1fr);
  }

  .tile--tall {
    grid-row: span 1;
    min-height: 16rem;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 960px) {
  .creds__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .contact-grid,
  .feature-split,
  .partners-split {
    grid-template-columns: 1fr;
  }

  /* Without a column beside it the cruise art would tower; cap it. */
  .partners-split__art {
    max-width: 26rem;
    margin-inline: auto;
  }

  .framed::before {
    inset: 1rem -1rem -1rem 1rem;
  }

  .badge-card {
    left: auto;
    right: -0.5rem;
    bottom: -1rem;
  }

  .feature-split__media {
    min-height: 18rem;
  }
}

/* Below this the desktop nav collapses into a sheet. */
@media (max-width: 880px) {
  /* backdrop-filter makes the header a containing block for position:fixed
     descendants, which would trap the nav sheet inside the 74px header box.
     Drop the blur here and paint the header solid instead. */
  .site-header,
  .site-header.is-stuck {
    background: var(--sand-100);
    backdrop-filter: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 95;
    width: min(21rem, 84vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding: calc(var(--header-h) + 1.5rem) 1.6rem 2rem;
    background: var(--green-800);
    box-shadow: -20px 0 60px -30px rgba(8, 20, 10, 0.9);
    translate: 100% 0;
    visibility: hidden;
    transition: translate 0.35s var(--ease), visibility 0.35s;
  }

  .nav.is-open {
    translate: 0 0;
    visibility: visible;
  }

  .nav a {
    padding-block: 0.95rem;
    border-bottom: 1px solid rgba(224, 196, 106, 0.14);
    font-size: 1.02rem;
    color: var(--sand-100);
  }

  .nav a::after {
    display: none;
  }

  .nav a:hover,
  .nav a[aria-current="true"] {
    color: var(--gold-400);
  }

  /* In the sheet the CTA becomes the solid gold button; the `.nav a` colour
     rule above would otherwise win over .btn's own foreground. */
  .nav > .btn {
    display: inline-flex;
    margin-top: 1.4rem;
    border-bottom: 0;
    --btn-bg: var(--gold-500);
    --btn-fg: var(--green-900);
    --btn-bd: var(--gold-500);
    color: var(--btn-fg);
  }

  .nav-scrim {
    position: fixed;
    inset: 0;
    z-index: 94;
    background: rgba(8, 20, 10, 0.55);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
  }

  .nav-scrim.is-open {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 900px) {
  .topbar__creds {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
  }

  .topbar__links {
    gap: 1.1rem;
  }

  .hero {
    align-items: flex-end;
    min-height: 100svh;
  }

  /* Portrait key art needs a bottom-up scrim instead of the side wash. */
  .hero__media img {
    object-position: 50% 28%;
    animation-duration: 34s;
  }

  .hero__media::after {
    background: linear-gradient(to top, rgba(8, 20, 10, 0.95) 12%, rgba(8, 20, 10, 0.6) 48%, rgba(8, 20, 10, 0.25) 100%);
  }

  .hero__scroll {
    display: none;
  }

  .mosaic {
    grid-template-columns: 1fr;
  }

  .tile--wide {
    grid-column: span 1;
  }

  .wa-fab span {
    display: none;
  }

  .wa-fab {
    padding: 0.85rem;
  }
}

@media (max-width: 620px) {
  .site-footer__top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .creds__grid,
  .partners-split .partners {
    grid-template-columns: 1fr;
  }

  .btn-row .btn {
    flex: 1 1 100%;
  }

  .brand__mark {
    height: 38px;
  }

  .badge-card {
    position: static;
    max-width: none;
    margin-top: 1.5rem;
  }

  .framed::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .stagger > * {
    opacity: 1;
    translate: none;
  }
}

@media print {
  .topbar,
  .nav,
  .nav-toggle,
  .wa-fab,
  .hero__scroll,
  .map-frame {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .section--green,
  .cta,
  .site-footer {
    background: #fff !important;
    color: #000 !important;
  }
}
