/* Mamish Safaris — styles */
:root {
  /* default palette (Bushveld) */
  --ink: oklch(0.20 0.012 80);
  --ink-soft: oklch(0.35 0.012 80);
  --mute: oklch(0.55 0.012 80);
  --hair: oklch(0.85 0.012 80);
  --bone: oklch(0.965 0.012 85);
  --paper: oklch(0.93 0.018 80);
  --sand: oklch(0.86 0.028 75);
  --bush: oklch(0.32 0.04 145);
  --ember: oklch(0.55 0.12 35);
  --on-ink: var(--bone);

  /* type */
  --f-display: "Cormorant Garamond", "Cormorant", serif;
  --f-body: "Geist", "Inter", system-ui, -apple-system, sans-serif;
  --f-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;

  /* metrics */
  --gutter: clamp(20px, 4vw, 64px);
  --maxw: 1440px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

/* ── typography ────────────────────────────── */
.display {
  font-family: var(--f-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 0.98;
  text-wrap: balance;
}
.serif { font-family: var(--f-display); }
.mono {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lead {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.35;
  text-wrap: pretty;
  color: var(--ink);
}
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.rule {
  height: 1px;
  background: var(--hair);
  width: 100%;
}

/* ── layout ──────────────────────────────── */
.page { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding-block: clamp(72px, 9vw, 140px); }
.cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(24px, 5vw, 96px);
  align-items: start;
}
.cols.even {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 820px) {
  .cols, .cols.even { grid-template-columns: 1fr; }
}

/* ── placeholder ─────────────────────────── */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg,
      oklch(0.88 0.02 80) 0 14px,
      oklch(0.92 0.02 80) 14px 28px);
  color: var(--ink-soft);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px;
  overflow: hidden;
  border-radius: 2px;
}
.ph.dark {
  background:
    repeating-linear-gradient(135deg,
      oklch(0.28 0.018 80) 0 14px,
      oklch(0.32 0.018 80) 14px 28px);
  color: oklch(0.85 0.012 80);
}
.ph-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: oklch(0 0 0 / 0.04);
  padding: 4px 8px;
  border-radius: 1px;
}
.ph.dark .ph-label { background: oklch(1 0 0 / 0.1); }

/* ── real photo figure ─────────────────────── */
.imgfig {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  background: var(--sand);
}
.imgfig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.imgcap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 16px 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: oklch(0.96 0.012 85);
  background: linear-gradient(to top, oklch(0 0 0 / 0.55), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.imgfig:hover .imgcap { opacity: 1; }

/* ── nav ──────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: oklch(from var(--bone) l c h / 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hair);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-co {
  font-family: var(--f-display);
  font-size: 19px;
  letter-spacing: 0.01em;
  color: var(--ink);
  padding-left: 12px;
  border-left: 1px solid var(--hair);
  line-height: 1.05;
}
.brand-co-foot { font-size: 22px; }
@media (max-width: 480px) { .brand-co { font-size: 16px; padding-left: 9px; } }
.brand-logo { height: 64px; width: auto; display: block; }
.brand-logo-foot { height: 72px; }
@media (max-width: 720px) { .brand-logo { height: 50px; } }
.brand-mark {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav-links {
  display: flex;
  gap: clamp(18px, 2.5vw, 36px);
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--ink);
  transition: right 0.4s ease;
}
.nav-links a:hover::after { right: 0; }
.btn,
a.btn {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 10px;
  padding: 12px 20px;
  font-size: 13px;
  letter-spacing: 0.04em;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bone);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}
.btn:hover,
a.btn:hover { background: transparent; color: var(--ink); }
.btn.ghost,
a.btn.ghost {
  background: transparent;
  color: var(--ink);
}
.btn.ghost:hover,
a.btn.ghost:hover { background: var(--ink); color: var(--bone); }
.btn.small { padding: 9px 14px; font-size: 12px; }
.btn-arrow { transform: translateX(0); transition: transform 0.25s; }
.btn:hover .btn-arrow { transform: translateX(3px); }
@media (max-width: 720px) {
  .nav-links a:not(.btn) { display: none; }
}

/* ── hero ───────────────────────── */
.hero {
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(72px, 9vw, 140px);
}
.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero-title {
  font-family: var(--f-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.92;
  font-size: clamp(56px, 11vw, 168px);
  margin: 0;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--bush);
}
.hero-figure {
  margin-top: clamp(28px, 4vw, 56px);
  position: relative;
  aspect-ratio: 16 / 8.5;
  width: 100%;
  overflow: hidden;
}
.hero-film { position: absolute; inset: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-film .reel-slide { border-radius: 0; }
.hero-caption { z-index: 3; }
.hero-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: var(--bone);
  gap: 24px;
}
.hero-caption-headline {
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.15;
  max-width: 28ch;
  margin: 0;
  text-shadow: 0 1px 24px oklch(0 0 0 / 0.5);
}
.hero-caption-meta {
  text-align: right;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: oklch(0 0 0 / 0.35);
  padding: 8px 12px;
  border-radius: 1px;
  backdrop-filter: blur(4px);
}
.hero-strip {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hair);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.hero-strip .cell {
  background: var(--bone);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-strip .cell .k { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); }
.hero-strip .cell .v { font-family: var(--f-display); font-size: clamp(18px, 1.6vw, 22px); }
.hero-strip .cell .sub { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); margin-top: 3px; }
@media (max-width: 720px) {
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ── two-column intro ────────────── */
.intro-block p {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.3;
  margin: 0 0 0.6em;
  text-wrap: pretty;
}
.intro-block p em { color: var(--bush); font-style: italic; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: clamp(28px, 4vw, 56px);
  flex-wrap: wrap;
}
.section-head h2 {
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.015em;
  font-size: clamp(40px, 5.6vw, 88px);
  margin: 0;
  max-width: 16ch;
}
.section-head h2 em { font-style: italic; color: var(--bush); }
.section-head .meta { text-align: right; min-width: 200px; }

/* ── feature tour ─────────────────────── */
.feature {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(48px, 7vw, 120px) var(--gutter);
}
.feature .page { padding: 0; }
.feature .section-head h2 { color: var(--bone); }
.feature .section-head h2 em { color: oklch(0.75 0.08 145); }
.feature .mono, .feature .eyebrow { color: oklch(0.72 0.012 80); }
.feature .rule { background: oklch(1 0 0 / 0.14); }
.feature-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 820px) {
  .feature-grid { grid-template-columns: 1fr; }
}
.feature-stack { display: grid; gap: 14px; }
.feature-thumb-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── stat row ────── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 32px;
  border-top: 1px solid oklch(1 0 0 / 0.12);
  margin-top: 24px;
}
.stat-row .cell {
  padding: 22px 24px 22px 4px;
  border-right: 1px solid oklch(1 0 0 / 0.12);
}
.stat-row .cell:last-child { border-right: 0; }
.stat-row .k { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: oklch(0.7 0.012 80); margin-bottom: 6px; }
.stat-row .v { font-family: var(--f-display); font-size: clamp(17px, 1.7vw, 21px); line-height: 1.5; }
@media (max-width: 720px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }

/* ── experience cards ────────── */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
}
@media (max-width: 820px) { .exp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .exp-grid { grid-template-columns: 1fr; } }
.exp-card {
  background: var(--bone);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
}
.exp-card .num { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em; color: var(--mute); }
.exp-card h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.05;
  margin: 0;
}
.exp-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.exp-card .tag {
  margin-top: auto;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bush);
}

/* ── itinerary ────────────────────── */
.itinerary {
  border-top: 1px solid var(--hair);
}
.day-row {
  display: grid;
  grid-template-columns: 100px 220px 1fr auto;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--hair);
  align-items: start;
}
.day-row .day {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--mute);
  padding-top: 4px;
}
.day-row h4 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 28px;
  margin: 0;
  line-height: 1.05;
}
.day-row p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}
.day-row .activities {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bush);
  white-space: nowrap;
  padding-top: 8px;
}
@media (max-width: 820px) {
  .day-row { grid-template-columns: 1fr; gap: 8px; }
  .day-row .activities { white-space: normal; }
}

/* ── rates ──────────────────── */
.rates-wrap {
  background: var(--paper);
  padding: clamp(40px, 6vw, 80px) var(--gutter);
}
.rates-toggle {
  display: inline-flex;
  background: var(--bone);
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
}
.rates-toggle button {
  border: 0;
  background: transparent;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-soft);
  transition: 0.2s;
}
.rates-toggle button.on {
  background: var(--ink);
  color: var(--bone);
}
.rates-table {
  margin-top: 32px;
  border-top: 1px solid var(--hair);
}
.cur-select {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cur-select .mono {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}
.cur-select select {
  font: inherit;
  font-size: 13px;
  color: var(--ink);
  background: var(--bone);
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 9px 30px 9px 14px;
  appearance: none;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%), linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
  background-position: calc(100% - 16px) 52%, calc(100% - 11px) 52%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  transition: border-color 0.2s;
}
.cur-select select:hover { border-color: var(--ink); }
.cur-select select:focus { outline: none; border-color: var(--ink); }
.rate-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  padding: 22px 0;
  border-bottom: 1px solid var(--hair);
  align-items: baseline;
  gap: 16px;
}
.rate-row.head {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  padding-bottom: 12px;
  padding-top: 12px;
}
.rate-row .name { font-family: var(--f-display); font-size: clamp(20px, 2vw, 26px); }
.rate-row .name small { display:block; font-family: var(--f-body); font-size: 12px; color: var(--mute); letter-spacing: 0; text-transform: none; margin-top: 4px; }
.rate-row .price { font-family: var(--f-display); font-size: clamp(18px, 1.8vw, 24px); }
.rate-row .price small { display:block; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); margin-top: 2px; }
@media (max-width: 720px) {
  .rate-row { grid-template-columns: 1fr 1fr; }
  .rate-row.head { display: none; }
  .rate-row .name { grid-column: 1 / -1; }
}
.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 720px) { .included-grid { grid-template-columns: 1fr; } }
.included-grid ul { list-style: none; padding: 0; margin: 0; }
.included-grid li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--hair);
  font-size: 14px;
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.included-grid li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--bush);
  border-radius: 50%;
  flex: none;
  transform: translateY(-2px);
}
.included-grid.excludes li::before { background: var(--mute); border-radius: 0; }

/* ── gallery ──────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  grid-auto-flow: dense;
}
.gallery .ph { border-radius: 2px; }
.gallery .g1 { grid-column: span 7; aspect-ratio: 7 / 6; }
.gallery .g2 { grid-column: span 5; aspect-ratio: 5 / 6; }
.gallery .g3 { grid-column: span 4; aspect-ratio: 4 / 5; }
.gallery .g4 { grid-column: span 5; aspect-ratio: 5 / 5; }
.gallery .g5 { grid-column: span 3; aspect-ratio: 3 / 5; }
@media (max-width: 820px) {
  .gallery > * { grid-column: span 6 !important; aspect-ratio: 1 / 1 !important; }
}

/* ── testimonials ─────── */
.quote {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin: 0 0 24px;
  text-wrap: pretty;
  text-indent: -0.44em;
  hanging-punctuation: first;
}
.quote-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  border-top: 1px solid var(--hair);
  padding-top: clamp(28px, 4vw, 56px);
}
@media (max-width: 820px) { .testi-grid { grid-template-columns: 1fr; } }

/* ── inquiry form ──────────── */
.form-card {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(40px, 6vw, 80px);
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 64px);
}
@media (max-width: 820px) { .form-card { grid-template-columns: 1fr; } }
.form-card h2 { color: var(--bone); }
.form-card .eyebrow, .form-card .mono { color: oklch(0.72 0.012 80); }
.form-card .lead { color: oklch(0.88 0.012 80); }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(0.72 0.012 80);
}
.field input, .field select, .field textarea {
  font: inherit;
  background: transparent;
  border: 0;
  border-bottom: 1px solid oklch(1 0 0 / 0.22);
  color: var(--bone);
  padding: 10px 0;
  font-size: 15px;
  outline: none;
  border-radius: 0;
  font-family: var(--f-body);
}
.field input::placeholder, .field textarea::placeholder { color: oklch(0.55 0.012 80); }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: oklch(0.85 0.08 145); }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--bone) 50%), linear-gradient(135deg, var(--bone) 50%, transparent 50%); background-position: calc(100% - 12px) 50%, calc(100% - 7px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 24px; }
.field select option { background: var(--ink); color: var(--bone); }
.field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); opacity: 0.65; cursor: pointer; }
.lform .field input[type="date"]::-webkit-calendar-picker-indicator { filter: none; opacity: 0.6; }
.form-actions {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.form-card .btn {
  border-color: var(--bone);
  background: var(--bone);
  color: var(--ink);
}
.form-card .btn:hover { background: transparent; color: var(--bone); }
.form-note { font-size: 12px; color: oklch(0.72 0.012 80); max-width: 32ch; }

/* ── footer ──────── */
.footer {
  border-top: 1px solid var(--hair);
  padding: clamp(56px, 7vw, 96px) 0 32px;
  font-size: 13px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  margin-bottom: 48px;
}
@media (max-width: 720px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
.footer h5 {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 14px;
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--bush); }
.footer-base {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--hair);
  padding-top: 24px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  gap: 16px;
  flex-wrap: wrap;
}

/* ── misc ──── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--hair);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.pill .dot { width: 6px; height: 6px; background: var(--bush); border-radius: 50%; }
.feature .pill { border-color: oklch(1 0 0 / 0.2); color: oklch(0.85 0.012 80); }

/* sun mark glyph */
.glyph {
  width: 28px; height: 28px;
  flex: none;
  display: inline-block;
}

/* ════════════════════════════════════════════════
   MULTI-PAGE CHROME (lodge / experiences / rates /
   reviews / contact) — shared content patterns
   ════════════════════════════════════════════════ */

/* page hero */
.phero { padding-top: clamp(40px, 5vw, 72px); padding-bottom: clamp(28px, 3.5vw, 52px); }
.phero .eyebrow { margin-bottom: 16px; }
.phero h1 {
  font-family: var(--f-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.92;
  font-size: clamp(48px, 9vw, 128px);
  margin: 0;
  max-width: 14ch;
}
.phero h1 em { font-style: italic; font-weight: 400; color: var(--bush); }
.phero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  flex-wrap: wrap;
}
.phero-top .lead { max-width: 42ch; }

/* full-bleed banner image */
.banner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border-radius: 2px;
  background: var(--sand);
}
.banner img { width: 100%; height: 100%; object-fit: cover; }
.banner.tall { aspect-ratio: 16 / 9; }
@media (max-width: 720px) { .banner, .banner.tall { aspect-ratio: 4 / 3; } }

/* alternating split rows: image + prose */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(40px, 6vw, 96px) 0;
}
.split.flip .split-media { order: 2; }
.split-media {
  position: relative;
  aspect-ratio: 4 / 3.4;
  overflow: hidden;
  border-radius: 2px;
  background: var(--sand);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-body h2 {
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.015em;
  font-size: clamp(32px, 4.4vw, 60px);
  margin: 0 0 20px;
}
.split-body h2 em { font-style: italic; color: var(--bush); }
.split-body p { color: var(--ink-soft); font-size: 16px; line-height: 1.6; margin: 0 0 1em; max-width: 46ch; }
.split-body .eyebrow { margin-bottom: 16px; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
  .split.flip .split-media { order: 0; }
}

/* spec list (lodge details) */
.spec {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
  margin: 8px 0;
}
@media (max-width: 720px) { .spec { grid-template-columns: repeat(2, 1fr); } }
.spec .cell { background: var(--bone); padding: 20px; }
.spec .k { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); margin-bottom: 8px; }
.spec .v { font-family: var(--f-display); font-size: clamp(20px, 2vw, 28px); line-height: 1.05; }
.spec .v small { display: block; font-family: var(--f-body); font-size: 12px; color: var(--ink-soft); letter-spacing: 0; margin-top: 4px; }

/* feature list with checks */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.checklist li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.checklist li::before {
  content: '';
  width: 8px; height: 8px;
  margin-top: 8px;
  background: var(--bush);
  border-radius: 50%;
}

/* experience cards with imagery */
.xp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .xp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .xp-grid { grid-template-columns: 1fr; } }
.xp-card {
  border: 1px solid var(--hair);
  border-radius: 3px;
  overflow: hidden;
  background: var(--bone);
  display: flex;
  flex-direction: column;
}
.xp-card .xp-img { aspect-ratio: 3 / 2; overflow: hidden; background: var(--sand); }
.xp-card .xp-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.2,0,0.1,1); }
.xp-card:hover .xp-img img { transform: scale(1.04); }
.xp-card .xp-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.xp-card .xp-tag { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bush); }
.xp-card h3 { font-family: var(--f-display); font-weight: 500; font-size: 25px; line-height: 1.05; margin: 0; }
.xp-card p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--ink-soft); }

/* package cards */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .pkg-grid { grid-template-columns: 1fr; } }
.pkg {
  border: 1px solid var(--hair);
  border-radius: 3px;
  overflow: hidden;
  background: var(--bone);
  display: flex;
  flex-direction: column;
}
.pkg.feature-pkg { border-color: var(--ink); box-shadow: 0 20px 60px oklch(0 0 0 / 0.08); }
.pkg .pkg-img { aspect-ratio: 16 / 9; overflow: hidden; background: var(--sand); position: relative; }
.pkg .pkg-img img { width: 100%; height: 100%; object-fit: cover; }
.pkg .pkg-badge {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--ink); color: var(--bone); padding: 6px 10px; border-radius: 999px;
}
.pkg .pkg-body { padding: 24px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.pkg .pkg-nights { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); }
.pkg h3 { font-family: var(--f-display); font-weight: 500; font-size: 30px; line-height: 1; margin: 0; }
.pkg .pkg-desc { font-size: 14px; line-height: 1.55; color: var(--ink-soft); margin: 0; }
.pkg .pkg-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 7px; }
.pkg .pkg-list li { font-size: 13px; color: var(--ink-soft); display: grid; grid-template-columns: 14px 1fr; gap: 8px; align-items: start; }
.pkg .pkg-list li::before { content: ''; width: 5px; height: 5px; margin-top: 7px; background: var(--bush); border-radius: 50%; }
.pkg .pkg-list li.pkg-opt { color: var(--bush); font-style: italic; margin-top: 3px; }
.pkg .pkg-list li.pkg-opt::before { background: transparent; border: 1px solid var(--bush); }
.pkg .pkg-foot { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--hair); display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; }
.pkg .pkg-price { font-family: var(--f-display); font-size: 30px; line-height: 1; }
.pkg .pkg-price small { display: block; font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); margin-top: 10px; }

/* review cards */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .rev-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .rev-grid { grid-template-columns: 1fr; } }
.rev {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hair);
  border-radius: 3px;
  padding: 24px;
  background: var(--bone);
}
.rev .rev-stars { color: var(--bush); letter-spacing: 2px; font-size: 13px; margin-bottom: 12px; }
.rev .rev-quote { font-family: var(--f-display); font-size: 20px; line-height: 1.3; margin: 0 0 16px; text-wrap: pretty; flex: 1; }
.rev .rev-meta { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); }
.rev .rev-meta b { color: var(--ink); font-weight: 500; }

/* score banner */
.score {
  display: flex;
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  flex-wrap: wrap;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--hair);
  border-radius: 4px;
  background: var(--paper);
}
.score .big { font-family: var(--f-display); font-size: clamp(56px, 8vw, 92px); line-height: 1; }
.score .big small { display: block; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); margin-top: 14px; }
.score .score-stars { color: var(--bush); font-size: 22px; letter-spacing: 3px; }

/* ── video reel player ───────────────── */
.reel {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 3px;
  background: #111;
  cursor: pointer;
}
.reel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.reel-slide.on { opacity: 1; }
.reel-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: kenburns 7s linear forwards;
  animation-play-state: paused;
}
.reel-slide.on img { animation-play-state: running; }
@keyframes kenburns {
  from { transform: scale(1.02) translate(0, 0); }
  to   { transform: scale(1.16) translate(-1.5%, -1.5%); }
}
.reel-grade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, oklch(0 0 0 / 0.66) 0%, oklch(0 0 0 / 0.08) 42%, oklch(0 0 0 / 0.28) 100%);
  pointer-events: none;
}
.reel-cap {
  position: absolute;
  left: clamp(20px, 4vw, 56px);
  right: clamp(20px, 4vw, 56px);
  bottom: clamp(48px, 7vw, 96px);
  color: oklch(0.97 0.012 85);
  pointer-events: none;
}
.reel-cap .rc-eyebrow { font-family: var(--f-mono); font-size: clamp(9px, 1vw, 11px); letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.8; margin-bottom: 12px; }
.reel-cap .rc-line {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(26px, 4.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  max-width: 18ch;
  margin: 0;
  text-shadow: 0 2px 40px oklch(0 0 0 / 0.4);
}
.reel-cap .rc-line em { font-style: italic; color: oklch(0.86 0.07 145); }
.reel-cap .rc-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(20px, 3vw, 40px);
  line-height: 1.18;
  max-width: 24ch;
  margin: 0;
  text-shadow: 0 2px 40px oklch(0 0 0 / 0.5);
}
.reel-cap .rc-by { font-family: var(--f-mono); font-size: clamp(9px, 1vw, 11px); letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.82; margin-top: 14px; }
.reel-bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  display: flex;
  gap: 3px;
  padding: 0 0 0 0;
  z-index: 3;
}
.reel-bar .seg { flex: 1; background: oklch(1 0 0 / 0.25); position: relative; overflow: hidden; }
.reel-bar .seg i { position: absolute; inset: 0; transform-origin: left; transform: scaleX(0); background: oklch(0.97 0.012 85); }
.reel-bar .seg.done i { transform: scaleX(1); }
.reel-bar .seg.run i { animation: segfill 7s linear forwards; }
@keyframes segfill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.reel-ctrl {
  position: absolute;
  top: clamp(16px, 2.5vw, 28px);
  right: clamp(16px, 2.5vw, 28px);
  display: flex;
  gap: 8px;
  z-index: 4;
}
.reel-ctrl button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid oklch(1 0 0 / 0.32);
  background: oklch(0 0 0 / 0.34);
  color: oklch(0.97 0.012 85);
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  transition: 0.2s;
}
.reel-ctrl button:hover { background: oklch(0 0 0 / 0.62); border-color: oklch(1 0 0 / 0.6); }
.reel-badge {
  position: absolute;
  top: clamp(16px, 2.5vw, 28px);
  left: clamp(16px, 2.5vw, 28px);
  z-index: 4;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: oklch(0.97 0.012 85);
  background: oklch(0 0 0 / 0.34);
  padding: 8px 12px; border-radius: 999px;
  backdrop-filter: blur(6px);
  display: inline-flex; align-items: center; gap: 8px;
}
.reel-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ember); }

/* ── section films grid ─────────────── */
.sfilms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(20px, 3vw, 40px) 0 0;
}
.sfilms .reel { aspect-ratio: 16 / 10; }
.sfilms .reel:nth-child(5) { grid-column: 1 / -1; aspect-ratio: 24 / 9; }
.sfilms .reel .reel-cap .rc-eyebrow { margin-bottom: 8px; }
.sfilms .reel .reel-cap .rc-line { font-size: clamp(24px, 3vw, 44px); }
@media (max-width: 760px) {
  .sfilms { grid-template-columns: 1fr; }
  .sfilms .reel,
  .sfilms .reel:nth-child(5) { aspect-ratio: 16 / 10; }
}

/* contact split */
.contact-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 820px) { .contact-split { grid-template-columns: 1fr; } }
.contact-aside .lead { margin-bottom: 24px; }
.contact-aside .ca-row { padding: 16px 0; border-top: 1px solid var(--hair); }
.contact-aside .ca-row .k { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); margin-bottom: 6px; }
.contact-aside .ca-row .v { font-family: var(--f-display); font-size: clamp(20px, 2vw, 26px); }
.contact-aside .ca-row .v a { text-decoration: none; }

/* light form (on bone bg) */
.lform { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; background: var(--bone); border: 2px solid var(--bush); border-radius: 6px; padding: clamp(24px, 3.5vw, 44px); }
.lform .field.full { grid-column: 1 / -1; }
.lform .field label { color: var(--mute); }
.lform .field input, .lform .field select, .lform .field textarea {
  border-bottom: 1px solid var(--hair);
  color: var(--ink);
}
.lform .field input::placeholder, .lform .field textarea::placeholder { color: var(--mute); }
.lform .field input:focus, .lform .field select:focus, .lform .field textarea:focus { border-bottom-color: var(--bush); }
.lform .field select { background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%), linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%); }
.lform .field select option { background: var(--bone); color: var(--ink); }
@media (max-width: 560px) { .lform { grid-template-columns: 1fr; } }

/* CTA band */
.cta-band {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(48px, 7vw, 104px) var(--gutter);
  text-align: center;
}
.cta-band h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(36px, 5.5vw, 76px);
  line-height: 1;
  margin: 0 auto 24px;
  max-width: 18ch;
}
.cta-band h2 em { font-style: italic; color: oklch(0.78 0.08 145); }
.cta-band p { color: oklch(0.82 0.012 80); max-width: 52ch; margin: 0 auto 32px; font-size: 16px; }
.cta-band .btn { border-color: var(--bone); background: var(--bone); color: var(--ink); }
.cta-band .btn:hover { background: transparent; color: var(--bone); }
.cta-band .btn.ghost { background: transparent; color: var(--bone); }
.cta-band .btn.ghost:hover { background: var(--bone); color: var(--ink); }

/* section heading helper for static pages */
.shead { margin-bottom: clamp(28px, 4vw, 52px); }
.shead .eyebrow { margin-bottom: 16px; }
.shead h2 {
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.015em;
  font-size: clamp(34px, 5vw, 76px);
  margin: 0;
  max-width: 18ch;
}
.shead h2 em { font-style: italic; color: var(--bush); }
.shead h2 .big18,
.section-head h2 .big18 { font-size: 1.55em; line-height: 0; font-variant-numeric: lining-nums; font-feature-settings: "lnum" 1, "onum" 0; }
.shead.center { text-align: center; }
.shead.center h2 { margin-left: auto; margin-right: auto; }

/* ══ MOBILE OPTIMISATION ══════════════════════════════════════
   Everything below is scoped to small screens only, so the
   desktop/laptop layout renders exactly as before. */
.nav-toggle { display: none; }
.mnav { display: none; }
@media (max-width: 720px) {
  /* hamburger */
  .nav-toggle { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 0 0 0 12px; background: transparent; border: 0; cursor: pointer; -webkit-tap-highlight-color: transparent; }
  .nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--ink); transition: transform 0.28s ease, opacity 0.2s ease; }
  body.mnav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  body.mnav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.mnav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  /* the desktop CTA moves into the drawer so the bar stays uncluttered */
  .nav-links .btn.small { display: none; }
  /* drawer */
  .mnav { display: block; position: absolute; left: 0; right: 0; top: 100%; background: var(--bone); border-bottom: 1px solid var(--hair); max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
  body.mnav-open .mnav { max-height: 80vh; overflow-y: auto; }
  .mnav a { display: flex; align-items: center; min-height: 52px; padding: 14px var(--gutter); font-family: var(--f-display); font-size: 20px; line-height: 1.2; color: var(--ink); text-decoration: none; border-top: 1px solid var(--hair); }
  .mnav a:first-child { border-top: 0; }
  .mnav a[aria-current="page"] { color: var(--bush); }
  .mnav a.mnav-cta { gap: 8px; background: var(--ink); color: var(--bone); font-size: 18px; }
  /* 16px inputs stop iOS Safari zooming in when a field is focused */
  .field input, .field select, .field textarea,
  .lform .field input, .lform .field select, .lform .field textarea { font-size: 16px; }
  /* comfortable tap targets */
  .btn, a.btn { min-height: 44px; }
  .btn.small { padding: 12px 16px; }
  /* no-wrap inline spans must be allowed to wrap on narrow screens */
  .stat-row .v span { white-space: normal !important; }
  /* media can never push the page sideways */
  img, video { max-width: 100%; }
}
@media (max-width: 560px) {
  .footer-cols { grid-template-columns: 1fr; }
  .hero-strip { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .spec { grid-template-columns: 1fr; }
  .g-tabs { gap: 16px; }
}

/* ══ MOBILE REEL CAPTIONS ═══════════════════════════════════
   Captions sat outside their frames on narrow screens. Small
   screens only — desktop sizing is unchanged. */
@media (max-width: 720px) {
  .reel-cap { padding: clamp(14px, 4vw, 22px); right: 0; }
  .reel-cap .rc-line,
  .sfilms .reel .reel-cap .rc-line { font-size: clamp(17px, 5.2vw, 25px); line-height: 1.15; max-width: 100%; overflow-wrap: break-word; }
  .reel-cap .rc-eyebrow { font-size: 9px; letter-spacing: 0.14em; }
  .reel-cap .rc-by { margin-top: 8px; font-size: 9px; }
  .reel-badge { font-size: 9px; padding: 6px 10px; letter-spacing: 0.12em; }
  .reel-ctrl button { width: 38px; height: 38px; }
  /* hero headline + caption fit the frame */
  .hero-caption-headline { font-size: clamp(15px, 4vw, 19px); }
}
@media (max-width: 480px) {
  .reel-cap .rc-line,
  .sfilms .reel .reel-cap .rc-line { font-size: clamp(16px, 5vw, 21px); }
  .reel-cap .rc-line br { display: none; }
}

/* ══ MOBILE ENQUIRY FORM ════════════════════════════════════
   The two-column field grid and the estimate row were too wide
   for phones. Small screens only. */
@media (max-width: 620px) {
  .form-grid { grid-template-columns: 1fr; gap: 16px; }
  .form-grid .field { grid-column: 1 / -1; }
  /* estimate block: stack the total above the per-person figure */
  .form-grid > .full > div[style*="space-between"] { flex-direction: column; align-items: flex-start !important; gap: 6px !important; }
  .form-grid > .full > div[style*="space-between"] > div { text-align: left !important; }
  /* note + button stack instead of squeezing side by side */
  .form-actions { flex-direction: column; align-items: stretch; gap: 18px; }
  .form-note { max-width: 100%; }
  .form-actions .btn { align-self: stretch !important; justify-content: center; }
}
@media (max-width: 720px) {
  /* the form card's own padding was eating the field width */
  .form-card { padding: clamp(22px, 5vw, 32px); }
  .lform { padding: clamp(20px, 5vw, 28px); }
  /* estimate currency selector wraps under its label neatly */
  .cur-select { flex-wrap: wrap; }
}
