/* ============================================
   POVERTY TO PARADISE — design system v3
   Green primary · Navy secondary · Gold accent
   Official palette: #2A7A3B · #0E3A68 · #DDC018
   ============================================ */

:root {
  --white: #ffffff;
  --black: #000000;
  --black-soft: #111111;

  --green: #2A7A3B;
  --green-deep: #1e5c2c;
  --green-light: #3d9e52;
  --green-pale: #eef6f0;

  --navy: #0E3A68;
  --navy-deep: #0a2d52;
  --navy-light: #1a5298;

  --gold: #DDC018;
  --gold-deep: #b8a012;
  --gold-light: #e8d040;
  --gold-pale: #faf5cc;

  --ink: #111111;
  --ink-soft: #505050;
  --line: #dde5dd;
  --paper: #f7faf7;

  --font-display: "DM Serif Display", Georgia, serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
  --font-mono: "Space Mono", "Courier New", monospace;

  --max-width: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- header ---------- */

.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 20;
  padding: 22px 0;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0.01em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.4);
  flex-shrink: 0;
}

.site-header.on-light { position: static; background: var(--white); border-bottom: 1px solid var(--line); }
.site-header.on-light .brand { color: var(--black); }
.site-header.on-light .brand-logo { border-color: var(--line); }
.site-header.on-light nav a { color: var(--black); }

nav { display: flex; gap: 26px; }

nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

nav a:hover, nav a.active { border-color: var(--gold); color: var(--gold); }
.site-header.on-light nav a:hover,
.site-header.on-light nav a.active { color: var(--green); border-color: var(--green); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 80px;
  background-size: cover;
  background-position: center;
}

.hero.short { min-height: 140px; padding: 40px 0; }

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,58,104,0.55) 0%, rgba(14,58,104,0.25) 40%, rgba(0,0,0,0.84) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.4vw, 60px);
  line-height: 1.05;
  color: var(--white);
  margin: 0 0 22px;
  font-weight: 600;
}

.hero p.lede {
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  max-width: 540px;
  margin: 0 0 34px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- horizon divider ---------- */

.horizon-divider {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green) 15%, var(--green) 85%, transparent);
}

.horizon-divider::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  padding: 0 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  font-family: var(--font-body);
}

.btn-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: var(--green-light); border-color: var(--green-light); transform: translateY(-1px); }

.btn-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }

.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-light); border-color: var(--navy-light); transform: translateY(-1px); }

.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }

.btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: var(--green); color: var(--white); border-color: var(--green); }

/* ---------- log strip (stats) ---------- */

.logstrip { background: var(--black); }

.logstrip .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 36px 32px;
}

.logstat { text-align: left; border-left: 2px solid rgba(221,192,24,0.4); padding-left: 20px; }

.logstat .num {
  font-family: var(--font-mono);
  font-size: clamp(24px, 3.2vw, 34px);
  color: var(--gold);
  display: block;
}

.logstat .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 720px) {
  .logstrip .wrap { grid-template-columns: 1fr; }
}

/* ---------- sections ---------- */

section { padding: 88px 0; }
.section-narrow { max-width: 760px; margin: 0 auto; }
.section-head { max-width: 620px; margin-bottom: 48px; }

.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 14px;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--black);
  margin: 0 0 16px;
  line-height: 1.12;
  font-weight: 600;
}

h3 {
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--black);
  margin: 0 0 10px;
  font-weight: 600;
}

p { margin: 0 0 16px; color: var(--ink-soft); }

/* ---------- photo + text split ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 2px;
}

.split.reverse .split-media { order: 2; }
.split.reverse .split-text { order: 1; }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media,
  .split.reverse .split-text { order: unset; }
  .split img { height: 280px; }
}

/* ---------- process steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step { position: relative; padding-top: 8px; border-top: 2px solid var(--green); }

.step .step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--navy);
  display: block;
  margin-bottom: 14px;
}

@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; }
}

/* ---------- cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 2px solid var(--green);
  border-radius: 2px;
  padding: 32px 28px;
}

.card .tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-block;
  margin-bottom: 12px;
}

@media (max-width: 860px) {
  .card-grid { grid-template-columns: 1fr; }
}

/* ---------- service cards (Travel Services) ---------- */

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.service-card {
  border-radius: 2px;
  overflow: hidden;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-top: 3px solid var(--gold);
}

.service-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(14,58,104,0.25); }

.service-card-body {
  padding: 36px 32px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card .s-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  margin: 0 0 14px;
}

.service-card p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  margin: 0 0 28px;
  flex: 1;
}

.service-card .btn { align-self: flex-start; }

@media (max-width: 720px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* ---------- vault section ---------- */

.vault-section { background: var(--navy); }
.vault-section h2 { color: var(--white); }
.vault-section > .wrap > p { color: rgba(255,255,255,0.75); }
.vault-section .section-label { color: var(--gold); }

.vault-logo-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.vault-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.vault-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.vault-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 2px solid var(--gold);
  border-radius: 2px;
  padding: 24px 20px;
  text-decoration: none;
  color: var(--white);
  transition: background 0.2s ease, transform 0.2s ease;
  display: block;
}

.vault-item:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-2px);
}

.vault-item .v-icon {
  font-size: 22px;
  margin-bottom: 12px;
  display: block;
}

.vault-item .v-type {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.vault-item .v-title {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--white);
  line-height: 1.25;
  display: block;
}

@media (max-width: 860px) { .vault-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- site index ---------- */

.site-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.site-index-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--green);
  border-radius: 2px;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  transition: border-left-color 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
  display: block;
}

.site-index-item:hover {
  border-left-color: var(--navy);
  transform: translateX(3px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

.site-index-item .si-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  display: block;
  margin-bottom: 6px;
}

.site-index-item h3 {
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--black);
}

.site-index-item p {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 860px) { .site-index-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-index-grid { grid-template-columns: 1fr; } }

/* ---------- photo card grid (group trips) ---------- */

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.photo-card {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.photo-card img { width: 100%; height: 100%; object-fit: cover; }

.photo-card .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  color: var(--white);
  padding: 40px 18px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
}

@media (max-width: 860px) { .photo-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .photo-grid { grid-template-columns: 1fr; } }

/* ---------- band (dark navy section) ---------- */

.band { background: var(--navy); color: var(--white); }
.band h2 { color: var(--white); }
.band p { color: rgba(255,255,255,0.75); }
.band .section-label { color: var(--gold); }

/* ---------- form ---------- */

.form-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 2px solid var(--green);
  border-radius: 2px;
  padding: 40px;
}

.form-embed {
  width: 100%;
  min-height: 900px;
  border: none;
  border-radius: 2px;
  background: #fff;
}

.form-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px dashed var(--line);
  padding: 16px 18px;
  border-radius: 2px;
}

/* ---------- footer ---------- */

footer { background: var(--black); color: rgba(255,255,255,0.7); padding: 56px 0 32px; }

footer .foot-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(42,122,59,0.35);
  margin-bottom: 24px;
}

footer .brand { color: var(--white); margin-bottom: 8px; }
footer .brand-logo { border-color: rgba(255,255,255,0.2); }
footer nav { flex-wrap: wrap; }
footer nav a { color: rgba(255,255,255,0.7); }
footer nav a:hover { color: var(--gold); border-color: transparent; }

.fine-print { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.7; }

.disclosure {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.5);
  max-width: 640px;
}

/* ---------- trip photo cards ---------- */

.trip-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trip-card {
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.trip-card-photo { position: relative; }
.trip-card-photo img { width: 100%; height: auto; display: block; }

.trip-num-badge {
  position: absolute;
  top: 12px; left: 12px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trip-card-body {
  padding: 20px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.trip-card-body .trip-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}

.trip-card-body h3 { font-size: 17px; margin: 0 0 6px; color: var(--black); }
.trip-card-body .trip-detail { font-size: 13px; color: var(--ink-soft); margin: 0 0 4px; }
.trip-card-body .trip-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--green);
  margin: 8px 0 0;
}
.trip-card-body .btn { margin-top: auto; padding-top: 16px; }

@media (max-width: 1000px) { .trip-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .trip-cards-grid { grid-template-columns: 1fr; } }

/* ---------- youtube grid ---------- */

.yt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.yt-video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 2px;
  overflow: hidden;
  background: var(--black);
}

.yt-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 860px) { .yt-grid { grid-template-columns: 1fr; } }

/* ---------- departure cards ---------- */

.departures-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.departure-card {
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.dep-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.dep-badge .dep-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.dep-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.dep-line { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); margin-bottom: 4px; }
.dep-ship { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--black); line-height: 1.2; margin-bottom: 12px; }
.dep-port { font-size: 12px; color: var(--ink-soft); margin-bottom: 10px; }
.dep-tag { font-family: var(--font-display); font-style: italic; font-size: 14px; color: var(--green); margin-bottom: 10px; }
.dep-days { margin-top: auto; font-family: var(--font-mono); font-size: 11px; color: var(--black); border-top: 1px solid var(--line); padding-top: 10px; }

@media (max-width: 1000px) { .departures-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .departures-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .departures-grid { grid-template-columns: 1fr; } }

.price-banner {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 18px 24px;
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-top: 24px;
}
.price-banner .amt { color: var(--gold); font-weight: 700; }
.price-banner .fine { display: block; font-size: 10px; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* ---------- about photo ---------- */

.split .about-photo {
  width: 100%;
  height: auto;
  object-fit: unset;
  border-radius: 2px;
}

/* ---------- contact ---------- */

.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-detail { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-detail .k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  min-width: 110px;
}

/* ---------- playlist cards ---------- */

.playlist-category {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 40px 0 14px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.playlist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.playlist-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 14px 18px;
  text-decoration: none;
  color: var(--white);
  font-size: 14px;
  line-height: 1.3;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.playlist-card:hover { background: rgba(255,255,255,0.12); border-color: rgba(221,192,24,0.4); }

.playlist-card .pl-count {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 860px) { .playlist-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .playlist-grid { grid-template-columns: 1fr; } }

/* ============================================
   MOBILE NAVIGATION
   ============================================ */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  color: var(--white);
  line-height: 1;
}

.site-header.on-light .nav-toggle { color: var(--black); }

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 680px) {
  .nav-toggle { display: block; }
  .site-header .wrap { position: relative; }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(14,58,104,0.97);
    padding: 8px 0 16px;
    z-index: 30;
  }

  nav.open { display: flex; }
  nav a { padding: 14px 24px; font-size: 15px; letter-spacing: 0.04em; border-bottom: none; }

  .wrap { padding: 0 20px; }
  section { padding: 56px 0; }
  .hero { padding-top: 100px; padding-bottom: 56px; }
  .logstrip .wrap { padding: 28px 20px; }
  .section-head { margin-bottom: 32px; }
  .form-panel { padding: 24px 20px; }
  footer { padding: 44px 0 24px; }
  footer nav { gap: 16px; }
  .vault-grid { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .vault-grid { grid-template-columns: 1fr; }
  .site-index-grid { grid-template-columns: 1fr; }
}

/* ==================================================
   FUNCTION-FIRST HOMEPAGE HERO
   ================================================== */

.home-hero {
  background: #ffffff;
}

/* Short cruise banner */

.hero-banner {
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  background-image:
    url("https://images.unsplash.com/photo-1554254648-2d58a1bc3fd5?q=80&w=2000&auto=format&fit=crop");
  background-size: cover;
  background-position: center 58%;
  overflow: hidden;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(14, 58, 104, 0.97) 0%,
      rgba(14, 58, 104, 0.91) 42%,
      rgba(42, 122, 59, 0.67) 72%,
      rgba(0, 0, 0, 0.25) 100%
    );
}

.hero-banner-content {
  position: relative;
  z-index: 2;
  padding-top: 35px;
  padding-bottom: 35px;
}

.hero-kicker {
  margin: 0 0 12px;
  color: #DDC018;
  font-family: "Space Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.hero-banner h1 {
  max-width: 720px;
  margin: 0;
  color: #ffffff;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1;
}

.hero-description {
  max-width: 660px;
  margin: 20px 0 0;
  color: #ffffff;
  font-size: 1.12rem;
  line-height: 1.65;
}

/* Clear visitor pathways */

.hero-pathways {
  padding: 38px 0 52px;
  background: #ffffff;
  border-bottom: 7px solid #DDC018;
}

.hero-pathways h2 {
  margin: 0 0 24px;
  color: #0E3A68;
  font-family: "DM Sans", sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  text-align: center;
}

.hero-pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hero-pathway-card {
  display: flex;
  gap: 18px;
  min-height: 185px;
  padding: 26px;
  color: #000000;
  text-decoration: none;
  background: #ffffff;
  border: 2px solid #0E3A68;
  border-top: 7px solid #2A7A3B;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.hero-pathway-card:hover {
  transform: translateY(-4px);
  border-color: #2A7A3B;
  box-shadow: 0 12px 28px rgba(14, 58, 104, 0.16);
}

.pathway-number {
  color: #DDC018;
  font-family: "Space Mono", monospace;
  font-size: 1rem;
  font-weight: 700;
}

.hero-pathway-card h3 {
  margin: 0 0 9px;
  color: #0E3A68;
  font-family: "DM Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.hero-pathway-card p {
  margin: 0 0 18px;
  color: #333333;
  font-size: 0.96rem;
  line-height: 1.55;
}

.pathway-link {
  color: #2A7A3B;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Mobile */

@media (max-width: 850px) {
  .hero-banner {
    min-height: 310px;
    background-position: 62% center;
  }

  .hero-banner-overlay {
    background: rgba(14, 58, 104, 0.9);
  }

  .hero-banner-content {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .hero-pathway-grid {
    grid-template-columns: 1fr;
  }

  .hero-pathway-card {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .hero-banner {
    min-height: 290px;
  }

  .hero-banner h1 {
    font-size: 2.45rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-pathways {
    padding: 30px 0 40px;
  }

  .hero-pathways h2 {
    font-size: 1.4rem;
  }
}

/* Keep homepage navigation visible on white header */

.site-header {
  background: #ffffff;
}

.site-header .brand {
  color: #0E3A68;
}

.site-header nav a {
  color: #0E3A68;
}

.site-header nav a:hover,
.site-header nav a.active {
  color: #DDC018;
}

.site-header nav a.active::after {
  background: #DDC018;
}

/* ==================================================
   HOMEPAGE OPTIONS GRID
   ================================================== */

.home-options {
  padding: 42px 0 56px;
  background: #ffffff;
}

.options-label {
  margin: 0 0 8px;
  color: #2A7A3B;
  font-family: "Space Mono", monospace;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-align: center;
}

.home-options h2 {
  margin: 0 0 30px;
  color: #0E3A68;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  text-align: center;
}

.home-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.home-option-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: #000000;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(14, 58, 104, 0.1);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.home-option-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(14, 58, 104, 0.17);
}

.home-option-image {
  width: 100%;
  height: 215px;
  display: block;
  object-fit: cover;
}

.home-option-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.home-option-content h3 {
  margin: 0 0 10px;
  color: #0E3A68;
  font-family: "DM Serif Display", serif;
  font-size: 1.45rem;
  line-height: 1.15;
}

.home-option-content p {
  margin: 0 0 22px;
  color: #333333;
  font-size: 0.98rem;
  line-height: 1.55;
}

.home-option-link {
  margin-top: auto;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Individual card colors */

.option-book {
  border-top: 5px solid #2468B4;
}

.option-book .home-option-link {
  color: #2468B4;
}

.option-group {
  border-top: 5px solid #2A7A3B;
}

.option-group .home-option-link {
  color: #2A7A3B;
}

.option-vault {
  border-top: 5px solid #6F2DA8;
}

.option-vault .home-option-link {
  color: #6F2DA8;
}

.option-videos {
  border-top: 5px solid #D93025;
}

.option-videos .home-option-link {
  color: #D93025;
}

.option-about {
  border-top: 5px solid #DDC018;
}

.option-about .home-option-link {
  color: #A88700;
}

.option-contact {
  border-top: 5px solid #0E3A68;
}

.option-contact .home-option-link {
  color: #0E3A68;
}

/* Tablet */

@media (max-width: 950px) {
  .home-options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */

@media (max-width: 620px) {
  .home-options {
    padding: 32px 0 42px;
  }

  .home-options-grid {
    grid-template-columns: 1fr;
  }

  .home-option-image {
    height: 200px;
  }

  .home-option-content {
    padding: 20px;
  }
}


/* ==================================================
   UPDATED FOOTER
   ================================================== */

.site-footer {
  padding: 52px 0 28px;
  color: #ffffff;
  background: #000000;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 34px;
}

.footer-brand .brand {
  color: #ffffff;
}

.footer-brand p {
  max-width: 360px;
  margin: 16px 0 0;
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h3 {
  margin: 0 0 6px;
  color: #DDC018;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
text-transform: none;

.footer-column a {
  color: #ffffff;
  font-size: 0.92rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: #DDC018;
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid #2A7A3B;
}

.footer-bottom p {
  margin: 6px 0;
  color: #aaaaaa;
  font-size: 0.78rem;
  line-height: 1.5;
}

@media (max-width: 850px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Contact Page */
.page-hero h1 {
  margin-bottom: 8px;
}

.page-hero .wrap > p {
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 0 18px;
}

.page-hero .wrap > p:first-of-type {
  font-size: 1.15rem;
}

.page-hero h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 22px 0 4px;
}
.about-hero {
  min-height: 140px;
  padding: 0;
  margin-top: 63px;
  align-items: center;
}

.about-hero .hero-content {
  width: 100%;
  text-align: center;
}

.about-hero h1 {
  margin: 0;
}


.book-hero {
  min-height: 320px;
  padding: 0;
   margin-top: 63px;
  display: flex;
  align-items: center;
}

.book-hero .hero-content {
  width: 100%;
}


.vault-banner {
  background-image: url("images/vault.png") !important;
  background-position: center;
}

.vault-banner .hero-banner-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(14, 58, 104, 0.94) 0%,
      rgba(14, 58, 104, 0.82) 45%,
      rgba(42, 122, 59, 0.38) 72%,
      rgba(255, 255, 255, 0.08) 100%
    );
}
.vault-course-card .home-option-image {
  height: auto;
  object-fit: contain;
}
