/* ==========================================================================
   ALSHAIKH TRAVEL AND TOURISM — Design tokens
   Ink Navy #102A43 · Void Navy #071A2A · Ivory #F6F4EF · Dune Gold #B08D57
   Display: Fraunces · Body/UI: Manrope · Arabic: Noto Kufi Arabic
   ========================================================================== */

:root{
  --navy:        #102A43;
  --navy-deep:   #0A1F30;
  --void:        #071A2A;
  --ivory:       #F6F4EF;
  --paper:       #FFFFFF;
  --slate:       #5F6B75;
  --slate-soft:  #8A94A0;
  --gold:        #B08D57;
  --gold-soft:   #C9AB78;
  --line:        rgba(16,42,67,0.12);
  --line-light:  rgba(246,244,239,0.16);

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-ar: "Noto Kufi Arabic", "Segoe UI", sans-serif;

  --container: 1240px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
}

body{
  margin:0;
  background:var(--ivory);
  color:var(--navy);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3{ font-family:var(--font-display); margin:0; font-weight:440; color:var(--navy); }
p{ margin:0; }
button{ font-family:inherit; }

section{ position:relative; }

:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:3px;
}

.eyebrow{
  display:flex;
  align-items:center;
  gap:.55rem;
  font-size:.72rem;
  letter-spacing:.22em;
  font-weight:700;
  color:var(--slate);
  text-transform:uppercase;
  margin:0 0 1.1rem;
}
.eyebrow--light{ color:rgba(246,244,239,0.62); }
.eyebrow__dot{
  width:6px; height:6px; border-radius:50%;
  background:var(--gold);
  box-shadow:0 0 0 3px rgba(176,141,87,0.25);
  flex:none;
}

.text-link{
  display:inline-block;
  margin-top:1.4rem;
  font-weight:600;
  font-size:.95rem;
  border-bottom:1px solid var(--line);
  padding-bottom:.2rem;
  transition:border-color .25s var(--ease), opacity .25s var(--ease);
}
.text-link:hover{ border-color:var(--navy); }

/* Buttons ---------------------------------------------------------------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  padding:.95rem 1.6rem;
  font-family:var(--font-body);
  font-weight:600;
  font-size:.92rem;
  letter-spacing:.01em;
  border-radius:2px;
  border:1px solid transparent;
  transition:transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  cursor:pointer;
  white-space:nowrap;
}
.btn svg{ transition:transform .3s var(--ease); flex:none; }
.btn:hover svg{ transform:translateX(3px); }

.btn--primary{ background:var(--ivory); color:var(--navy); }
.btn--primary:hover{ background:var(--paper); transform:translateY(-2px); }
.btn--primary.btn--dark{ background:var(--navy); color:var(--ivory); }
.btn--primary.btn--dark:hover{ background:var(--navy-deep); }

.btn--ghost{
  border-color:rgba(246,244,239,0.4);
  color:var(--ivory);
  background:transparent;
}
.btn--ghost:hover{ border-color:var(--ivory); background:rgba(246,244,239,0.08); transform:translateY(-2px); }

.btn--outline{
  flex-direction:column;
  align-items:flex-start;
  gap:.2rem;
  border-color:rgba(246,244,239,0.28);
  color:var(--ivory);
  padding:1.1rem 1.7rem;
  min-width:180px;
}
.btn--outline span{ font-size:1rem; }
.btn--outline small{ color:rgba(246,244,239,0.55); font-weight:500; font-size:.78rem; }
.btn--outline:hover{ border-color:var(--gold-soft); background:rgba(176,141,87,0.08); transform:translateY(-2px); }

/* ==========================================================================
   LOADER
   ========================================================================== */
.loader{
  position:fixed; inset:0; z-index:999;
  background:var(--void);
  display:flex; align-items:center; justify-content:center;
  transition:opacity .7s var(--ease), visibility .7s var(--ease);
}
.loader.is-hidden{ opacity:0; visibility:hidden; pointer-events:none; }

.loader__inner{
  display:flex; align-items:center; justify-content:center;
  width:100%;
}
.loading-brand{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.loader__mark{
  width:clamp(170px, 20vw, 280px);
  height:auto;
  opacity:0;
  transform:scale(.94);
  animation:markIn 1s var(--ease) .15s forwards;
}
.loader__word{ margin-top:1.4rem; height:1.4rem; overflow:hidden; display:flex; justify-content:center; }
.loader__ar{
  font-family:var(--font-ar);
  color:rgba(246,244,239,0.72);
  font-size:.95rem;
  display:inline-block;
  opacity:0;
  transform:translateY(10px);
  animation:wordIn .7s var(--ease) .6s forwards;
}
.loader__track{
  width:120px; height:1px; background:rgba(246,244,239,0.18);
  margin:1.7rem auto 0; overflow:hidden;
}
.loader__bar{
  width:0%; height:100%; background:var(--gold-soft);
  animation:barFill 1.6s var(--ease) .2s forwards;
}
.loader__label{
  margin-top:1rem;
  font-size:.62rem;
  letter-spacing:.28em;
  color:rgba(246,244,239,0.35);
  opacity:0;
  animation:wordIn .7s var(--ease) .8s forwards;
}

@media (max-width: 700px){
  .loader__mark{ width:clamp(170px, 45vw, 220px); }
}

@keyframes markIn{ to{ opacity:1; transform:scale(1); } }
@keyframes wordIn{ to{ opacity:1; transform:translateY(0); } }
@keyframes barFill{ to{ width:100%; } }

@media (prefers-reduced-motion: reduce){
  .loader__mark, .loader__ar, .loader__bar, .loader__label{ animation:none; opacity:1; transform:none; width:100%; }
}

/* ==========================================================================
   NAV
   ========================================================================== */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:200;
  transition:background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  border-bottom:1px solid transparent;
}
.nav.is-scrolled{
  background:rgba(246,244,239,0.92);
  backdrop-filter:blur(10px);
  border-color:var(--line);
}
.nav__inner{
  position:relative;
  z-index:160;
  max-width:var(--container);
  margin:0 auto;
  padding:1.1rem 1.6rem;
  display:flex;
  align-items:center;
  gap:2.2rem;
}
.nav__brand{ margin-right:auto; display:flex; align-items:center; flex-shrink:0; }
.nav__logo-wrap{
  position:relative;
  display:block;
  width:clamp(170px, 14vw, 210px);
  aspect-ratio:1018 / 426;
}
.nav__logo{
  position:absolute;
  inset:0;
  width:100%; height:100%;
  object-fit:contain;
  object-position:left center;
  transition:opacity .32s var(--ease);
}
.nav__logo--light{ opacity:1; }
.nav__logo--dark{ opacity:0; }
.nav.is-scrolled .nav__logo--light{ opacity:0; }
.nav.is-scrolled .nav__logo--dark{ opacity:1; }
.nav__links{
  display:flex; gap:2rem;
  font-size:.88rem; font-weight:600;
}
.nav__links a{
  color:var(--ivory);
  transition:color .3s var(--ease), opacity .3s var(--ease);
  opacity:.85;
  position:relative;
}
.nav.is-scrolled .nav__links a{ color:var(--navy); }
.nav__links a::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-6px;
  height:1px; background:currentColor;
  transform:scaleX(0); transform-origin:right;
  transition:transform .3s var(--ease);
}
.nav__links a:hover{ opacity:1; }
.nav__links a:hover::after{ transform:scaleX(1); transform-origin:left; }

.nav__cta{
  display:inline-flex; align-items:center; gap:.5rem;
  border:1px solid rgba(246,244,239,0.4);
  color:var(--ivory);
  padding:.55rem 1.1rem;
  font-size:.82rem; font-weight:700;
  border-radius:2px;
  transition:all .3s var(--ease);
}
.nav.is-scrolled .nav__cta{ border-color:var(--navy); color:var(--navy); }
.nav__cta:hover{ background:var(--gold); border-color:var(--gold); color:var(--void); }
.nav__cta svg{ fill:currentColor; }

.nav__burger{
  display:none;
  width:32px; height:22px;
  border:none; background:none; padding:0;
  cursor:pointer;
  flex-direction:column; justify-content:space-between;
}
.nav__burger span{
  display:block; height:1.5px; width:100%;
  background:var(--ivory);
  transition:all .3s var(--ease);
}
.nav.is-scrolled .nav__burger span{ background:var(--navy); }

.mobile-menu{
  position:fixed; inset:0 0 auto 0; top:0;
  background:var(--void);
  padding:6.5rem 1.8rem 2rem;
  display:flex; flex-direction:column; gap:1.6rem;
  transform:translateY(-100%);
  transition:transform .45s var(--ease);
  z-index:150;
}
.mobile-menu.is-open{ transform:translateY(0); }
.mobile-menu a{
  color:var(--ivory);
  font-family:var(--font-display);
  font-size:1.7rem;
  border-bottom:1px solid var(--line-light);
  padding-bottom:1rem;
}
.mobile-menu__cta{
  margin-top:1rem;
  font-family:var(--font-body) !important;
  font-size:1rem !important;
  border:1px solid rgba(246,244,239,0.4) !important;
  padding:1rem !important;
  text-align:center;
  border-radius:2px;
}

@media (max-width: 900px){
  .nav__links, .nav__cta{ display:none; }
  .nav__burger{ display:flex; }
  .nav__logo-wrap{ width:clamp(135px, 32vw, 165px); }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position:relative;
  min-height:100svh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  background:var(--navy-deep);
}
.hero__sky{ position:absolute; inset:0; z-index:0; }
.hero__cityscape{ width:100%; height:100%; display:block; }
.hero__clouds ellipse{ animation:driftCloud 60s linear infinite; }
.hero__clouds ellipse:nth-child(2){ animation-duration:80s; animation-direction:reverse; }
.hero__clouds ellipse:nth-child(3){ animation-duration:100s; }
@keyframes driftCloud{
  from{ transform:translateX(-40px); }
  to{ transform:translateX(40px); }
}

.hero__flightpath{ stroke-dashoffset:0; }
.hero__plane{ offset-path:path('M -50 480 C 300 380, 650 420, 950 260 S 1500 90, 1700 40'); animation:planeFly 22s linear infinite; opacity:.9; }
@keyframes planeFly{
  0%{ offset-distance:0%; opacity:0; }
  6%{ opacity:.9; }
  92%{ opacity:.9; }
  100%{ offset-distance:100%; opacity:0; }
}

@media (prefers-reduced-motion: reduce){
  .hero__clouds ellipse{ animation:none; }
  .hero__plane{ animation:none; offset-distance:35%; opacity:.8; }
}

.hero__content{
  position:relative; z-index:2;
  max-width:var(--container);
  margin:0 auto;
  padding:0 1.6rem 6.5rem;
  width:100%;
}
.hero__eyebrow{ color:rgba(246,244,239,0.75); }
.hero__eyebrow .eyebrow__dot{ box-shadow:0 0 0 3px rgba(176,141,87,0.3); }

.hero__headline{
  color:var(--ivory);
  font-size:clamp(2.6rem, 7vw, 5.6rem);
  line-height:1.02;
  font-weight:440;
  letter-spacing:-.01em;
  opacity:0;
  transform:translateY(24px);
  animation:heroIn .9s var(--ease) .3s forwards;
}
.hero__sub{
  color:rgba(246,244,239,0.78);
  max-width:34em;
  margin-top:1.4rem;
  font-size:1.05rem;
  opacity:0;
  transform:translateY(18px);
  animation:heroIn .9s var(--ease) .5s forwards;
}
.hero__ar{
  font-family:var(--font-ar);
  color:var(--gold-soft);
  font-size:1.15rem;
  margin-top:.9rem;
  opacity:0;
  transform:translateY(18px);
  animation:heroIn .9s var(--ease) .62s forwards;
}
.hero__ctas{
  display:flex; flex-wrap:wrap; gap:1rem;
  margin-top:2.4rem;
  opacity:0;
  transform:translateY(18px);
  animation:heroIn .9s var(--ease) .75s forwards;
}
.hero__directions{
  display:inline-flex; align-items:center; gap:.4rem;
  margin-top:1.6rem;
  color:rgba(246,244,239,0.6);
  font-size:.85rem; font-weight:600;
  border-bottom:1px solid rgba(246,244,239,0.25);
  padding-bottom:.15rem;
  opacity:0;
  animation:heroIn .9s var(--ease) .9s forwards;
  transition:color .3s var(--ease), border-color .3s var(--ease);
}
.hero__directions:hover{ color:var(--ivory); border-color:var(--ivory); }

@keyframes heroIn{ to{ opacity:1; transform:translateY(0); } }

.hero__scroll{
  position:absolute; right:1.8rem; bottom:2rem; z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:.6rem;
  color:rgba(246,244,239,0.55);
  font-size:.65rem; letter-spacing:.25em;
  writing-mode:vertical-rl;
}
.hero__scroll span{
  width:1px; height:46px;
  background:rgba(246,244,239,0.3);
  position:relative;
  overflow:hidden;
}
.hero__scroll span::after{
  content:""; position:absolute; top:-100%; left:0; right:0; height:50%;
  background:var(--gold-soft);
  animation:scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine{ 0%{ top:-50%; } 100%{ top:100%; } }

@media (max-width: 700px){
  .hero__scroll{ display:none; }
  .hero{ align-items:center; padding-top:5rem; }
  .hero__content{ padding-bottom:2.5rem; }
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about{ background:var(--ivory); padding:7rem 1.6rem 6rem; }
.about__inner{
  max-width:var(--container);
  margin:0 auto;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:4rem;
}
.about__statement{
  font-size:clamp(2rem, 3.6vw, 3rem);
  line-height:1.12;
}
.about__body p{
  font-size:1.05rem;
  color:var(--slate);
  max-width:34em;
}
.about__ar{
  display:block;
  width:fit-content;
  font-family:var(--font-ar);
  color:var(--navy);
  font-size:1.3rem;
  margin-top:1.3rem;
}
.about__divider{
  max-width:var(--container);
  margin:5rem auto 0;
  height:1px;
  background:var(--line);
}

@media (max-width: 860px){
  .about__inner{ grid-template-columns:1fr; gap:2rem; }
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services{ background:var(--ivory); padding:6rem 1.6rem 5rem; }
.services__head{
  max-width:var(--container);
  margin:0 auto 3rem;
}
.services__head h2{
  font-size:clamp(1.9rem, 3.4vw, 2.6rem);
  max-width:14em;
  color:var(--navy);
}
.services__head .eyebrow{ color:var(--slate); }

.services__list{
  max-width:var(--container);
  margin:0 auto;
  border-top:1px solid var(--line);
}
.services__item{
  display:flex; align-items:center; gap:2rem;
  padding:2.1rem 0;
  border-bottom:1px solid var(--line);
  cursor:default;
  transition:padding-left .4s var(--ease);
}
.services__item:hover{ padding-left:.6rem; }
.services__num{
  font-family:var(--font-display);
  font-size:1.1rem;
  color:var(--gold);
  width:2.4rem; flex:none;
  transition:transform .4s var(--ease);
}
.services__item:hover .services__num{ transform:translateX(4px); }
.services__text{ flex:1; }
.services__text h3{
  font-size:1.5rem;
  margin-bottom:.35rem;
  position:relative;
  display:inline-block;
}
.services__text h3::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-4px;
  height:1px; background:var(--navy);
  transform:scaleX(0); transform-origin:left;
  transition:transform .45s var(--ease);
}
.services__item:hover .services__text h3::after{ transform:scaleX(1); }
.services__text p{ color:var(--slate); max-width:38em; font-size:.98rem; }
.services__arrow{
  font-size:1.3rem; color:var(--slate-soft); flex:none;
  transform:translateX(-6px); opacity:0;
  transition:all .4s var(--ease);
}
.services__item:hover .services__arrow{ transform:translateX(0); opacity:1; color:var(--navy); }

.services__note{
  max-width:var(--container);
  margin:1.8rem auto 0;
  font-size:.8rem; color:var(--slate-soft);
  font-style:italic;
}

@media (max-width: 700px){
  .services__item{ gap:1rem; align-items:flex-start; }
  .services__text h3{ font-size:1.25rem; }
  .services__arrow{ display:none; }
}

/* ==========================================================================
   AIRLINES — ORBITAL SYSTEM
   ========================================================================== */
.airlines{
  background:var(--void);
  padding:6.5rem 1.6rem 5rem;
  overflow:hidden;
}
.airlines__head{
  max-width:var(--container);
  margin:0 auto 1rem;
  text-align:center;
}
.airlines__head h2{ color:var(--ivory); font-size:clamp(1.9rem, 3.4vw, 2.6rem); }
.airlines__head .eyebrow{ justify-content:center; }
.airlines__sub{
  color:rgba(246,244,239,0.55);
  max-width:32em; margin:1rem auto 0;
}

.orbit{
  position:relative;
  width:100%;
  max-width:760px;
  aspect-ratio:1/1;
  margin:4rem auto 1rem;
  display:flex; align-items:center; justify-content:center;
}
.orbit__hub{
  position:relative; z-index:3;
  width:150px; height:150px;
  border-radius:50%;
  background:var(--navy);
  border:1px solid rgba(176,141,87,0.35);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:.4rem;
  text-align:center;
  box-shadow:0 0 0 1px rgba(246,244,239,0.03), 0 30px 60px rgba(0,0,0,0.35);
}
.orbit__hub-en{
  font-family:var(--font-display);
  color:var(--ivory);
  font-size:1rem;
  letter-spacing:.06em;
}
.orbit__hub-line{ width:22px; height:1px; background:var(--gold-soft); }
.orbit__hub-ar{ font-family:var(--font-ar); font-size:.68rem; color:rgba(246,244,239,0.5); }

.orbit__ring{
  position:absolute;
  border:1px dashed rgba(246,244,239,0.14);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}
.orbit__ring--1{ width:64%; height:64%; }
.orbit__ring--2{ width:100%; height:100%; }

.orbit__spin{
  position:absolute; inset:0;
  animation:spin 46s linear infinite;
}
.orbit__spin--reverse{ animation:spinReverse 64s linear infinite; }
@keyframes spin{ from{ transform:rotate(0deg); } to{ transform:rotate(360deg); } }
@keyframes spinReverse{ from{ transform:rotate(360deg); } to{ transform:rotate(0deg); } }

.orbit__chip{
  --n: 4;
  position:absolute;
  top:50%; left:50%;
  width:74px; height:74px;
  margin:-37px 0 0 -37px;
  transform:
    rotate(calc(360deg / var(--n) * var(--i)))
    translateX(var(--orbit-r, 150px));
}
.orbit__ring--1 .orbit__chip{ --n:4; --orbit-r:150px; }
.orbit__ring--2 .orbit__chip{ --n:6; --orbit-r:245px; }
.orbit__chip--sm{ width:60px; height:60px; margin:-30px 0 0 -30px; }

/* inner element counter-rotates so the logo stays upright while the ring turns */
.orbit__chip-inner{
  width:100%; height:100%;
  background:var(--ivory);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  padding:14px;
  box-shadow:0 10px 26px rgba(0,0,0,0.28);
  transition:box-shadow .3s var(--ease);
  animation:counterSpin1 46s linear infinite;
}
.orbit__chip--sm .orbit__chip-inner{ padding:11px; }
.orbit__ring--2 .orbit__chip-inner{ animation-name:counterSpin2; animation-duration:64s; }

.orbit__chip img{ width:100%; height:100%; object-fit:contain; }

@keyframes counterSpin1{
  from{ transform:rotate(calc(-360deg / 4 * var(--i))); }
  to{ transform:rotate(calc(-360deg / 4 * var(--i) - 360deg)); }
}
@keyframes counterSpin2{
  from{ transform:rotate(calc(360deg / 6 * var(--i) + 360deg)); }
  to{ transform:rotate(calc(360deg / 6 * var(--i))); }
}

.orbit__chip-inner:hover{
  z-index:4;
  box-shadow:0 14px 34px rgba(176,141,87,0.35);
}
.orbit:has(.orbit__chip-inner:hover) .orbit__spin{ animation-play-state:paused; }
.orbit:has(.orbit__chip-inner:hover) .orbit__chip-inner{ animation-play-state:paused; }
.orbit__chip-inner:hover img{ transform:scale(1.14); }
.orbit__chip img{ transition:transform .35s var(--ease); }

.marquee{ display:none; }
.airlines__note{
  max-width:var(--container);
  margin:2.5rem auto 0;
  text-align:center;
  font-size:.78rem;
  color:rgba(246,244,239,0.35);
  font-style:italic;
}

@media (max-width: 760px){
  .orbit{ display:none; }
  .marquee{
    display:block;
    width:100%;
    overflow:hidden;
    -webkit-mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    margin-top:2.5rem;
  }
  .marquee__track{
    display:flex;
    align-items:center;
    gap:2.6rem;
    width:max-content;
    animation:marqueeScroll 32s linear infinite;
  }
  .marquee__track img{
    height:34px; width:auto;
    background:var(--ivory);
    padding:8px 16px;
    border-radius:3px;
    flex:none;
  }
  @keyframes marqueeScroll{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
  }
}

@media (prefers-reduced-motion: reduce){
  .orbit__spin, .orbit__chip-inner, .marquee__track{ animation:none !important; }
  .orbit{ height:auto; flex-wrap:wrap; gap:1rem; }
  .orbit__ring--1, .orbit__ring--2{ position:static; border:none; width:auto; height:auto; display:flex; flex-wrap:wrap; justify-content:center; gap:.6rem; }
  .orbit__spin{ position:static; display:flex; flex-wrap:wrap; justify-content:center; gap:.6rem; }
  .orbit__chip{ transform:none; position:static; margin:6px; }
}

/* ==========================================================================
   LOCATION
   ========================================================================== */
.location{
  background:var(--ivory);
  padding:6.5rem 1.6rem;
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:4rem;
  max-width:var(--container);
  margin:0 auto;
  align-items:center;
}
.location__copy{ color:var(--slate); max-width:30em; margin-top:1rem; }
.location__hours{
  display:flex; gap:2.2rem;
  margin:2rem 0 0;
}
.location__hours dt{
  font-size:.7rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--slate-soft); margin-bottom:.3rem;
}
.location__hours dd{
  margin:0; font-family:var(--font-display); font-size:1.15rem; color:var(--navy);
}
.location__note{
  font-size:.78rem; color:var(--slate-soft); font-style:italic;
  margin-top:1rem; max-width:26em;
}
.location .btn{ margin-top:2.2rem; }

.location__map{
  border-radius:3px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:0 30px 60px -30px rgba(16,42,67,0.25);
  aspect-ratio:4/3.4;
}
.location__map iframe{ width:100%; height:100%; border:0; filter:grayscale(.15) contrast(1.02); }

@media (max-width: 860px){
  .location{ grid-template-columns:1fr; gap:2.5rem; padding:5rem 1.6rem; }
}
@media (max-width: 460px){
  .location__hours{ flex-direction:column; gap:1rem; }
}

/* ==========================================================================
   CONTACT / CTA
   ========================================================================== */
.contact{
  background:var(--navy);
  padding:7rem 1.6rem 6rem;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.contact__flightline{
  position:absolute; left:-10%; right:-10%; top:18%;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(176,141,87,0.4), transparent);
}
.contact .eyebrow{ justify-content:center; }
.contact__headline{
  color:var(--ivory);
  font-size:clamp(2.2rem, 5vw, 3.6rem);
  line-height:1.08;
}
.contact__ar{
  font-family:var(--font-ar);
  color:var(--gold-soft);
  font-size:1.2rem;
  margin-top:1.1rem;
}
.contact__actions{
  display:flex; justify-content:center; flex-wrap:wrap; gap:1.1rem;
  margin-top:3rem;
}

@media (max-width:600px){
  .contact__actions{ flex-direction:column; align-items:stretch; }
  .contact__actions .btn{ width:100%; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer{ background:var(--void); padding:3.5rem 1.6rem 1.6rem; }
.footer__top{
  max-width:var(--container);
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:2.5rem;
  padding-bottom:2.5rem;
  border-bottom:1px solid var(--line-light);
}
.footer__logo{
  width:170px;
  height:auto;
  max-width:100%;
}
.footer__ar{
  display:block;
  width:fit-content;
  font-family:var(--font-ar);
  color:rgba(246,244,239,0.5);
  font-size:.85rem;
  margin-top:.9rem;
}
.footer__links{ display:flex; flex-direction:column; gap:.7rem; font-size:.9rem; }
.footer__links a{ color:rgba(246,244,239,0.68); transition:color .3s; }
.footer__links a:hover{ color:var(--gold-soft); }
.footer__contact{ display:flex; flex-direction:column; gap:.7rem; font-size:.9rem; }
.footer__contact a{ color:rgba(246,244,239,0.68); transition:color .3s; }
.footer__contact a:hover{ color:var(--gold-soft); }
.footer__city{ color:rgba(246,244,239,0.4); font-size:.82rem; margin-top:.3rem; }

.footer__bottom{
  max-width:var(--container);
  margin:0 auto;
  padding-top:1.6rem;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:.6rem;
  font-size:.78rem;
  color:rgba(246,244,239,0.4);
}
.footer__tagline{ font-family:var(--font-ar); }

@media (max-width: 700px){
  .footer__top{ grid-template-columns:1fr; gap:1.8rem; }
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
[data-reveal]{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-visible{
  opacity:1;
  transform:translateY(0);
}
@media (prefers-reduced-motion: reduce){
  [data-reveal]{ opacity:1; transform:none; transition:none; }
}
