/* Bahari (ocean) — sophisticated coastal luxury: Zanzibar resorts,
   Mediterranean weddings, boutique beach hotels.

   Pass 1: replaced the old image-then-solid-navy-caption-bar layout (the
   "heavy dark blue block" the brief explicitly called out) with a
   full-screen overlay hero, color used as an accent only.

   Pass 2 (this file, part of the cross-theme "give each theme its own
   DNA" pass — Aman/Six Senses reference): pass 1 still used the same
   sticky-solid-bar nav and plain masonry gallery every other theme had.
   This pass makes the resort-glass identity real: the nav is now
   transparent/glass over the hero and only solidifies once scrolled past
   it (wedding-motion.js's new shared initTransparentNav, opt-in via
   data-nav-transparent); the hero's text sits inside an actual floating
   glassmorphism card, not directly on the photo, with a soft SVG wave
   dividing into Story instead of a hard rectangular cut; Story's
   "wide image + overlapping floating card" language now repeats at
   Location (mirrored) and Schedule (the timeline itself becomes the
   floating card); corners are meaningfully rounder throughout (--bh-radius
   6px -> 22px) for a genuine lounge/resort feel, not a token bump; Gallery
   is reassigned to a full-bleed horizontal scroll-snap strip — Bahari's
   own distinct pattern, no theme repeats another's gallery technique.
   Markup mechanics (editMode contract, shared rsvpForm.ejs) are
   unchanged — presentation only. */

body.theme-bahari {
  --bh-navy: #103D5C;
  --bh-navy-deep: #0B2C43;
  --bh-sand: #F5EEE4;
  --bh-white: #FAF8F5;
  --bh-gold: #C4A16D;
  --bh-gold-soft: rgba(196, 161, 109, .32);
  --bh-seafoam: #A8C9C5;
  --bh-muted: #5A6B72;

  --bh-space-xs: 12px;
  --bh-space-sm: 20px;
  --bh-space-md: 36px;
  --bh-space-lg: 64px;
  --bh-space-xl: 108px;

  --bh-h1: clamp(2.6rem, 1.6rem + 4vw, 4.8rem);
  --bh-h2: clamp(1.8rem, 1.5rem + 1.4vw, 2.6rem);
  --bh-h3: clamp(1.1rem, 1rem + .4vw, 1.3rem);
  --bh-eyebrow: .74rem;

  /* Softer resort-lounge rounding, not the sharp 6px this replaced —
     "rounded corners" is an explicit named characteristic of the theme,
     not incidental polish. */
  --bh-radius: 22px;
  --bh-radius-sm: 14px;
  --bh-shadow: 0 24px 56px -24px rgba(11, 44, 67, .3);
  --bh-shadow-sm: 0 10px 28px -14px rgba(11, 44, 67, .24);

  position: relative;
  font-family: var(--bahari-body-font);
  background: var(--bh-white);
  color: var(--bh-navy-deep);
  line-height: 1.75;
}
/* Curated font-pairing alternates (lib/themes.js's THEMES.bahari.
   fontPairings) — see dhahabu.css's identical comment for how this works. */
body.theme-bahari[data-font-pairing="jost-poppins"] {
  --bahari-header-font: "Jost", Futura, "Century Gothic", sans-serif;
  --bahari-body-font: "Poppins", "Helvetica Neue", Arial, sans-serif;
}
body.theme-bahari[data-font-pairing="playfair-inter"] {
  --bahari-header-font: "Playfair Display", Georgia, "Times New Roman", serif;
  --bahari-body-font: "Inter", "Helvetica Neue", Arial, sans-serif;
}
body.theme-bahari h1, body.theme-bahari h2, body.theme-bahari h3 { font-family: var(--bahari-header-font); font-weight: 500; letter-spacing: .01em; }
body.theme-bahari h1 { font-size: var(--bh-h1); line-height: 1.05; margin: 0; }
body.theme-bahari h2 { font-size: var(--bh-h2); line-height: 1.15; margin: 0 0 var(--bh-space-md); }
body.theme-bahari p { line-height: 1.8; }
body.theme-bahari .wedding-container { max-width: 1200px; padding: 0 40px; }
body.theme-bahari .wedding-section { padding: var(--bh-space-xl) 0; }
body.theme-bahari .wedding-section, body.theme-bahari .rsvp-section { scroll-margin-top: 84px; }
.bahari-centered { text-align: center; max-width: 680px; margin: 0 auto; }
.bahari-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: var(--bh-space-xs);
  color: var(--bh-gold); font-size: var(--bh-eyebrow); font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
}
.bahari-eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--bh-gold); }

/* Color used sparingly: soft sand/white alternation only, no navy blocks
   between sections; the seafoam/gold/navy accents stay confined to small
   details (eyebrows, icons, buttons, timeline). */
body.theme-bahari .wedding-section:nth-of-type(odd) { background: var(--bh-white); }
body.theme-bahari .wedding-section:nth-of-type(even) { background: var(--bh-sand); }
body.theme-bahari .wedding-section + .wedding-section, body.theme-bahari .wedding-section + .rsvp-section, body.theme-bahari .rsvp-section + .wedding-section {
  border-top: 1px solid var(--bh-gold-soft);
}

/* ============ SECTION NAV — transparent/glass over the hero photo,
   solidifying once scrolled past it (wedding-motion.js's
   initTransparentNav toggles .is-scrolled via data-nav-transparent).
   Fixed, not sticky/in-flow, so it overlays the hero rather than pushing
   it down — scroll-margin-top on every section (below) already handles
   "don't let the fixed bar cover a heading when a guest jumps via the
   nav." ============ */
.bahari-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .4s ease, border-color .4s ease, backdrop-filter .4s ease;
}
.bahari-nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.bahari-nav-brand { flex-shrink: 0; font-family: var(--bahari-header-font); font-size: 1.1rem; color: #fff; text-decoration: none; letter-spacing: .03em; transition: color .4s ease; }
.bahari-nav-toggle { color: #fff; transition: color .4s ease; }
.bahari-nav-links { display: flex; gap: 30px; overflow-x: auto; scrollbar-width: none; }
.bahari-nav-links::-webkit-scrollbar { display: none; }
.bahari-nav-links a {
  position: relative; padding: 23px 0; color: rgba(255, 255, 255, .85); text-decoration: none; white-space: nowrap;
  font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; transition: color .25s ease;
}
.bahari-nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 17px; height: 1px; background: #fff;
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease, background-color .4s ease;
}
.bahari-nav-links a:hover, .bahari-nav-links a:focus-visible { color: #fff; }
.bahari-nav-links a:hover::after, .bahari-nav-links a:focus-visible::after { transform: scaleX(1); }

.bahari-nav.is-scrolled {
  background: rgba(250, 248, 245, .92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-bottom-color: var(--bh-gold-soft);
}
.bahari-nav.is-scrolled .bahari-nav-brand, .bahari-nav.is-scrolled .bahari-nav-toggle { color: var(--bh-navy-deep); }
.bahari-nav.is-scrolled .bahari-nav-links a { color: var(--bh-muted); }
.bahari-nav.is-scrolled .bahari-nav-links a::after { background: var(--bh-gold); }
.bahari-nav.is-scrolled .bahari-nav-links a:hover, .bahari-nav.is-scrolled .bahari-nav-links a:focus-visible { color: var(--bh-navy-deep); }

@media (max-width: 760px) {
  .bahari-nav-toggle { display: flex; }
  .bahari-nav-inner { padding: 0 20px; }
  .bahari-nav-links {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; max-height: 0; overflow: hidden;
    background: var(--bh-white); border-bottom: 1px solid var(--bh-gold-soft); transition: max-height .3s ease;
  }
  .bahari-nav-links.is-open { max-height: 70vh; overflow-y: auto; }
  .bahari-nav-links a { padding: 16px 20px; border-top: 1px solid var(--bh-gold-soft); color: var(--bh-muted); }
  .bahari-nav-links a::after { display: none; }
}

/* Buttons */
.bahari-hero-cta {
  display: inline-flex; align-items: center; gap: 10px; padding: 16px 40px; border: 1px solid #fff; border-radius: 999px;
  color: #fff; text-decoration: none; text-transform: uppercase; letter-spacing: .1em; font-size: .76rem; font-weight: 600;
  transition: background .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.bahari-hero-cta:hover, .bahari-hero-cta:focus-visible { background: #fff; color: var(--bh-navy-deep); box-shadow: var(--bh-shadow-sm); transform: translateY(-2px); }
.bahari-hero-cta:focus-visible { outline: 2px solid var(--bh-gold); outline-offset: 3px; }
/* Same pill, solid-navy variant used outside the hero (Location/Registry
   CTAs sit on light backgrounds, not on a photo, so no border-only style). */
.bahari-cta-solid { border-color: var(--bh-navy-deep); background: var(--bh-navy-deep); color: #fff; }
.bahari-cta-solid:hover, .bahari-cta-solid:focus-visible { background: var(--bh-gold); border-color: var(--bh-gold); color: #fff; }

/* ============ HERO — full-screen panoramic image, a floating glass
   invitation card (not plain text on the photo), a soft wave dividing
   into the next section instead of a hard rectangular cut. ============ */
.bahari-hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: flex-start; overflow: hidden; background: var(--bh-navy-deep); }
.bahari-hero-bg { position: absolute; inset: 0; background: linear-gradient(160deg, var(--bh-seafoam), var(--bh-navy-deep)); background-size: cover; background-position: center; }
.bahari-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11, 32, 48, .35) 0%, rgba(11, 32, 48, .3) 45%, rgba(11, 32, 48, .72) 100%); }
/* The wave — an SVG sine-curve filled to match the next section's
   background (Story is always the 2nd <section>, so nth-of-type(even) ->
   --bh-sand, see the alternation rule above). Purely decorative,
   pointer-events off so it never blocks the CTA/nav beneath it. */
.bahari-hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 90px; z-index: 1; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath d='M0,64 C240,120 480,0 720,32 C960,64 1200,16 1440,48 L1440,120 L0,120 Z' fill='%23F5EEE4'/%3E%3C/svg%3E") bottom / 100% 100% no-repeat;
}
.bahari-hero-content {
  /* Left-aligned on the hero, not centered over it — a full-bleed portrait
     photo usually has its subjects somewhere near the middle, so a
     centered glass card sits squarely over the couple's faces. Anchoring
     it to the same left inset as the rest of the theme's 1200px container
     keeps the card off-center without needing per-photo tuning. */
  position: relative; z-index: 2; max-width: 640px; margin: 0 24px 0 max(24px, calc((100vw - 1200px) / 2 + 40px));
  padding: var(--bh-space-lg) var(--bh-space-md); text-align: center; color: #fff;
  background: rgba(255, 255, 255, .12); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, .3); border-radius: var(--bh-radius); box-shadow: 0 24px 60px -20px rgba(11, 32, 48, .5);
}
.bahari-hero-content h1 { color: #fff; margin: 0 0 16px; }
.bahari-tagline { font-family: var(--bahari-header-font); font-style: italic; font-size: 1.3rem; margin: 0 0 20px; color: rgba(255, 255, 255, .94); }
.bahari-hero-meta { text-transform: uppercase; letter-spacing: .2em; font-size: .78rem; color: rgba(255, 255, 255, .82); margin: 0 0 var(--bh-space-md); }

/* Countdown — wedding-motion.js's initCountdown ticks the four numbers;
   starts at "–" so nothing shows a wrong number before JS runs. */
.bahari-countdown { display: flex; justify-content: center; gap: var(--bh-space-md); margin: 0 0 var(--bh-space-lg); }
.bahari-countdown-unit { display: flex; flex-direction: column; align-items: center; min-width: 56px; }
.bahari-countdown-unit span { font-family: var(--bahari-header-font); font-size: 2.1rem; line-height: 1; color: #fff; }
.bahari-countdown-unit small { margin-top: 6px; text-transform: uppercase; letter-spacing: .16em; font-size: .64rem; color: rgba(255, 255, 255, .78); }

/* ============ OUR STORY — editorial split, image large, text card
   overlapping its edge, subtle entrance animation via data-reveal. ============ */
.bahari-story-inner { position: relative; display: grid; grid-template-columns: 1.15fr .95fr; align-items: center; gap: var(--bh-space-md); }
.bahari-story-image { margin: 0; }
.bahari-story-image img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--bh-radius); box-shadow: var(--bh-shadow); display: block; }
.bahari-story-card {
  position: relative; z-index: 1; margin-left: -72px; padding: var(--bh-space-lg) var(--bh-space-md);
  background: #fff; border-radius: var(--bh-radius); box-shadow: var(--bh-shadow);
}
.bahari-story-card p { color: var(--bh-muted); font-size: 1.08rem; }
.bahari-story-card:only-child { grid-column: 1 / -1; max-width: 680px; margin: 0 auto; text-align: center; }
.bahari-story-card:only-child .bahari-eyebrow { justify-content: center; }
.bahari-story-card:only-child .bahari-eyebrow::before { display: none; }

/* ============ EVENT DETAILS — elevated floating cards, icon + hierarchy. ============ */
.bahari-details-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--bh-space-md); }
.bahari-details-card {
  padding: var(--bh-space-md) var(--bh-space-sm); border-radius: var(--bh-radius); background: #fff;
  box-shadow: var(--bh-shadow-sm); transition: transform .3s ease, box-shadow .3s ease;
}
.bahari-details-card:hover { transform: translateY(-4px); box-shadow: var(--bh-shadow); }
.bahari-details-icon {
  display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; margin-bottom: var(--bh-space-sm);
  border-radius: 50%; background: var(--bh-sand); color: var(--bh-navy);
}
.bahari-details-icon svg { width: 22px; height: 22px; }
.bahari-details-card h3 { margin: 0 0 10px; font-size: var(--bh-h3); color: var(--bh-navy); }
.bahari-details-card p { margin: 0 0 4px; color: var(--bh-muted); font-size: .95rem; }

/* ============ SCHEDULE — a floating timeline card (matches the
   Story/Location "wide image, floating card" language even though there's
   no image here — the card itself is what floats, over the section's
   plain background). Just adds padding + card chrome to the existing
   .bahari-timeline element — every child's absolute positioning (the
   icons, the connecting line) is already relative to this element, so it
   shifts inward with the new padding automatically, no other rule needs
   to change. ============ */
.bahari-timeline {
  list-style: none; margin: var(--bh-space-md) auto 0; padding: var(--bh-space-lg) var(--bh-space-md);
  max-width: 640px; position: relative; background: #fff; border-radius: var(--bh-radius); box-shadow: var(--bh-shadow);
}
.bahari-timeline::before { content: ""; position: absolute; left: 19px; top: 8px; bottom: 8px; width: 1px; background: var(--bh-gold-soft); }
.bahari-timeline li { position: relative; padding: 0 0 var(--bh-space-lg) 56px; }
.bahari-timeline li:last-child { padding-bottom: 0; }
.bahari-timeline-icon {
  position: absolute; left: 0; top: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--bh-white);
  border: 1px solid var(--bh-gold); display: flex; align-items: center; justify-content: center; color: var(--bh-navy);
}
.bahari-timeline-icon svg { width: 18px; height: 18px; }
.bahari-timeline-time { display: block; font-weight: 700; color: var(--bh-gold); letter-spacing: .06em; text-transform: uppercase; font-size: .82rem; margin-bottom: 4px; }
.bahari-timeline li b { font-family: var(--bahari-header-font); font-weight: 500; font-size: 1.25rem; }
.bahari-timeline li p { margin: 6px 0 0; color: var(--bh-muted); }

/* ============ LOCATION — mirrors Story's "wide image, floating card
   overlapping its edge" language (repeating the rhythm rather than
   introducing a third pattern) — image visually on the right this time
   (order-reversed, not RTL, so icon/text order inside the card CTA never
   flips), card overlapping from the left. Boutique-hotel venue card,
   Get Directions CTA. ============ */
.bahari-location-inner { position: relative; display: grid; grid-template-columns: .95fr 1.15fr; align-items: center; gap: var(--bh-space-md); }
.bahari-location-image { order: 2; margin: 0; }
.bahari-location-image img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--bh-radius); box-shadow: var(--bh-shadow); display: block; }
.bahari-location-card {
  order: 1; position: relative; z-index: 1; margin-right: -72px; padding: var(--bh-space-lg) var(--bh-space-md);
  background: #fff; border-radius: var(--bh-radius); box-shadow: var(--bh-shadow);
}
.bahari-location-venue { font-family: var(--bahari-header-font); font-size: 1.6rem; margin: 0 0 12px; color: var(--bh-navy); }
.bahari-location-address { color: var(--bh-muted); margin: 0 0 8px; }
.bahari-location-card .bahari-hero-cta { margin-top: var(--bh-space-sm); }
.bahari-location-card:only-child { order: 1; grid-column: 1 / -1; margin-right: 0; max-width: 640px; margin: 0 auto; text-align: center; }

/* ============ REGISTRY — premium cards, hover lift, generous spacing. ============ */
.bahari-registry-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--bh-space-md); margin-top: var(--bh-space-lg); text-align: left; }
.bahari-registry-card {
  display: flex; flex-direction: column; height: 100%; border-radius: var(--bh-radius); overflow: hidden; background: #fff;
  box-shadow: var(--bh-shadow-sm); transition: transform .3s ease, box-shadow .3s ease;
}
.bahari-registry-card:hover { transform: translateY(-6px); box-shadow: var(--bh-shadow); }
.bahari-registry-card img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.bahari-registry-card-body { display: flex; flex-direction: column; flex: 1; padding: var(--bh-space-sm); }
.bahari-registry-category { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--bh-gold); }
.bahari-registry-card h3 { margin: 8px 0; font-size: 1.05rem; color: var(--bh-navy); }
.bahari-registry-price { font-weight: 700; margin: 0 0 var(--bh-space-sm); }
.bahari-registry-card .bahari-hero-cta { margin-top: auto; align-self: flex-start; padding: 10px 24px; font-size: .68rem; }

/* ============ RSVP — centered white card floating over a soft ocean
   gradient wash + lightly textured sand, strong shadow. ============ */
.bahari-rsvp {
  position: relative;
  background: linear-gradient(180deg, var(--bh-seafoam) 0%, var(--bh-sand) 45%, var(--bh-sand) 100%),
    radial-gradient(circle at 1px 1px, rgba(11, 44, 67, .06) 1px, transparent 0);
  background-size: 100% 100%, 22px 22px;
}
.bahari-rsvp .wedding-container > h2 { text-align: center; color: var(--bh-navy); }
.bahari-rsvp .rsvp-intro { max-width: 480px; margin: 0 auto var(--bh-space-md); color: var(--bh-muted); text-align: center; }
.bahari-rsvp .rsvp-card { max-width: 560px; margin: 0 auto; padding: var(--bh-space-lg) var(--bh-space-md); border-radius: var(--bh-radius); background: #fff; box-shadow: var(--bh-shadow); }
.bahari-rsvp .field label { font-weight: 600; letter-spacing: .02em; color: var(--bh-navy); }
.bahari-rsvp .field input, .bahari-rsvp .field select, .bahari-rsvp .field textarea, .bahari-rsvp input#rsvpNameSearch {
  border-radius: var(--bh-radius-sm); border: 1px solid var(--bh-gold-soft); background: var(--bh-white);
}
.bahari-rsvp .field input:focus, .bahari-rsvp .field select:focus, .bahari-rsvp .field textarea:focus, .bahari-rsvp input#rsvpNameSearch:focus {
  outline: none; border-color: var(--bh-gold); box-shadow: 0 0 0 3px var(--bh-gold-soft);
}
.bahari-rsvp .btn-rsvp-submit {
  width: 100%; padding: 16px; margin-top: 6px; border: none; border-radius: 999px; background: var(--bh-navy-deep);
  color: #fff; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: .78rem; cursor: pointer;
  transition: background .3s ease, transform .3s ease;
}
.bahari-rsvp .btn-rsvp-submit:hover { background: var(--bh-gold); transform: translateY(-2px); }

/* ============ FAQ — elegant accordion, soft hover, animated expansion
   (wedding-motion.js's initAccordions via data-animate-details). ============ */
.bahari-faq-list { max-width: 800px; margin: var(--bh-space-md) auto 0; text-align: left; border-top: 1px solid var(--bh-gold-soft); }
.bahari-faq-list details { border-bottom: 1px solid var(--bh-gold-soft); padding: var(--bh-space-sm) 0; transition: background .2s ease; }
.bahari-faq-list details:hover { background: rgba(196, 161, 109, .06); }
.bahari-faq-list summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--bahari-header-font); font-size: 1.2rem; color: var(--bh-navy);
}
.bahari-faq-list summary::-webkit-details-marker { display: none; }
.bahari-faq-list summary::after {
  content: "+"; flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--bh-gold);
  display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--bh-gold); transition: transform .3s ease;
}
.bahari-faq-list details[open] summary::after { transform: rotate(135deg); }
.bahari-faq-list p { margin: var(--bh-space-sm) 0 0; color: var(--bh-muted); max-width: 680px; }

/* ============ GALLERY — Bahari's own distinct pattern: a horizontal
   scroll-snap strip of large panoramic-crop photos, not a grid (Dhahabu
   has classic masonry, Kijani polaroid-scatter, Waridi magazine-collage —
   no two themes share a gallery technique). Full-bleed edge to edge. ============ */
.bahari-gallery-grid {
  display: flex; gap: var(--bh-space-md); overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 max(24px, calc((100vw - 1200px) / 2 + 40px)) var(--bh-space-sm);
  scrollbar-width: thin; scrollbar-color: var(--bh-gold-soft) transparent;
}
.bahari-gallery-grid figure {
  flex: 0 0 auto; width: min(70vw, 460px); scroll-snap-align: center; margin: 0;
  border-radius: var(--bh-radius); overflow: hidden; box-shadow: var(--bh-shadow-sm); cursor: zoom-in;
}
.bahari-gallery-grid img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; transition: transform .5s ease; }
.bahari-gallery-grid figure:hover img { transform: scale(1.06); }
.bahari-gallery-grid figcaption { padding: 10px 4px 2px; font-size: .8rem; text-align: center; color: var(--bh-muted); }
@media (max-width: 760px) {
  body.theme-bahari .wedding-container { padding: 0 22px; }
  /* Same problem, different fix: there's no "left" on a single-column
     mobile crop, so instead the card moves to the top of the hero — clear
     of the nav bar, and clear of where a portrait photo's subjects usually
     sit (center-to-lower-third), rather than overlapping them at dead
     center. */
  .bahari-hero { min-height: 92vh; justify-content: center; align-items: flex-start; padding-top: 96px; }
  .bahari-hero-content { margin: 0 20px; }
  .bahari-countdown { gap: var(--bh-space-sm); }
  .bahari-countdown-unit { min-width: 46px; }
  .bahari-countdown-unit span { font-size: 1.5rem; }
  .bahari-story-inner, .bahari-location-inner { grid-template-columns: 1fr; gap: var(--bh-space-md); }
  .bahari-story-card { margin-left: 0; margin-top: -48px; }
  .bahari-location-image { order: 1; }
  .bahari-location-card { order: 2; margin-right: 0; margin-top: -48px; }
  .bahari-details-grid { grid-template-columns: 1fr; }
}
