/* ==========================================================================
   Public website — warm, photographic, generous.
   Follows the supplied homepage design.
   ========================================================================== */

/* ---------------------------------------------------------- top bar */
.topbar {
  background: var(--forest-800); color: rgba(255,255,255,.8);
  font-size: .78rem; letter-spacing: .02em;
}
.topbar .wrap { display: flex; justify-content: flex-end; gap: 1.5rem; padding: .5rem 0; }
.topbar a { color: rgba(255,255,255,.85); text-decoration: none; }
.topbar a:hover { color: #fff; }

/* ---------------------------------------------------------- header */
.site-header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.site-header .wrap { display: flex; align-items: center; gap: 1.25rem; padding: .9rem 0; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 1.15rem; }
.site-nav a {
  font-size: .875rem; font-weight: 500; white-space: nowrap; color: var(--ink-700); text-decoration: none;
  padding: .3rem 0; border-bottom: 2px solid transparent;
}
.site-nav a:hover { color: var(--forest-800); }
.site-nav a.is-active { color: var(--gold-600); border-bottom-color: var(--gold-600); }
.nav-toggle { display: none; margin-left: auto; background: none; border: 1px solid var(--line); border-radius: 6px; padding: .5rem .7rem; cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink-700); margin: 4px 0; }

@media (max-width: 1080px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; inset: 100% 0 auto 0; background: #fff;
    flex-direction: column; align-items: stretch; gap: 0;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow); padding: .5rem 1.25rem 1.25rem;
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: .7rem 0; border-bottom: 1px solid var(--line-soft); }
  .site-nav .btn { margin-top: .75rem; }
}

/* ---------------------------------------------------------- hero */
.hero {
  position: relative; color: #fff; min-height: 540px; display: flex; align-items: center;
  background: var(--forest-900) center/cover no-repeat;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11,42,31,.88) 0%, rgba(11,42,31,.55) 45%, rgba(11,42,31,.18) 100%);
}
.hero .wrap { position: relative; z-index: 2; padding: 5rem 0; }
.hero-copy { max-width: 620px; }
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero p.lede { font-size: 1.12rem; color: rgba(255,255,255,.9); max-width: 34rem; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.play-link { display: inline-flex; align-items: center; gap: .6rem; color: #fff; text-decoration: none; font-weight: 600; font-size: .93rem; }
.play-link .play {
  width: 38px; height: 38px; border-radius: 100px; border: 1.5px solid rgba(255,255,255,.6);
  display: grid; place-items: center; flex: none;
}
.play-link:hover { color: var(--gold-400); }
.play-link:hover .play { border-color: var(--gold-400); }

/* ---------------------------------------------------------- pillars */
.pillars { background: var(--forest-800); color: #fff; }
.pillars .wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; padding: 2.1rem 0; }
.pillar { text-align: center; }
.pillar svg { margin: 0 auto .55rem; display: block; opacity: .95; }
.pillar span { font-size: .88rem; font-weight: 500; color: rgba(255,255,255,.92); }

/* ---------------------------------------------------------- sections */
.section { padding: 4.5rem 0; }
.section-tight { padding: 3rem 0; }
.section-cream { background: var(--cream); }
.section-white { background: #fff; }
.section-sand  { background: var(--sand); }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.section-head h2 { margin: 0; }
.section-head a { font-weight: 600; font-size: .92rem; text-decoration: none; color: var(--forest-800); }
.section-head a:hover { color: var(--gold-600); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------------------------------------------------------- trip cards */
.trip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.trip-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.trip-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.trip-card .thumb { aspect-ratio: 16 / 10; background: var(--sand) center/cover no-repeat; position: relative; }
.trip-card .thumb .flag {
  position: absolute; top: .7rem; left: .7rem;
  background: rgba(15,61,46,.92); color: #fff; font-size: .68rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; padding: .25rem .55rem; border-radius: 4px;
}
.trip-card .body { padding: 1.15rem 1.25rem 1.35rem; display: flex; flex-direction: column; flex: 1; }
.trip-card h3 { font-size: 1.08rem; margin-bottom: .3rem; }
.trip-card h3 a { text-decoration: none; color: var(--ink-900); }
.trip-card h3 a:hover { color: var(--gold-600); }
.trip-card .dates { font-size: .82rem; color: var(--gold-600); font-weight: 600; margin-bottom: .55rem; }
.trip-card p { font-size: .9rem; color: var(--ink-500); margin-bottom: 1rem; }
.trip-card .foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.trip-card .price { font-family: var(--font-display); font-weight: 700; color: var(--forest-800); }
.trip-card .more { font-size: .88rem; font-weight: 600; text-decoration: none; }

/* ---------------------------------------------------------- scripture band */
.band {
  position: relative; color: #fff; text-align: center;
  background: var(--forest-900) center/cover no-repeat; padding: 5rem 0;
}
.band::after { content: ''; position: absolute; inset: 0; background: rgba(11,42,31,.7); }
.band .wrap { position: relative; z-index: 2; }
.band h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 1.2rem; }
.band blockquote { font-size: 1.05rem; color: rgba(255,255,255,.9); margin: 0 auto 1.8rem; max-width: 42rem; }
.band cite { display: block; font-style: normal; font-size: .88rem; color: var(--gold-400); margin-top: .5rem; }

/* ---------------------------------------------------------- cta strip */
.cta-strip { background: var(--forest-800); color: #fff; padding: 2.5rem 0; }
.cta-strip .wrap { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; text-align: center; }
.cta-strip h2 { color: #fff; margin: 0 0 .25rem; font-size: 1.5rem; }
.cta-strip p { margin: 0; color: rgba(255,255,255,.8); font-size: .92rem; }

/* ---------------------------------------------------------- destinations */
.dest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; }
.dest-card {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 260px;
  display: flex; align-items: flex-end; color: #fff; text-decoration: none;
  background: var(--forest-700) center/cover no-repeat;
}
.dest-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,42,31,0) 35%, rgba(11,42,31,.85) 100%); }
.dest-card .label { position: relative; z-index: 2; padding: 1.25rem; }
.dest-card h3 { color: #fff; margin: 0 0 .15rem; font-size: 1.15rem; }
.dest-card span { font-size: .8rem; color: rgba(255,255,255,.8); }
.dest-card:hover { color: #fff; }
.dest-card:hover::after { background: linear-gradient(180deg, rgba(11,42,31,.15) 25%, rgba(11,42,31,.9) 100%); }

/* ---------------------------------------------------------- page hero */
.page-hero {
  background: var(--forest-800); color: #fff; padding: 3.5rem 0;
  position: relative; background-size: cover; background-position: center;
}
.page-hero.has-image::after { content: ''; position: absolute; inset: 0; background: rgba(11,42,31,.78); }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: .4rem; font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
.page-hero p { color: rgba(255,255,255,.85); margin: 0; max-width: 48rem; }
.crumbs { font-size: .8rem; color: rgba(255,255,255,.7); margin-bottom: .8rem; }
.crumbs a { color: rgba(255,255,255,.85); text-decoration: none; }
.crumbs a:hover { color: #fff; }

/* ---------------------------------------------------------- prose */
.prose { max-width: 68ch; }
.prose h2 { margin-top: 2.5rem; }
.prose h3 { margin-top: 1.8rem; }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose li { margin: .35rem 0; }

/* ---------------------------------------------------------- trip detail */
.trip-hero { position: relative; min-height: 420px; display: flex; align-items: flex-end; color: #fff;
  background: var(--forest-800) center/cover no-repeat; }
.trip-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,42,31,.35), rgba(11,42,31,.9)); }
.trip-hero .wrap { position: relative; z-index: 2; padding: 3rem 0 2.5rem; }
.trip-hero h1 { color: #fff; margin-bottom: .5rem; }
.trip-meta { display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: .92rem; color: rgba(255,255,255,.9); }
.trip-meta span { display: inline-flex; align-items: center; gap: .4rem; }

.trip-layout { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 3rem; align-items: start; }
@media (max-width: 1080px) { .trip-layout { grid-template-columns: 1fr; } }
.booking-card { position: sticky; top: 90px; }
.price-row { display: flex; align-items: baseline; justify-content: space-between; padding: .55rem 0; border-bottom: 1px solid var(--line-soft); font-size: .92rem; }
.price-row:last-of-type { border-bottom: 0; }
.price-row .amt { font-family: var(--font-display); font-weight: 700; font-variant-numeric: tabular-nums; }
.price-head { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--forest-800); }

.day-card { border-left: 2px solid var(--line); padding: 0 0 1.6rem 1.5rem; position: relative; }
.day-card::before {
  content: ''; position: absolute; left: -7px; top: .35rem; width: 12px; height: 12px;
  border-radius: 100px; background: var(--gold-500); border: 2px solid var(--cream);
}
.day-card:last-child { padding-bottom: 0; }
.day-card .day-no { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-600); }
.day-card h3 { font-size: 1.05rem; margin: .15rem 0 .5rem; }
.day-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .4rem; }
.day-card li { font-size: .9rem; color: var(--ink-700); display: flex; gap: .6rem; }
.day-card li .time { color: var(--gold-600); font-weight: 600; font-variant-numeric: tabular-nums; min-width: 4.6rem; flex: none; }

/* ---------------------------------------------------------- faq */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--ink-900);
  padding: 1.1rem 2.5rem 1.1rem 0; position: relative;
}
.faq-q::after {
  content: '+'; position: absolute; right: .25rem; top: 50%; transform: translateY(-50%);
  font-size: 1.35rem; color: var(--gold-600); font-weight: 400;
}
.faq-item.is-open .faq-q::after { content: '\2212'; }
.faq-a { display: none; padding: 0 0 1.2rem; color: var(--ink-500); font-size: .95rem; max-width: 65ch; }
.faq-item.is-open .faq-a { display: block; }

/* ---------------------------------------------------------- footer */
.site-footer { background: var(--forest-900); color: rgba(255,255,255,.72); padding: 3.5rem 0 2rem; font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 2.5rem; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.site-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .9rem; }
.site-footer a { color: rgba(255,255,255,.72); text-decoration: none; }
.site-footer a:hover { color: var(--gold-400); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .8rem;
}
.social { display: flex; gap: .75rem; }
.social a { width: 34px; height: 34px; border-radius: 100px; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; }
.social a:hover { border-color: var(--gold-400); }

/* ---------------------------------------------------------- registration wizard */
.wizard-shell { min-height: 100vh; background: var(--sand); padding: 1.5rem 0 4rem; }
.wizard-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.75rem; }
.steps { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.step { display: flex; align-items: center; gap: .55rem; font-size: .84rem; color: var(--ink-400); }
.step .dot {
  width: 26px; height: 26px; border-radius: 100px; display: grid; place-items: center;
  background: var(--line); color: var(--ink-500); font-weight: 700; font-size: .78rem; flex: none;
}
.step.is-done .dot { background: var(--forest-600); color: #fff; }
.step.is-current .dot { background: var(--gold-600); color: #fff; }
.step.is-current { color: var(--ink-900); font-weight: 600; }
.step-line { flex: 1; min-width: 20px; height: 1px; background: var(--line); }
@media (max-width: 760px) { .step span.label { display: none; } .step-line { min-width: 12px; } }

.wizard-grid { display: grid; grid-template-columns: 320px minmax(0, 1fr); gap: 1.75rem; align-items: start; }
@media (max-width: 900px) { .wizard-grid { grid-template-columns: 1fr; } }

.trip-summary-card {
  border-radius: var(--radius); overflow: hidden; color: #fff; position: relative;
  background: var(--forest-800) center/cover no-repeat; min-height: 420px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.trip-summary-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,42,31,.25) 0%, rgba(11,42,31,.95) 65%); }
.trip-summary-card .inner { position: relative; z-index: 2; padding: 1.5rem; }
.trip-summary-card h2 { color: #fff; font-size: 1.35rem; margin-bottom: .75rem; }
.trip-summary-card .meta { display: grid; gap: .45rem; font-size: .86rem; color: rgba(255,255,255,.88); margin-bottom: 1rem; }
.trip-summary-card .meta span { display: flex; gap: .5rem; align-items: center; }
.trip-summary-card p { font-size: .86rem; color: rgba(255,255,255,.78); }
.trip-summary-card .features { list-style: none; padding: 1rem 0 0; margin: 1rem 0 0; border-top: 1px solid rgba(255,255,255,.18); display: grid; gap: .55rem; font-size: .84rem; }
.trip-summary-card .features li { display: flex; gap: .6rem; align-items: center; color: rgba(255,255,255,.85); }

.wizard-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); }
.wizard-panel h2 { font-size: 1.55rem; margin-bottom: .35rem; }
.wizard-panel .lede { color: var(--ink-500); font-size: .95rem; margin-bottom: 1.75rem; }
.wizard-actions { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--line-soft); }
.secure-note { display: flex; align-items: center; justify-content: center; gap: .4rem; font-size: .8rem; color: var(--ink-400); margin-top: 1rem; }

.review-list { display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.review-row { display: grid; grid-template-columns: 200px 1fr; gap: 1rem; padding: .7rem 1rem; border-bottom: 1px solid var(--line-soft); font-size: .9rem; }
.review-row:last-child { border-bottom: 0; }
.review-row dt { color: var(--ink-400); margin: 0; }
.review-row dd { margin: 0; color: var(--ink-900); }
@media (max-width: 620px) { .review-row { grid-template-columns: 1fr; gap: .1rem; } }

.companion-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: .6rem; padding: .85rem; border: 1px dashed var(--line); border-radius: var(--radius-sm); margin-bottom: .75rem; }
