/* ========================================================
   Holy Land Encounters — PHP duplicate
   Tokens derived from the live site
   ======================================================== */

:root {
  --bg:           #f6f7f9;
  --surface:      #ffffff;
  --muted:        #f5f7fa;
  --border:       #dcdfe5;
  --text:         #151c28;
  --text-muted:   #4b5468;
  --text-soft:    #7a8294;

  --navy:         hsl(220, 60%, 6%);
  --navy-2:       hsl(220, 60%, 10%);
  --navy-3:       hsl(218, 47%, 15%);
  --navy-deep:    #0f1f3d;
  --gold:         #edb95e;
  --gold-2:       #d4a548;
  --gold-soft:    rgba(237,185,94,.18);

  --shadow-sm:    0 1px 2px rgba(15,31,61,.06);
  --shadow-md:    0 6px 24px rgba(15,31,61,.08);
  --shadow-lg:    0 24px 60px rgba(15,31,61,.18);
  --shadow-gold:  0 0 30px rgba(237,185,94,.45);

  --radius-sm:    8px;
  --radius:       12px;
  --radius-md:    14px;
  --radius-lg:    16px;
  --radius-pill:  9999px;

  --maxw:         1200px;
  --maxw-narrow:  960px;

  --t-fast: 200ms;
  --t-base: 320ms;
  --t-slow: 600ms;

  color-scheme: light;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
@supports (overflow-x: clip) {
  html, body { overflow-x: clip; }
}
body { position: relative; touch-action: pan-y; }

body.font-inter {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-feature-settings: 'cv11', 'ss01';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.font-playfair { font-family: 'Playfair Display', 'Georgia', serif; }

img, video { max-width: 100%; display: block; }

a { color: inherit; }
a:hover { text-decoration: none; }
button { font: inherit; cursor: pointer; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--gold); color: var(--navy);
  padding: .5rem 1rem; z-index: 9999;
}
.skip-link:focus { left: 0; }

/* -------- Containers -------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
.container-narrow { max-width: var(--maxw-narrow); margin: 0 auto; padding: 0 1.25rem; }

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  transition: all var(--t-base);
  text-align: center;
  max-width: 100%;
}
@media (max-width: 480px) {
  .btn { padding: .9rem 1.25rem; letter-spacing: .12em; }
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { filter: brightness(.94); transform: translateY(-1px); box-shadow: 0 0 50px rgba(237,185,94,.6); }
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
}
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.7); }
.btn--block { display: flex; width: 100%; }

/* -------- Eyebrow / dividers -------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 480px) {
  .eyebrow { letter-spacing: .15em; font-size: .68rem; }
}
.eyebrow--gold { color: var(--gold); background: var(--gold-soft); border: 1px solid rgba(237,185,94,.32); padding: .5rem 1.1rem; border-radius: var(--radius-pill); }
.eyebrow--gold-uc { color: var(--gold); }

.section-head { text-align: center; margin: 0 auto 3rem; max-width: 760px; }
.section-head--light { color: rgba(255,255,255,.85); }
.section-title { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 700; color: var(--navy-deep); margin: 1rem 0 .75rem; line-height: 1.1; }
.section-title em { color: var(--gold); font-style: italic; }
.section-title--light { color: #fff; }
.section-divider { display: block; width: 56px; height: 2px; background: var(--gold); margin: .5rem auto 1.5rem; opacity: .7; }
.section-lede { color: var(--text-muted); font-size: 1.05rem; }
.section-lede--light { color: rgba(255,255,255,.65); }
.subsection-title { font-size: 1.25rem; font-weight: 700; color: var(--navy-deep); margin: 2.5rem 0 1rem; }

/* -------- Icons -------- */
.icon { width: 1.5rem; height: 1.5rem; flex-shrink: 0; }
.icon--xs { width: .9rem; height: .9rem; }
.icon--sm { width: 1.1rem; height: 1.1rem; }
.icon--md { width: 1.4rem; height: 1.4rem; }
.icon.gold, .gold { color: var(--gold); }

/* ============================
   NAV
   ============================ */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 50;
  transition: all var(--t-slow);
}
.nav--transparent { background: transparent; }
.nav.is-scrolled {
  background: rgba(15, 23, 42, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.brand__name { color: #fff; font-size: 1.05rem; font-weight: 700; letter-spacing: .02em; }
.brand__name strong { font-weight: 800; }
.brand__tag { color: rgba(255,255,255,.5); font-size: .625rem; text-transform: uppercase; letter-spacing: .25em; margin-top: 2px; }
.nav__links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .nav__links { display: flex; } }
.nav__links a { color: rgba(255,255,255,.7); text-decoration: none; font-size: .88rem; font-weight: 500; transition: color var(--t-base); }
.nav__links a:hover { color: #fff; }
.nav__cta {
  display: inline-flex; align-items: center; gap: .35rem;
  border: 1px solid rgba(255,255,255,.3);
  padding: .35rem .9rem;
  border-radius: var(--radius-pill);
  transition: border-color var(--t-base);
}
.nav__cta:hover { border-color: rgba(255,255,255,.7); }
.nav__cta--primary {
  background: rgba(237,185,94,1);
  border-color: rgba(237,185,94,1);
  color: #1a1a1a;
  font-weight: 700;
}
.nav__cta--primary:hover {
  background: rgba(237,185,94,.85);
  border-color: rgba(237,185,94,.85);
  color: #1a1a1a;
}
.nav__mobile-cta {
  display: inline-block;
  background: rgba(237,185,94,1);
  color: #1a1a1a !important;
  font-weight: 700;
  text-align: center;
  border-radius: var(--radius-pill);
  padding: .65rem 1rem !important;
  margin: .25rem 0;
}
.nav__menu { background: transparent; border: 0; color: rgba(255,255,255,.85); padding: 6px; }
@media (min-width: 768px) { .nav__menu { display: none; } }
.nav__mobile { background: rgba(15, 23, 42, .98); display: flex; flex-direction: column; padding: 1rem 1.25rem; gap: .8rem; border-top: 1px solid rgba(255,255,255,.06); }
.nav__mobile[hidden] { display: none; }
@media (min-width: 768px) { .nav__mobile, .nav__mobile[hidden] { display: none; } }
.nav__mobile a { color: rgba(255,255,255,.85); text-decoration: none; padding: .5rem 0; }

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
  padding: 6rem 1rem 4rem;
}
.hero__video, .hero__image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    hsla(220, 60%, 6%, .55),
    hsla(220, 60%, 10%, .35) 40%,
    hsla(220, 60%, 6%, .75) 100%);
  z-index: 1;
}
.hero__cross {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  pointer-events: none;
  opacity: .08;
}
.hero__cross svg { width: 600px; height: 600px; max-width: 80vw; max-height: 80vw; }
.icon-cross { stroke-width: .3; }
.hero__content { position: relative; z-index: 3; padding-top: 5rem; }
.hero__title {
  font-size: clamp(3rem, 9vw, 7.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin: 1.5rem 0 .8rem;
}
.hero__title em { color: var(--gold); font-style: italic; }
.hero__subtitle {
  font-size: clamp(1.25rem, 2.6vw, 1.9rem);
  color: rgba(255,255,255,.6);
  font-style: italic;
  margin: 0 0 .5rem;
}
.hero__dates {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .25em;
  font-size: 1.05rem;
  margin: 0 0 1rem;
}
.hero__divider {
  display: block; width: 80px; height: 1px;
  background: rgba(237,185,94,.5);
  margin: 1.5rem auto 2rem;
}
.hero__stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  padding: 0;
}
@media (min-width: 768px) { .hero__stats { grid-template-columns: repeat(4, 1fr); } }
.hero__stat {
  background: hsla(220, 60%, 6%, .6);
  backdrop-filter: blur(6px);
  padding: 1rem 1.25rem;
  display: flex; flex-direction: column; align-items: center;
  gap: .25rem;
}
.hero__stat-icon { color: var(--gold); }
.hero__stat-value { font-size: 1.5rem; font-weight: 700; }
.hero__stat-label { color: rgba(255,255,255,.5); font-size: .68rem; letter-spacing: .15em; }
.hero__ctas { display: flex; flex-direction: column; gap: 1rem; justify-content: center; align-items: center; }
@media (min-width: 640px) { .hero__ctas { flex-direction: row; } }
.hero__fineprint { color: rgba(255,255,255,.4); font-size: .8rem; margin-top: 1.25rem; }
.hero__scroll {
  position: absolute; left: 50%; bottom: 1.25rem;
  transform: translateX(-50%);
  z-index: 4;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .68rem; letter-spacing: .25em;
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
  animation: bob 2.4s infinite ease-in-out;
}
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ============================
   ABOUT
   ============================ */
.about { padding: 6rem 0; background: var(--surface); }
.about .section-title { text-align: center; }
.about__body { max-width: 720px; margin: 1rem auto 0; color: var(--text-muted); font-size: 1.05rem; line-height: 1.75; }
.about__body p { margin: 0 0 1.25rem; }
.about__signoff {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin: 3rem auto 0; max-width: 720px;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.about__avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--gold);
  font-weight: 800; letter-spacing: .05em;
}
.about__pastor { font-size: 1.15rem; font-weight: 700; color: var(--navy-deep); margin: 0; }
.about__pastor-sub { color: var(--text-soft); font-size: .85rem; margin: 0; }

/* ============================
   FEATURES (dark)
   ============================ */
.features {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(180deg, #0e1b34 0%, #0c1a32 100%);
  color: #fff;
  overflow: hidden;
}
.features__bg-letters {
  position: absolute; inset: auto 0 -8% 0;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(8rem, 22vw, 22rem);
  font-weight: 700;
  letter-spacing: .04em;
  color: rgba(255,255,255,.025);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.features__grid {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  position: relative; z-index: 1;
}
.feature-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: transform var(--t-base), border-color var(--t-base), background var(--t-base);
}
.feature-card:hover { transform: translateY(-3px); border-color: rgba(237,185,94,.35); background: rgba(255,255,255,.05); }
.feature-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--gold-soft);
  color: var(--gold);
  margin-bottom: 1rem;
}
.feature-card__title { font-size: 1.05rem; font-weight: 700; margin: 0 0 .5rem; }
.feature-card__body { color: rgba(255,255,255,.6); font-size: .92rem; line-height: 1.6; margin: 0; }
.features__cta {
  margin-top: 3rem;
  text-align: center;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
  position: relative; z-index: 1;
}
.features__cta h3 { font-size: 1.5rem; margin: 0 0 .5rem; color: #fff; }
.features__cta p { color: rgba(255,255,255,.6); margin: 0 0 1.5rem; max-width: 480px; margin: 0 auto 1.5rem; }

/* ============================
   DESTINATIONS
   ============================ */
.destinations { padding: 6rem 0; background: var(--surface); }
.destinations__grid {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-md);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.dest-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.dest-card__day {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: .7rem;
  padding: .35rem .9rem;
  border-radius: var(--radius-pill);
  letter-spacing: .15em;
  z-index: 2;
}
.dest-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.dest-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.dest-card:hover .dest-card__media img { transform: scale(1.05); }
.dest-card__shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,31,61,.85), transparent 50%);
}
.dest-card__name {
  position: absolute; left: 1.25rem; bottom: 1rem;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  z-index: 2;
}
.dest-card__desc {
  padding: 1.25rem;
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.6;
  margin: 0;
}

/* ============================
   BROCHURES
   ============================ */
.brochures { padding: 4rem 0; background: var(--bg); }
.brochure-card {
  display: flex; align-items: center; gap: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
  margin: 0 auto;
  max-width: 720px;
}
.brochure-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.brochure-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--gold);
  flex-shrink: 0;
}
.brochure-card__body { flex: 1; display: flex; flex-direction: column; gap: .25rem; }
.brochure-card__title { font-weight: 700; font-size: 1.05rem; color: var(--navy-deep); }
.brochure-card__sub { color: var(--text-muted); font-size: .85rem; }
.brochure-card__cta {
  display: inline-flex; align-items: center; gap: .35rem;
  color: var(--gold-2);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ============================
   ITINERARY (timeline)
   ============================ */
.itinerary { padding: 6rem 0; background: var(--surface); }
.timeline { list-style: none; padding: 0; margin: 0; position: relative; padding-left: 2rem; }
.timeline::before {
  content: ''; position: absolute; left: .25rem; top: .5rem; bottom: .5rem;
  width: 1px; background: var(--border);
}
.timeline__item { position: relative; margin-bottom: .75rem; }
.timeline__dot {
  position: absolute; left: -1.78rem; top: 1.25rem;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--surface);
}
.timeline__card {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  transition: background var(--t-base);
}
.timeline__card[open] { background: var(--surface); border-color: var(--gold); box-shadow: var(--shadow-sm); }
.timeline__card summary {
  display: flex; align-items: center; gap: 1rem;
  list-style: none;
  cursor: pointer;
  user-select: none;
}
.timeline__card summary::-webkit-details-marker { display: none; }
.timeline__day { font-weight: 700; color: var(--navy-deep); font-size: 1.05rem; flex-shrink: 0; }
.timeline__date { color: var(--text-muted); font-size: .9rem; flex: 1; }
.timeline__chevron { color: var(--text-soft); transition: transform var(--t-base); }
.timeline__card[open] .timeline__chevron { transform: rotate(180deg); }
.timeline__body { padding-top: .75rem; }
.timeline__title { font-weight: 600; color: var(--text); margin: 0 0 .5rem; }
.timeline__meals { display: flex; align-items: center; gap: .35rem; color: var(--text-muted); font-size: .88rem; margin: 0 0 .5rem; }
.timeline__note {
  display: inline-block;
  background: var(--gold-soft);
  color: var(--gold-2);
  font-size: .82rem;
  padding: .35rem .75rem;
  border-radius: var(--radius-pill);
  margin: 0;
}
.timeline__key { text-align: center; color: var(--text-muted); font-size: .85rem; margin-top: 2rem; letter-spacing: .08em; }

/* ============================
   PRICING
   ============================ */
.pricing { padding: 6rem 0; background: var(--bg); }
.pricing__hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-image: linear-gradient(120deg, hsl(220, 60%, 6%) 0%, hsl(220, 50%, 14%) 100%);
  color: #fff;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .pricing__hero { grid-template-columns: 1.7fr 1fr; } }
.pricing__hero-left, .pricing__hero-right { padding: 2rem 2.25rem; }
.pricing__hero-left { background: rgba(255,255,255,0); }
.pricing__hero-right {
  background: rgba(237,185,94,.1);
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  border-left: 1px solid rgba(237,185,94,.18);
}
.pricing__price { font-size: 3rem; line-height: 1; margin: .25rem 0; font-weight: 800; }
.pricing__price span { display: inline-block; margin-left: .5rem; font-size: 1rem; color: rgba(255,255,255,.65); font-family: 'Inter', sans-serif; font-weight: 500; }
.pricing__sub { color: rgba(255,255,255,.7); font-size: .92rem; margin: .25rem 0 .8rem; }
.pricing__fine { color: rgba(255,255,255,.45); font-size: .78rem; margin: 0; max-width: 36rem; }
.pricing__deposit {
  font-size: 2.6rem;
  color: var(--gold);
  font-weight: 800;
  margin: .25rem 0 1rem;
}
.pricing__deposit span { display: block; font-size: .85rem; color: rgba(255,255,255,.6); font-family: 'Inter', sans-serif; font-weight: 500; letter-spacing: .04em; margin-top: .25rem; }

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.hotels-table { width: 100%; border-collapse: collapse; min-width: 540px; }
.hotels-table th, .hotels-table td { text-align: left; padding: .85rem 1rem; border-bottom: 1px solid var(--border); font-size: .92rem; }
.hotels-table th { background: var(--muted); color: var(--text-soft); font-weight: 600; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.hotels-table tbody tr:last-child td { border-bottom: 0; }

.incl-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 1.5rem; }
@media (min-width: 768px) { .incl-grid { grid-template-columns: 1fr 1fr; } }
.incl-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.incl-card h3 { margin: 0 0 1rem; font-size: 1.1rem; color: var(--navy-deep); }
.incl-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .55rem; }
.incl-card li { display: flex; align-items: flex-start; gap: .55rem; color: var(--text-muted); font-size: .92rem; line-height: 1.5; }
.incl-card--muted { background: var(--muted); }
.incl-card--muted li::before { content: '×'; color: var(--text-soft); font-weight: 700; margin-right: .25rem; }

.rules-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 768px) { .rules-grid { grid-template-columns: 1fr 1fr; } }
.rules-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.rules-card h3 { margin: 0 0 1rem; font-size: 1.1rem; color: var(--navy-deep); }
.rules-list { list-style: none; padding: 0; margin: 0; }
.rules-list li {
  display: flex; align-items: center; justify-content: space-between;
  padding: .65rem 0;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
  color: var(--text-muted);
  font-size: .92rem;
}
.rules-list li:last-child { border-bottom: 0; }
.rules-list strong { color: var(--navy-deep); font-weight: 700; }
.rules-card__note { color: var(--text-soft); font-size: .85rem; font-style: italic; margin-top: 1rem; }

.insurance-card {
  display: flex; gap: 1.25rem; align-items: flex-start;
  background: rgba(237,185,94,.08);
  border: 1px solid rgba(237,185,94,.25);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2.5rem;
}
.insurance-card__icon { color: var(--gold); flex-shrink: 0; }
.insurance-card h3 { margin: 0 0 .5rem; color: var(--navy-deep); }
.insurance-card p { margin: .35rem 0; color: var(--text-muted); font-size: .92rem; }
.insurance-card a { color: var(--gold-2); text-decoration: underline; }

/* ============================
   RESERVATION (dark)
   ============================ */
.reservation {
  padding: 6rem 0;
  background: linear-gradient(180deg, #0a132a 0%, #0d1838 100%);
  color: #fff;
  overflow-anchor: none;
}
.reservation__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 900px) { .reservation__layout { grid-template-columns: .9fr 1.15fr; } }
.reservation__right {
  min-width: 0;
}
.reservation__left .eyebrow { display: inline-block; margin-bottom: 1rem; }
.check-list { list-style: none; padding: 0; margin: 0 0 2rem; display: flex; flex-direction: column; gap: .8rem; }
.check-list li { display: flex; align-items: center; gap: .65rem; color: rgba(255,255,255,.85); font-size: .95rem; }
.schedule-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  display: flex; flex-direction: column; gap: .6rem;
}
.schedule-card p { display: flex; align-items: center; gap: .6rem; margin: 0; font-size: .92rem; color: rgba(255,255,255,.85); }
.schedule-card strong { color: #fff; }
.reservation__note { font-size: .85rem; color: rgba(255,255,255,.55); margin-top: 1.25rem; }

.reservation__form,
.reservation__panel-card {
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.08);
  border-top-color: rgba(237,185,94,.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
}
.reservation__panel-card {
  color: rgba(255,255,255,.82);
}
.reservation__panel-header {
  margin-bottom: 1.25rem;
}
.reservation__panel-kicker {
  display: block;
  color: rgba(237,185,94,.78);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: .45rem;
}
.reservation__form-title {
  display: flex; align-items: center; gap: .55rem;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}
.reservation__panel-copy {
  color: rgba(255,255,255,.68);
  line-height: 1.55;
  margin: .65rem 0 0;
}
.field-label {
  font-size: .92rem;
  font-weight: 600;
  margin: 1.25rem 0 .5rem;
  color: rgba(255,255,255,.85);
}
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .35rem; color: rgba(255,255,255,.85); }
.field label small { color: rgba(255,255,255,.55); font-weight: 400; }
.field input, .field select, .select {
  width: 100%;
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  border-radius: var(--radius);
  padding: .8rem 1rem;
  font-size: .95rem;
  outline: 0;
  transition: border-color var(--t-base), background var(--t-base);
}
.field input:focus, .field select:focus, .select:focus {
  border-color: var(--gold);
  background: rgba(0,0,0,.45);
}
.field-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: .25rem; }
@media (min-width: 600px) { .field-grid { grid-template-columns: 1fr 1fr; } }
.field-grid--3 { grid-template-columns: 1fr; }
@media (min-width: 600px) { .field-grid--3 { grid-template-columns: 1fr 1fr 1fr; } }

.field-help { color: rgba(255,255,255,.55); font-size: .82rem; margin-top: -.25rem; }

.reservation__fieldset {
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem 1.5rem;
  margin: 1.5rem 0 0;
  background: rgba(0,0,0,.12);
}
.reservation__fieldset legend {
  padding: 0 .55rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
}
.reservation__fieldset legend small {
  display: block;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  font-size: .82rem;
  margin-top: .25rem;
}

.title-toggle {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .35rem;
}
.title-toggle__opt {
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-pill);
  padding: .45rem 1rem;
  cursor: pointer;
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.75);
  transition: all var(--t-base);
  font-size: .9rem;
}
.title-toggle__opt input { display: none; }
.title-toggle__opt.is-active {
  border-color: var(--gold);
  background: rgba(237,185,94,.1);
  color: #fff;
}

.checkbox-row {
  display: flex; align-items: flex-start; gap: .65rem;
  cursor: pointer;
  color: rgba(255,255,255,.85);
  line-height: 1.4;
  padding: .25rem 0;
}
.checkbox-row input[type=checkbox] {
  margin-top: .3rem;
  width: 1.05rem; height: 1.05rem;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.field__error {
  display: block;
  color: #ff8a8a;
  font-size: .82rem;
  margin-top: .35rem;
}
[aria-invalid="true"] {
  border-color: rgba(255, 138, 138, .65) !important;
  box-shadow: 0 0 0 1px rgba(255, 138, 138, .2) !important;
}

.room-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.room-toggle__opt {
  display: flex; flex-direction: column;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 1rem;
  cursor: pointer;
  transition: all var(--t-base);
  background: rgba(0,0,0,.18);
}
.room-toggle__opt input { display: none; }
.room-toggle__opt.is-active { border-color: var(--gold); background: rgba(237,185,94,.1); }
.room-toggle__title { font-weight: 700; color: #fff; }
.room-toggle__sub { color: rgba(255,255,255,.6); font-size: .82rem; margin-top: .15rem; }

.reservation__totals {
  margin: 1.5rem 0 1rem;
  padding: 1rem 1.25rem;
  background: rgba(0,0,0,.25);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: .35rem;
}
.reservation__totals p {
  display: flex; align-items: center; justify-content: space-between;
  margin: 0;
  font-size: .92rem;
  color: rgba(255,255,255,.75);
}
.reservation__totals strong { color: #fff; font-weight: 700; }
.reservation__totals-row--charge {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: .25rem !important;
  padding-top: .55rem;
  font-size: 1rem !important;
}
.reservation__signin { text-align: center; margin: .85rem 0 0; }
.reservation__signin a {
  display: inline-flex; align-items: center; gap: .35rem;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: .85rem;
  border: 1px solid rgba(255,255,255,.15);
  padding: .55rem 1rem;
  border-radius: var(--radius-pill);
  transition: border-color var(--t-base), color var(--t-base);
}
.reservation__signin a:hover { border-color: rgba(255,255,255,.4); color: #fff; }
.reservation__secure { text-align: center; color: rgba(255,255,255,.45); font-size: .8rem; margin: 1rem 0 0; }

.reservation__trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .65rem;
  margin: 0 0 1.25rem;
}
.reservation__trust-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  min-height: 2.6rem;
  padding: .6rem .7rem;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(0,0,0,.18);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  font-weight: 700;
  text-align: center;
}

.form-errors {
  background: rgba(220, 38, 38, .12);
  border: 1px solid rgba(220, 38, 38, .35);
  color: #fecaca;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.form-errors ul { margin: 0; padding-left: 1.25rem; font-size: .9rem; }

.reservation__success {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(237,185,94,.4);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  color: rgba(255,255,255,.85);
}
.reservation__success h3 { color: #fff; font-size: 1.5rem; margin: 0 0 .5rem; }
.reservation__success p { line-height: 1.6; }
.reservation__success small { color: rgba(255,255,255,.55); }
.reservation__success .btn { margin-top: 1.25rem; }

/* ============================
   WIZARD (multi-step reservation)
   ============================ */
.wizard-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  position: relative;
}
.wizard-steps::before {
  content: '';
  position: absolute;
  top: 1rem;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: rgba(255,255,255,.12);
}
.wizard-step {
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
  position: relative;
  color: rgba(255,255,255,.4);
  font-size: .8rem;
  text-align: center;
}
.wizard-step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.45);
  font-weight: 700; font-size: .9rem;
  transition: all .2s ease;
  position: relative;
  z-index: 1;
}
.wizard-step__label { font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .68rem; }
.wizard-step.is-active {
  color: rgba(237,185,94,1);
}
.wizard-step.is-active .wizard-step__num {
  background: rgba(237,185,94,.15);
  border-color: rgba(237,185,94,.6);
  color: rgba(237,185,94,1);
  box-shadow: 0 0 0 4px rgba(237,185,94,.1);
}
.wizard-step.is-complete {
  color: rgba(237,185,94,.7);
}
.wizard-step.is-complete .wizard-step__num {
  background: rgba(237,185,94,.7);
  border-color: rgba(237,185,94,.7);
  color: #1a1a1a;
}
.wizard-step.is-complete .wizard-step__num::after { content: '✓'; }
.wizard-step.is-complete .wizard-step__num > * { display: none; }
@media (max-width: 600px) {
  .wizard-step__label { font-size: .7rem; }
}

.reservation__wizard-head {
  --wizard-progress: 0%;
  margin-bottom: 1rem;
  padding: 1.05rem 1.2rem 1.1rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  background: rgba(0,0,0,.22);
}
.reservation__wizard-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: .75rem;
}
.reservation__wizard-meta span {
  color: rgba(255,255,255,.48);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.reservation__wizard-meta strong {
  color: #fff;
  font-size: .86rem;
}
.wizard-meter {
  height: .45rem;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.08);
}
.wizard-meter span {
  display: block;
  width: var(--wizard-progress);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
  transition: width var(--t-base);
}
.reservation__panel:not([hidden]) {
  animation: wizard-panel-in 260ms ease both;
}
@keyframes wizard-panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.reservation__panel[hidden] { display: none !important; }

.wizard-nav {
  display: flex; gap: .75rem; align-items: center; justify-content: space-between;
  margin-top: 1.5rem;
}
.wizard-nav .btn { margin-top: 0; white-space: nowrap; }
.wizard-nav .btn--block { flex: 1; }
.wizard-nav #payment-submit { flex: 1; }

.reservation__review-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.reservation__review-strip p {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin: 0;
  padding: .85rem 1rem;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-sm);
  background: rgba(0,0,0,.2);
}
.reservation__review-strip span {
  color: rgba(255,255,255,.48);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.reservation__review-strip strong {
  color: #fff;
  font-size: .98rem;
}

.reservation__payment-summary {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.reservation__payment-summary p {
  display: flex; justify-content: space-between; align-items: baseline;
  margin: .35rem 0; color: rgba(255,255,255,.7);
}
.reservation__payment-summary strong { color: #fff; }
.reservation__payment-summary .reservation__totals-row--charge {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: .85rem; padding-top: .85rem;
  font-size: 1.05rem;
}
.reservation__payment-status {
  display: flex;
  align-items: center;
  gap: .55rem;
  min-height: 2.8rem;
  margin: -0.35rem 0 1rem;
  padding: .75rem .9rem;
  border: 1px solid rgba(237,185,94,.18);
  border-radius: var(--radius-sm);
  background: rgba(237,185,94,.08);
  color: rgba(255,255,255,.72);
  font-size: .86rem;
}
.reservation__payment-element {
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,.95);
  border-radius: var(--radius-md);
  min-height: 2.5rem;
}
.reservation__payment-alt {
  display: flex;
  gap: .4rem;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
  color: rgba(255,255,255,.58);
  font-size: .82rem;
  text-align: center;
}
.reservation__payment-alt strong { color: rgba(255,255,255,.84); }

.reservation__signin-form {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.25rem;
  margin-top: 1.25rem;
}

.link-button {
  background: none; border: none; padding: 0;
  color: rgba(237,185,94,1);
  font: inherit; text-decoration: underline; cursor: pointer;
}
.link-button:hover { color: rgba(237,185,94,.8); }

/* Light checkout surface inside the dark reservation section */
.reservation {
  --form-accent: #2563eb;
  --form-accent-strong: #1d4ed8;
  --form-accent-soft: rgba(37,99,235,.12);
  --form-accent-ring: rgba(37,99,235,.16);
}
.reservation__right {
  color: var(--text);
}
.reservation__form,
.reservation__panel-card,
.reservation__wizard-head {
  background: #fff;
  border-color: rgba(15,31,61,.1);
  border-top-color: var(--form-accent);
  box-shadow: 0 24px 60px rgba(0,0,0,.24);
}
.reservation__panel-card {
  color: var(--text-muted);
}
.reservation__panel-kicker,
.reservation__wizard-meta span,
.reservation__review-strip span {
  color: var(--form-accent-strong);
}
.reservation__form-title,
.reservation__wizard-meta strong,
.reservation__totals strong,
.reservation__review-strip strong,
.reservation__payment-summary strong,
.reservation__payment-alt strong,
.room-toggle__title {
  color: var(--text);
}
.reservation__panel-copy,
.reservation__payment-summary p,
.reservation__payment-alt,
.reservation__secure {
  color: var(--text-muted);
}
.field-label,
.field label {
  color: var(--text);
}
.field label small,
.room-toggle__sub {
  color: var(--text-soft);
}
.reservation .field input,
.reservation .field select,
.reservation .select {
  background: var(--muted);
  border-color: var(--border);
  color: var(--text);
}
.reservation .field input:focus,
.reservation .field select:focus,
.reservation .select:focus {
  background: #fff;
  border-color: var(--form-accent);
  box-shadow: 0 0 0 3px var(--form-accent-ring);
}
.room-toggle__opt,
.reservation__totals,
.reservation__trust-row span,
.reservation__review-strip p,
.reservation__payment-summary {
  background: var(--muted);
  border-color: var(--border);
}
.room-toggle__opt.is-active {
  background: var(--form-accent-soft);
  border-color: var(--form-accent);
  box-shadow: 0 0 0 3px var(--form-accent-ring);
}
.reservation__totals p {
  color: var(--text-muted);
}
.reservation__totals-row--charge,
.reservation__payment-summary .reservation__totals-row--charge {
  border-top-color: var(--border);
}
.reservation__signin,
.reservation__signin small {
  color: var(--text-muted);
}
.reservation .link-button {
  color: var(--form-accent-strong);
  font-weight: 700;
}
.reservation .link-button:hover {
  color: var(--navy-deep);
}
.reservation .icon.gold,
.reservation .gold {
  color: var(--form-accent);
}
.reservation .btn--gold,
.reservation .btn--gold-sm {
  background: var(--form-accent);
  color: #fff;
  box-shadow: 0 16px 34px rgba(37,99,235,.26);
}
.reservation .btn--gold:hover,
.reservation .btn--gold-sm:hover {
  filter: brightness(.96);
  box-shadow: 0 18px 38px rgba(37,99,235,.34);
}
.reservation__trust-row span {
  color: var(--text-muted);
}
.reservation__compact-summary {
  position: sticky;
  top: 5.25rem;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .5rem;
  margin-bottom: 1rem;
  padding: .75rem;
  background: #fff;
  border: 1px solid rgba(15,31,61,.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.reservation__compact-summary p {
  margin: 0;
  padding: .65rem .75rem;
  border-radius: var(--radius-sm);
  background: var(--muted);
}
.reservation__compact-summary span {
  display: block;
  margin-bottom: .2rem;
  color: var(--text-soft);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.reservation__compact-summary strong {
  color: var(--text);
  font-size: .9rem;
}
.reservation__wizard-head {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}
.wizard-meter {
  background: #e6e9ef;
}
.reservation .wizard-meter span {
  background: linear-gradient(90deg, var(--form-accent-strong), var(--form-accent));
}
.wizard-steps::before {
  background: #d9dee8;
}
.wizard-step {
  color: var(--text-soft);
}
.wizard-step__num {
  background: #eef1f6;
  border-color: #d8dee8;
  color: var(--text-soft);
}
.wizard-step.is-active {
  color: var(--form-accent-strong);
}
.wizard-step.is-active .wizard-step__num {
  background: var(--form-accent-soft);
  border-color: var(--form-accent);
  color: var(--form-accent-strong);
  box-shadow: 0 0 0 4px var(--form-accent-ring);
}
.wizard-step.is-complete {
  color: var(--form-accent-strong);
}
.wizard-step.is-complete .wizard-step__num {
  background: var(--form-accent);
  border-color: var(--form-accent);
  color: #fff;
}
.reservation .btn--ghost-dark {
  color: var(--navy-deep);
  border-color: var(--border);
  background: #fff;
}
.reservation .btn--ghost-dark:hover {
  color: var(--navy-deep);
  border-color: var(--form-accent);
  background: var(--form-accent-soft);
}
.reservation .data-table {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
}
.reservation .data-table th,
.reservation .data-table td {
  border-bottom-color: var(--border);
  color: var(--text-muted);
}
.reservation .data-table th {
  color: var(--text-soft);
}
.reservation .pill--paid {
  background: rgba(22,163,74,.14);
  color: #15803d;
}
.reservation .pill--upcoming,
.reservation .pill--pending {
  background: var(--form-accent-soft);
  color: var(--form-accent-strong);
}
.reservation__payment-status {
  background: #eff6ff;
  border-color: rgba(37,99,235,.24);
  color: var(--text-muted);
}
.payment-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  margin-bottom: 1rem;
}
.payment-choice__option {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  align-items: flex-start;
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--muted);
  color: var(--text-muted);
  text-align: left;
  transition: border-color var(--t-base), box-shadow var(--t-base), background var(--t-base);
}
.payment-choice__option span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--text);
  font-weight: 800;
}
.payment-choice__option small {
  color: var(--text-soft);
  font-size: .78rem;
}
.payment-choice__option.is-active {
  border-color: var(--form-accent);
  background: var(--form-accent-soft);
  box-shadow: 0 0 0 3px var(--form-accent-ring);
}
.payment-check-panel {
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid rgba(37,99,235,.18);
  border-radius: var(--radius);
  background: #eff6ff;
  color: var(--text-muted);
}
.payment-check-panel p {
  margin: .4rem 0;
}
.reservation__signin-form {
  border-top-color: var(--border);
}
.reservation .form-errors {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}
.reservation__check-alt {
  margin-top: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--muted);
  color: var(--text-muted);
}
.reservation__check-alt summary {
  cursor: pointer;
  padding: .85rem 1rem;
  color: var(--text);
  font-weight: 700;
}
.reservation__check-alt summary em {
  color: var(--form-accent-strong);
  font-style: normal;
}
.reservation__check-alt-body {
  border-top: 1px solid var(--border);
  padding: .85rem 1rem 1rem;
}
.reservation__check-alt-body p {
  margin: .45rem 0;
}
.reservation .field input[aria-invalid="true"] {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,.12);
}
.field__error {
  display: block;
  margin-top: .35rem;
  color: #b91c1c !important;
  font-size: .78rem;
  font-weight: 700;
}
.field__error[hidden] {
  display: none;
}

.reservation .reservation__fieldset {
  margin: 1.25rem 0 0;
  padding: 1.15rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  background: #f8fafc;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.reservation .reservation__fieldset[hidden] {
  display: none;
}
.reservation .reservation__fieldset--companion {
  border-color: rgba(37,99,235,.2);
  background: #fafdff;
}
.reservation .reservation__fieldset legend {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .45rem;
  max-width: 100%;
  padding: 0 .45rem;
  color: var(--form-accent-strong);
  background: #eff6ff;
  border: 1px solid rgba(37,99,235,.12);
  border-radius: var(--radius-sm);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}
.reservation .reservation__fieldset legend small {
  display: inline;
  color: var(--text-soft);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}
.reservation .field {
  margin-bottom: 1rem;
}
.reservation .field-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  gap: 1rem;
}
.reservation .field-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
}
.reservation .field-help {
  margin: .75rem 0 0;
  color: var(--text-muted);
}
.reservation .field-help small {
  color: inherit;
}
.reservation .field input,
.reservation .field select,
.reservation .field textarea,
.reservation .select {
  min-height: 3.05rem;
  background: #fff;
  border: 1px solid #cbd5e1;
  color: var(--text);
  box-shadow: 0 1px 1px rgba(15,31,61,.03);
}
.reservation .field textarea {
  min-height: 6rem;
  resize: vertical;
  line-height: 1.5;
}
.reservation .field input::placeholder,
.reservation .field textarea::placeholder {
  color: #94a3b8;
}
.reservation .title-toggle {
  gap: .5rem;
}
.reservation .title-toggle__opt {
  background: #fff;
  border-color: #cbd5e1;
  color: var(--text-muted);
  box-shadow: 0 1px 1px rgba(15,31,61,.03);
}
.reservation .title-toggle__opt.is-active {
  background: var(--form-accent-soft);
  border-color: var(--form-accent);
  color: var(--form-accent-strong);
  box-shadow: 0 0 0 3px var(--form-accent-ring);
}
.reservation .checkbox-row {
  align-items: flex-start;
  gap: .85rem;
  padding: 1rem;
  border: 1px solid #dbe3ee;
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  line-height: 1.55;
  box-shadow: 0 1px 1px rgba(15,31,61,.03);
}
.reservation .checkbox-row + .field,
.reservation [data-needs-detail] {
  margin-top: 1rem;
}
.reservation .checkbox-row input[type=checkbox] {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: .2rem;
  accent-color: var(--form-accent);
  flex: 0 0 auto;
}
.reservation .checkbox-row span {
  color: var(--text);
}
.reservation .checkbox-row:has(input:checked) {
  border-color: rgba(37,99,235,.35);
  background: #eff6ff;
}
@media (max-width: 640px) {
  .reservation .reservation__fieldset {
    padding: 1rem;
  }
  .reservation .reservation__fieldset legend {
    display: flex;
    width: fit-content;
    max-width: calc(100vw - 4rem);
    white-space: normal;
  }
  .reservation .field-grid,
  .reservation .field-grid--3 {
    grid-template-columns: 1fr;
  }
  .reservation .checkbox-row {
    padding: .9rem;
  }
  .reservation .checkbox-row span {
    font-size: .92rem;
  }
}

/* ============================
   GALLERY
   ============================ */
.gallery { padding: 6rem 0; background: var(--surface); }
.gallery__filters { display: flex; gap: .55rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.gallery__tab {
  background: var(--muted);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: .55rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: .85rem;
  font-weight: 600;
  transition: all var(--t-base);
}
.gallery__tab:hover { border-color: var(--gold); color: var(--navy-deep); }
.gallery__tab.is-active { background: var(--navy-deep); color: #fff; border-color: var(--navy-deep); }
.gallery__grid {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .75rem;
}
.gallery__item { transition: opacity var(--t-base), transform var(--t-base); }
.gallery__item.is-hidden { display: none; }
.gallery__item figure { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; aspect-ratio: 1; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.gallery__item figure:hover img { transform: scale(1.05); }
.gallery__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1rem .9rem .8rem;
  color: #fff;
  background: linear-gradient(to top, rgba(15,31,61,.92), rgba(15,31,61,0));
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; transition: opacity var(--t-base);
}
.gallery__item figure:hover figcaption { opacity: 1; }
.gallery__caption-title { font-size: .82rem; font-weight: 600; }
.gallery__caption-cat { font-size: .68rem; color: var(--gold); text-transform: uppercase; letter-spacing: .15em; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(8, 14, 28, .94);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox[hidden] { display: none; }
.lightbox__figure { max-width: 100%; max-height: 100%; margin: 0; text-align: center; }
.lightbox__figure img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: var(--radius); }
.lightbox__figure figcaption { color: rgba(255,255,255,.8); font-size: .92rem; margin-top: .85rem; }
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,.08);
  border: 0;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-base);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.18); }
.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__nav--prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* ============================
   FOOTER
   ============================ */
.footer { background: #0a132a; color: rgba(255,255,255,.7); padding: 4rem 0 1.5rem; }
.footer__top { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.06); }
@media (min-width: 768px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer__logo { display: flex; align-items: center; gap: .5rem; color: #fff; font-size: 1.15rem; margin: 0 0 .8rem; font-weight: 700; }
.footer__brand p { margin: .25rem 0; font-size: .92rem; line-height: 1.6; }
.footer__small { color: rgba(255,255,255,.45); font-size: .82rem !important; }
.footer__col h4 { color: var(--gold); font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; margin: 0 0 1rem; }
.footer__col p { font-size: .88rem; margin: .35rem 0; line-height: 1.5; }
.footer__col a { color: rgba(255,255,255,.85); text-decoration: none; }
.footer__col a:hover { color: var(--gold); }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; }
.footer__bottom { display: flex; flex-direction: column; gap: .35rem; padding-top: 1.5rem; font-size: .78rem; color: rgba(255,255,255,.45); }
@media (min-width: 768px) { .footer__bottom { flex-direction: row; justify-content: space-between; } }
.footer__bottom p { margin: 0; }

/* ============================
   Responsiveness
   ============================ */
@media (max-width: 700px) {
  .pricing__hero-left, .pricing__hero-right { padding: 1.5rem; }
  .reservation__form, .reservation__panel-card { padding: 1.5rem; }
  .reservation__wizard-head { padding: 1rem; }
  .reservation__wizard-meta { flex-direction: column; gap: .25rem; align-items: flex-start; }
  .room-toggle { grid-template-columns: 1fr; }
  .reservation__trust-row, .reservation__review-strip, .payment-choice { grid-template-columns: 1fr; }
  .reservation__compact-summary { position: static; grid-template-columns: 1fr; }
  .wizard-nav { flex-direction: column-reverse; align-items: stretch; }
  .wizard-nav .btn { width: 100%; }
  .timeline { padding-left: 1.25rem; }
  .timeline__dot { left: -1.05rem; }
}

/* Mobile (≤640px): tighten section padding, fonts, and ensure no overflow */
@media (max-width: 640px) {
  .container, .container-narrow { padding: 0 1rem; }

  /* Section vertical padding compressed */
  .about, .features, .destinations, .itinerary, .pricing, .reservation, .gallery { padding: 3.5rem 0; }
  .brochures { padding: 2.5rem 0; }
  .footer { padding: 2.5rem 0 1.25rem; }

  /* Section heads */
  .section-head { margin: 0 auto 2rem; }
  .section-title { font-size: clamp(1.75rem, 7vw, 2.25rem); }
  .subsection-title { font-size: 1.1rem; margin: 1.75rem 0 .75rem; }

  /* Hero compression */
  .hero { padding: 5rem .75rem 3rem; min-height: auto; }
  .hero__content { padding-top: 2rem; }
  .hero__title { font-size: clamp(2.5rem, 11vw, 3.75rem); margin: 1rem 0 .5rem; }
  .hero__subtitle { font-size: 1.05rem; }
  .hero__dates { font-size: .9rem; letter-spacing: .18em; }
  .hero__divider { margin: 1rem auto 1.5rem; }
  .hero__stats { margin-bottom: 1.75rem; }
  .hero__stat { padding: .85rem .75rem; }
  .hero__stat-value { font-size: 1.25rem; }
  .hero__stat-label { font-size: .6rem; letter-spacing: .12em; }
  .hero__fineprint { font-size: .72rem; margin-top: 1rem; }

  /* Cards / grids: ensure single column where useful */
  .features__grid { grid-template-columns: 1fr; }
  .destinations__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }

  /* Brochure card stacks vertically */
  .brochure-card { flex-direction: column; align-items: flex-start; padding: 1rem 1.1rem; }

  /* Pricing hero */
  .pricing__price { font-size: 2.25rem; }
  .pricing__deposit { font-size: 2rem; }

  /* Reservation */
  .reservation__form, .reservation__panel-card { padding: 1.25rem; }
  .reservation__left .check-list li:nth-child(n+4) { display: none; }
  .reservation__note { display: none; }
  .reservation__schedule { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .reservation__payment-summary p,
  .reservation__totals p { gap: 1rem; }
  .reservation__success { padding: 1.5rem; }

  /* Footer */
  .footer__col h4 { letter-spacing: .15em; }

  /* Defensive: any unforeseen wide content stays inside the page */
  img, video, iframe, table { max-width: 100%; }
}
