/* ==========================================================================
   AL BURUJ RESTAURANT — Design System
   Palette:  --ink (near-black teal bg) --panel (raised teal) --emerald (deep
             green accent, echoes the logo's geometric corner motif)
             --gold / --gold-bright (metallic accent) --ivory (body text)
   Type:     Display AR  "Aref Ruqaa"     Display EN "Cormorant Garamond"
             Body AR     "Tajawal"        Body EN    "Jost"
   Signature: the pointed mosque-arch window from the mark, reused as an
             image frame, a section divider skyline, and a menu-card crown.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,500&family=Jost:wght@300;400;500;600&family=Aref+Ruqaa:wght@400;700&family=Tajawal:wght@300;400;500;700&display=swap');

:root{
  --ink:        #081d21;
  --ink-2:      #0a2429;
  --panel:      #0d2b30;
  --panel-2:    #103038;
  --emerald:    #0f3d2e;
  --emerald-2:  #123f30;
  --gold:       #c7a05c;
  --gold-bright:#eecf8e;
  --gold-dim:   #8a713f;
  --ivory:      #f2ead7;
  --ivory-dim:  #cfc3a8;
  --line:       rgba(199,160,92,.25);

  --display-ar: 'Aref Ruqaa', serif;
  --display-en: 'Cormorant Garamond', serif;
  --body-ar:    'Tajawal', sans-serif;
  --body-en:    'Jost', sans-serif;

  --container: 1180px;
  --radius: 2px;
  --ease: cubic-bezier(.22,.7,.2,1);
}

/* ---------- reset ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--ink);
  color:var(--ivory);
  font-family:var(--body-en);
  font-weight:300;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
html[lang="ar"] body{ font-family:var(--body-ar); }
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0; font-weight:500; }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }

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

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline:2px solid var(--gold-bright);
  outline-offset:3px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; scroll-behavior:auto !important; }
}

/* ---------- language-driven type swap ---------- */
[data-en], [data-ar]{ }
html[lang="en"] .ar-only{ display:none !important; }
html[lang="ar"] .en-only{ display:none !important; }

.disp{ font-family:var(--display-en); }
html[lang="ar"] .disp{ font-family:var(--body-ar); font-weight:700; }
.disp-strong{ font-family:var(--display-en); }
html[lang="ar"] .disp-strong{ font-family:var(--body-ar); font-weight:700; }

html[dir="rtl"] body{ direction:rtl; }

/* ---------- layout helpers ---------- */
.wrap{ max-width:var(--container); margin-inline:auto; padding-inline:28px; }
.section{ position:relative; padding:96px 0; }
.section--tight{ padding:64px 0; }
.section--panel{ background:var(--panel); }
.section--emerald{ background:
    radial-gradient(120% 140% at 15% 0%, rgba(238,207,142,.06), transparent 55%),
    var(--emerald); }

.eyebrow{
  display:flex; align-items:center; gap:14px;
  font-family:var(--body-en); font-size:12.5px; letter-spacing:.32em; text-transform:uppercase;
  color:var(--gold); margin-bottom:18px;
}
html[lang="ar"] .eyebrow{ font-family:var(--body-ar); letter-spacing:.05em; }
.eyebrow::before{ content:""; width:34px; height:1px; background:linear-gradient(90deg, transparent, var(--gold)); }
html[dir="rtl"] .eyebrow::before{ background:linear-gradient(270deg, transparent, var(--gold)); }

.heading-xl{ font-size:clamp(34px,5vw,62px); line-height:1.08; color:var(--ivory); }
.heading-lg{ font-size:clamp(28px,3.6vw,42px); line-height:1.15; color:var(--ivory); }
.heading-md{ font-size:clamp(22px,2.6vw,28px); color:var(--ivory); }
.lede{ font-size:17px; color:var(--ivory-dim); font-weight:300; max-width:56ch; }
html[lang="ar"] .lede{ font-size:18px; line-height:1.9; }

.gold-rule{ width:64px; height:1px; background:linear-gradient(90deg,var(--gold),transparent); margin:22px 0; }
html[dir="rtl"] .gold-rule{ background:linear-gradient(270deg,var(--gold),transparent); }
.gold-rule--center{ margin-inline:auto; background:linear-gradient(90deg,transparent,var(--gold),transparent); }

.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:15px 30px; border:1px solid var(--gold); border-radius:var(--radius);
  font-family:var(--body-en); font-size:12.5px; letter-spacing:.22em; text-transform:uppercase;
  color:var(--ivory); background:transparent; transition:all .35s var(--ease);
}
html[lang="ar"] .btn{ font-family:var(--body-ar); letter-spacing:.04em; font-weight:500; }
.btn:hover{ background:var(--gold); color:var(--ink); }
.btn--solid{ background:var(--gold); color:var(--ink); }
.btn--solid:hover{ background:var(--gold-bright); border-color:var(--gold-bright); }
.btn-row{ display:flex; gap:16px; flex-wrap:wrap; margin-top:36px; }

/* ---------- reveal on scroll ---------- */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in{ opacity:1; transform:none; }

/* ==========================================================================
   NAV
   ========================================================================== */
.site-nav{
  position:fixed; inset-inline:0; top:0; z-index:100;
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 28px;
  background:linear-gradient(180deg, rgba(8,29,33,.92), rgba(8,29,33,0));
  transition:background .4s var(--ease), padding .4s var(--ease), backdrop-filter .4s;
}
.site-nav.scrolled{
  background:rgba(8,29,33,.92);
  backdrop-filter:blur(10px);
  padding:10px 28px;
  border-bottom:1px solid var(--line);
}
.nav-inner{ max-width:var(--container); margin-inline:auto; width:100%; display:flex; align-items:center; justify-content:space-between; gap:24px; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ width:40px; height:40px; border-radius:50%; border:1px solid var(--line); object-fit:cover; }
.brand-type{ display:flex; flex-direction:column; line-height:1.1; }
.brand-type .en{ font-family:var(--display-en); font-size:19px; letter-spacing:.06em; color:var(--ivory); }
.brand-type .ar{ font-family:var(--display-ar); font-size:15px; color:var(--gold); }

.nav-links{ display:flex; align-items:center; gap:34px; }
.nav-links a{
  position:relative; font-size:12.5px; letter-spacing:.18em; text-transform:uppercase; color:var(--ivory-dim);
  padding-bottom:4px; transition:color .3s;
}
html[lang="ar"] .nav-links a{ font-family:var(--body-ar); font-size:14.5px; letter-spacing:.02em; }
.nav-links a::after{ content:""; position:absolute; left:0; bottom:0; width:0; height:1px; background:var(--gold); transition:width .35s var(--ease); }
.nav-links a:hover{ color:var(--ivory); }
.nav-links a:hover::after, .nav-links a.active::after{ width:100%; }
.nav-links a.active{ color:var(--gold); }

.nav-pdf-link{ display:inline-flex; align-items:center; gap:6px; }
.nav-pdf-link .i{ width:15px; height:15px; flex:0 0 auto; }
@media(max-width:860px){ .nav-pdf-link{ gap:10px; } }

.nav-actions{ display:flex; align-items:center; gap:14px; }
.lang-toggle{
  display:flex; border:1px solid var(--line); border-radius:20px; overflow:hidden; font-size:11px; letter-spacing:.08em;
}
.lang-toggle button{ background:none; border:0; color:var(--ivory-dim); padding:7px 13px; transition:all .3s; }
.lang-toggle button.active{ background:var(--gold); color:var(--ink); }
.nav-cta{ display:none; }
@media(min-width:860px){ .nav-cta{ display:inline-flex; } }

.nav-burger{ display:none; width:34px; height:34px; border:1px solid var(--line); border-radius:50%; background:none; align-items:center; justify-content:center; }
.nav-burger span, .nav-burger span::before, .nav-burger span::after{
  content:""; display:block; width:14px; height:1px; background:var(--ivory); position:relative; transition:.3s;
}
.nav-burger span::before{ position:absolute; top:-5px; }
.nav-burger span::after{ position:absolute; top:5px; }

@media(max-width:860px){
  .nav-links{
    position:fixed; inset-inline:0; top:64px; flex-direction:column; align-items:flex-start; gap:0;
    background:var(--panel); border-bottom:1px solid var(--line);
    max-height:0; overflow:hidden; transition:max-height .4s var(--ease);
  }
  .nav-links.open{ max-height:420px; }
  .nav-links a{ width:100%; padding:16px 28px; border-bottom:1px solid var(--line); }
  .nav-links a::after{ display:none; }
  .nav-burger{ display:flex; }
}

/* ==========================================================================
   ARCH MOTIF — signature element
   ========================================================================== */
.arch-frame{
  position:relative;
  width:300px; aspect-ratio:300/420;
  background:var(--panel-2);
}
.arch-frame-clip{
  position:absolute; inset:0; width:100%; height:100%; overflow:hidden;
  clip-path:url(#archClip);
}
.arch-frame-clip img, .arch-frame-clip .arch-fill{ width:100%; height:100%; object-fit:cover; display:block; }
.arch-frame > img{ width:100%; height:100%; object-fit:cover; display:block; }
.arch-frame-outline{ position:absolute; inset:0; width:100%; height:100%; pointer-events:none; }
.arch-frame-outline path{ fill:none; stroke:var(--gold-dim); stroke-width:1; }

.skyline-divider{ display:block; width:100%; height:auto; color:var(--gold-dim); }
.skyline-divider .twinkle{ animation:twinkle 3.6s ease-in-out infinite; }
.skyline-divider .twinkle:nth-child(2n){ animation-delay:.9s; }
.skyline-divider .twinkle:nth-child(3n){ animation-delay:1.8s; }
@keyframes twinkle{ 0%,100%{ opacity:.35; } 50%{ opacity:1; } }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position:relative; min-height:100svh; display:flex; align-items:center; justify-content:center;
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(199,160,92,.10), transparent 60%),
    linear-gradient(180deg, var(--ink-2), var(--ink) 70%);
  overflow:hidden; padding-top:110px; padding-bottom:70px;
  text-align:center;
}
.hero .starfield{ position:absolute; inset:0; z-index:0; }
.hero .star{ position:absolute; background:var(--gold-bright); border-radius:50%; animation:twinkle 4s ease-in-out infinite; }
.hero-content{ position:relative; z-index:2; display:flex; flex-direction:column; align-items:center; padding-inline:24px; }
.hero-arch{
  width:min(78vw, 300px); aspect-ratio:717/869; margin-bottom:34px;
  border:1px solid var(--line); position:relative;
  background: linear-gradient(180deg, rgba(199,160,92,.05), transparent 40%), var(--panel);
}
.hero-arch .arch-frame-clip{ clip-path:url(#heroArchClip); }
.hero-arch img{ width:100%; height:100%; object-fit:cover; opacity:.96; display:block; }
.hero-kicker{ font-size:12px; letter-spacing:.4em; text-transform:uppercase; color:var(--gold); margin-bottom:16px; }
html[lang="ar"] .hero-kicker{ font-family:var(--body-ar); letter-spacing:.1em; }
.hero-title-ar{ font-family:var(--display-ar); font-size:clamp(46px,8vw,92px); color:var(--gold-bright); line-height:1; margin-bottom:8px; }
.hero-title-en{ font-family:var(--display-en); font-size:clamp(30px,4.2vw,46px); letter-spacing:.14em; color:var(--ivory); text-transform:uppercase; }
.hero-sub{ margin-top:22px; color:var(--ivory-dim); max-width:52ch; font-weight:300; }
html[lang="ar"] .hero-sub{ font-size:17px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{ background:var(--ink-2); border-top:1px solid var(--line); padding:70px 0 26px; }
.footer-grid{ display:grid; gap:48px; grid-template-columns:1.3fr 1fr 1fr 1fr; }
@media(max-width:860px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.footer-brand img{ width:44px; height:44px; border-radius:50%; border:1px solid var(--line); }
.footer-col h4{ font-family:var(--body-en); font-size:12px; letter-spacing:.24em; text-transform:uppercase; color:var(--gold); margin-bottom:18px; }
html[lang="ar"] .footer-col h4{ font-family:var(--body-ar); letter-spacing:.04em; }
.footer-col ul li{ margin-bottom:11px; color:var(--ivory-dim); font-size:14.5px; }
.footer-col ul li a:hover{ color:var(--gold); }
.footer-bottom{ margin-top:56px; padding-top:22px; border-top:1px solid var(--line); display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:12.5px; color:var(--ivory-dim); }
.footer-bottomM{ margin-top:56px; padding-top:22px; border-top:1px solid var(--line); display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:12.5px; color:var(--ivory-dim); }
.footer-bottomM + .footer-bottom{ margin-top:14px; padding-top:0; border-top:0; }

/* Staff-only entry point to the admin dashboard — a small, subtle key icon
   in the footer. Understated but findable; the secret keyboard word above
   is the main way in, this is the visible fallback. */
.footer-admin-dot{
  display:inline-flex; align-items:center; justify-content:center;
  width:28px; height:28px; border-radius:50%;
  color:var(--ivory-dim); opacity:.55; text-decoration:none;
  transition:opacity .25s, color .25s, background .25s;
}
.footer-admin-dot svg{ width:15px; height:15px; }
.footer-admin-dot:hover, .footer-admin-dot:focus{ opacity:1; color:var(--gold); background:rgba(199,160,92,.1); }
.socials{ display:flex; gap:14px; }
.socials a{ width:34px; height:34px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; transition:transform .25s, opacity .25s; }
.socials a:hover{ transform:translateY(-2px); opacity:.88; }
.social-instagram{ background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.social-whatsapp{ background:#25d366; }
.social-facebook{ background:#1877f2; }
.social-tiktok{ background:#000; }

/* ==========================================================================
   PAGE HEADER (inner pages)
   ========================================================================== */
.page-header{
  position:relative; padding:170px 0 90px; text-align:center; overflow:hidden;
  background: radial-gradient(90% 100% at 50% 0%, rgba(199,160,92,.09), transparent 60%), var(--ink-2);
}
.page-header .eyebrow{ justify-content:center; }
.page-header .eyebrow::before{ display:none; }

/* ==========================================================================
   SHARED: cards / grids
   ========================================================================== */
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:30px; }
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; }
@media(max-width:960px){ .grid-4{ grid-template-columns:repeat(2,1fr); } .grid-3{ grid-template-columns:1fr; } }
@media(max-width:560px){ .grid-4{ grid-template-columns:repeat(2,1fr); gap:14px; } }

.dish-card{ text-align:center; }
.dish-card .arch-frame{ width:100%; margin-inline:auto; }
.dish-card h3{ margin-top:22px; font-family:var(--display-en); font-size:21px; color:var(--ivory); }
html[lang="ar"] .dish-card h3{ font-family:var(--body-ar); font-weight:700; font-size:21px; }
.dish-card .price{ color:var(--gold); font-size:13px; letter-spacing:.14em; margin-top:6px; }

.pillars{ display:grid; grid-template-columns:repeat(3,1fr); gap:44px; text-align:center; }
@media(max-width:760px){ .pillars{ grid-template-columns:1fr; } }
.pillar-icon{ width:56px; height:56px; margin-inline:auto 18px; }
.pillar h3{ font-family:var(--display-en); font-size:22px; color:var(--gold-bright); margin-bottom:10px; }
html[lang="ar"] .pillar h3{ font-family:var(--body-ar); font-weight:700; }
.pillar p{ color:var(--ivory-dim); font-size:14.5px; max-width:32ch; margin-inline:auto; }

/* CTA band */
.cta-band{ position:relative; padding:90px 0; text-align:center; background:var(--panel); overflow:hidden; }
.cta-band::before{ content:""; position:absolute; inset:0; background:radial-gradient(60% 120% at 50% 0%, rgba(199,160,92,.12), transparent 70%); }

/* ==========================================================================
   MENU PAGE
   ========================================================================== */
.menu-tabs{
  position:sticky; top:64px; z-index:40; background:rgba(8,29,33,.95); backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line); padding:16px 0;
}
@media(max-width:860px){ .menu-tabs{ top:58px; } }
.menu-tabs-scroll{ display:flex; gap:10px; overflow-x:auto; scrollbar-width:none; padding:2px; }
.menu-tabs-scroll::-webkit-scrollbar{ display:none; }
.menu-tab{
  flex:0 0 auto; padding:9px 18px; border:1px solid var(--line); border-radius:20px;
  font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--ivory-dim); white-space:nowrap; transition:.3s;
}
html[lang="ar"] .menu-tab{ font-family:var(--body-ar); letter-spacing:0; font-size:14px; }
.menu-tab:hover{ border-color:var(--gold); color:var(--ivory); }
.menu-tab.active{ background:var(--gold); border-color:var(--gold); color:var(--ink); }

.menu-category{ padding:76px 0 20px; scroll-margin-top:130px; }
.menu-category-head{ text-align:center; margin-bottom:48px; }
.menu-category-head .num{ font-family:var(--display-en); color:var(--gold-dim); font-size:13px; letter-spacing:.3em; }

.menu-list{ display:grid; grid-template-columns:1fr 1fr; gap:x 40px; column-gap:56px; row-gap:8px; max-width:960px; margin-inline:auto; }
@media(max-width:760px){ .menu-list{ grid-template-columns:1fr; } }
.menu-item{ display:flex; align-items:baseline; gap:10px; padding:16px 0; border-bottom:1px dashed var(--line); }
.menu-item .names{ flex:1; min-width:0; }
.menu-item .en{ font-family:var(--display-en); font-size:18px; color:var(--ivory); }
.menu-item .ar{ font-family:var(--body-ar); font-weight:500; font-size:16px; color:var(--gold-bright); display:block; margin-top:2px; }
html[lang="ar"] .menu-item .en{ font-size:14px; color:var(--ivory-dim); font-family:var(--body-en); }
html[lang="ar"] .menu-item .ar{ font-size:19px; font-weight:700; margin-top:0; }
.menu-item .note{ font-size:11.5px; color:var(--ivory-dim); letter-spacing:.06em; display:block; margin-top:3px; }
.menu-item .dots{ flex:0 0 auto; width:100%; border-bottom:1px dotted var(--line); display:none; }
.menu-item .price{ flex:0 0 auto; font-family:var(--body-en); font-size:14px; letter-spacing:.05em; color:var(--gold); white-space:nowrap; }
.menu-item .price small{ font-size:10px; letter-spacing:.1em; color:var(--ivory-dim); display:block; text-align:right; }
html[dir="rtl"] .menu-item .price small{ text-align:left; }

.menu-search{ max-width:420px; margin:0 auto 8px; position:relative; }
.menu-search input{
  width:100%; background:var(--panel-2); border:1px solid var(--line); border-radius:24px;
  padding:12px 20px; color:var(--ivory); font-family:var(--body-en); font-size:14px;
}
html[lang="ar"] .menu-search input{ font-family:var(--body-ar); }
.menu-search input::placeholder{ color:var(--ivory-dim); }
.menu-search input:focus{ outline:none; border-color:var(--gold); }
.menu-empty{ text-align:center; color:var(--ivory-dim); padding:40px 0; display:none; }

/* ==========================================================================
   ABOUT PAGE extras
   ========================================================================== */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
@media(max-width:860px){ .split{ grid-template-columns:1fr; gap:40px; } }
.split.rev{ direction:ltr; }
html[dir="rtl"] .split.rev{ direction:rtl; }

.value-row{ display:flex; gap:22px; padding:26px 0; border-bottom:1px solid var(--line); }
.value-row .idx{ font-family:var(--display-en); color:var(--gold-dim); font-size:26px; flex:0 0 auto; }
.value-row h4{ font-family:var(--display-en); font-size:19px; color:var(--ivory); margin-bottom:6px; }
html[lang="ar"] .value-row h4{ font-family:var(--body-ar); font-weight:700; font-size:19px; }
.value-row p{ color:var(--ivory-dim); font-size:14.5px; }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:60px; }
@media(max-width:900px){ .contact-grid{ grid-template-columns:1fr; } }
.info-row{ display:flex; gap:16px; padding:20px 0; border-bottom:1px solid var(--line); }
.info-row .ico{ width:20px; height:20px; flex:0 0 auto; color:var(--gold); margin-top:3px; }
.info-row h4{ font-size:12px; letter-spacing:.16em; text-transform:uppercase; color:var(--gold); margin-bottom:6px; }
html[lang="ar"] .info-row h4{ font-family:var(--body-ar); letter-spacing:.02em; }
.info-row p{ color:var(--ivory-dim); font-size:15px; }
.info-row a:hover{ color:var(--gold); }

.map-frame{ margin-top:30px; border:1px solid var(--line); overflow:hidden; height:260px; }
.map-frame iframe{ width:100%; height:100%; border:0; filter:grayscale(.4) invert(.92) contrast(.9); }

.form{ display:grid; gap:20px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
@media(max-width:560px){ .form-row{ grid-template-columns:1fr; } }
.field{ display:flex; flex-direction:column; gap:8px; }
.field label{ font-size:11.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--ivory-dim); }
html[lang="ar"] .field label{ font-family:var(--body-ar); letter-spacing:.02em; }
.field input, .field select, .field textarea{
  background:var(--panel-2); border:1px solid var(--line); border-radius:var(--radius); padding:13px 16px;
  color:var(--ivory); font-family:var(--body-en); font-size:14.5px;
}
.field select option{ direction:ltr; unicode-bidi:isolate; }
html[lang="ar"] .field input, html[lang="ar"] .field select, html[lang="ar"] .field textarea{ font-family:var(--body-ar); }
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--gold); }
.field textarea{ resize:vertical; min-height:110px; }
.form-note{ font-size:12.5px; color:var(--ivory-dim); }
.form-success{ display:none; padding:16px 18px; border:1px solid var(--gold); color:var(--gold-bright); font-size:14px; margin-bottom:4px; }
.form-success.show{ display:block; }
.form-error{ border-color:#c96a5c; color:#e8a89c; }

/* hours table */
.hours-table{ width:100%; border-collapse:collapse; margin-top:8px; }
.hours-table td{ padding:9px 0; border-bottom:1px dashed var(--line); font-size:14.5px; color:var(--ivory-dim); }
.hours-table td:last-child{ text-align:right; color:var(--ivory); white-space:nowrap; padding-inline-start:16px; direction:ltr; unicode-bidi:isolate; }
html[dir="rtl"] .hours-table td:last-child{ text-align:left; }

@media(max-width:480px){
  .hours-table, .hours-table tbody, .hours-table tr{ display:block; width:100%; }
  .hours-table tr{ padding:10px 0; border-bottom:1px dashed var(--line); }
  .hours-table td{ display:block; padding:0; border-bottom:0; white-space:normal; }
  .hours-table td:last-child{ text-align:inherit; padding-inline-start:0; margin-top:4px; font-size:15px; color:var(--gold-bright); }
  html[dir="rtl"] .hours-table td:last-child{ text-align:inherit; }
}

/* utility icon */
.i{ width:1em; height:1em; display:inline-block; vertical-align:-.14em; stroke:currentColor; fill:none; stroke-width:1.4; }

/* ==========================================================================
   DEFENSIVE FIX: some Chrome/Edge builds don't reliably resolve CSS var()
   references written as raw SVG presentation attributes (fill="var(--x)").
   These attribute-selector rules force the correct color via the stylesheet,
   which always resolves var() correctly, regardless of that quirk.
   ========================================================================== */
[fill="var(--gold)"]{ fill:var(--gold) !important; }
[stroke="var(--gold)"]{ stroke:var(--gold) !important; }
[fill="var(--gold-bright)"]{ fill:var(--gold-bright) !important; }
[stroke="var(--gold-bright)"]{ stroke:var(--gold-bright) !important; }
[fill="var(--ink)"]{ fill:var(--ink) !important; }
[fill="var(--ink-2)"]{ fill:var(--ink-2) !important; }
[fill="var(--panel)"]{ fill:var(--panel) !important; }
[fill="var(--panel-2)"]{ fill:var(--panel-2) !important; }
.skyline-divider{ background:var(--ink) !important; }

/* ==========================================================================
   TEL CONFIRM MODAL
   ========================================================================== */
body.tel-modal-lock{ overflow:hidden; }
.tel-modal{
  position:fixed; inset:0; z-index:200; display:flex; align-items:center; justify-content:center;
  padding:20px; opacity:0; pointer-events:none; transition:opacity .3s var(--ease);
}
.tel-modal.open{ opacity:1; pointer-events:auto; }
.tel-modal-backdrop{ position:absolute; inset:0; background:rgba(4,14,16,.8); backdrop-filter:blur(4px); }
.tel-modal-card{
  position:relative; z-index:1; width:100%; max-width:360px; text-align:center;
  background:var(--panel-2); border:1px solid var(--line); border-radius:2px;
  padding:42px 32px 32px; box-shadow:0 30px 70px rgba(0,0,0,.55);
  transform:translateY(16px) scale(.98); transition:transform .35s var(--ease);
}
.tel-modal.open .tel-modal-card{ transform:translateY(0) scale(1); }
.tel-modal-icon{ width:38px; height:38px; margin:0 auto 20px; color:var(--gold); }
.tel-modal-title{ font-family:var(--display-en); font-size:21px; color:var(--ivory); margin-bottom:10px; line-height:1.3; }
html[lang="ar"] .tel-modal-title{ font-family:var(--body-ar); font-weight:700; font-size:20px; }
.tel-modal-number{ direction:ltr; color:var(--gold-bright); font-size:19px; letter-spacing:.05em; margin-bottom:28px; font-family:var(--body-en); }
.tel-modal-actions{ display:flex; gap:12px; }
.tel-modal-actions .btn{ flex:1; justify-content:center; white-space:nowrap; padding-inline:18px; letter-spacing:.12em; }
