/* ===========================================================
   JET LUXE — editorial noir design system
   =========================================================== */

:root {
  /* Palette — petrol blue derived from logo mark, warm paper, champagne accent */
  --paper:    #F4F1EA;
  --paper-2:  #ECE7DC;
  --ink:      #0A0E14;
  --noir:     #050709;
  --graphite: #131820;
  --char:     #1F252F;
  --line:     #DDD7CB;
  --line-2:   #2A313C;
  --muted:    #6F7480;
  --muted-d:  #8A8F99;
  --petrol:   #0F2A3C;
  --petrol-2: #1B405A;
  --gold:     #B8975A;
  --gold-2:   #D8B574;

  /* roles */
  --bg:        var(--paper);
  --surface:   #FFFFFF;
  --text:      var(--ink);
  --text-mute: var(--muted);
  --border:    var(--line);
  --accent:    var(--petrol);
  --accent-2:  var(--gold);

  /* type */
  --f-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --f-body:    'Inter', system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;
  --f-ar-disp: 'Amiri', 'Noto Naskh Arabic', serif;
  --f-ar-body: 'IBM Plex Sans Arabic', system-ui, sans-serif;

  /* spacing rhythm */
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(80px, 11vw, 168px);
}

/* dark mode swap */
[data-theme="dark"] {
  --bg: var(--noir);
  --surface: var(--graphite);
  --text: #ECE7DC;
  --text-mute: var(--muted-d);
  --border: var(--line-2);
}

/* density variants */
[data-density="cinematic"] { --section-y: clamp(120px, 14vw, 220px); }
[data-density="spacious"]  { --section-y: clamp(80px, 11vw, 168px); }
[data-density="editorial"] { --section-y: clamp(56px, 8vw, 112px); }

/* accent variants — only --accent + --accent-2 swap */
[data-accent="petrol"]    { --accent: #0F2A3C; --accent-2: #B8975A; }
[data-accent="midnight"]  { --accent: #0A0E14; --accent-2: #B8975A; }
[data-accent="champagne"] { --accent: #6B5A33; --accent-2: #B8975A; }
[data-accent="ocean"]     { --accent: #14506B; --accent-2: #C2A05A; }

/* AR */
[dir="rtl"] {
  --f-display: var(--f-ar-disp);
  --f-body:    var(--f-ar-body);
}

/* reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  transition: background-color .35s ease, color .35s ease;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }

/* selection */
::selection { background: var(--accent); color: var(--paper); }

/* ===== typography ===== */
.display {
  font-family: var(--f-display);
  font-weight: 300;
  letter-spacing: -0.012em;
  line-height: 0.98;
  font-feature-settings: "lnum", "dlig";
}
.display em { font-style: italic; font-weight: 400; }

.eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-mute);
}
.eyebrow.on-dark { color: rgba(255,255,255,0.7); }

.body-lg { font-size: 18px; line-height: 1.6; color: var(--text-mute); font-weight: 300; }
.body-md { font-size: 15px; line-height: 1.65; color: var(--text-mute); }
.body-sm { font-size: 13px; line-height: 1.55; color: var(--text-mute); }

.num-mono { font-family: var(--f-mono); font-feature-settings: "tnum"; }

/* ===== container ===== */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-wide { max-width: 1640px; }

/* ===== buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid currentColor;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn-light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.btn-outline-light {
  color: var(--paper);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.btn-small { padding: 10px 16px; font-size: 11px; letter-spacing: 0.16em; }

.btn .arr {
  width: 14px; height: 8px;
  position: relative;
  transition: transform .25s ease;
}
.btn:hover .arr { transform: translateX(3px); }
.btn .arr::before {
  content: ''; position: absolute; inset: 50% 0 auto 0;
  height: 1px; background: currentColor;
}
.btn .arr::after {
  content: ''; position: absolute;
  right: 0; top: 50%; transform: translateY(-50%) rotate(45deg);
  width: 6px; height: 6px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
}
[dir="rtl"] .btn .arr { transform: scaleX(-1); }
[dir="rtl"] .btn:hover .arr { transform: scaleX(-1) translateX(3px); }

/* ===== nav ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  padding: 18px 0;
  transition: background .3s ease, padding .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  padding: 12px 0;
}
.nav-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-mark {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border: 1px solid currentColor;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
}
.nav-name {
  font-family: var(--f-display);
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  padding: 0; margin: 0;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.78;
  position: relative;
  padding: 4px 0;
  transition: opacity .2s ease;
}
.nav-links a:hover { opacity: 1; }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
[dir="rtl"] .nav-links a::after { transform-origin: right; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}
.lang-toggle {
  display: flex;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  gap: 8px;
}
.lang-toggle button { opacity: 0.5; transition: opacity .2s ease; }
.lang-toggle button.active { opacity: 1; }
.lang-toggle button:hover { opacity: 1; }
.lang-toggle .sep { opacity: 0.3; }

/* mobile nav button */
.nav-burger { display: none; }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-row { grid-template-columns: 1fr auto; }
  .nav-burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
  }
  .nav-burger span { width: 22px; height: 1px; background: currentColor; }
}

/* ===== hero ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  color: var(--paper);
  background: var(--noir);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,7,9,0.55) 0%, rgba(5,7,9,0.15) 30%, rgba(5,7,9,0.7) 100%);
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(60px, 8vw, 110px);
}
.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}
.hero-eyebrow-row .hairline {
  display: block; width: 56px; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-size: clamp(56px, 9vw, 140px);
  max-width: 14ch;
  margin: 0 0 36px 0;
}
.hero-sub {
  max-width: 52ch;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  font-weight: 300;
  margin: 0 0 44px 0;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-meta {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(40px, 6vw, 80px);
  text-align: right;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  z-index: 3;
}
[dir="rtl"] .hero-meta { right: auto; left: var(--gutter); text-align: left; }
.hero-meta .num-mono { display: block; color: var(--gold); margin-top: 6px; }

.hero-scroll {
  position: absolute;
  left: var(--gutter); bottom: 28px;
  display: flex; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  z-index: 3;
}
.hero-scroll .dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }

/* hero variants */
[data-hero="split"] .hero-bg img { object-position: right center; }
[data-hero="split"] .hero-bg::after {
  background: linear-gradient(90deg, rgba(5,7,9,0.85) 0%, rgba(5,7,9,0.3) 60%, transparent 100%);
}
[data-hero="type"] .hero-bg img { opacity: 0.35; }
[data-hero="type"] .hero-bg::after {
  background: linear-gradient(180deg, rgba(5,7,9,0.85) 0%, rgba(5,7,9,0.6) 100%);
}

/* ===== trust strip ===== */
.trust {
  background: var(--ink);
  color: var(--paper);
  padding: 24px 0;
  overflow: hidden;
}
.trust-row {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.trust-item .num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0;
}
.trust-divider { width: 1px; height: 24px; background: rgba(255,255,255,0.18); }
@media (max-width: 900px) { .trust-divider { display: none; } }

/* ===== section ===== */
.section {
  padding: var(--section-y) 0;
}
.section.dark {
  background: var(--ink);
  color: var(--paper);
}
.section.dark .body-lg,
.section.dark .body-md,
.section.dark .body-sm { color: rgba(255,255,255,0.7); }
.section.dark .eyebrow { color: rgba(255,255,255,0.6); }
.section.dark .btn-ghost {
  color: var(--paper);
  border-color: rgba(255,255,255,0.25);
}

.section-header {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  margin-bottom: 72px;
  align-items: end;
}
.section-header .eyebrow {
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(36px, 5vw, 64px);
  margin: 0;
  max-width: 18ch;
}
.section-lead {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--text-mute);
  font-weight: 300;
  max-width: 56ch;
}
@media (max-width: 900px) {
  .section-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
}

/* ===== services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--bg);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  position: relative;
  transition: background .3s ease;
  cursor: pointer;
}
.service-card:hover { background: var(--surface); }
.service-card .idx {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.1em;
}
.service-card .glyph {
  margin: 16px 0 28px;
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-size: 22px;
  font-style: italic;
  color: var(--accent);
}
.service-card h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin: 0 0 12px 0;
  line-height: 1.1;
}
.service-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-mute);
  margin: 0 0 24px 0;
  flex: 1;
}
.service-card .cta {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.service-card .cta .arr-line {
  width: 24px; height: 1px;
  background: currentColor;
  transition: width .3s ease;
}
.service-card:hover .cta .arr-line { width: 36px; }
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ===== fleet ===== */
.fleet-filter {
  display: flex;
  gap: 8px;
  margin-bottom: 56px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}
.fleet-filter button {
  padding: 16px 20px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-mute);
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  transition: color .2s ease, border-color .2s ease;
}
.fleet-filter button.active {
  color: var(--text);
  border-bottom-color: var(--accent);
}
.fleet-filter button:hover { color: var(--text); }

.fleet-feature {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 48px;
  background: var(--surface);
  overflow: hidden;
}
.fleet-feature-img {
  aspect-ratio: 4/3;
  background: var(--ink);
  overflow: hidden;
}
.fleet-feature-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.fleet-feature-body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.fleet-feature .tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.fleet-feature h3 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(34px, 3.5vw, 48px);
  letter-spacing: -0.01em;
  margin: 18px 0 14px 0;
  line-height: 1.0;
}
.fleet-feature h3 em { font-style: italic; }
.fleet-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
  margin-top: 32px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.spec-item .lbl {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 6px;
}
.spec-item .val {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}
.spec-item .val small {
  font-family: var(--f-body);
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
  margin-left: 4px;
  font-weight: 400;
}
[dir="rtl"] .spec-item .val small { margin-left: 0; margin-right: 4px; }
@media (max-width: 900px) {
  .fleet-feature { grid-template-columns: 1fr; }
  .fleet-feature-body { padding: 32px; }
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.fleet-card {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  cursor: pointer;
}
.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -20px rgba(10,14,20,0.18);
}
.fleet-card-img {
  aspect-ratio: 4/3;
  background: var(--ink);
  overflow: hidden;
}
.fleet-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.fleet-card:hover .fleet-card-img img { transform: scale(1.03); }
.fleet-card-body {
  padding: 24px 24px 28px;
}
.fleet-card .cat {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.fleet-card h4 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 24px;
  margin: 10px 0 8px;
  line-height: 1.1;
}
.fleet-card .meta {
  font-size: 13px;
  color: var(--text-mute);
  display: flex;
  gap: 14px;
}
.fleet-card .meta span { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em; }
@media (max-width: 900px) {
  .fleet-grid { grid-template-columns: 1fr; }
}

/* ===== invictus ===== */
.invictus {
  background: var(--noir);
  color: var(--paper);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.invictus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.invictus-media {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: var(--graphite);
}
.invictus-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.1) contrast(1.05);
}
.invictus-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,7,9,0.5) 100%);
}
.invictus-media .badge {
  position: absolute;
  top: 32px; left: 32px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 12px;
  z-index: 2;
}
.invictus-media .badge::before {
  content: ''; width: 32px; height: 1px; background: var(--gold);
}
.invictus-body {
  padding: clamp(40px, 5vw, 72px);
  background: var(--graphite);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.invictus-body .eyebrow { color: var(--gold); margin-bottom: 24px; }
.invictus-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 88px);
  letter-spacing: -0.01em;
  line-height: 0.95;
  margin: 0 0 28px 0;
}
.invictus-title em { font-style: italic; color: var(--gold-2); }
.invictus-lead {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  margin: 0 0 40px;
  max-width: 50ch;
}

/* tier toggle */
.tier-toggle {
  display: inline-flex;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 4px;
  margin-bottom: 32px;
}
.tier-toggle button {
  padding: 10px 22px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  transition: all .25s ease;
}
.tier-toggle button.active {
  background: var(--gold);
  color: var(--noir);
}

.tier-detail {
  display: grid;
  gap: 18px;
  margin-bottom: 36px;
}
.tier-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: baseline;
}
.tier-row .k {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.tier-row .v {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 300;
  color: var(--paper);
}
.tier-row .v em { font-style: italic; color: var(--gold-2); }
.invictus-actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 900px) {
  .invictus-grid { grid-template-columns: 1fr; }
  .invictus-media { aspect-ratio: 4/3; min-height: 0; }
}

/* ===== flight care + about ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.split-img {
  min-height: 560px;
  overflow: hidden;
  background: var(--ink);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-body {
  padding: clamp(40px, 6vw, 100px) clamp(30px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.0;
  margin: 16px 0 24px;
  letter-spacing: -0.01em;
}
.split-title em { font-style: italic; }
.split-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mute);
  font-weight: 300;
  margin: 0 0 16px 0;
  max-width: 54ch;
}
.signature-line {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 36px;
  font-size: 13px;
}
.signature-line .item .lbl {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 4px;
}
.signature-line .item .val {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split-img { aspect-ratio: 4/5; min-height: 0; }
}

/* ===== global presence ===== */
.presence {
  background: var(--ink);
  color: var(--paper);
  padding: var(--section-y) 0;
}
.presence-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.presence-city {
  padding: 36px 24px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.presence-city:last-child { border-right: none; }
.presence-city .num {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}
.presence-city .city {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 26px;
  margin: 0 0 8px 0;
  line-height: 1;
}
.presence-city .city.hq::after {
  content: 'HQ';
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  background: var(--gold);
  color: var(--noir);
  padding: 2px 6px;
  margin-left: 10px;
  vertical-align: middle;
  font-weight: 600;
}
.presence-city .meta {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  font-family: var(--f-mono);
}
@media (max-width: 1100px) { .presence-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .presence-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== contact ===== */
.contact-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-channels { display: grid; gap: 28px; }
.channel {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.channel:first-child { border-top: 1px solid var(--border); }
.channel .glyph {
  width: 40px; height: 40px;
  border: 1px solid var(--accent);
  color: var(--accent);
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
}
.channel .body .lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 4px;
}
.channel .body .val {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 300;
}
.channel .body .note {
  font-size: 11px;
  color: var(--text-mute);
  margin-top: 4px;
  font-family: var(--f-mono);
  letter-spacing: 0.04em;
}
@media (max-width: 900px) {
  .contact-row { grid-template-columns: 1fr; gap: 48px; }
}

/* ===== footer ===== */
.footer {
  background: var(--noir);
  color: rgba(255,255,255,0.65);
  padding: 96px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand .nav-name { color: var(--paper); }
.footer-brand p {
  font-size: 13px;
  margin-top: 24px;
  line-height: 1.6;
  max-width: 32ch;
}
.footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--paper);
  margin: 0 0 18px;
}
.footer-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid; gap: 10px;
}
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--gold-2); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  font-family: var(--f-mono);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== quote modal ===== */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(5,7,9,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  animation: fadeIn .25s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--paper);
  color: var(--ink);
  width: 100%;
  max-width: 760px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp .35s cubic-bezier(.2,.8,.2,1);
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  font-size: 18px;
  z-index: 5;
  color: var(--ink);
}
[dir="rtl"] .modal-close { right: auto; left: 20px; }
.modal-progress {
  display: flex;
  gap: 4px;
  padding: 20px 40px;
  border-bottom: 1px solid var(--line);
}
.modal-progress .step {
  flex: 1;
  height: 2px;
  background: var(--line);
  transition: background .3s ease;
}
.modal-progress .step.active,
.modal-progress .step.done {
  background: var(--ink);
}
.modal-body {
  padding: 44px 56px 40px;
}
.modal-step-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.modal-h {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  line-height: 1.05;
}
.modal-sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 36px;
}
.field {
  margin-bottom: 24px;
}
.field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 10px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  font-size: 16px;
  font-family: var(--f-display);
  font-weight: 400;
  transition: border-color .2s ease;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 0;
  border-bottom-color: var(--accent);
}
.field input::placeholder { color: var(--muted); opacity: 0.5; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.option-card {
  padding: 22px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: all .2s ease;
}
[dir="rtl"] .option-card { text-align: right; }
.option-card:hover { border-color: var(--ink); }
.option-card.selected {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.option-card h4 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 20px;
  margin: 0 0 6px;
  line-height: 1.1;
}
.option-card p { font-size: 12px; margin: 0; opacity: 0.6; }
.modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.modal-footer .step-count {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* confirmation */
.confirm {
  text-align: center;
  padding: 24px 0;
}
.confirm .check {
  width: 64px; height: 64px;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 24px;
  font-family: var(--f-display);
  font-size: 32px;
}
.confirm .ref {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.16em;
  margin-top: 16px;
}
.confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  .modal-body { padding: 32px 24px; }
  .modal-progress { padding: 16px 24px; }
  .field-row, .option-grid { grid-template-columns: 1fr; }
}

/* ===== whatsapp fab ===== */
.fab {
  position: fixed;
  right: 28px; bottom: 28px;
  z-index: 70;
  width: 56px; height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 12px 36px -8px rgba(37,211,102,0.55);
  transition: transform .25s ease;
}
.fab:hover { transform: scale(1.08); }
[dir="rtl"] .fab { right: auto; left: 28px; }
.fab svg { width: 28px; height: 28px; fill: currentColor; }

/* ===== marquee (subtle) ===== */
.marquee {
  overflow: hidden;
  padding: 18px 0;
  border-block: 1px solid var(--border);
  background: var(--paper-2);
}
.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: scroll 50s linear infinite;
  width: max-content;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
[dir="rtl"] .marquee-track { animation-direction: reverse; }
.marquee-item {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--text-mute);
}
.marquee-item .sep { color: var(--accent-2); margin: 0 24px; }

/* utilities */
.hairline { display: block; height: 1px; background: var(--border); }
.dim { color: var(--text-mute); }
.italic { font-style: italic; }
.gold { color: var(--accent-2); }
