/* ═══════════════════════════════════════════════════════════════
   London & Saudi Property Showcase — Berkeley Group × Red Sea Global
   20 August 2026 · The Chancery Rosewood, Mayfair, London
   Palette: HW navy #16263d + cream #faf6ef base · trust-teal accent
   #0F766E (proven real-estate palette; echoes the KI brand teal).
   Gold v3 and terracotta v2 accents were both rejected.
   Type:  Cairo (Arabic everywhere) · DM Serif Display + DM Sans (EN)
   EN default (LTR) · Arabic toggle — logical properties throughout.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --navy:        #16263D;
  --navy-deep:   #0E1A2B;
  --navy-soft:   #223752;
  --sand:        #FAF6EF;
  --sand-dim:    #F1ECE2;
  --muted:       #637080;   /* captions, quiet labels on light bg */
  /* Conversion accent — trust teal. Reserved for CTAs, eyebrows, icons and
     urgency signals so the eye is always pulled to the registration action. */
  --teal:        #0F766E;   /* solid CTAs (white text ≥4.5:1), accent text on cream */
  --teal-deep:   #0B5D57;   /* hover / countdown / badge text */
  --teal-soft:   #93CDC5;   /* labels & icons on dark navy */
  --teal-tint:   #B4E2DA;   /* numerals & highlights on dark navy */
  --ink:         #22303F;
  --line:        rgba(22, 38, 61, 0.14);
  --line-dark:   rgba(250, 246, 239, 0.17);
  --radius:      10px;
  --radius-lg:   18px;
  --pad-x:       clamp(1.25rem, 5vw, 4.5rem);
  --font-body:   'Cairo', 'Segoe UI', sans-serif;
  --font-display:'Cairo', sans-serif;
}
html[lang="en"] {
  --font-display: 'DM Serif Display', serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* Skip link — hidden until keyboard-focused */
.skip-link {
  position: absolute;
  inset-block-start: -100px;
  inset-inline-start: 1rem;
  z-index: 100;
  background: var(--navy);
  color: var(--sand);
  font-weight: 700;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius);
  text-decoration: none;
}
.skip-link:focus { inset-block-start: 1rem; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  /* Guard: on RTL pages, anything pushed off the LEFT edge becomes
     scrollable range. Clip it. */
  overflow-x: clip;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}
/* DM Serif Display ships one weight — declare it so browsers don't faux-bold */
html[lang="en"] h1, html[lang="en"] h2, html[lang="en"] h3 { font-weight: 400; }
html[lang="en"] h1, html[lang="en"] h2 { line-height: 1.14; }

h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); max-width: 30ch; }

/* ─────────────── Buttons ─────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.1rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease,
              transform 0.2s ease, box-shadow 0.25s ease;
}
.btn-primary {
  background: var(--teal);
  color: #FFFFFF;
  font-weight: 800;
  box-shadow: 0 8px 24px -10px rgba(15, 118, 110, 0.55);
}
.btn-primary:hover {
  background: var(--teal-deep);
  color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(15, 118, 110, 0.6);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-lg { padding: 1.05rem 2.8rem; font-size: 1.08rem; }
.btn-outline {
  color: var(--sand);
  border-color: rgba(250, 246, 239, 0.45);
  padding: 0.5rem 1.3rem;
  font-size: 0.85rem;
}
.btn-outline:hover { border-color: var(--sand); }
.btn-block { display: block; width: 100%; }

/* ─────────────── Header ─────────────── */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 50;
  direction: ltr;   /* fixed physical layout: logo left, CTA right, in both languages */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--pad-x);
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.site-header.scrolled {
  background: var(--navy-deep);
  box-shadow: 0 1px 0 var(--line-dark);
  padding-block: 0.6rem;
}
.site-logo { height: 44px; width: auto; }
.header-actions { display: flex; align-items: center; gap: 1rem; }

.lang-toggle {
  background: none;
  border: none;
  color: var(--teal-soft);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0.7rem 0.8rem;   /* keeps the hit area ≥44px */
}
.lang-toggle:hover { color: var(--sand); }

/* Visible keyboard focus everywhere interactive */
.btn:focus-visible,
.lang-toggle:focus-visible,
a:focus-visible {
  outline: 3px solid var(--teal-soft);
  outline-offset: 2px;
}

/* ─────────────── Hero ─────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--sand);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background: url('assets/images/hero-london.jpg') center / cover no-repeat;
  /* "Living" hero: a slow wandering path — left/right, up/down, in/out.
     Minimum scale exceeds the largest translate so edges never show. */
  animation: hero-drift 44s ease-in-out infinite;
  will-change: transform;
}
@keyframes hero-drift {
  0%   { transform: scale(1.07) translate(0, 0); }
  25%  { transform: scale(1.11) translate(-1.8%, -0.9%); }
  50%  { transform: scale(1.15) translate(0.6%, -1.9%); }
  75%  { transform: scale(1.1)  translate(1.8%, 0.6%); }
  100% { transform: scale(1.07) translate(0, 0); }
}
/* Looping hero video sits inside .hero-media; the image behind it is the
   poster/fallback. Once the video actually plays, the container's Ken Burns
   drift switches off so the two motions don't stack. */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media.video-live { animation: none; transform: none; }
.hero-overlay {
  position: absolute;
  inset: 0;
  /* Single vertical scrim: dark floor where the text/CTA sit, image stays
     clear above. (The old diagonal side-band was direction-biased — wrong
     side in RTL — and unnecessary with the brighter footage.) Text shadows
     on the title/subtitle carry the rest. */
  background:
    linear-gradient(to top, rgba(14, 26, 43, 0.88) 0%, rgba(14, 26, 43, 0.42) 34%, rgba(14, 26, 43, 0.06) 60%, rgba(14, 26, 43, 0.25) 100%);
}
.hero-content {
  position: relative;
  padding: 0 var(--pad-x);
  max-width: 64rem;
  margin-block-end: 3rem;
}
.hero-title {
  color: #FFFFFF;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 800;
  margin-block: 0.75rem 1rem;
  text-shadow: 0 2px 22px rgba(8, 15, 26, 0.65);
}
html[lang="en"] .hero-title { font-weight: 400; }
.hero-subtitle {
  max-width: 52ch;
  font-weight: 400;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 14px rgba(8, 15, 26, 0.6);
  margin-block-end: 1.75rem;
}
.hero-cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem; }

/* Secondary hero action demoted to a quiet text link — one CTA rules */
.link-arrow {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: rgba(250, 246, 239, 0.4);
}
.link-arrow::after { content: '↓'; margin-inline-start: 0.4rem; }
.link-arrow:hover { text-decoration-color: var(--sand); }

/* Date pill above the headline — solid dark backing so it stays legible
   over the busy hero photo; teal border + icon carry the accent. */
.date-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1.15rem;
  border: 1px solid rgba(147, 205, 197, 0.5);
  border-radius: 100px;
  background: rgba(10, 19, 32, 0.66);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.92rem;
}
.date-pill svg { width: 16px; height: 16px; flex: 0 0 auto; color: var(--teal-soft); }

.hero-trust {
  margin-block-start: 1.2rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 10px rgba(8, 15, 26, 0.6);
}

.eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
}
.eyebrow.on-dark-bg { color: var(--teal-soft); }

/* Letterspacing is a Latin device — on connected Arabic script it opens gaps
   between joined glyphs, so zero it whenever the page is in Arabic. */
html[lang="ar"] .eyebrow,
html[lang="ar"] .invite-label,
html[lang="ar"] .logo-label { letter-spacing: 0; }

/* Invitation strip — date · time · venue */
.invite-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border-block-start: 1px solid var(--line-dark);
}
.invite-item {
  background: rgba(10, 19, 32, 0.88);
  backdrop-filter: blur(10px);
  padding: 1.3rem clamp(1.25rem, 3vw, 2.5rem);
  display: flex;
  /* All three cells share the same label/value/note structure, so
     centering puts every icon on the value line — per Wael. */
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.invite-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(147, 205, 197, 0.12);
  border: 1px solid rgba(147, 205, 197, 0.32);
  color: var(--teal-soft);
}
.invite-icon svg { width: 22px; height: 22px; }
.invite-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: start;
}
.invite-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-soft);
  line-height: 1.3;
}
.invite-value { font-weight: 800; font-size: 1.12rem; color: #FFFFFF; line-height: 1.3; }
.invite-note { font-size: 0.82rem; font-weight: 400; color: rgba(250, 246, 239, 0.75); line-height: 1.35; }

/* ─────────────── Partner logo strip (under hero) ─────────────── */
.logo-strip {
  background: #FFFFFF;
  border-block-end: 1px solid var(--line);
  padding: 2.2rem var(--pad-x) 2rem;
  text-align: center;
}
.logo-strip .logo-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-block-end: 1.6rem;
}
.logo-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 6vw, 5rem);
}
.logo-row li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}
.logo-row img { height: 46px; width: auto; }
.logo-row img.logo-rsg { height: 62px; }
.logo-row img.logo-nomo { height: 30px; }
.logo-row .logo-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(34, 48, 63, 0.65);
}

/* ─────────────── Sections ─────────────── */
.section { padding: clamp(4rem, 9vw, 7rem) var(--pad-x); }
.section-sand { background: var(--sand); }
.section-white { background: #FFFFFF; }
.section-pine { background: var(--navy-deep); color: rgba(250, 246, 239, 0.86); }
.section-pine .on-dark { color: var(--sand); }

/* Dark Saudi band with the islands render behind a deep navy veil.
   Desktop: background-attachment fixed = built-in parallax on scroll. */
.section-saudi {
  position: relative;
  background: var(--navy-deep);
  color: rgba(250, 246, 239, 0.86);
}
.section-saudi::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/images/rsg-islands.jpg') center / cover no-repeat;
  opacity: 0.4;
}
@media (min-width: 901px) and (hover: hover) {
  .section-saudi::before { background-attachment: fixed; }
}
.section-saudi::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14, 26, 43, 0.78), rgba(14, 26, 43, 0.38) 50%, rgba(14, 26, 43, 0.88));
}
.section-saudi > * { position: relative; z-index: 1; }
.section-saudi .on-dark { color: var(--sand); }

.section > .eyebrow { margin-block-end: 0.8rem; }
.section h2 { margin-block-end: 1.4rem; }
.section-intro { max-width: 62ch; margin-block-end: 2.5rem; }

/* Split (market sections) */
.split {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 6fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split.flip { grid-template-columns: minmax(0, 6fr) minmax(0, 7fr); }
.split-text .eyebrow { margin-block-end: 0.8rem; }
.split-text p { max-width: 58ch; margin-block-end: 1.1rem; }
.split-media { overflow: hidden; border-radius: var(--radius); }
.split-media img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.split-media:hover img { transform: scale(1.04); }
.split-media figcaption {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.7rem 0.2rem 0.2rem;
  background: inherit;
}
.section-saudi .split-media figcaption { color: var(--teal-soft); }
.section-saudi .trio img { border: 1px solid rgba(250, 246, 239, 0.16); }

/* Two-markets gateway: two tall clickable image panels, titles overlaid,
   each scrolling to its market section. Replaces the old duo figures. */
.gateway {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-block-start: 2.6rem;
}
.gateway-panel {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  text-decoration: none;
  box-shadow: 0 24px 50px -30px rgba(14, 26, 43, 0.45);
}
.gateway-panel img {
  width: 100%;
  height: clamp(340px, 38vw, 520px);
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.gateway-panel:hover img { transform: scale(1.05); }
.gateway-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0.3rem;
  padding: 1.6rem 1.7rem;
  text-align: start;
  background: linear-gradient(to top, rgba(14, 26, 43, 0.88) 0%, rgba(14, 26, 43, 0.35) 42%, rgba(14, 26, 43, 0) 68%);
}
.gateway-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-soft);
}
.gateway-overlay h3 {
  color: #FFFFFF;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.25;
  margin: 0;
  text-shadow: 0 2px 14px rgba(14, 26, 43, 0.55);
}
.gateway-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-block-start: 0.55rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal-tint);
}
.gateway-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.gateway-panel:hover .gateway-cta svg { transform: translateY(4px); }
.gateway-panel:focus-visible {
  outline: 3px solid var(--teal-soft);
  outline-offset: 4px;
}

/* Area lifestyle trio (London section) */
.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-block-start: clamp(2.4rem, 5vw, 3.6rem);
}
.trio figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.trio img {
  width: 100%;
  height: clamp(200px, 24vw, 300px);
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.trio figure:hover img { transform: scale(1.05); }
.trio figcaption {
  position: absolute;
  inset-block-end: 0.8rem;
  inset-inline-start: 0.8rem;
  inset-inline-end: 0.8rem;
  width: fit-content;
  max-width: calc(100% - 1.6rem);
  background: rgba(14, 26, 43, 0.8);
  color: var(--sand);
  backdrop-filter: blur(6px);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
}

/* Key-fact cards — the RSG signature element */
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-block-start: clamp(2.4rem, 5vw, 3.6rem);
}
.facts.four { grid-template-columns: repeat(4, 1fr); }
.fact {
  background: var(--sand-dim);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem 1.4rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (hover: hover) {
  .fact:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px -20px rgba(14, 26, 43, 0.3);
  }
}
.fact-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  color: var(--navy);
  line-height: 1.1;
  margin-block-end: 0.45rem;
  font-variant-numeric: tabular-nums;   /* steady width while counting up */
}
html[lang="en"] .fact-number { font-weight: 400; }
.fact-label { display: block; font-size: 0.88rem; line-height: 1.6; max-width: 26ch; }

/* Facts on the dark Saudi band */
.section-saudi .fact {
  background: rgba(10, 19, 32, 0.62);
  border-color: var(--line-dark);
  backdrop-filter: blur(6px);
}
.section-saudi .fact-number { color: var(--teal-tint); }
.section-saudi .fact-label { color: rgba(250, 246, 239, 0.85); }

/* ─────────────── The Experience — journey timeline ───────────────
   Experience + Why-attend merged into one section: four stops on a
   drawn connecting line, alternating sides on desktop, single rail on
   mobile. The section background gets a faint teal dot grid so the band
   isn't flat cream (corner glows tried and rejected — read as a green
   halo). */
.journey-section {
  position: relative;
  overflow: hidden;
}
.journey-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 118, 110, 0.16) 1.2px, transparent 1.2px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(ellipse 80% 72% at 50% 45%, #000 30%, transparent 74%);
  mask-image: radial-gradient(ellipse 80% 72% at 50% 45%, #000 30%, transparent 74%);
}
.journey-section > * { position: relative; z-index: 1; }

.journey {
  list-style: none;
  position: relative;
  max-width: 56rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.6rem, 3.5vw, 2.6rem);
}
.journey::before {
  /* the connecting line, drawn top→bottom once the first stop reveals */
  content: "";
  position: absolute;
  inset-block: 32px;
  inset-inline-start: calc(50% - 1px);
  width: 2px;
  background: linear-gradient(to bottom,
    rgba(15, 118, 110, 0) 0%,
    rgba(15, 118, 110, 0.45) 10%,
    rgba(15, 118, 110, 0.45) 90%,
    rgba(15, 118, 110, 0) 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}
.journey:has(li.in-view)::before { transform: scaleY(1); }

.journey-item {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  column-gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}
.journey-node {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: #FFFFFF;
  color: var(--teal);
  border: 1px solid rgba(15, 118, 110, 0.35);
  border-radius: 50%;
  /* sand ring so the node sits cleanly over the dot grid + line */
  box-shadow: 0 0 0 6px var(--sand), 0 10px 24px -12px rgba(14, 26, 43, 0.3);
  transition: transform 0.3s ease;
}
.journey-node svg { width: 25px; height: 25px; }
.journey-body {
  grid-column: 3;
  grid-row: 1;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.7rem 1.4rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.journey-item:nth-child(even) .journey-body {
  grid-column: 1;
  text-align: end;
}
@media (hover: hover) {
  .journey-item:hover .journey-body {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -20px rgba(14, 26, 43, 0.25);
  }
  .journey-item:hover .journey-node { transform: scale(1.1); }
}
.journey-step {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--teal);
  margin-block-end: 0.3rem;
}
html[lang="en"] .journey-step { font-weight: 400; }
.journey-body h3 { font-size: 1.22rem; margin-block-end: 0.45rem; }
.journey-body p { font-size: 0.95rem; }

/* Closing card: free/no-obligation + what happens after registering */
.journey-outro {
  max-width: 46rem;
  margin-block-start: clamp(2.4rem, 5vw, 3.4rem);
  margin-inline: auto;
  background: var(--navy);
  color: rgba(250, 246, 239, 0.92);
  border-radius: var(--radius-lg);
  padding: 2rem 2.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  box-shadow: 0 28px 56px -30px rgba(14, 26, 43, 0.55);
}
.journey-outro p { font-size: 1rem; line-height: 1.8; }
.journey-outro strong { color: var(--teal-tint); }

/* ─────────────── Scarcity + countdown ─────────────── */
.scarcity-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-block-end: 1.6rem;
}
.seats-badge {
  background: rgba(15, 118, 110, 0.1);
  border: 1px solid rgba(15, 118, 110, 0.4);
  color: var(--teal-deep);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.38rem 0.95rem;
  border-radius: 100px;
}
.countdown { color: var(--ink); font-size: 0.9rem; font-weight: 700; }
.countdown strong {
  color: var(--teal-deep);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
  margin-inline-end: 0.3rem;
}

/* ─────────────── Form — light, elevated card ─────────────── */
/* Registration band mirrors the Saudi section's treatment: Lambeth Bridge
   over the Thames with grand riverfront stone architecture (from the
   Trillium Local Area set) behind a deep navy veil, white form card
   floating on top. Must be unmistakably-London landmark imagery — but NOT
   the hero's Parliament shot and not people-only lifestyle (both rejected
   by Wael). */
.form-section {
  position: relative;
  display: flex;
  justify-content: center;
  background: var(--navy-deep);
  color: var(--ink);
}
.form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/images/london-bridge-band.jpg') center 30% / cover no-repeat;
  opacity: 0.45;
}
@media (min-width: 901px) and (hover: hover) {
  .form-section::before { background-attachment: fixed; }
}
.form-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14, 26, 43, 0.82), rgba(14, 26, 43, 0.5) 50%, rgba(14, 26, 43, 0.85));
}
.form-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  text-align: center;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: 0 30px 70px -35px rgba(14, 26, 43, 0.42);
}
.form-wrap .eyebrow { margin-block-end: 0.8rem; }
.form-wrap h2 { margin-inline: auto; }
.form-intro {
  font-weight: 400;
  max-width: 48ch;
  margin: 0 auto 2.4rem;
}

.lead-form { text-align: start; }
.form-group { margin-block-end: 1.15rem; }
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-block-end: 0.45rem;
}
.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy);
  background: #FFFFFF;
  border: 1px solid #E3DDD0;
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.25);
}
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%230F766E' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 1rem center;
  padding-inline-start: 1rem;
  padding-inline-end: 2.4rem;
}
html[dir="ltr"] select.form-control { background-position: right 1rem center; }

/* Radio pills */
.radio-group { display: flex; gap: 0.7rem; }
.radio-pill { flex: 1; cursor: pointer; position: relative; }
.radio-pill input { position: absolute; opacity: 0; }
.radio-pill span {
  display: block;
  text-align: center;
  padding: 0.8rem 0.5rem;   /* ≥44px touch target */
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
  border: 1px solid #E3DDD0;
  border-radius: var(--radius);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.radio-pill input:checked + span {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--sand);
}
.radio-pill input:focus-visible + span { box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.35); }

/* intl-tel-input: phone numbers are LTR and the dial code sits on the LEFT
   in both languages (the library's [dir=rtl] rules would flip it — pin it).
   On RTL pages the library also pads the wrong side of the input, so the
   left padding is forced here; --dial-pad is synced to the chip's real
   width by the script next to initLeadForm. */
.iti { width: 100%; direction: ltr !important; }
.iti__flag-container { left: 0 !important; right: auto !important; }
.iti--separate-dial-code input.form-control {
  text-align: left;
  padding-left: var(--dial-pad, 112px) !important;
  padding-right: 1rem !important;
}

.submit-btn { margin-block-start: 0.6rem; font-size: 1.05rem; padding-block: 1rem; }
.form-privacy {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(34, 48, 63, 0.75);
  margin-block-start: 1rem;
  text-align: center;
}

.form-success {
  background: rgba(15, 118, 110, 0.08);
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
}
.form-success h3 { color: var(--navy); margin-block-end: 0.5rem; }

/* Field-level error states (ki-form.js adds/removes these) */
.form-control.error { border-color: #C4574E; }
.field-error { color: #A33F37; font-size: 0.8rem; margin-block-start: 0.3rem; }

/* ─────────────── FAQ (objection handling) ─────────────── */
.faq-section { text-align: center; position: relative; overflow: hidden; }
/* same quiet dot texture as the journey band, so the light sections rhyme */
.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 118, 110, 0.16) 1.2px, transparent 1.2px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(ellipse 80% 72% at 50% 45%, #000 30%, transparent 74%);
  mask-image: radial-gradient(ellipse 80% 72% at 50% 45%, #000 30%, transparent 74%);
}
.faq-section > * { position: relative; }
.faq-section h2 { margin-block-end: 2rem; margin-inline: auto; }
.faq { max-width: 720px; margin-inline: auto; text-align: start; }
.faq details {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.05rem 1.4rem;
  margin-block-end: 0.75rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--navy);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  color: var(--teal);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1;
  flex: 0 0 auto;
}
.faq details[open] summary::after { content: '−'; }
.faq details p { padding-block-start: 0.65rem; font-size: 0.95rem; max-width: 60ch; }
.faq summary:focus-visible { outline: 3px solid var(--teal-soft); outline-offset: 4px; border-radius: 4px; }

/* ─────────────── WhatsApp contact ─────────────── */
.wa-form-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-block-start: 1.1rem;
  color: #0E7466;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
}
.wa-form-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.wa-form-link svg { width: 19px; height: 19px; flex: 0 0 auto; }

.wa-float {
  position: fixed;
  inset-block-end: 1.4rem;
  inset-inline-end: 1.4rem;
  z-index: 55;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 10px 28px -8px rgba(18, 140, 126, 0.6);
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 30px; height: 30px; }

.sticky-actions { display: flex; align-items: center; gap: 0.7rem; }
.wa-mini {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
}
.wa-mini svg { width: 25px; height: 25px; }

/* ─────────────── Mobile sticky CTA ─────────────── */
.sticky-cta {
  position: fixed;
  inset-block-end: 0;
  inset-inline: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1.25rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(14, 26, 43, 0.96);
  backdrop-filter: blur(10px);
  border-block-start: 1px solid var(--line-dark);
}
.sticky-cta .btn { padding: 0.72rem 1.5rem; font-size: 0.95rem; white-space: nowrap; }
.sticky-cta .sticky-date { color: var(--sand); font-weight: 700; font-size: 0.92rem; }
.sticky-cta.is-hidden { display: none !important; }

/* ─────────────── Footer ─────────────── */
.site-footer {
  background: var(--navy-deep);
  color: rgba(250, 246, 239, 0.7);
  text-align: center;
  padding: 3rem var(--pad-x) 2.5rem;
  border-block-start: 1px solid var(--line-dark);
}
.footer-logo { height: 40px; width: auto; margin: 0 auto 1.2rem; }
.footer-line { font-size: 0.85rem; font-weight: 400; max-width: 62ch; margin: 0 auto 0.8rem; }
.footer-copy { font-size: 0.78rem; font-weight: 400; opacity: 0.9; }

/* Social icons — footer row + compact header cluster */
.social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.1rem;
  margin: 0.2rem auto 1.3rem;
}
.social-row a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(250, 246, 239, 0.28);
  color: rgba(250, 246, 239, 0.8);
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.social-row a:hover {
  color: var(--teal-soft);
  border-color: var(--teal-soft);
  transform: translateY(-2px);
}
.social-row svg { width: 18px; height: 18px; }
.social-row a[hidden] { display: none; }   /* Snapchat stays hidden until its URL is set */
.social-header {
  margin: 0;
  gap: 0.55rem;
}
.social-header a {
  width: 32px;
  height: 32px;
  border-color: rgba(250, 246, 239, 0.25);
}
.social-header svg { width: 15px; height: 15px; }

/* ─────────────── Motion ─────────────── */
.reveal-1, .reveal-2, .reveal-3, .reveal-4, .reveal-5 {
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.reveal-2 { animation-delay: 0.12s; }
.reveal-3 { animation-delay: 0.24s; }
.reveal-4 { animation-delay: 0.36s; }
.reveal-5 { animation-delay: 0.55s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.will-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.will-reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-1, .reveal-2, .reveal-3, .reveal-4, .reveal-5 { animation: none; }
  .will-reveal { opacity: 1; transform: none; transition: none; }
  .journey::before { transform: none; transition: none; }
  .hero-media { animation: none; transform: scale(1.02); }
  .split-media:hover img, .gateway-panel:hover img { transform: none; }
}

/* ─────────────── Responsive ─────────────── */
@media (max-width: 900px) {
  .sticky-cta { display: flex; }
  .wa-float { display: none; }   /* the sticky bar carries WhatsApp on mobile */
  .site-footer { padding-block-end: 7rem; }   /* clear the sticky bar */
  /* When the hero content is taller than the viewport it rises under the
     fixed header — reserve space for the header at the top. */
  .hero-content { padding-block-start: 7rem; }
  .split, .split.flip { grid-template-columns: 1fr; }
  .trio { grid-template-columns: 1fr; }
  .trio img { height: clamp(200px, 42vw, 320px); }
  .facts, .facts.four { grid-template-columns: 1fr 1fr; }
  /* Journey collapses to a single start-side rail: line + node column,
     all bodies on one side, no alternation. */
  .journey::before { inset-inline-start: 25px; }
  .journey { gap: 1.4rem; }
  .journey-item {
    grid-template-columns: 52px 1fr;
    column-gap: 0.95rem;
    align-items: start;
  }
  .journey-node {
    grid-column: 1;
    width: 52px;
    height: 52px;
    box-shadow: 0 0 0 5px var(--sand), 0 10px 24px -12px rgba(14, 26, 43, 0.3);
  }
  .journey-node svg { width: 22px; height: 22px; }
  .journey-body,
  .journey-item:nth-child(even) .journey-body {
    grid-column: 2;
    grid-row: 1;
    text-align: start;
  }
  /* Compact Date/Time/Venue on small screens: one slim dark band, the three
     values spread evenly, each with a small equal-size icon. Labels and
     notes are dropped (the date pill above already carries their meaning). */
  .invite-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 0.6rem 1.8rem;
    padding: 0.9rem 1.1rem;
    background: rgba(10, 19, 32, 0.92);
  }
  .invite-item {
    background: none;
    backdrop-filter: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.55rem;
  }
  .invite-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    margin-block-start: 0;
  }
  .invite-icon svg { width: 15px; height: 15px; }
  .invite-label, .invite-note { display: none; }
  .invite-value { font-size: 0.95rem; font-weight: 700; }
  .header-cta { display: none; }
  .social-header { display: none; }   /* mobile header stays minimal; footer icons remain */
  .logo-row { gap: 2rem 2.6rem; }
}

@media (max-width: 560px) {
  .site-logo { height: 36px; }
  .hero-content { margin-block-end: 2rem; }
  /* Phones: strip the hero to pill + headline + CTA — the invite strip
     right below already carries date/time/venue. */
  .hero-subtitle, .hero-trust { display: none; }
  .date-pill { font-size: 0.8rem; padding: 0.42rem 0.9rem; }
  .hero-title { margin-block: 1rem 1.4rem; }
  .gateway { grid-template-columns: 1fr; }
  .gateway-panel img { height: clamp(260px, 62vw, 340px); }
  .facts, .facts.four { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .fact { padding: 1.2rem 1.1rem 1rem; }
  .logo-row img { height: 38px; }
  .logo-row img.logo-rsg { height: 52px; }
  .logo-row img.logo-nomo { height: 25px; }
  .journey-body { padding: 1.2rem 1.25rem 1.1rem; }
  .journey-outro { padding: 1.6rem 1.4rem; }
  .radio-group.stack-sm { flex-direction: column; }
}
