/* ============================================================
   مركز السبيعي — ALSUBAIE garage
   Quiet luxury · nocturnal · editorial · RTL
   White + dark red + black (showroom identity)
   ------------------------------------------------------------
   Production stylesheet — no framework, no preprocessor.
   ============================================================ */

:root{
  /* surfaces — white page, black bands (showroom: white building, black walls) */
  --paper:       #F5F1EB;
  --surface:     #FFFFFF;
  --onyx:        #0E0B0A;   /* black band / hero / wizard */
  --raised:      #141010;   /* raised black band */
  /* accent — dark red only (the center's red) */
  --gold:        #A01C1C;   /* primary dark red */
  --champagne:   #C7382E;   /* brighter red highlight */
  --deep-gold:   #5E0E0E;   /* deepest oxblood */
  /* text — dark on white by default (darkened for clarity) */
  --ivory:       #14100D;
  --muted:       #453F39;
  --faint:       #756D64;
  /* hairlines */
  --line-gold:   rgba(160,28,28,0.28);
  --line-ivory:  rgba(26,20,17,0.12);
  /* gradients */
  --grad-gold:   linear-gradient(135deg, #C7382E, #A01C1C 55%, #5E0E0E);
  --btn-text:    #FFFFFF;
  --oxblood:     #4A0E0E;

  --maxw: 1280px;
  --pad: clamp(20px, 5vw, 72px);
  --rhythm: clamp(90px, 13vh, 180px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* dark bands re-scope text/line vars to light so existing rules just work */
.hero, .raised, .ba, .wiz-overlay, .mobile-menu{
  --ivory: #F2ECE3;
  --muted: #9A938A;
  --faint: #6E665C;
  --line-ivory: rgba(242,236,227,0.12);
  --line-gold: rgba(199,56,46,0.34);
  --gold: #CF3A2E;        /* red reads brighter on black */
  --champagne: #E0594B;
  color: var(--ivory);
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body{
  margin: 0;
  background: var(--paper);
  color: var(--ivory);
  font-family: "Cairo", "Segoe UI", Tahoma, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(160,28,28,0.12);
  overflow-wrap: break-word;
}
/* never let long URLs / emails / model codes push the layout wider than the screen */
.review-row .v, .sel-name, .suc-ref .v, .foot-addr, .legal p, .legal li{ overflow-wrap: anywhere; }

::selection{ background: rgba(160,28,28,0.22); color: var(--ivory); }

a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; }
img{ max-width: 100%; }

/* Latin runs inside RTL text stay left-to-right and isolated */
.ltr{ direction: ltr; unicode-bidi: isolate; }

/* keyboard accessibility — visible focus ring */
:focus-visible{ outline: 2px solid var(--champagne); outline-offset: 3px; border-radius: 2px; }
.btn-gold:focus-visible, .btn-ghost:focus-visible{ outline-offset: 4px; }

/* skip link */
.skip-link{
  position: fixed; top: 10px; inset-inline-start: 10px; z-index: 9999;
  background: var(--onyx); color: #F2ECE3; padding: 10px 18px; border-radius: 3px;
  font-size: 14px; transform: translateY(-180%); transition: transform .3s var(--ease);
}
.skip-link:focus{ transform: none; }

/* ---------- film grain ---------- */
.grain{
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  opacity: 0.045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}


/* ---------- shared layout ---------- */
.wrap{ max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
section{ position: relative; }
.raised{ background: var(--raised); }

.eyebrow{
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12.5px; letter-spacing: 0.22em; color: var(--gold);
  font-weight: 700;
}
.eyebrow::before{
  content: ""; width: 34px; height: 1px; background: var(--gold); opacity: .8;
}

.tnum{ font-variant-numeric: tabular-nums; letter-spacing: 0.18em; }

/* ---------- buttons ---------- */
.btn-gold{
  position: relative; overflow: hidden;
  background: var(--grad-gold); color: var(--btn-text);
  border: none; padding: 17px 34px; border-radius: 3px;
  font-size: 15px; font-weight: 500; letter-spacing: 0.02em;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), opacity .4s var(--ease);
}
.btn-gold::after{
  content: ""; position: absolute; top: 0; bottom: 0; width: 40%;
  left: -60%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-18deg); transition: left .7s var(--ease);
}
.btn-gold:hover{ transform: translateY(-2px); box-shadow: 0 18px 40px -20px rgba(160,28,28,.6); }
.btn-gold:hover::after{ left: 120%; }
.btn-gold:disabled{ opacity: .4; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-gold:disabled::after{ display: none; }

.btn-ghost{
  background: transparent; color: var(--ivory);
  border: 1px solid var(--line-gold); padding: 16px 32px; border-radius: 3px;
  font-size: 15px; font-weight: 400; letter-spacing: 0.02em;
  transition: border-color .5s var(--ease), color .5s var(--ease), background .5s var(--ease);
}
.btn-ghost:hover{ border-color: var(--gold); color: var(--champagne); background: rgba(160,28,28,0.04); }

/* ---------- reveal animation ---------- */
.reveal{ opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in{ opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
  .reveal{ opacity: 1; transform: none; transition: none; }
  html{ scroll-behavior: auto; }
}

/* ============================================================ NAV */
.nav{
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 1000;
  transition: background .6s var(--ease), backdrop-filter .6s var(--ease), border-color .6s var(--ease);
  border-bottom: 1px solid transparent;
  --ivory: #F4EEE6; --muted: rgba(244,238,230,0.72);   /* light over the dark hero */
}
.nav.scrolled{
  background: rgba(245,241,235,0.9); backdrop-filter: blur(16px) saturate(120%);
  border-bottom: 1px solid var(--line-gold);
  --ivory: #1A1411; --muted: #6E665F;                  /* dark on the white bar */
}
.nav-inner{
  max-width: var(--maxw); margin: 0 auto; padding: 22px var(--pad);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  transition: padding .5s var(--ease);
}
.nav.scrolled .nav-inner{ padding-block: 16px; }
.logo{ justify-self: start; line-height: 1.05; display: block; }
.logo-img{ height: 46px; width: auto; display: block; transition: height .5s var(--ease); }
.nav.scrolled .logo-img{ height: 38px; }
.logo-dark{ display: none; }
.nav.scrolled .logo-light{ display: none; }
.nav.scrolled .logo-dark{ display: block; }
.nav-links{ justify-self: center; display: flex; gap: 30px; }
.nav-links a{ font-size: 14px; color: var(--muted); font-weight: 400; position: relative; transition: color .4s var(--ease); }
.nav-links a::after{ content:""; position:absolute; inset-inline-start:0; bottom:-6px; height:1px; width:0; background:var(--gold); transition: width .4s var(--ease); }
.nav-links a:hover{ color: var(--ivory); }
.nav-links a:hover::after{ width: 100%; }
.nav-cta{ justify-self: end; }
.nav-burger{ display: none; justify-self: end; background: none; border: none; color: var(--ivory); padding: 6px; }

/* ============================================================ HERO */
.hero{ min-height: 100svh; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg{ position: absolute; inset: 0; z-index: 0; background:
    radial-gradient(120% 90% at 82% 12%, rgba(199,56,46,0.22), transparent 42%),
    radial-gradient(110% 80% at 10% 96%, rgba(120,20,20,0.30), transparent 46%),
    radial-gradient(140% 120% at 50% 50%, #161011 0%, #0C0A09 60%);
}
.hero-stage{
  position: absolute; inset: 0; z-index: 0; opacity: .9;
  background:
    radial-gradient(60% 30% at 70% 72%, rgba(199,56,46,0.13), transparent 70%),
    radial-gradient(40% 18% at 64% 82%, rgba(224,89,75,0.08), transparent 70%);
}
.hero-floor{
  position: absolute; inset-inline: 0; bottom: 0; height: 30%; z-index: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
}
.sweep{ position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.sweep::before{
  content:""; position: absolute; top: -20%; bottom: -20%; width: 36%;
  inset-inline-start: -40%;
  background: linear-gradient(100deg, transparent, rgba(224,89,75,0.12), transparent);
  filter: blur(8px); transform: skewX(-14deg);
  animation: sweep 9s var(--ease) infinite;
}
@keyframes sweep{ 0%{ inset-inline-start: -40%; } 55%,100%{ inset-inline-start: 140%; } }

.hero-inner{
  position: relative; z-index: 2; width: 100%;
  max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad);
  display: flex; justify-content: flex-start; /* push content to the RIGHT in RTL */
}
.hero-col{ width: min(720px, 100%); text-align: start; padding-top: 90px; }

.scarcity-pill{
  display: inline-flex; align-items: center; gap: 11px; margin: 0;
  border: 1px solid var(--line-gold); border-radius: 100px;
  padding: 9px 18px; font-size: 13px; color: var(--ivory); font-weight: 400;
  background: rgba(16,14,11,0.5); backdrop-filter: blur(6px);
}
.dot{ width: 7px; height: 7px; border-radius: 50%; background: var(--gold); position: relative; flex: none; }
.dot::after{ content:""; position:absolute; inset:-5px; border-radius:50%; border:1px solid var(--gold); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse{ 0%{ transform: scale(.6); opacity:.9; } 100%{ transform: scale(1.9); opacity:0; } }

.hero-title{
  font-size: clamp(3rem, 8.5vw, 8.2rem); line-height: 1.12; font-weight: 500;
  margin: 30px 0 0; letter-spacing: normal;
}
.hero-title span{ display: block; }
.gold-word{
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent; font-weight: 400;
}
.hero-sub{ color: var(--muted); font-size: clamp(15px, 1.4vw, 18px); font-weight: 400; max-width: 460px; margin: 28px 0 0; line-height: 1.9; }
.hero-actions{ display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.hero-caption{
  position: absolute; z-index: 1; bottom: 42px; inset-inline-end: var(--pad); margin: 0;
  display: flex; align-items: center; gap: 14px; color: var(--faint); font-size: 12px;
  pointer-events: none;   /* decorative credit — never block the buttons */
}
.hero-caption::before{ content:""; width: 30px; height: 1px; background: var(--gold); opacity:.7; }

/* ============================================================ STATEMENT */
.statement{ padding-block: var(--rhythm); }
.statement-h{
  font-size: clamp(2rem, 5vw, 4.2rem); font-weight: 500; line-height: 1.18; margin: 26px 0 0;
  max-width: 16ch;
}
.statement-h em{ font-style: normal; color: var(--champagne); font-weight: 400; }

/* ============================================================ PROJECTS · before/after */
.projects{ padding-block: var(--rhythm); }
.proj-head{ display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.proj-head h2{ font-size: clamp(1.6rem, 3.4vw, 2.8rem); font-weight: 500; margin: 16px 0 0; }

.ba{
  position: relative; width: 100%; aspect-ratio: 16 / 8.4;
  border: 1px solid var(--line-gold); border-radius: 4px; overflow: hidden;
  user-select: none; touch-action: pan-y; cursor: ew-resize;
}
.ba-layer{ position: absolute; inset: 0; background: #0c0d10; }
.ba-img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
/* BEFORE — untouched: dull, cool, low contrast */
.ba-before .ba-img{ filter: grayscale(0.5) brightness(0.62) contrast(0.92) saturate(0.5); }
.ba-before::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(28,38,48,0.22), rgba(8,10,14,0.5));
}
/* AFTER — executed: vivid, warm red rim, deep contrast */
.ba-after{ clip-path: inset(0 var(--reveal, 50%) 0 0); }
.ba-after .ba-img{ filter: saturate(1.32) contrast(1.1) brightness(1.05); }
.ba-after::after{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(70% 60% at 60% 38%, rgba(199,56,46,0.30), transparent 68%),
    radial-gradient(50% 40% at 30% 86%, rgba(150,26,26,0.26), transparent 72%),
    linear-gradient(180deg, transparent 40%, rgba(20,8,8,0.34));
}
/* smooth glide when released; instant while dragging */
.ba-after, .ba-handle{ transition: clip-path .5s var(--ease), inset-inline-start .5s var(--ease); }
.ba.dragging .ba-after, .ba.dragging .ba-handle{ transition: none; }

/* divider — gradient-faded vertical line */
.ba-handle{
  position: absolute; top: 0; bottom: 0; inset-inline-start: calc(100% - var(--reveal, 50%));
  width: 2px; transform: translateX(-50%); z-index: 4; cursor: ew-resize;
  background: linear-gradient(to bottom,
    rgba(255,255,255,0) 0%, rgba(255,255,255,0.95) 14%,
    rgba(255,255,255,0.95) 86%, rgba(255,255,255,0) 100%);
  box-shadow: 0 0 16px rgba(0,0,0,0.45);
}
/* knob — glassy circle with dual-arrow affordance + press feedback */
.ba-knob{
  position: absolute; top: 50%; inset-inline-start: 50%; transform: translate(-50%, -50%);
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: rgba(14,11,10,0.40); backdrop-filter: blur(7px);
  border: 1.5px solid rgba(255,255,255,0.92);
  box-shadow: 0 8px 26px rgba(0,0,0,0.45), inset 0 0 0 5px rgba(255,255,255,0.05);
  transition: transform .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
  animation: knobHint 2.6s var(--ease) 2;
}
.ba-knob svg{ width: 24px; height: 24px; display: block; }
.ba:hover .ba-knob, .ba:focus-visible .ba-knob{ transform: translate(-50%, -50%) scale(1.08); animation: none; }
.ba.dragging .ba-knob{ transform: translate(-50%, -50%) scale(0.92); background: rgba(199,56,46,0.55); border-color: #fff; animation: none; }
@keyframes knobHint{
  0%, 100%{ box-shadow: 0 8px 26px rgba(0,0,0,0.45), 0 0 0 0 rgba(199,56,46,0.0); }
  50%{ box-shadow: 0 8px 26px rgba(0,0,0,0.45), 0 0 0 10px rgba(199,56,46,0.16); }
}
@media (prefers-reduced-motion: reduce){ .ba-knob{ animation: none; } }

/* before / after labels — refined chips */
.ba-tag{
  position: absolute; top: 18px; z-index: 3; font-size: 11px; font-weight: 600;
  letter-spacing: 0.28em; color: #fff;
  background: rgba(10,9,8,0.55); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 7px 16px; border-radius: 100px;
}
.ba-tag.before{ inset-inline-start: 18px; }
.ba-tag.after{ inset-inline-end: 18px; color: #fff; border-color: rgba(199,56,46,0.6); background: rgba(160,28,28,0.4); }

/* one-time drag hint */
.ba-drag-hint{
  position: absolute; bottom: 18px; inset-inline-start: 50%; transform: translateX(-50%);
  z-index: 3; font-size: 12px; font-weight: 500; letter-spacing: 0.08em; color: #fff;
  background: rgba(10,9,8,0.55); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18); padding: 7px 18px; border-radius: 100px;
  display: inline-flex; align-items: center; gap: 8px;
  animation: hintFade 5s var(--ease) forwards;
  pointer-events: none;
}
.ba-drag-hint::before{ content: "⟷"; font-size: 15px; color: var(--champagne); }
.ba.dragging .ba-drag-hint{ opacity: 0; transition: opacity .3s; }
@keyframes hintFade{ 0%,70%{ opacity: 1; } 100%{ opacity: 0; visibility: hidden; } }
@media (prefers-reduced-motion: reduce){ .ba-drag-hint{ animation: none; opacity: .9; } }

.proj-meta{ display: flex; justify-content: space-between; align-items: center; margin-top: 26px; gap: 20px; flex-wrap: wrap; }
.proj-name{ font-size: clamp(1.1rem, 2.2vw, 1.6rem); font-weight: 400; }
.proj-tag{ color: var(--muted); font-size: 14px; margin-top: 8px; }
.proj-controls{ display: flex; align-items: center; gap: 22px; }
.arrow{
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-gold);
  background: transparent; color: var(--ivory); display: grid; place-items: center; font-size: 18px;
  transition: border-color .4s var(--ease), color .4s var(--ease), background .4s var(--ease);
}
.arrow:hover{ border-color: var(--gold); color: var(--champagne); background: rgba(160,28,28,0.06); }
.counter{ font-size: 14px; color: var(--faint); }
.counter b{ color: var(--gold); font-weight: 500; }

/* ============================================================ SERVICES */
.services{ padding-block: var(--rhythm); }
.svc-head{ margin-bottom: 30px; }
.svc-head h2{ font-size: clamp(1.6rem, 3.4vw, 2.8rem); font-weight: 500; margin: 16px 0 0; }
.svc-list{ border-top: 1px solid var(--line-ivory); }
.svc-row{
  position: relative; display: grid; grid-template-columns: 92px 1fr auto;
  align-items: center; gap: 30px; padding: 30px 8px;
  border-bottom: 1px solid var(--line-ivory); overflow: hidden;
  transition: padding .5s var(--ease);
}
.svc-row::before{
  content:""; position:absolute; inset:0; inset-inline-start: -100%;
  background: linear-gradient(90deg, rgba(160,28,28,0.06), transparent 70%);
  transition: inset-inline-start .6s var(--ease); z-index: 0;
}
.svc-row:hover{ padding-inline: 22px; }
.svc-row:hover::before{ inset-inline-start: 0; }
.svc-row > *{ position: relative; z-index: 1; }
.svc-index{ font-size: 34px; font-weight: 500; color: var(--faint); transition: color .5s var(--ease); }
.svc-row:hover .svc-index{ color: var(--gold); }
.svc-title{ font-size: clamp(1.2rem, 2.2vw, 1.7rem); font-weight: 400; }
.svc-desc{ color: var(--muted); font-size: 14px; margin-top: 6px; font-weight: 400; }

/* refined editorial price tag */
.svc-price{
  display: inline-flex; flex-direction: column; align-items: flex-start; gap: 5px;
  white-space: nowrap; text-align: start;
  padding: 11px 18px; border: 1px solid var(--line-gold); border-radius: 3px;
  background: linear-gradient(160deg, rgba(160,28,28,0.05), rgba(160,28,28,0.015));
  transition: border-color .5s var(--ease), background .5s var(--ease), transform .5s var(--ease);
}
.svc-row:hover .svc-price{ border-color: var(--gold); background: linear-gradient(160deg, rgba(160,28,28,0.10), rgba(160,28,28,0.03)); }
.svc-price-from{ font-size: 10.5px; letter-spacing: 0.22em; color: var(--muted); font-weight: 400; }
.svc-price-val{
  display: inline-flex; align-items: baseline; gap: 7px;
  font-size: 1.2rem; font-weight: 400; color: var(--champagne);
  font-variant-numeric: tabular-nums; letter-spacing: 0.04em;
}
.svc-price-cur{ font-size: 12px; font-weight: 400; color: var(--gold); letter-spacing: 0.02em; }
.svc-foot{ display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-top: 34px; flex-wrap: wrap; }
.svc-foot p{ color: var(--faint); font-size: 13px; margin: 0; }

/* ============================================================ SCARCITY */
.scarcity{ padding-block: var(--rhythm); }
.scar-top{ display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px, 6vw, 90px); align-items: center; }
.scar-num{
  font-size: clamp(7rem, 22vw, 18rem); line-height: 0.8; font-weight: 500;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.scar-numlabel{ color: var(--muted); font-size: clamp(15px,1.6vw,19px); margin-top: 18px; max-width: 22ch; line-height: 1.8; }
.scar-right h3{ font-size: clamp(1.4rem, 3vw, 2.3rem); font-weight: 500; margin: 0 0 20px; line-height: 1.3; }
.scar-right p{ color: var(--muted); font-size: 16px; line-height: 1.95; font-weight: 400; max-width: 48ch; }
.scar-pill{ margin-top: 26px; }
.scar-grid{ display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(50px, 8vh, 90px); border: 1px solid var(--line-gold); }
.scar-cell{ padding: 40px 32px; border-inline-start: 1px solid var(--line-gold); }
.scar-cell:first-child{ border-inline-start: none; }
.scar-cell .ci{ color: var(--gold); font-size: 12px; letter-spacing: .2em; }
.scar-cell h4{ font-size: clamp(1.1rem,2vw,1.5rem); font-weight: 400; margin: 16px 0 0; }
.scar-cell p{ color: var(--muted); font-size: 14px; margin-top: 10px; line-height: 1.8; }

/* ============================================================ JOURNEY */
.journey{ padding-block: var(--rhythm); }
.journey-head{ text-align: start; margin-bottom: 56px; }
.journey-head h2{ font-size: clamp(1.6rem, 3.4vw, 2.8rem); font-weight: 500; margin: 16px 0 0; }
.journey-cols{ display: grid; grid-template-columns: repeat(5, 1fr); }
.step{ padding: 6px 26px; border-inline-start: 1px solid var(--line-gold); }
.step:first-child{ border-inline-start: none; padding-inline-start: 0; }
.step-n{ font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 500; color: var(--ivory); }
.step-k{ color: var(--gold); font-size: 12px; letter-spacing: .2em; margin-top: 10px; }
.step h4{ font-size: 1.15rem; font-weight: 400; margin: 18px 0 10px; }
.step p{ color: var(--muted); font-size: 13.5px; line-height: 1.85; font-weight: 400; margin: 0; }
.journey-cta{ display: flex; justify-content: center; margin-top: 64px; }

/* ============================================================ FOOTER */
.footer{ padding-block: clamp(60px,9vh,110px) 40px; border-top: 1px solid var(--line-gold); }
.foot-cols{ display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(30px,5vw,70px); }
.foot-logo-img{ height: 88px; width: auto; display: block; }
.foot-word p{ color: var(--muted); font-size: 14px; line-height: 1.9; margin: 22px 0 0; max-width: 34ch; font-weight: 400; }
.foot-col h5{ color: var(--faint); font-size: 12px; letter-spacing: .2em; font-weight: 400; margin: 0 0 22px; }
.foot-col a{ display: block; color: var(--muted); font-size: 14px; margin-bottom: 14px; transition: color .4s var(--ease); }
.foot-col a:hover{ color: var(--champagne); }
.foot-addr{ color: var(--muted); font-size: 14px; line-height: 1.9; font-style: normal; }
.foot-addr a{ color: var(--muted); transition: color .4s var(--ease); }
.foot-addr a:hover{ color: var(--champagne); }
.foot-map-link{ display: inline-block; margin-top: 8px; color: var(--gold); font-size: 13px; font-weight: 600; }
.foot-tel{ display: inline-block; color: var(--muted); font-size: 14px; margin-top: 16px; transition: color .4s var(--ease); }
.foot-tel:hover{ color: var(--champagne); }
.social{ display: flex; gap: 12px; margin-top: 18px; }
.social a{
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-gold);
  display: grid; place-items: center; color: var(--gold); font-size: 12px; margin: 0;
  transition: border-color .4s var(--ease), background .4s var(--ease), color .4s var(--ease);
}
.social a:hover{ border-color: var(--gold); background: rgba(199,56,46,0.10); color: var(--champagne); }
.social a svg{ width: 17px; height: 17px; display: block; }
.foot-bar{ display: flex; justify-content: space-between; align-items: center; gap: 18px 28px; margin-top: clamp(50px,8vh,90px); padding-top: 26px; border-top: 1px solid var(--line-ivory); color: var(--faint); font-size: 12.5px; flex-wrap: wrap; }
.foot-legal{ display: inline-flex; align-items: center; gap: 12px; }
.foot-legal a{ color: var(--muted); transition: color .4s var(--ease); }
.foot-legal a:hover{ color: var(--champagne); }
.foot-legal .sep{ color: var(--faint); opacity: .6; }

/* ============================================================ BOOKING WIZARD */
.wiz-overlay{
  position: fixed; inset: 0; z-index: 5000; background: var(--onyx);
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transition: opacity .6s var(--ease), visibility .6s;
}
.wiz-overlay.open{ opacity: 1; visibility: visible; }
.wiz-overlay::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(90% 60% at 80% 0%, rgba(199,56,46,0.10), transparent 55%),
              radial-gradient(80% 60% at 10% 100%, rgba(120,20,20,0.16), transparent 55%);
}
.wiz-top{ position: relative; z-index: 2; padding: 26px var(--pad) 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.wiz-rail{ flex: 1; display: flex; gap: 8px; max-width: 620px; }
.wiz-seg{ height: 2px; flex: 1; background: var(--line-ivory); position: relative; overflow: hidden; border-radius: 2px; }
.wiz-seg span{ position:absolute; inset:0; inset-inline-end: 100%; background: var(--grad-gold); transition: inset-inline-end .6s var(--ease); }
.wiz-seg.done span, .wiz-seg.active span{ inset-inline-end: 0; }
.wiz-close{ background: none; border: 1px solid var(--line-gold); color: var(--ivory); width: 44px; height: 44px; border-radius: 50%; font-size: 18px; display: grid; place-items: center; transition: border-color .4s var(--ease), color .4s var(--ease); flex: none; }
.wiz-close:hover{ border-color: var(--gold); color: var(--champagne); }
.wiz-logo-img{ height: 28px; width: auto; display: block; flex: none; }

.wiz-body{ position: relative; z-index: 2; flex: 1; overflow-y: auto; display: block; -webkit-overflow-scrolling: touch; }
.wiz-stage{ width: 100%; max-width: 920px; margin: 0 auto; box-sizing: border-box; padding: clamp(40px, 8vh, 96px) var(--pad) 140px; }

.wiz-step-k{ color: var(--gold); font-size: 12px; letter-spacing: .3em; }
.wiz-q{ font-size: clamp(1.7rem, 4vw, 3rem); font-weight: 500; margin: 14px 0 8px; line-height: 1.2; }
.wiz-hint{ color: var(--muted); font-size: 15px; font-weight: 400; margin: 0 0 38px; }

.wiz-fade{ animation: wfade .55s var(--ease) both; }
@keyframes wfade{ from{ opacity:0; transform: translateY(16px); } to{ opacity:1; transform:none; } }

/* selectable service rows */
.sel-list{ display: flex; flex-direction: column; gap: 12px; }
.sel-row{
  display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 22px;
  padding: 22px 26px; border: 1px solid var(--line-ivory); border-radius: 4px;
  background: rgba(16,14,11,0.4); color: var(--ivory); text-align: start; width: 100%;
  transition: border-color .4s var(--ease), background .4s var(--ease), transform .4s var(--ease);
}
.sel-row:hover{ border-color: var(--line-gold); transform: translateX(-3px); }
.sel-row.on{ border-color: var(--gold); background: rgba(199,56,46,0.10); }
.sel-idx{ font-size: 20px; font-weight: 500; color: var(--faint); }
.sel-row.on .sel-idx{ color: var(--gold); }
.sel-name{ font-size: 1.15rem; font-weight: 400; }
.sel-row .sel-price{ color: var(--champagne); font-size: 14px; white-space: nowrap; }
.sel-check{ width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--line-gold); display: grid; place-items: center; color: var(--btn-text); font-size: 12px; }
.sel-row.on .sel-check{ background: var(--grad-gold); border-color: transparent; }
.svc-demo{
  display: inline-block; margin-inline-start: 10px; padding: 2px 10px;
  font-size: 12px; font-weight: 500; color: var(--gold); cursor: pointer;
  border: 1px solid var(--line-gold); border-radius: 999px;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.svc-demo:hover{ background: var(--gold); color: #fff; }

/* refined fields */
.field-grid{ display: grid; gap: 30px; }
.field-grid.two{ grid-template-columns: 1fr 1fr; }
.field-grid.three{ grid-template-columns: 1fr 1fr 1fr; }
.field{ position: relative; }
.field label{ display: block; color: var(--faint); font-size: 12px; letter-spacing: .12em; margin-bottom: 12px; }
.field input, .field textarea, .field select{
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--line-gold);
  color: var(--ivory); font-family: inherit; font-size: 17px; font-weight: 400; padding: 10px 2px;
  transition: border-color .4s var(--ease);
}
.field textarea{ resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus{ outline: none; border-color: var(--gold); }
.field input::placeholder, .field textarea::placeholder{ color: var(--faint); }
.field input.invalid, .field textarea.invalid{ border-color: var(--champagne); }
.field select{ appearance: none; }
.field select option{ background: var(--raised); color: var(--ivory); }

/* premium model dropdown (wizard «شركة السيارة» step) — native select,
   exclusively styled trigger; the open list is the OS-native picker
   (best on mobile, no layout shift, accessible). */
.model-field{ margin-top: 30px; animation: wfade .4s var(--ease) both; }
.model-field > label{
  display: block; color: var(--faint); font-size: 12px;
  letter-spacing: .12em; margin-bottom: 12px;
}
.model-select-wrap{ position: relative; }
.model-select-wrap::after{
  content: "▾"; position: absolute; inset-inline-start: 18px; top: 50%;
  transform: translateY(-50%); color: var(--gold); font-size: 14px; pointer-events: none;
}
.model-select{
  width: 100%; appearance: none; cursor: pointer;
  background: rgba(199,56,46,0.06); border: 1px solid var(--line-gold);
  border-radius: 14px; color: var(--ivory); font-family: inherit;
  font-size: 17px; font-weight: 500; padding: 16px 18px;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.model-select:hover{ border-color: var(--gold); }
.model-select:focus{ outline: none; border-color: var(--gold); background: rgba(199,56,46,0.10); }
.model-select option{ background: var(--raised); color: var(--ivory); }

/* ---------- OTP phone verification ---------- */
.otp{ margin-top: 30px; padding: 20px; border: 1px solid var(--line-gold); border-radius: 8px; background: rgba(255,255,255,0.02); }
.otp-head{ color: var(--ivory); font-weight: 500; margin-bottom: 14px; font-size: 15px; }
.otp-send{ width: 100%; justify-content: center; }
.otp-verify{ margin-top: 16px; }
.otp-verify label{ display: block; color: var(--faint); font-size: 12px; letter-spacing: .12em; margin-bottom: 10px; }
.otp-row{ display: flex; gap: 12px; align-items: stretch; }
.otp-code{ flex: 1; min-width: 0; background: transparent; color: var(--ivory); border: 1px solid var(--line-gold); border-radius: 6px; padding: 12px 14px; font-size: 18px; letter-spacing: .5em; text-align: center; font-family: inherit; }
.otp-code:focus{ outline: none; border-color: var(--gold); }
.otp-code::placeholder{ color: var(--faint); letter-spacing: .3em; }
.otp-row .btn-gold{ flex: none; }
.otp-resend{ margin-top: 12px; background: none; border: none; color: var(--gold); font-family: inherit; font-size: 13.5px; text-decoration: underline; }
.otp-msg{ margin-top: 12px; font-size: 13.5px; min-height: 18px; color: var(--muted); }
.otp-msg.ok{ color: #5cc97f; }
.otp-msg.err{ color: #e0726a; }
.otp-done{ color: #5cc97f; font-weight: 500; font-size: 15px; }

/* upload */
.upload{
  border: 1px dashed var(--line-gold); border-radius: 4px; padding: 50px 30px; text-align: center;
  color: var(--muted); transition: border-color .4s var(--ease), background .4s var(--ease); cursor: pointer;
}
.upload:hover, .upload.drag{ border-color: var(--gold); background: rgba(199,56,46,0.05); }
.upload .ic{ font-size: 26px; color: var(--gold); }
.upload h4{ color: var(--ivory); font-weight: 400; margin: 14px 0 6px; font-size: 1.1rem; }
.upload .small{ font-size: 13px; }
.thumbs{ display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.thumb{ width: 92px; height: 92px; border-radius: 4px; border: 1px solid var(--line-gold); overflow: hidden; position: relative; background-size: cover; background-position: center; }
.thumb button{ position: absolute; top: 5px; inset-inline-end: 5px; width: 22px; height: 22px; border-radius: 50%; background: rgba(10,9,8,.7); border: 1px solid var(--line-gold); color: var(--ivory); font-size: 12px; line-height: 1; display:grid; place-items:center; }

/* seat tiles */
.seat-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.seat-tile{
  border: 1px solid var(--line-ivory); border-radius: 4px; padding: 22px 22px 20px; background: rgba(16,14,11,0.4);
  transition: border-color .4s var(--ease), background .4s var(--ease); text-align: start; color: var(--ivory);
  display: flex; flex-direction: column; gap: 14px; width: 100%;
}
.seat-tile:not(.soldout):hover{ border-color: var(--line-gold); }
.seat-tile.on{ border-color: var(--gold); background: rgba(199,56,46,0.10); }
.seat-tile .month{ font-size: 1.2rem; font-weight: 400; line-height: 1.5; color: var(--ivory); }
.seat-tile .left{ color: var(--champagne); font-size: 13px; padding-top: 12px; border-top: 1px solid var(--line-ivory); }
.seat-tile.on .left{ border-top-color: var(--line-gold); }
.seat-tile.soldout{ opacity: .4; cursor: not-allowed; }
.seat-tile.soldout .left{ color: var(--faint); }

/* review + deposit */
.review{ border: 1px solid var(--line-gold); border-radius: 4px; padding: 36px; background: rgba(16,14,11,0.5); }
.review-row{ display: flex; justify-content: space-between; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line-ivory); }
.review-row:last-child{ border-bottom: none; }
.review-row .k{ color: var(--faint); font-size: 13px; }
.review-row .v{ color: var(--ivory); font-size: 15px; text-align: end; font-weight: 400; }
.deposit{ margin-top: 30px; border: 1px solid var(--line-gold); border-radius: 4px; padding: 34px; background: linear-gradient(160deg, rgba(199,56,46,0.12), rgba(20,12,11,0.5)); }
.deposit h3{ font-size: 1.4rem; font-weight: 400; margin: 0; }
.deposit .amt{ font-size: clamp(2.4rem,6vw,3.4rem); font-weight: 500; margin: 18px 0 4px; }
.deposit .amt span{ font-size: 1.3rem; color: var(--gold); }
.deposit .note{ color: var(--muted); font-size: 14px; line-height: 1.8; max-width: 52ch; }

/* wizard footer */
.wiz-foot{ position: relative; z-index: 3; border-top: 1px solid var(--line-gold); background: rgba(10,9,8,0.8); backdrop-filter: blur(10px); }
.wiz-foot-inner{ max-width: 920px; margin: 0 auto; padding: 18px var(--pad); padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px)); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.wiz-back{ background: none; border: none; color: var(--muted); font-size: 14px; transition: color .4s var(--ease); }
.wiz-back:hover{ color: var(--ivory); }
.wiz-back:disabled{ opacity: 0; pointer-events: none; }
.wiz-count{ color: var(--faint); font-size: 13px; }

/* success */
.wiz-success{ text-align: center; max-width: 560px; margin: 0 auto; }
.suc-check{ width: 88px; height: 88px; border-radius: 50%; border: 1px solid var(--gold); display: grid; place-items: center; margin: 0 auto 34px; color: var(--gold); font-size: 38px; background: rgba(199,56,46,0.06); animation: pop .7s var(--ease) both; }
@keyframes pop{ from{ transform: scale(.7); opacity:0; } to{ transform: scale(1); opacity:1; } }
.wiz-success h2{ font-size: clamp(1.8rem,4.5vw,2.8rem); font-weight: 500; margin: 0 0 16px; }
.wiz-success p{ color: var(--muted); font-size: 16px; line-height: 1.9; font-weight: 400; }
.suc-ref{ display: inline-flex; flex-direction: column; gap: 6px; margin: 30px 0; padding: 22px 40px; border: 1px solid var(--line-gold); border-radius: 4px; }
.suc-ref .k{ color: var(--faint); font-size: 12px; letter-spacing: .2em; }
.suc-ref .v{ color: var(--champagne); font-size: 1.5rem; letter-spacing: .12em; }
.suc-next{ text-align: start; margin: 30px auto 0; max-width: 420px; }
.suc-next .it{ display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line-ivory); color: var(--muted); font-size: 14px; }
.suc-next .it b{ color: var(--gold); font-weight: 500; }

/* ============================================================ RESPONSIVE */
@media (max-width: 980px){
  .nav-links{ display: none; }
  .nav-cta{ display: none; }
  .nav-burger{ display: grid; place-items: center; width: 44px; height: 44px; margin-inline-end: -8px; }
  .nav-inner{ grid-template-columns: 1fr auto; }
  .scar-top{ grid-template-columns: 1fr; gap: 36px; }
  .scar-grid{ grid-template-columns: 1fr; }
  .scar-cell{ border-inline-start: none; border-top: 1px solid var(--line-gold); }
  .scar-cell:first-child{ border-top: none; }
  .journey-cols{ grid-template-columns: 1fr 1fr; gap: 0; }
  .step{ padding: 22px 22px; border-inline-start: none; border-top: 1px solid var(--line-gold); }
  .step:first-child{ padding-inline: 22px; }
  .foot-cols{ grid-template-columns: 1fr 1fr; }
  .foot-word{ grid-column: 1 / -1; }
  .field-grid.three{ grid-template-columns: 1fr; }
  .seat-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px){
  .svc-row{ grid-template-columns: 60px 1fr; row-gap: 4px; }
  .svc-price{ grid-column: 2; justify-self: start; margin-top: 10px; }
  .svc-index{ font-size: 26px; }
  .proj-meta{ flex-direction: column; align-items: flex-start; }
  .foot-cols{ grid-template-columns: 1fr; }
  .foot-bar{ flex-direction: column; }
  .field-grid.two{ grid-template-columns: 1fr; }
  .seat-grid{ grid-template-columns: 1fr; }
  .sel-row{ grid-template-columns: auto 1fr auto; gap: 14px; }
  .sel-row .sel-price{ grid-column: 2; font-size: 13px; }
  .hero-col{ padding-top: 110px; }
  /* full-width stacked buttons span the bottom — hide the decorative credit to avoid overlap */
  .hero-caption{ display: none; }
}

/* ---- small phones (≤ 560px) ---- */
@media (max-width: 560px){
  /* taller before/after frame so the car reads well on a narrow screen */
  .ba{ aspect-ratio: 4 / 3.4; }
  .ba-knob{ width: 52px; height: 52px; }
  .ba-tag{ font-size: 10px; padding: 6px 13px; top: 14px; }
  .ba-tag.before{ inset-inline-start: 14px; }
  .ba-tag.after{ inset-inline-end: 14px; }
  .ba-drag-hint{ bottom: 14px; font-size: 11px; }

  /* full-width, stacked primary actions — easier to tap with a thumb */
  .hero-actions{ flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn-gold, .hero-actions .btn-ghost{ width: 100%; text-align: center; }
  .svc-foot{ flex-direction: column; align-items: stretch; gap: 18px; }
  .svc-foot .btn-gold{ width: 100%; }

  /* one calm column for the booking journey */
  .journey-cols{ grid-template-columns: 1fr; }
  .step{ border-inline-start: none; }

  /* breathing room + comfortable line length */
  .proj-head, .svc-head{ margin-bottom: 26px; }
  .scar-grid{ margin-top: 40px; }

  /* tappable menu close */
  .mobile-menu .mclose{ width: 44px; height: 44px; display: grid; place-items: center; top: 16px; inset-inline-start: 16px; }
  .mobile-menu{ gap: 24px; }
}

/* ---- very small phones (≤ 360px) ---- */
@media (max-width: 360px){
  :root{ --pad: 18px; }
  .hero-title{ font-size: 2.7rem; }
  .scar-num{ font-size: 6rem; }
}

/* mobile menu */
.mobile-menu{
  position: fixed; inset: 0; z-index: 1100; background: rgba(10,9,8,0.97); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s;
}
.mobile-menu.open{ opacity: 1; visibility: visible; }
.mobile-menu a{ font-size: 1.5rem; font-weight: 500; color: var(--ivory); }
.mobile-menu .mclose{ position: absolute; top: 24px; inset-inline-start: 24px; background: none; border: none; color: var(--gold); font-size: 26px; }

/* ============================================================ LEGAL PAGES */
.legal-nav{
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,241,235,0.92); backdrop-filter: blur(16px) saturate(120%);
  border-bottom: 1px solid var(--line-gold);
}
.legal-nav .nav-inner{ display: flex; justify-content: space-between; align-items: center; grid-template-columns: none; }
.legal-nav .logo-img{ height: 38px; width: auto; display: block; }
.legal-back{ font-size: 14px; color: var(--muted); display: inline-flex; align-items: center; gap: 8px; transition: color .4s var(--ease); }
.legal-back:hover{ color: var(--champagne); }
.legal{ max-width: 820px; margin: 0 auto; padding: clamp(50px,9vh,90px) var(--pad) var(--rhythm); }
.legal .eyebrow{ margin-bottom: 18px; }
.legal h1{ font-size: clamp(2rem,5.4vw,3.4rem); font-weight: 500; margin: 0 0 12px; line-height: 1.1; }
.legal .updated{ color: var(--faint); font-size: 13px; letter-spacing: .04em; margin: 0 0 46px; }
.legal .intro{ font-size: 17px; color: var(--ivory); line-height: 2; font-weight: 400; }
.legal h2{ font-size: clamp(1.2rem,2.6vw,1.7rem); font-weight: 400; margin: 46px 0 14px; color: var(--ivory); }
.legal p, .legal li{ color: var(--muted); font-size: 15.5px; line-height: 2; font-weight: 400; }
.legal ul{ padding-inline-start: 20px; margin: 12px 0; }
.legal li{ margin-bottom: 8px; }
.legal a{ color: var(--champagne); }
.legal a:hover{ text-decoration: underline; }

/* ============================================================ ABOUT PAGE */
.about-hero{
  position: relative; overflow: hidden; background: var(--onyx);
  padding: clamp(110px,16vh,180px) 0 clamp(50px,8vh,80px);
  --ivory: #F2ECE3; --muted: #9A938A; --faint: #6E665C;
  --line-ivory: rgba(242,236,227,0.12); --line-gold: rgba(199,56,46,0.34);
  --gold: #CF3A2E; --champagne: #E0594B; color: var(--ivory);
}
.about-hero::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(120% 90% at 84% 0%, rgba(199,56,46,0.18), transparent 46%),
              radial-gradient(100% 80% at 4% 100%, rgba(120,20,20,0.26), transparent 52%);
}
.about-hero .wrap{ position: relative; z-index: 1; }
.about-hero h1{ font-size: clamp(2.2rem,6vw,4rem); font-weight: 600; line-height: 1.14; margin: 18px 0 24px; max-width: 20ch; }
.about-hero .lead{ color: var(--muted); font-size: clamp(16px,1.6vw,19px); line-height: 2; max-width: 62ch; font-weight: 400; }
.about-stats{ display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line-gold); margin-top: clamp(40px,6vh,64px); }
.about-stat{ padding: 30px 28px; border-inline-start: 1px solid var(--line-gold); }
.about-stat:first-child{ border-inline-start: none; }
.about-stat .num{ font-size: clamp(1.7rem,3.4vw,2.5rem); font-weight: 600; color: var(--champagne); line-height: 1.1; }
.about-stat .lbl{ color: var(--muted); font-size: 13.5px; margin-top: 10px; line-height: 1.6; }

.about-body{ max-width: 820px; margin: 0 auto; padding: clamp(56px,9vh,100px) var(--pad) clamp(40px,6vh,70px); }
.about-sec{ margin-bottom: clamp(34px,5vh,50px); }
.about-sec:last-child{ margin-bottom: 0; }
.about-sec h2{ font-size: clamp(1.3rem,2.6vw,1.85rem); font-weight: 600; margin: 0 0 14px; color: var(--ivory); display: flex; align-items: center; gap: 14px; }
.about-sec h2::before{ content:""; width: 26px; height: 2px; background: var(--gold); flex: none; }
.about-sec p{ color: var(--muted); font-size: 16px; line-height: 2.05; font-weight: 400; margin: 0 0 14px; }
.about-sec p:last-child{ margin-bottom: 0; }

.about-cta{ text-align: center; padding-block: clamp(60px,10vh,110px); }
.about-cta h2{ font-size: clamp(1.6rem,4vw,2.8rem); font-weight: 600; margin: 16px 0 14px; }
.about-cta p{ color: var(--muted); font-size: 16px; line-height: 1.9; margin: 0 auto; max-width: 40ch; }
.about-cta .eyebrow{ justify-content: center; }
.about-cta-actions{ display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }

@media (max-width: 720px){
  .about-stats{ grid-template-columns: 1fr; }
  .about-stat{ border-inline-start: none; border-top: 1px solid var(--line-gold); }
  .about-stat:first-child{ border-top: none; }
}
@media (max-width: 560px){
  .about-cta-actions{ flex-direction: column; align-items: stretch; }
  .about-cta-actions .btn-gold, .about-cta-actions .btn-ghost{ width: 100%; text-align: center; }
}

/* ---- MISSION page ---- */
.mission-feature{
  position: relative; overflow: hidden; background: var(--raised);
  padding-block: clamp(54px,9vh,96px);
  --ivory: #F2ECE3; --muted: #9A938A; --faint: #6E665C;
  --line-ivory: rgba(242,236,227,0.12); --line-gold: rgba(199,56,46,0.34);
  --gold: #CF3A2E; --champagne: #E0594B; color: var(--ivory);
}
.mission-feature::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(90% 120% at 88% 50%, rgba(199,56,46,0.16), transparent 55%);
}
.mission-feature .wrap{ position: relative; z-index: 1; }
.mission-feature h2{ font-size: clamp(1.8rem,5vw,3.4rem); font-weight: 600; line-height: 1.15; margin: 16px 0 22px; max-width: 18ch; }
.mission-feature p{ color: var(--muted); font-size: clamp(16px,1.7vw,19px); line-height: 2.05; max-width: 60ch; font-weight: 400; }

.mission-pillars{ padding-block: clamp(60px,10vh,110px); }
.mission-pillars .svc-head h2{ font-size: clamp(1.6rem,3.4vw,2.8rem); font-weight: 600; margin: 16px 0 0; }
.mission-cards{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mission-card{
  border: 1px solid var(--line-ivory); border-radius: 5px; padding: 34px 32px; background: var(--surface);
  transition: border-color .5s var(--ease), transform .5s var(--ease), box-shadow .5s var(--ease);
}
.mission-card:hover{ border-color: var(--line-gold); transform: translateY(-4px); box-shadow: 0 24px 50px -28px rgba(160,28,28,0.45); }
.mission-card .idx{ color: var(--gold); font-size: 14px; font-weight: 700; }
.mission-card h3{ font-size: clamp(1.2rem,2.4vw,1.55rem); font-weight: 600; margin: 14px 0 14px; color: var(--ivory); }
.mission-card p{ color: var(--muted); font-size: 15px; line-height: 2; font-weight: 400; margin: 0; }

.mission-closing{
  border-inline-start: 3px solid var(--gold); border-radius: 4px;
  padding: 32px clamp(24px,4vw,40px);
  background: linear-gradient(135deg, rgba(160,28,28,0.05), rgba(160,28,28,0.012));
}
.mission-closing .eyebrow{ margin-bottom: 16px; }
.mission-closing p{ color: var(--muted); font-size: 16px; line-height: 2.05; font-weight: 400; margin: 0 0 14px; }
.mission-closing p:last-child{ margin-bottom: 0; }

@media (max-width: 720px){
  .mission-cards{ grid-template-columns: 1fr; }
}

/* ============================================================ ACCREDITATION (SASO) */
.accred{ padding-block: var(--rhythm); }
.cert-card{
  display: grid; grid-template-columns: 0.82fr 1.18fr;
  border: 1px solid var(--line-gold); border-radius: 6px; overflow: hidden; background: var(--surface);
}
.cert-badge{
  position: relative; background: var(--onyx); color: #F2ECE3;
  padding: clamp(32px,4.5vw,52px); display: flex; flex-direction: column; justify-content: center; gap: 12px;
  --champagne: #E0594B;
}
.cert-badge::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(90% 80% at 80% 20%, rgba(199,56,46,0.20), transparent 55%);
}
.cert-badge > *{ position: relative; z-index: 1; }
.cert-stars{ display: flex; gap: 6px; font-size: 30px; color: var(--champagne); line-height: 1; }
.cert-auth{ font-size: clamp(15px,1.6vw,17px); font-weight: 600; line-height: 1.7; margin-top: 6px; }
.cert-auth-en{ font-size: 12px; letter-spacing: 0.2em; color: #9A938A; }
.cert-class{
  align-self: flex-start; margin-top: 8px; font-size: 13px; font-weight: 600; color: #F2ECE3;
  border: 1px solid rgba(199,56,46,0.5); background: rgba(160,28,28,0.25);
  padding: 6px 16px; border-radius: 100px;
}
.cert-main{ padding: clamp(30px,4vw,48px); }
.cert-main h3{ font-size: clamp(1.3rem,2.6vw,1.85rem); font-weight: 600; margin: 0 0 12px; line-height: 1.3; }
.cert-sub{ color: var(--muted); font-size: 15px; line-height: 1.95; margin: 0 0 28px; max-width: 52ch; }
.cert-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px 30px; margin-bottom: 30px; }
.cert-item{ display: flex; flex-direction: column; gap: 6px; padding-bottom: 14px; border-bottom: 1px solid var(--line-ivory); }
.cert-item .k{ color: var(--faint); font-size: 12px; letter-spacing: .04em; }
.cert-item .v{ color: var(--ivory); font-size: 16px; font-weight: 600; }
.cert-view{ display: inline-block; }

@media (max-width: 820px){ .cert-card{ grid-template-columns: 1fr; } .cert-badge{ flex-direction: row; flex-wrap: wrap; align-items: center; gap: 16px 22px; } }
@media (max-width: 560px){ .cert-grid{ grid-template-columns: 1fr; } .cert-view{ display: block; width: 100%; text-align: center; } }

/* footer trust badge */
.foot-cert{
  display: inline-flex; align-items: center; gap: 12px; margin-top: 26px;
  padding: 12px 20px; border: 1px solid var(--line-gold); border-radius: 100px;
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.foot-cert:hover{ border-color: var(--gold); background: rgba(199,56,46,0.08); }
.foot-cert .stars{ color: var(--champagne); font-size: 14px; letter-spacing: 2px; flex: none; }
.foot-cert .txt{ color: var(--muted); font-size: 13px; font-weight: 500; }

/* ============================================================ LIGHTBOX */
.lightbox{
  position: fixed; inset: 0; z-index: 6000; background: rgba(8,7,6,0.93);
  display: grid; place-items: center; padding: clamp(16px,4vw,48px);
  opacity: 0; transition: opacity .3s var(--ease); -webkit-overflow-scrolling: touch;
}
.lightbox.open{ opacity: 1; }
.lightbox img{
  max-width: min(1100px, 96vw); max-height: 92vh; object-fit: contain;
  border: 1px solid rgba(199,56,46,0.4); border-radius: 4px; background: #fff;
  box-shadow: 0 30px 90px -20px rgba(0,0,0,0.75);
}
.lightbox-close{
  position: absolute; top: clamp(14px,3vw,22px); inset-inline-start: clamp(14px,3vw,22px);
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(242,236,227,0.32); background: rgba(10,9,8,0.55); color: #F2ECE3;
  font-size: 20px; display: grid; place-items: center; backdrop-filter: blur(6px);
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.lightbox-close:hover{ border-color: #E0594B; color: #E0594B; }
.lightbox-missing{ color: #F2ECE3; font-size: 15px; text-align: center; max-width: 32ch; line-height: 1.8; }

/* ============================ FAQ ============================ */
.faq{ padding: var(--rhythm) 0; }
.faq .svc-head{ margin-bottom: 40px; }
.faq-list{ max-width: 880px; margin: 0 auto; border-top: 1px solid var(--line-ivory); }
.faq-item{ border-bottom: 1px solid var(--line-ivory); }
.faq-item > summary{
  list-style: none; cursor: pointer; padding: 24px 4px; gap: 18px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: clamp(15px, 1.6vw, 18px); font-weight: 500; color: var(--ivory);
  transition: color .3s var(--ease);
}
.faq-item > summary::-webkit-details-marker{ display: none; }
.faq-item > summary::after{
  content: "+"; flex: none; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--line-gold); color: var(--gold);
  display: grid; place-items: center; font-size: 20px; line-height: 1; font-weight: 300;
  transition: transform .35s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.faq-item[open] > summary{ color: var(--gold); }
.faq-item[open] > summary::after{ content: "\2212"; background: var(--gold); color: #fff; border-color: var(--gold); }
.faq-item > summary:hover{ color: var(--gold); }
.faq-a{ padding: 0 4px 26px; color: var(--muted); line-height: 2; font-size: clamp(14px, 1.4vw, 16px); max-width: 80ch; animation: faqIn .4s var(--ease); }
@keyframes faqIn{ from{ opacity: 0; transform: translateY(-6px); } to{ opacity: 1; transform: none; } }
