/* SkyTeam, Base */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--body-soft);
  background: var(--page-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-4);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 var(--space-4); }

a { color: var(--ink); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--gold-deep); }

img, svg, video { display: block; max-width: 100%; height: auto; }
ul, ol { padding: 0; margin: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; }

::selection { background: var(--gold-12); color: var(--ink); }

.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;
}

/* Layout helpers */
.container        { max-width: var(--container);        margin: 0 auto; padding: 0 var(--space-5); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--space-5); }
.container-wide   { max-width: var(--container-wide);   margin: 0 auto; padding: 0 var(--space-5); }

/* Section card pattern (white rounded card with two ambient blobs) */
.section-card {
  position: relative;
  padding: var(--space-9) var(--space-6);
  background: #ffffff;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.section-card::before,
.section-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.section-card::before {
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--gold-08) 0%, transparent 70%);
}
.section-card::after {
  bottom: -180px; left: -180px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(17,17,17,0.04) 0%, transparent 70%);
}
.section-card.flip::before { right: auto; left: -120px; }
.section-card.flip::after  { left: auto; right: -180px; }
.section-card > * { position: relative; z-index: 1; }

@media (max-width: 720px) {
  .section-card { padding: var(--space-8) var(--space-4); }
}

.section { padding: var(--space-7) 0; }
.section + .section { padding-top: 0; }

/* Eyebrow pill */
.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 16px;
  background: var(--gold-12);
  border: 1px solid var(--gold-30);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow-on-dark { color: var(--gold); background: rgba(201,162,77,0.18); border-color: rgba(201,162,77,0.4); }

/* Heading with one gold-highlighted word */
.h-gold span {
  color: var(--gold);
  position: relative;
  display: inline-block;
}
.h-gold span::after {
  content: "";
  position: absolute;
  left: 0; bottom: 4px;
  width: 100%; height: 8px;
  background: var(--gold-18);
  border-radius: 4px;
  z-index: -1;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto var(--space-7);
  text-align: center;
  position: relative;
}
.section-intro p {
  margin: 0;
  font-size: var(--fs-lead);
  line-height: 1.7;
  color: var(--body-soft);
}
.section-intro h2 { margin: 0 0 14px; }

.lead { font-size: var(--fs-lead); color: var(--body-soft); line-height: 1.7; }
.muted { color: var(--muted); }
.text-center { text-align: center; }

/* Grid utilities */
.grid { display: grid; gap: var(--space-5); }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Reveal-on-scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ============================================================
 * IMAGE PLACEHOLDER (premium, intentional, black-bordered)
 * Use anywhere a real photo will live later.
 * ============================================================ */
.img-ph {
  position: relative;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1a1a1a 0%, #0c0c0c 100%);
  border: 2px solid #000000;
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-ph::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.85;
}
.img-ph::after {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(201,162,77,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.img-ph .ph-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 28px;
  max-width: 80%;
}
.img-ph .ph-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(201,162,77,0.18);
  border: 1px solid rgba(201,162,77,0.4);
  color: var(--gold);
  margin-bottom: 14px;
}
.img-ph .ph-frame svg { width: 24px; height: 24px; }
.img-ph .ph-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
  font-weight: 700;
}
.img-ph .ph-sub {
  display: block;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
}
.img-ph.ph-square { aspect-ratio: 1/1; }
.img-ph.ph-wide   { aspect-ratio: 21/9; }
.img-ph.ph-portrait { aspect-ratio: 4/5; }
.img-ph.ph-tall   { aspect-ratio: 3/4; }

/* ============================================================
 * RTL support
 * ============================================================ */
[dir="rtl"] body { font-family: "Cairo", var(--font-body); }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4 {
  font-family: "Cairo", var(--font-display);
  letter-spacing: 0;
}
[dir="rtl"] .eyebrow { letter-spacing: 0.05em; }
[dir="rtl"] .btn .arrow { transform: scaleX(-1); }
[dir="rtl"] .btn:hover .arrow { transform: scaleX(-1) translateX(3px); }
[dir="rtl"] .section-card::before { right: auto; left: -120px; }
[dir="rtl"] .section-card::after  { left: auto; right: -180px; }
[dir="rtl"] .section-card.flip::before { left: auto; right: -120px; }
[dir="rtl"] .section-card.flip::after  { right: auto; left: -180px; }
[dir="rtl"] .h-gold span::after { left: auto; right: 0; }
[dir="rtl"] .form-after-steps li { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .faq-item summary { padding: 18px 22px 18px 56px; text-align: right; }
[dir="rtl"] .faq-item summary::after { right: auto; left: 16px; }
[dir="rtl"] .journey-step { text-align: center; }
@media (max-width: 900px) {
  [dir="rtl"] .journey-step {
    text-align: right;
    padding: 12px 32px 12px 0;
    border-left: 0;
    border-right: 2px dashed var(--gold-30);
    margin-left: 0;
    margin-right: 12px;
  }
  [dir="rtl"] .journey-step .marker { left: auto; right: -10px; }
}
[dir="rtl"] .pane-dark .h-gold span::after,
[dir="rtl"] .final-cta .h-gold span::after { right: 0; left: auto; }
