/* ═══════════════════════════════════════════════════════════════
   KAZDORA WEBSITE — style.css
   Brand tokens from AppColors.dart (authoritative hex values)
   ═══════════════════════════════════════════════════════════════ */

/* ─── 1. CSS TOKENS ─────────────────────────────────────────── */
:root {
  /* ── Colors: exact hex from app_colors.dart ── */
  --beige:       #EDE8DF;
  --beige-2:     #E5DFD5;
  --beige-3:     #F5F2EC;
  --navy:        #0B1A2B;
  --navy-2:      #152236;
  --coral:       #E76F51;
  --coral-2:     #D4603E;
  --teal:        #4A9B7F;
  --teal-light:  #D4EDE6;
  --sky:         #A8D5E2;
  --sky-light:   #EAF6FA;
  --amber:       #F9A825;
  --amber-light: #FFF8E1;
  --green:       #2D6A4F;
  --green-light: #D8F3DC;
  --muted:       #8A7F72;
  --border:      #D9D3C7;
  --white:       #FFFFFF;

  /* ── Shadows ── */
  --shadow-sm: 0 2px 8px  rgba(11,26,43,.08);
  --shadow-md: 0 8px 32px rgba(11,26,43,.12);
  --shadow-lg: 0 20px 60px rgba(11,26,43,.18);

  /* ── Typography ── */
  --font-ar: 'Tajawal', sans-serif;
  --font-en: 'Plus Jakarta Sans', sans-serif;

  /* ── Type scale ── */
  --text-xs:  12px;
  --text-sm:  14px;
  --text-base:16px;
  --text-md:  18px;
  --text-lg:  22px;
  --text-xl:  28px;
  --text-2xl: 38px;
  --text-3xl: 52px;

  /* ── Spacing ── */
  --sp-1:  4px;  --sp-2:  8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 20px;  --sp-6: 24px;  --sp-8: 32px; --sp-10:40px;
  --sp-12:48px;  --sp-16:64px;  --sp-20:80px; --sp-24:96px;

  /* ── Layout ── */
  --container:  1200px;
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  /* ── Phone mockup ── */
  --phone-w:      244px;
  --phone-h:      500px;
  --phone-r:      38px;
  --phone-border: 8px;
}

/* ─── 2. RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* Language-driven font and direction */
html[lang="ar"] { direction: rtl; font-family: var(--font-ar); }
html[lang="en"] { direction: ltr; font-family: var(--font-en); }

body {
  background: var(--beige);
  color: var(--navy);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img      { display: block; max-width: 100%; }
a        { text-decoration: none; color: inherit; }
button   { cursor: pointer; border: none; background: none; font: inherit; }
h1,h2,h3 { line-height: 1.2; }
ul       { list-style: none; }

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -60px;
  inset-inline-start: 0;
  background: var(--coral);
  color: var(--white);
  padding: var(--sp-3) var(--sp-6);
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 9999;
  transition: top .2s;
  font-size: var(--text-sm);
  font-weight: 700;
}
.skip-link:focus { top: 0; }

/* Focus ring — visible for keyboard users */
:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── 3. LAYOUT UTILITIES ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.section-head {
  margin-bottom: var(--sp-12);
}
.section-head h2 {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--navy);
  margin-top: var(--sp-2);
}
.section-desc {
  color: var(--muted);
  margin-top: var(--sp-4);
  font-size: var(--text-md);
  line-height: 1.7;
}

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral);
}
.eyebrow::before,
.eyebrow::after {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 1px;
  background: currentColor;
}


/* ─── 4. HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--beige);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
  color: var(--navy);
}
.site-header .nav-link       { color: var(--navy); }
.site-header .nav-link:hover { color: var(--coral); }
.site-header .lang-toggle    { border-color: var(--border); color: var(--navy); }
.site-header .menu-btn       { color: var(--navy); }
.site-header.scrolled .menu-btn       { color: var(--navy); }

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  height: 68px;
}

.logo-link { flex-shrink: 0; }
.site-logo {
  width: 44px; height: 44px;
  border-radius: 10px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex: 1;
  justify-content: center;
}
.nav-link {
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-link:hover { background: rgba(11,26,43,.06); }

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.lang-toggle {
  padding: var(--sp-2) var(--sp-4);
  border: 1.5px solid;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: .04em;
  transition: background .2s, color .2s, border-color .2s;
}
.lang-toggle:hover {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

.menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  transition: background .2s;
}
.menu-btn:hover { background: rgba(11,26,43,.08); }
.icon-close { display: none; }
.menu-btn.open .icon-menu  { display: none; }
.menu-btn.open .icon-close { display: block; }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: var(--sp-4) var(--sp-6) var(--sp-6);
  gap: var(--sp-1);
  background: var(--beige);
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy);
  transition: background .15s;
}
.mobile-nav-link:hover { background: var(--beige-2); }


/* ─── 5. HERO ───────────────────────────────────────────────── */

/* Hero = full-bleed carousel container */
.hero {
  position: relative;
  height: 70vh;
  min-height: 340px;
  overflow: hidden;
  background: var(--navy);
}

/* Full-bleed carousel fills entire hero */
.carousel         { position: absolute; inset: 0; z-index: 0; }
.carousel-slides  { position: relative; width: 100%; height: 100%; }
.carousel-slide   { position: absolute; inset: 0; opacity: 0; transition: opacity .55s ease; }
.carousel-slide.slide--active { opacity: 1; }

/* Placeholder gradient slide */
.slide-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.slide-ph-icon { opacity: .55; }

/* Real photo slide */
.carousel-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 60%;
}

/* Caption pill — absolute bottom-right corner, placeholder slides only */
.hero-slide-loc {
  position: absolute;
  bottom: var(--sp-10);
  right: var(--sp-4);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(11,26,43,.55);
  color: var(--beige);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
}

/* Nav dots — absolute, pinned to bottom-left of carousel */
.carousel-dots {
  position: absolute;
  bottom: var(--sp-4);
  left: var(--sp-5);
  z-index: 2;
  display: flex;
  gap: var(--sp-2);
}
.carousel-dot {
  width: 7px; height: 7px;
  border-radius: 99px;
  background: rgba(237,232,223,.32);
  border: none; cursor: pointer;
  transition: background .35s, width .4s cubic-bezier(.4,0,.2,1);
  padding: 0;
  flex-shrink: 0;
}
.carousel-dot:hover  { background: rgba(237,232,223,.6); }
.carousel-dot.dot--active { background: var(--coral); width: 22px; }

/* ── Floating white card — overlaps carousel bottom, sits on page bg ── */
.hero-card-outer {
  display: flex;
  justify-content: center;
  padding-inline: var(--sp-5);
  margin-top: -48px;
  position: relative;
  z-index: 10;
  padding-bottom: var(--sp-6);
  pointer-events: none;
}

.hero-card {
  pointer-events: auto;
  width: 100%;
  max-width: 400px;
  background: var(--white);
  border-radius: 12px;
  border: 0.5px solid var(--border);
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  box-shadow: 0 4px 32px rgba(11,26,43,.10);
}

/* Eyebrow pill badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}

.hero-h1 {
  font-size: clamp(1.3rem, 4vw, 1.65rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
}
.hero-subline {
  font-style: normal;
  color: var(--coral);
  display: block;
  font-weight: 700;
  font-size: .82em;
  margin-top: var(--sp-1);
}
.hero-body {
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.65;
}

/* ── Waitlist CTA form ── */
.hero-cta {
  display: flex;
  gap: var(--sp-2);
  align-items: stretch;
  margin-top: var(--sp-1);
}
.hero-cta-input {
  flex: 1;
  min-width: 0;
  height: 44px;
  padding: 0 var(--sp-3);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-family: inherit;
  font-size: var(--text-sm);
  transition: border-color .2s;
}
.hero-cta-input::placeholder { color: var(--muted); opacity: .75; }
.hero-cta-input:focus {
  outline: none;
  border-color: var(--teal);
}
.hero-cta-btn {
  height: 44px;
  padding: 0 var(--sp-5);
  border-radius: var(--radius-md);
  background: var(--coral);
  color: var(--white);
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .1s;
  white-space: nowrap;
  flex-shrink: 0;
}
.hero-cta-btn:hover  { background: var(--coral-2); }
.hero-cta-btn:active { transform: scale(.97); }

/* Trust / privacy line */
.hero-trust {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  opacity: .8;
}

/* ── Store label ── */
.store-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
}
.store-icon { flex-shrink: 0; opacity: .4; color: var(--navy); }


/* Offset anchor targets so they clear the fixed header */
.why, .experiences, .hiw, .about { scroll-margin-top: 72px; }

/* ─── 7. WHY KAZDORA ────────────────────────────────────────── */
.why {
  padding-block: var(--sp-20) var(--sp-24);
  background: var(--beige);
}

/* Asymmetric zigzag grid — avoids the generic 2×2 equal-box look */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

/* Card 1: compact, dark, top-left anchor */
.why-card--verified { grid-column: 1; grid-row: 1; }
/* Card 2: wide featured, top-right */
.why-card--photos   { grid-column: 2 / 4; grid-row: 1; }
/* Card 3: wide, bottom-left */
.why-card--currency { grid-column: 1 / 3; grid-row: 2; }
/* Card 4: compact, bottom-right corner */
.why-card--love     { grid-column: 3; grid-row: 2; }

.why-card {
  background: var(--beige-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: box-shadow .25s, transform .25s;
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.why-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-icon svg { width: 28px; height: 28px; }

.why-card h3 {
  font-size: var(--text-lg);
  font-weight: 800;
  line-height: 1.25;
}
.why-card p {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--muted);
  flex: 1;
}

/* Card-specific colors */
.why-card--verified {
  background: var(--navy);
  border-color: rgba(255,255,255,.07);
  color: var(--beige);
}
.why-card--verified .why-icon {
  background: rgba(231,111,81,.18);
  color: var(--coral);
}
.why-card--verified .why-icon svg { stroke: var(--coral); }
.why-card--verified h3 { color: var(--beige); }
.why-card--verified p  { color: rgba(237,232,223,.6); }

.why-card--photos .why-icon {
  background: var(--teal-light);
  color: var(--teal);
}
.why-card--photos .why-icon svg { stroke: var(--teal); }

.why-card--currency {
  background: var(--amber-light);
  border-color: rgba(249,168,37,.2);
}
.why-card--currency .why-icon {
  background: rgba(249,168,37,.2);
  color: var(--amber);
}
.why-card--currency .why-icon svg { stroke: var(--amber); }

.why-card--love {
  background: var(--teal-light);
  border-color: rgba(74,155,127,.2);
}
.why-card--love .why-icon {
  background: rgba(231,111,81,.12);
  color: var(--coral);
}
.why-card--love .why-icon svg { stroke: var(--coral); }


/* ─── 8. TYPES OF EXPERIENCES ───────────────────────────────── */
.experiences {
  padding-block: var(--sp-16) var(--sp-20);
  background: var(--beige-2);
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}

.exp-card {
  background: var(--beige-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8) var(--sp-6);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-3);
  transition: box-shadow .25s, transform .25s;
}
.exp-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.exp-card--live {
  background: var(--white);
  border-color: var(--teal);
  border-width: 1.5px;
}
.exp-card--soon { /* coming-soon cards — default styles from .exp-card apply */ }

.exp-icon {
  width: 56px; height: 56px;
  color: var(--muted);
}
.exp-card--live .exp-icon { color: var(--teal); }

.exp-card h3 {
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--navy);
}
.exp-card p {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.exp-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 4px 10px;
  border-radius: 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
}
.exp-badge--live {
  background: var(--green-light);
  color: var(--green);
}
.exp-badge--live::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}
.exp-badge--soon {
  background: rgba(138,127,114,.12);
  color: var(--muted);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.75); }
}


/* ─── 9. HOW IT WORKS ───────────────────────────────────────── */
.hiw {
  background: var(--beige-2);
  border-top: 1px solid var(--border);
}
.hiw .section-head {
  padding-top: var(--sp-20);
  padding-bottom: 0;
  margin-bottom: var(--sp-4);
}

/* Desktop: scroll-snap container */
.hiw-body {
  display: block;
  overflow-y: scroll;
  height: 100vh;
  scroll-snap-type: y proximity;
  scrollbar-width: none;
}
.hiw-body::-webkit-scrollbar { display: none; }

.hiw-steps { display: block; }

/* Each step = one full-screen snap slide */
.hiw-step {
  height: 100vh;
  scroll-snap-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--sp-16);
  padding: var(--sp-8);
}
.hiw-step--book { /* step 3 semantic marker */ }

/* Text column within each step */
.hiw-step-text {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  max-width: 380px;
}

.step-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--muted);
}
.hiw-step h3 {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
}
.hiw-step p {
  font-size: var(--text-md);
  color: var(--muted);
  max-width: 400px;
  line-height: 1.75;
}

/* Screenshot container — shown on both desktop and mobile */
.hiw-inline-img {
  flex-shrink: 0;
  width: 244px;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy-2);
  position: relative;
}
.hiw-inline-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ── Booking toggle (step 3) ── */
.step-toggle {
  display: inline-flex;
  background: var(--beige);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 3px;
  gap: 3px;
  align-self: flex-start;
}
.booking-tab {
  padding: var(--sp-2) var(--sp-5);
  border-radius: calc(var(--radius-md) - 3px);
  font-size: var(--text-sm);
  font-weight: 700;
  font-family: inherit;
  color: var(--muted);
  transition: background .2s, color .2s, box-shadow .2s;
}
.booking-tab--active {
  background: var(--navy);
  color: var(--beige);
  box-shadow: var(--shadow-sm);
}
.booking-tab:not(.booking-tab--active):hover { color: var(--navy); }

/* ── Mini boarding-pass (pure CSS, no image asset) ── */
.mini-ticket {
  display: inline-flex;
  align-items: stretch;
  background: var(--beige-3);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: visible;
  max-width: 280px;
  position: relative;
  /* Perforated edge via radial-gradient mask on the middle divider */
}

.mt-seg {
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.mt-seg--from { /* origin segment — default .mt-seg styles apply */ }
.mt-seg--to   { text-align: end; }
html[dir="ltr"] .mt-seg--to { text-align: start; }

.mt-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.mt-city {
  font-size: var(--text-md);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}
.mt-sub {
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}

/* Perforated middle divider */
.mt-mid {
  flex-shrink: 0;
  width: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.mt-perf,
.mt-perf--top,
.mt-perf--bottom {
  flex: 1;
  width: 1px;
  min-height: 12px;
  background: repeating-linear-gradient(
    to bottom,
    var(--border) 0,
    var(--border) 5px,
    transparent 5px,
    transparent 11px
  );
}
.mt-arrow {
  color: var(--muted);
  flex-shrink: 0;
  margin-block: var(--sp-2);
}
html[dir="rtl"] .mt-arrow { transform: scaleX(-1); }




/* ─── 10. ABOUT ─────────────────────────────────────────────── */
.about {
  padding-block: var(--sp-20) var(--sp-24);
  background: var(--beige);
  border-top: 1px solid var(--border);
}
.about-inner {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
}
.about-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--teal-light);
  color: var(--green);
  padding: 4px 14px;
  border-radius: 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.about h2 {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--navy);
}
.about p {
  font-size: var(--text-md);
  color: var(--muted);
  line-height: 1.8;
}


/* ─── 11. FOOTER ────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.05);
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-8);
  padding-block: var(--sp-12);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex: 1;
  min-width: 180px;
}
.footer-logo { border-radius: 8px; }
.footer-brand-name {
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--beige);
}
.footer-brand-desc {
  font-size: var(--text-xs);
  color: rgba(237,232,223,.4);
  margin-top: 2px;
}

.footer-contact { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-contact-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(237,232,223,.4);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.footer-link {
  font-size: var(--text-sm);
  color: rgba(237,232,223,.7);
  border-bottom: 1px solid rgba(237,232,223,.2);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.footer-link:hover { color: var(--coral); border-color: var(--coral); }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-block: var(--sp-5);
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.footer-copy {
  font-size: var(--text-xs);
  color: rgba(237,232,223,.3);
}

/* Investor line — visually minor, separate from main contact */
.footer-investor {
  font-size: 12px;
  color: rgba(237,232,223,.28);
}
.footer-investor-link {
  color: rgba(237,232,223,.45);
  border-bottom: 1px solid rgba(237,232,223,.2);
  transition: color .2s;
}
.footer-investor-link:hover { color: var(--teal); }


/* ─── 12. RESPONSIVE ────────────────────────────────────────── */

/* Tablet: ≤1024px */
@media (max-width: 1024px) {
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile: ≤768px */
@media (max-width: 768px) {
  /* Header */
  .main-nav  { display: none; }
  .menu-btn  { display: flex; }

  /* Hero */
  .hero            { height: 54vh; min-height: 260px; }
  .hero-card-outer { margin-top: -32px; padding-inline: var(--sp-4); padding-bottom: var(--sp-4); }
  .hero-card       { padding: 16px 18px 20px; }
  .hero-h1         { font-size: clamp(1.2rem, 6vw, 1.45rem); }
  .hero-cta        { flex-wrap: wrap; }
  .hero-cta-btn    { flex: 1 0 100%; }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-card--verified,
  .why-card--photos,
  .why-card--currency,
  .why-card--love { grid-column: 1; grid-row: auto; }

  /* Experiences */
  .exp-grid { grid-template-columns: 1fr 1fr; }

  /* HIW — stacked fallback (override desktop scroll-snap) */
  .hiw-body {
    overflow-y: visible;
    height: auto;
    scroll-snap-type: none;
    padding-inline: var(--sp-4);
  }
  .hiw-step {
    height: auto;
    scroll-snap-align: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: var(--sp-10) 0;
    border-bottom: 1px solid var(--border);
  }
  .hiw-step:last-child { border-bottom: none; }
  .hiw-step-text { gap: var(--sp-4); }
  .hiw-step h3 { font-size: var(--text-lg); }
  .hiw-inline-img {
    width: 100%;
    height: 240px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-top: var(--sp-4);
    flex-shrink: unset;
  }

  /* Mini ticket */
  .mini-ticket { max-width: 100%; width: 100%; }

  /* Footer */
  .footer-main { flex-direction: column; align-items: flex-start; gap: var(--sp-6); }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

/* Small mobile: ≤480px */
@media (max-width: 480px) {
  .exp-grid { grid-template-columns: 1fr; }
  .section-head h2 { font-size: var(--text-xl); }
  .why-grid { gap: var(--sp-4); }
}


/* ─── 13. REDUCED MOTION ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  /* Disable hero carousel transitions */
  .carousel-slide { transition: none; }

  /* Disable HIW scroll-snap — fall back to normal scroll */
  .hiw-body { overflow-y: auto !important; height: auto !important; scroll-snap-type: none !important; }
  .hiw-step { height: auto !important; scroll-snap-align: none !important; }

  /* Badge pulse */
  .exp-badge--live::before { animation: none; }

  /* Global kill for anything decorative */
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
