/* ================================================================
   NILE FOR A WHILE — style.css
   Rebuilt: editorial, organic, anti-template
   Fonts: Fraunces (display) · DM Sans (body) · Caveat (accent)
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,700;0,9..144,900;1,9..144,300;1,9..144,700;1,9..144,900&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,600;0,9..40,700;1,9..40,400&family=Caveat:wght@400;600;700&display=swap');

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --terracotta:   #8B3A1E;
  --terra-lt:     #C4622D;
  --ochre:        #D4A017;
  --ochre-lt:     #E8B84B;
  --teal:         #2A6B5E;
  --teal-lt:      #3D8B7A;
  --brown:        #4A2C0A;
  --brown-lt:     #6B3F1A;
  --cream:        #F5EDD6;
  --cream-lt:     #FAF3E0;
  --forest:       #0D4D5E;
  --ink:          #160E06;
  --ink-mid:      #1d1610;
  --terra:        #A04825;
  --text:         #2D1A08;
  --text-mid:     #6B4D2E;
  --text-light:   #9E7B56;
  --white:        #FFFDF8;
  --parchment:    #F0E6CC;
  --sand:         #E8DABB;
  --sand-dim:     #B8A98A;

  --display: 'Fraunces', Georgia, serif;
  --body:    'DM Sans', system-ui, sans-serif;
  --hand:    'Caveat', cursive;

  --max-w: 1300px;
  --pad-x: clamp(2rem, 5vw, 80px);
  --radius: 3px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--cream-lt);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
p { max-width: 68ch; }
p + p { margin-top: 1.1em; }
em { font-style: italic; }

/* ── CONTAINER ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: inherit;
}
h1 { font-size: clamp(3.5rem, 9vw, 9rem); }
h2 { font-size: clamp(2rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2.4rem); }
h4 { font-size: clamp(1.05rem, 2vw, 1.4rem); font-weight: 700; letter-spacing: -0.01em; }

.lead {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.6;
}
.caption {
  font-family: var(--hand);
  font-size: 1rem;
  opacity: 0.6;
}
.eyebrow {
  display: block;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
}
.stat-l { color: var(--text-mid); }
.mobile-nav-wa { color: var(--ochre-lt); }
.btn-whatsapp svg { width: 20px; height: 20px; fill: #fff; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.22s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.btn-primary   { background: var(--terra-lt); color: var(--cream); }
.btn-primary:hover { background: var(--terracotta); transform: translateY(-2px); }
.btn-ochre     { background: var(--ochre); color: var(--brown); }
.btn-ochre:hover { background: var(--ochre-lt); transform: translateY(-2px); }
.btn-teal      { background: var(--teal); color: var(--cream); }
.btn-teal:hover { background: var(--teal-lt); transform: translateY(-2px); }
.btn-outline   { border: 2px solid rgba(245,237,214,0.5); color: var(--cream); }
.btn-outline:hover { border-color: var(--cream); background: rgba(245,237,214,0.08); }
.btn-whatsapp  { background: #25D366; color: #fff; box-shadow: 0 4px 24px rgba(37,211,102,.4); }
.btn-whatsapp:hover { background: #1ebe5b; transform: translateY(-3px); box-shadow: 0 8px 40px rgba(37,211,102,.55); }
.btn-lg { padding: 18px 40px; font-size: 0.9rem; }

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 14px 0;
  background: var(--ink);
  box-shadow: 0 2px 30px rgba(0,0,0,.4);
  transition: padding 0.35s;
}
.nav.scrolled {
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  color: rgba(245,237,214,.7);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 2px;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--cream); }
.nav-links a.active { color: var(--ochre-lt); }
.btn-nav {
  background: var(--terra-lt) !important;
  color: var(--cream) !important;
  padding: 9px 22px !important;
  border-radius: 3px !important;
}
.btn-nav:hover { background: var(--terracotta) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 101;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--display);
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -0.025em;
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--ochre-lt); }
.mobile-nav a.active { color: var(--ochre-lt); }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.hero-media {
  position: absolute;
  inset: 0;
  background: var(--ink);
}
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  opacity: .92;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(22,14,6,.88) 0%,
    rgba(22,14,6,.28) 38%,
    rgba(22,14,6,.08) 100%
  );
  z-index: 1;
}
.hero-hippo {
  position: absolute;
  bottom: 0;
  right: clamp(-60px, -4vw, 0px);
  width: clamp(340px, 52vw, 760px);
  fill: var(--cream);
  opacity: 0.055;
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 110px; /* clearance for the fixed nav when the hero content is taller than the viewport */
  padding-bottom: clamp(56px, 9vh, 100px);
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ochre-lt);
  margin-bottom: 18px;
  display: block;
}
.hero h1 {
  font-size: clamp(3.8rem, 10.5vw, 10rem);
  font-weight: 900;
  color: var(--cream-lt);
  line-height: .9;
  letter-spacing: -.035em;
  margin-bottom: clamp(18px, 3vh, 32px);
}
.hero h1 em {
  color: var(--ochre-lt);
  font-weight: 300;
  font-style: italic;
}
.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.2rem);
  color: rgba(245,237,214,.7);
  max-width: 44ch;
  line-height: 1.65;
  margin-bottom: clamp(28px, 4vh, 48px);
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-scroll {
  position: absolute;
  right: var(--pad-x);
  bottom: clamp(36px, 5vh, 56px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245,237,214,.28);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  animation: bounceDown 2.2s ease-in-out infinite;
}
.hero-scroll svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
@keyframes bounceDown { 0%,100%{transform:translateY(0)} 50%{transform:translateY(7px)} }

/* ── KENTE STRIPE ────────────────────────────────────────────── */
.kente-stripe {
  height: 7px;
  background: repeating-linear-gradient(
    90deg,
    var(--ochre)       0, var(--ochre)       12px,
    var(--terra-lt)    12px, var(--terra-lt)  24px,
    var(--teal)        24px, var(--teal)      36px,
    var(--brown-lt)    36px, var(--brown-lt)  48px
  );
}

/* ── INTRO BAND ──────────────────────────────────────────────── */
.intro-band {
  background: var(--terracotta);
  padding: clamp(48px, 7vw, 88px) 0;
}
.intro-band-inner {
  display: flex;
  align-items: flex-end;
  gap: clamp(32px, 6vw, 88px);
  flex-wrap: wrap;
}
.intro-band-headline {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.18;
  letter-spacing: -.02em;
  max-width: 28ch;
  flex: 1 1 380px;
}
.intro-band-aside {
  flex: 0 1 280px;
  color: rgba(245,237,214,.6);
  font-size: .88rem;
  line-height: 1.7;
  padding-bottom: 4px;
  border-top: 1px solid rgba(245,237,214,.2);
  padding-top: 16px;
}

/* ── PACKAGE STRIPS ──────────────────────────────────────────── */
.package-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(400px, 55vh, 620px);
}
.pkg-img {
  position: relative;
  overflow: hidden;
}
.pkg-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.pkg-img .photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #C4622D;
  text-align: center;
  padding: 24px;
}
.pkg-img .photo-placeholder svg { display: none; }
.pkg-body {
  padding: clamp(44px, 6vw, 80px) clamp(4rem, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.pkg-ghost-num {
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: var(--display);
  font-size: clamp(7rem, 14vw, 12rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,.04);
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  letter-spacing: -.05em;
}
.pkg-ghost-num.dark-ghost { color: rgba(0,0,0,.05); }
.pkg-label {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .45;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pkg-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: .6;
  flex-shrink: 0;
}
.pkg-name {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .92;
  margin-bottom: 24px;
}
.pkg-name em {
  font-style: italic;
  font-weight: 300;
  letter-spacing: -.02em;
}
.pkg-meta {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.pkg-price {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;
}
.pkg-detail {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .5;
}
.pkg-desc {
  font-size: clamp(.92rem, 1.5vw, 1.05rem);
  line-height: 1.75;
  opacity: .8;
  max-width: 42ch;
  margin-bottom: 32px;
}

.pkg-flat  { background: var(--cream-lt); color: var(--text); }
.pkg-flat  .pkg-img { background: #2A4A3E; }
.pkg-flat  .pkg-price { color: var(--teal); }

.pkg-white { background: var(--forest); color: var(--cream); }
.pkg-white .pkg-img { background: #0A2E38; }
.pkg-white .pkg-price { color: var(--ochre-lt); }

.pkg-xtreme { background: var(--brown); color: var(--cream); }
.pkg-xtreme .pkg-img { background: #1A0C04; }
.pkg-xtreme .pkg-price { color: var(--ochre-lt); }

/* ── WHY JINJA ───────────────────────────────────────────────── */
.why-jinja {
  background: var(--ink);
  padding: clamp(80px, 11vw, 150px) 0;
  position: relative;
  overflow: hidden;
  color: var(--cream);
}
.why-jinja-eagle {
  position: absolute;
  top: 32px;
  right: -24px;
  width: clamp(200px, 28vw, 360px);
  fill: var(--cream);
  opacity: .05;
  pointer-events: none;
}
.why-jinja-copy {
  max-width: 680px;
}
.why-heading {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: .95;
  letter-spacing: -.035em;
  margin-bottom: 28px;
}
.why-heading em { color: var(--ochre-lt); font-weight: 300; }
.why-body {
  color: rgba(245,237,214,.65);
  font-size: clamp(.92rem, 1.5vw, 1.05rem);
  line-height: 1.8;
  max-width: 54ch;
}
.why-body p + p { margin-top: 14px; }
.why-stamps {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.stamp {
  display: inline-block;
  padding: 7px 15px;
  border: 2px solid currentColor;
  border-radius: 3px;
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .55;
}
.stamp:nth-child(1) { transform: rotate(-2deg); }
.stamp:nth-child(2) { transform: rotate(1.2deg); }
.stamp:nth-child(3) { transform: rotate(-1deg); }

.why-stats {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 0px);
  border-top: 1px solid rgba(245,237,214,.1);
  padding-top: clamp(36px, 5vw, 52px);
  margin-top: clamp(40px, 5vw, 56px);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 140px;
  padding-right: clamp(24px, 4vw, 48px);
  border-right: 1px solid rgba(245,237,214,.08);
}
.stat:last-child { border-right: none; padding-right: 0; }
.stat-n {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900;
  color: var(--terra-lt);
  line-height: 1;
  letter-spacing: -.04em;
}
.stat-l {
  font-family: var(--body);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,237,214,.4);
  line-height: 1.4;
}

/* ── WILDLIFE FRIEZE ─────────────────────────────────────────── */
.wildlife-frieze {
  background: var(--cream);
  fill: var(--brown-lt);
  line-height: 0;
  overflow: hidden;
}
.wildlife-frieze svg { display: block; width: 100%; }

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials {
  background: var(--cream-lt);
  padding: clamp(80px, 10vw, 130px) 0;
}
.testimonials-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: clamp(48px, 7vw, 80px);
  display: block;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}
.testimonials-grid .testimonial:nth-child(2) {
  margin-top: clamp(40px, 6vw, 72px);
}
.t-mark {
  font-family: var(--display);
  font-size: 5rem;
  line-height: .5;
  color: var(--ochre);
  opacity: .35;
  display: block;
  margin-bottom: 16px;
  font-weight: 900;
}
.t-text {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 20px;
}
.t-name {
  font-family: var(--hand);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--terra-lt);
  display: block;
}
.t-loc {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 2px;
  display: block;
}

/* ── INSTAGRAM GRID ──────────────────────────────────────────── */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.insta-sq {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--brown-lt);
  position: relative;
}
.insta-sq img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.insta-sq:hover img { transform: scale(1.04); }
.insta-sq .photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #C4622D;
  text-align: center;
  padding: 12px;
}
.insta-band {
  background: var(--brown);
  padding: 14px var(--pad-x);
  text-align: center;
}
.insta-band a {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ochre-lt);
  transition: opacity .2s;
}
.insta-band a:hover { opacity: .75; }

/* ── CTA SECTION ─────────────────────────────────────────────── */
.cta-section {
  background: var(--terracotta);
  padding: clamp(80px, 11vw, 140px) 0;
  text-align: center;
}
.cta-section h2 {
  color: var(--cream);
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  letter-spacing: -.03em;
  margin-bottom: 20px;
  line-height: .95;
}
.cta-section p {
  color: rgba(245,237,214,.72);
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  max-width: 40ch;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  background: var(--ink);
  padding: clamp(130px, 17vw, 210px) 0 clamp(64px, 9vw, 110px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(42,107,94,.18) 0%, transparent 60%);
  z-index: 1;
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(245,237,214,.018) 0, rgba(245,237,214,.018) 1px,
    transparent 1px, transparent 22px
  );
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: .35;
  z-index: 0;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.page-hero-content .eyebrow {
  color: var(--ochre-lt);
  opacity: 1;
  margin-bottom: 18px;
  display: block;
}
.page-hero-content h1 {
  color: var(--cream);
  font-size: clamp(3rem, 7.5vw, 7rem);
  line-height: .95;
  letter-spacing: -.035em;
  margin-bottom: 24px;
}
.page-hero-content h1 em { color: var(--ochre-lt); font-weight: 300; }
.page-hero-content .lead { color: rgba(245,237,214,.68); max-width: 52ch; }

/* ── SECTION LAYOUT HELPERS ──────────────────────────────────── */
.section-pad { padding: clamp(64px, 9vw, 120px) 0; }
.section-pad-sm { padding: clamp(40px, 6vw, 72px) 0; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 44px);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
.align-center { align-items: center; }

.bg-cream    { background: var(--cream-lt); }
.bg-cream-2  { background: var(--cream); }
.bg-ink      { background: var(--ink); color: var(--cream); }
.bg-forest   { background: var(--forest); color: var(--cream); }
.bg-teal     { background: var(--teal); color: var(--cream); }
.bg-brown    { background: var(--brown); color: var(--cream); }
.bg-terra    { background: var(--terracotta); color: var(--cream); }
.bg-dot {
  background-image: radial-gradient(circle, rgba(74,44,10,.07) 1px, transparent 1px);
  background-size: 26px 26px;
}

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 56px; }
.mt-xl { margin-top: 80px; }
.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 32px; }
.mb-lg { margin-bottom: clamp(32px, 5vw, 56px); }

/* ── CHECKLIST ───────────────────────────────────────────────── */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: .92rem; line-height: 1.55; }
.ck-y { color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.ck-n { color: var(--terra-lt); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── DIFFICULTY DOTS ─────────────────────────────────────────── */
.difficulty { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.diff-dots { display: flex; gap: 5px; }
.diff-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(0,0,0,.12); border: 2px solid rgba(0,0,0,.2);
}
.diff-dot.on { background: var(--teal); border-color: var(--teal); }
.bg-forest .diff-dot { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.1); }
.bg-forest .diff-dot.on { background: var(--ochre-lt); border-color: var(--ochre-lt); }
.bg-brown .diff-dot { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.1); }
.bg-brown .diff-dot.on { background: var(--ochre-lt); border-color: var(--ochre-lt); }
.diff-text { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; opacity: .55; }

/* ── INCLUDE BOX ─────────────────────────────────────────────── */
.include-box {
  padding: 24px 28px;
  border-radius: var(--radius);
  margin-top: 24px;
}
.bg-cream .include-box, .bg-cream-2 .include-box { background: rgba(74,44,10,.05); }
.bg-forest .include-box, .bg-brown .include-box { background: rgba(255,255,255,.06); }
.include-box h4 {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-family: var(--body);
  font-weight: 700;
  opacity: .45;
  margin-bottom: 16px;
}

/* ── TOUR DETAIL LAYOUT ──────────────────────────────────────── */
.tour-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}
.tour-layout.flip .tour-img { order: 2; }
.tour-layout.flip .tour-body { order: 1; }
.tour-img .photo-placeholder {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #C4622D;
  padding: 24px;
  text-align: center;
}
.tour-img .photo-placeholder svg { display: none; }
.tour-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.tour-slideshow {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
}
.tour-slideshow .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .9s ease;
  border-radius: 0;
  aspect-ratio: unset;
}
.tour-slideshow .slide.active {
  opacity: 1;
}
.tour-body .pkg-price { font-size: clamp(2.2rem, 4vw, 3rem); }

/* ── ADD-ONS ─────────────────────────────────────────────────── */
.addon-card {
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--radius);
  border: 1px solid rgba(245,237,214,.12);
  background: rgba(245,237,214,.07);
}
.addon-icon { font-size: 2rem; margin-bottom: 14px; }
.addon-card h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--cream); }
.addon-card p { font-size: .88rem; color: rgba(245,237,214,.6); margin-bottom: 14px; line-height: 1.65; }
.addon-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(245,237,214,.1);
  border-radius: 2px;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ochre-lt);
}

/* ── COMPARE TABLE ───────────────────────────────────────────── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .87rem;
}
.compare-table th {
  padding: 14px 18px;
  text-align: left;
  background: var(--ink);
  color: rgba(245,237,214,.6);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-family: var(--body);
  font-weight: 700;
  border-bottom: 2px solid var(--ochre);
}
.compare-table td {
  padding: 13px 18px;
  border-bottom: 1px solid rgba(74,44,10,.08);
  vertical-align: top;
  color: var(--text);
}
.compare-table tr:nth-child(even) td { background: rgba(74,44,10,.04); }
.compare-check { color: var(--teal); font-weight: 700; }
.compare-x { color: var(--text-light); }

/* ── CALLOUT ─────────────────────────────────────────────────── */
.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius);
}
.callout h3 { margin-bottom: 8px; }
.callout p { opacity: .7; font-size: .92rem; max-width: 46ch; }

/* ── TEAM CARDS ──────────────────────────────────────────────── */
.team-photo {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--brown-lt);
}
.team-photo .photo-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: #C4622D;
  text-align: center; padding: 20px;
}
.team-photo .photo-placeholder svg { display: none; }
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
/* Rotated label inside any photo placeholder */
.photo-placeholder span {
  display: inline-block;
  padding: 7px 18px;
  background: rgba(245,237,214,.18);
  border: 1px solid rgba(245,237,214,.3);
  border-radius: 2px;
  color: #F5EDD6;
  font-family: var(--hand);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  transform: rotate(-2deg);
  max-width: 22ch;
  text-align: center;
}

/* Full-width photo band (about.html founders shot, safety.html elephant) */
.photo-band {
  min-height: 400px;
  background: #C4622D;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px var(--pad-x);
}
.photo-band--img {
  padding: 0;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}
.photo-band--img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: .75;
}
.photo-band span {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(245,237,214,.18);
  border: 1px solid rgba(245,237,214,.3);
  border-radius: 2px;
  color: #F5EDD6;
  font-family: var(--hand);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
  transform: rotate(-1.5deg);
  max-width: 36ch;
  text-align: center;
}

.team-name {
  font-family: var(--display);
  font-size: 1.15rem; font-weight: 700; letter-spacing: -.01em; margin-bottom: 2px;
}
.team-role {
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--terra-lt); font-weight: 600; margin-bottom: 10px;
}
.team-bio { font-size: .87rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 10px; }
.team-fact { font-family: var(--hand); font-size: 1rem; color: var(--teal); line-height: 1.5; }
.team-fact::before { content: '"'; }
.team-fact::after  { content: '"'; }

/* ── COMMUNITY ───────────────────────────────────────────────── */
.community-item {
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius);
  background: rgba(245,237,214,.06);
  border: 1px solid rgba(245,237,214,.1);
}
.community-item h4 { color: var(--cream); margin-bottom: 10px; }
.community-item p { color: rgba(245,237,214,.62); font-size: .88rem; line-height: 1.65; }

/* ── INFO BOX ─────────────────────────────────────────────────── */
.info-box {
  padding: 22px 26px;
  border-left: 3px solid var(--teal);
  background: rgba(42,107,94,.07);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.info-box.ochre { border-color: var(--ochre); background: rgba(212,160,23,.07); }
.info-box.terra { border-color: var(--terra-lt); background: rgba(196,98,45,.07); }
.info-box h4 { margin-bottom: 10px; font-size: 1rem; }
.info-box p { font-size: .9rem; line-height: 1.7; }
.info-box a { color: var(--teal); text-decoration: underline; }

/* ── PACKING GRID ─────────────────────────────────────────────── */
.packing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px);
}

/* ── FAQ ACCORDION ───────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid rgba(74,44,10,.1); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--body);
  font-size: .97rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: color .2s;
}
.faq-question:hover { color: var(--teal); }
.faq-question[aria-expanded="true"] { color: var(--teal); }
.faq-icon {
  font-size: 1.3rem; font-weight: 300; color: var(--teal);
  flex-shrink: 0; transition: transform .3s var(--ease); line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-inner {
  padding: 0 0 22px;
  font-size: .91rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 60ch;
}
.faq-inner a { color: var(--teal); text-decoration: underline; }

/* ── CONTACT ─────────────────────────────────────────────────── */
.form-stack { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(74,44,10,.18);
  border-radius: var(--radius);
  font-family: var(--body); font-size: .94rem;
  color: var(--text); background: var(--white);
  transition: border-color .2s; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--teal); }
.form-group textarea { min-height: 130px; resize: vertical; }

.direction-step { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.direction-num {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--teal); color: #fff;
  font-size: .8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.direction-step p { margin: 0; font-size: .92rem; }

.contact-card {
  padding: 20px 24px;
  border-radius: var(--radius);
  background: var(--white);
  border-left: 4px solid var(--teal);
  margin-bottom: 12px;
}
.contact-card.wa { border-color: #25D366; }
.contact-card.terra { border-color: var(--terra-lt); }
.contact-card-label {
  font-size: .62rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 6px;
}
.contact-card.wa .contact-card-label { color: #1ebe5b; }
.contact-card.terra .contact-card-label { color: var(--terra-lt); }
.contact-card a { font-family: var(--display); font-size: 1.4rem; font-weight: 700; color: var(--text); }
.contact-card p { margin-top: 4px; font-size: .82rem; color: var(--text-light); }

.social-link-row {
  display: flex; align-items: center; gap: 16px;
  padding: 15px 20px; background: var(--white);
  border-radius: var(--radius); border: 1.5px solid rgba(74,44,10,.1);
  transition: border-color .2s, transform .2s; margin-bottom: 10px;
}
.social-link-row:hover { border-color: var(--ochre); transform: translateX(4px); }
.social-link-row svg { flex-shrink: 0; width: 22px; height: 22px; }
.social-link-row strong { display: block; font-size: .88rem; color: var(--text); }
.social-link-row span { font-size: .78rem; color: var(--text-light); }

.map-placeholder {
  width: 100%; height: 380px;
  background: var(--brown-lt); border-radius: var(--radius);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; color: rgba(245,237,214,.35);
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
}

.wa-big {
  display: inline-flex; align-items: center; gap: 14px;
  background: #25D366; color: #fff;
  padding: 22px 52px; border-radius: var(--radius);
  font-family: var(--body); font-size: 1.1rem;
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  transition: all .25s var(--ease);
  box-shadow: 0 6px 32px rgba(37,211,102,.4);
}
.wa-big:hover { background: #1ebe5b; transform: translateY(-3px); box-shadow: 0 14px 48px rgba(37,211,102,.55); }
.wa-big svg { width: 28px; height: 28px; fill: #fff; }

.hours-grid {
  display: grid; grid-template-columns: auto 1fr;
  gap: 6px 24px; font-size: .9rem;
}
.hours-day { font-weight: 600; color: var(--text); }
.hours-time { color: var(--teal); font-weight: 500; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 60px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245,237,214,.08);
  margin-bottom: 32px;
}
.footer-logo {
  font-family: var(--display);
  font-size: 1.4rem; font-weight: 900; letter-spacing: -.02em;
  color: var(--cream); display: block; margin-bottom: 4px;
}
.footer-tagline {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ochre-lt); opacity: .6; margin-bottom: 16px;
}
.footer-col h5 {
  font-family: var(--body); font-size: .62rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(245,237,214,.3); margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .87rem; color: rgba(245,237,214,.55); transition: color .2s; line-height: 1; }
.footer-col a:hover { color: var(--cream); }
.footer-col p { font-size: .87rem; color: rgba(245,237,214,.55); line-height: 1.75; max-width: none; }
.footer p { font-size: .87rem; color: rgba(245,237,214,.45); max-width: 28ch; line-height: 1.75; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-social {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(245,237,214,.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,237,214,.45); transition: all .2s;
}
.footer-social:hover { border-color: var(--ochre-lt); color: var(--ochre-lt); }
.footer-social svg { width: 14px; height: 14px; fill: currentColor; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: .72rem; color: rgba(245,237,214,.25); max-width: none; }
.payment-list { display: flex; gap: 8px; flex-wrap: wrap; }
.payment-badge {
  padding: 3px 10px; border: 1px solid rgba(245,237,214,.12); border-radius: 2px;
  font-size: .62rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(245,237,214,.28);
}

/* ── WA FLOAT ─────────────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  animation: waPulse 2.8s ease-in-out infinite;
}
.wa-float svg { width: 26px; height: 26px; fill: #fff; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.4); }
  50%      { box-shadow: 0 4px 20px rgba(37,211,102,.5), 0 0 0 14px rgba(37,211,102,0); }
}

/* ── CRUISE PAGE ─────────────────────────────────────────────── */
.cruise-hero {
  min-height: 92svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.cruise-hero-img {
  position: absolute;
  inset: 0;
}
.cruise-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: .72;
}
.cruise-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(22,14,6,.9) 0%,
    rgba(22,14,6,.35) 55%,
    rgba(22,14,6,.08) 100%
  );
  z-index: 1;
}
.cruise-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(48px, 8vw, 96px);
  padding-top: 120px;
}
.cruise-hero-content h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.04em;
  color: var(--cream);
  margin: 16px 0 24px;
}
.cruise-hero-content h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--ochre-lt);
}
.cruise-hero-content .lead {
  max-width: 54ch;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.65;
  color: rgba(245,237,214,.75);
  margin-bottom: 32px;
}
.cruise-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cruise-includes li {
  font-size: .9rem;
  color: rgba(245,237,214,.7);
  padding-left: 20px;
  position: relative;
}
.cruise-includes li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--ochre-lt);
  font-size: .8rem;
}
.cruise-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cruise-gallery-main {
  overflow: hidden;
  border-radius: var(--radius);
}
.cruise-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 420px;
}
.cruise-gallery-side {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
}
.cruise-gallery-sm {
  overflow: hidden;
  border-radius: var(--radius);
}
.cruise-gallery-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 120px;
}
.cruise-boats {
  gap: clamp(24px, 4vw, 48px);
}
.cruise-boat-card {
  background: var(--cream-lt);
  border-radius: var(--radius);
  overflow: hidden;
}
.cruise-boat-img {
  height: 260px;
  overflow: hidden;
}
.cruise-boat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.cruise-boat-card:hover .cruise-boat-img img { transform: scale(1.04); }
.cruise-boat-body {
  padding: 28px 32px 32px;
}
.cruise-boat-body h3 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 12px;
}
.cruise-boat-body p {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.cruise-capacity {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
}
.bg-terracotta { background: var(--terra-lt); }

/* ── HIKING COMING SOON ──────────────────────────────────────── */
.hiking-coming {
  min-height: 100svh;
  background: var(--ink);
  display: flex;
  align-items: center;
  padding: 120px var(--pad-x) 80px;
}
.hiking-coming-inner {
  max-width: 640px;
}
.hiking-coming h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.04em;
  color: var(--cream);
  margin: 16px 0 24px;
}
.hiking-coming h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--ochre-lt);
}
.hiking-coming .lead {
  color: rgba(245,237,214,.75);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 52ch;
}

/* ── SCROLL ANIMATIONS ───────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.fade-up.in { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ── FOUNDER FEATURE (about.html) ──────────────────────────── */
.founder-feature { background: var(--ink); }
.founder-photo {
  max-width: 360px;
  border-radius: var(--radius);
  overflow: hidden;
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.eyebrow--muted { display: block; color: rgba(245,237,214,.35); }
.founder-heading { color: var(--sand); }
.founder-bio { color: var(--sand-dim); }
.founder-cta { margin-top: 24px; display: inline-flex; }

/* ── TEAM CARD EXTRAS ───────────────────────────────────────── */
.team-name-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--terra-lt);
}
.team-profile-link {
  display: inline-block;
  margin-top: 12px;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--terra-lt);
  font-weight: 600;
}
.team-profile-link:hover { color: var(--terracotta); }

/* ── MOSES PROFILE PAGE ─────────────────────────────────────── */
.profile-hero {
  padding: 120px 0 80px;
  background: var(--ink);
}
.profile-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}
.profile-hero-text .eyebrow {
  display: block;
  margin-bottom: 24px;
}
.profile-name {
  font-family: var(--display);
  font-size: clamp(3.6rem, 7vw, 6rem);
  font-weight: 900;
  line-height: .95;
  color: var(--sand);
  margin: 0 0 20px;
}
.profile-name em {
  font-style: italic;
  font-weight: 300;
  color: var(--ochre-lt);
}
.profile-title-line {
  font-size: 1rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terra-lt);
  margin: 0 0 32px;
}
.profile-intro {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--sand-dim);
  max-width: 480px;
  margin: 0;
}
.profile-hero-img {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.profile-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Body */
.profile-body {
  background: var(--parchment);
  padding: 100px 0;
}
.profile-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* Chapters */
.profile-chapter {
  margin-bottom: 80px;
}
.profile-chapter-num {
  display: block;
  font-family: var(--display);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .2em;
  color: var(--terra-lt);
  margin-bottom: 16px;
}
.profile-chapter-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  color: var(--ink);
  margin: 0 0 36px;
}
.profile-chapter-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--terra);
}
.profile-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #3a2e1e;
  margin: 0 0 1.4em;
}
.profile-text p:last-child { margin-bottom: 0; }

/* Pull quotes */
.profile-pull {
  position: relative;
  margin: 60px 0;
  padding: 40px 48px 40px 64px;
  background: var(--ink);
  border-radius: 4px;
}
.profile-pull p {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  color: var(--ochre-lt);
  margin: 0;
}
.profile-pull-mark {
  position: absolute;
  top: 16px;
  left: 20px;
  font-family: var(--display);
  font-size: 5rem;
  line-height: 1;
  color: var(--terra);
  opacity: .6;
}
.profile-pull--right {
  margin-left: 10%;
  margin-right: -10%;
}

/* Rivers strip */
.profile-rivers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin: 80px 0;
  background: var(--ink);
  border-radius: 4px;
  overflow: hidden;
}
.profile-river-item {
  background: var(--ink-mid, #1d1610);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.profile-river-name {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--ochre-lt);
}
.profile-river-loc {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sand-dim);
}

/* Credentials */
.profile-creds {
  border: 2px solid var(--ink);
  border-radius: 4px;
  padding: 48px;
  margin-top: 80px;
}
.profile-creds-title {
  font-family: var(--display);
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terra);
  margin: 0 0 28px;
}
.profile-creds-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.profile-creds-list li {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink);
  padding-left: 24px;
  position: relative;
}
.profile-creds-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--terra-lt);
  font-family: var(--display);
}

/* ── HIKING PAGE ─────────────────────────────────────────────── */
.hike-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  background: var(--forest);
  overflow: hidden;
}
.hike-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .45;
}
.hike-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,77,94,.92) 0%, rgba(13,77,94,.4) 60%, rgba(13,77,94,.2) 100%);
}
.hike-hero-inner {
  position: relative;
  z-index: 1;
  padding: 120px 0 72px;
}
.hike-hero-content { max-width: 680px; }
.hike-hero-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(245,237,214,.82);
  margin: 24px 0 32px;
  max-width: 560px;
}
.hike-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hike-badge {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(232,184,75,.45);
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ochre-lt);
}
.hike-section-title { color: var(--sand); }

/* Itinerary */
.hike-itinerary {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid rgba(232,184,75,.2);
  margin-left: 60px;
  padding-left: 40px;
}
.hike-step {
  position: relative;
  padding-bottom: 48px;
}
.hike-step:last-child { padding-bottom: 0; }
.hike-step::before {
  content: '';
  position: absolute;
  left: -47px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ochre-lt);
  border: 2px solid var(--ink);
}
.hike-step-time {
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terra-lt);
  margin-bottom: 8px;
}
.hike-step-body h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--sand);
  margin-bottom: 10px;
}
.hike-step-body p {
  color: var(--sand-dim);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 62ch;
}
.hike-optional {
  font-family: var(--body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ochre-lt);
  background: rgba(232,184,75,.12);
  border: 1px solid rgba(232,184,75,.3);
  border-radius: 100px;
  padding: 3px 10px;
  vertical-align: middle;
  margin-left: 10px;
}

/* Wildlife grid */
.hike-wildlife-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hike-wildlife-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.hike-wildlife-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 18px;
}
.hike-wildlife-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}
.hike-wildlife-card:hover .hike-wildlife-card-img img { transform: scale(1.04); }
.hike-wildlife-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.hike-wildlife-card h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ochre-lt);
  margin-bottom: 10px;
}
.hike-wildlife-card p {
  font-size: .95rem;
  line-height: 1.7;
  color: rgba(245,237,214,.65);
  margin: 0;
}

/* Packing list */
.hike-packing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.hike-pack-title {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid currentColor;
}
.hike-pack-title--bring { color: var(--teal); }
.hike-pack-title--leave { color: var(--terracotta); }
.hike-pack-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hike-pack-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.hike-pack-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.hike-pack-icon--no { background: var(--terracotta); }
.hike-pack-list strong {
  display: block;
  font-size: .95rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.hike-pack-list p {
  font-size: .88rem;
  line-height: 1.6;
  color: var(--text-mid);
  margin: 0;
}

/* Includes / info cards */
.include-box--dark {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px;
}
.include-box--dark h4 {
  font-family: var(--display);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ochre-lt);
  margin-bottom: 20px;
}
.include-box--dark .checklist li { color: var(--sand-dim); }
.hike-info-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hike-info-card {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hike-info-card:last-child { border-bottom: none; }
.hike-info-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terra-lt);
  flex-shrink: 0;
}
.hike-info-val {
  font-size: .95rem;
  color: var(--sand-dim);
  text-align: right;
}

/* Combine section */
.hike-combine-btns { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.hike-combine-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.hike-combine-fact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hike-combine-n {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--ochre-lt);
  line-height: 1;
}
.hike-combine-l {
  font-size: .8rem;
  color: rgba(245,237,214,.55);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Photo placeholders for hiking page */
.hike-photo-band {
  height: 420px;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.hike-photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hike-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(245,237,214,.3);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hike-photo-placeholder-icon { font-size: 2.5rem; opacity: .4; }
.hike-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.hike-gallery-cell {
  aspect-ratio: 4 / 3;
  background: var(--forest);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hike-gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}
.hike-gallery-cell:hover img { transform: scale(1.04); }

/* ── NILE WILDLIFE ROW (index) ──────────────────────────────── */
.nile-wildlife {
  background: var(--ink);
}
.nile-wildlife-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.nile-wildlife-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.nile-wildlife-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}
.nile-wildlife-item:hover img { transform: scale(1.04); }
.nile-wildlife-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 18px 16px;
  background: linear-gradient(to top, rgba(22,14,6,.85), transparent);
  color: var(--cream);
  font-family: var(--display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 700;
}

/* ── CRUISE WILDLIFE GRID ────────────────────────────────────── */
.cruise-wildlife-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 20px);
}
.cruise-wildlife-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
}
.cruise-wildlife-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}
.cruise-wildlife-item:hover img { transform: scale(1.04); }
.cruise-wildlife-caption {
  padding: 14px 18px 18px;
}
.cruise-wildlife-caption strong {
  display: block;
  font-family: var(--display);
  font-size: 1rem;
  color: var(--ochre-lt);
  margin-bottom: 5px;
}
.cruise-wildlife-caption span {
  font-size: .85rem;
  color: rgba(245,237,214,.6);
  line-height: 1.5;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hike-itinerary { margin-left: 20px; padding-left: 24px; }
  .hike-wildlife-grid { grid-template-columns: 1fr 1fr; }
  .hike-packing-grid { grid-template-columns: 1fr; gap: 40px; }
  .hike-combine-facts { grid-template-columns: 1fr 1fr; }
  .hike-gallery { grid-template-columns: 1fr; }
  .hike-photo-band { height: 260px; }
  .profile-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .profile-hero-img { max-width: 320px; aspect-ratio: 1 / 1; }
  .profile-hero { padding: 100px 0 60px; }
  .profile-rivers { grid-template-columns: repeat(2, 1fr); }
  .profile-pull--right { margin-left: 0; margin-right: 0; }
  .profile-creds { padding: 32px 24px; }
  .package-strip { grid-template-columns: 1fr; }
  .pkg-img { min-height: 280px; }
  .pkg-body { padding: 36px 28px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial:nth-child(2) { margin-top: 0; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .grid-2, .tour-layout, .packing-grid, .grid-3, .form-row { grid-template-columns: 1fr; }
  .tour-layout.flip .tour-img, .tour-layout.flip .tour-body { order: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hamburger { display: flex; }
  .nav-links { display: none; }
  .callout { flex-direction: column; }
  .intro-band-inner { flex-direction: column; }
}

@media (max-width: 640px) {
  .nile-wildlife-row { grid-template-columns: 1fr; }
  .nile-wildlife-item { aspect-ratio: 4 / 3; }
  .cruise-wildlife-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .grid-4 { grid-template-columns: 1fr; }
}
