/* ===== Al Meedania — Quiet Architectural Luxury ===== */
:root {
  --linen: #FAF9F6;
  --slate: #161719;
  --crimson: #B83A2E;
  --oak: #C4A682;
  --hairline: rgba(0, 0, 0, 0.08);
  --linen-10: rgba(250, 249, 246, 0.1);
  --linen-15: rgba(250, 249, 246, 0.15);
  --linen-25: rgba(250, 249, 246, 0.25);
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
html[dir="rtl"] {
  --font-head: 'Readex Pro', sans-serif;
  --font-body: 'IBM Plex Sans Arabic', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  background: var(--linen);
  color: var(--slate);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
::selection { background: var(--crimson); color: var(--linen); }
img { display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
.hidden { display: none !important; }
.container { max-width: 1536px; margin-inline: auto; padding-inline: 24px; width: 100%; }
@media (min-width: 768px) { .container { padding-inline: 48px; } }
.section { padding-block: 96px; }
@media (min-width: 768px) { .section { padding-block: 144px; } }
.section-bordered { border-top: 1px solid var(--hairline); }
.section-works { border-top: 1px solid var(--hairline); background: rgba(255,255,255,.5); }
.ico { width: 15px; height: 15px; flex-shrink: 0; }
.crimson { color: var(--crimson); }
.oak { color: var(--oak); }

/* grain texture */
.grain { position: relative; }
.grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .05; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.grain > * { position: relative; z-index: 2; }

/* ===== reveal on scroll ===== */
.rv { opacity: 0; transform: translateY(32px); transition: opacity .9s var(--ease) var(--d, 0s), transform .9s var(--ease) var(--d, 0s); }
.rv.in { opacity: 1; transform: translateY(0); }
.hero .rv { opacity: 0; animation: fadeUp .9s var(--ease) var(--d, 0s) forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ===== header ===== */
#site-header {
  position: fixed; top: 0; inset-inline: 0; z-index: 40;
  border-bottom: 1px solid transparent;
  transition: background-color .5s, border-color .5s, backdrop-filter .5s;
  animation: headerIn .9s var(--ease) .2s both;
}
@keyframes headerIn { from { transform: translateY(-80px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
#site-header.scrolled { background: rgba(255,255,255,.7); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-color: rgba(255,255,255,.2); }
.header-inner { max-width: 1536px; margin-inline: auto; padding-inline: 24px; height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
@media (min-width: 768px) { .header-inner { padding-inline: 48px; } }
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-main { font-family: var(--font-head); font-weight: 600; letter-spacing: .18em; font-size: 14px; text-transform: uppercase; }
.logo-sub { font-size: 10px; letter-spacing: .32em; text-transform: uppercase; color: rgba(22,23,25,.5); margin-top: 4px; transition: color .3s; }
.logo:hover .logo-sub { color: var(--crimson); }
.main-nav { display: none; align-items: center; gap: 32px; }
@media (min-width: 1024px) { .main-nav { display: flex; } }
.main-nav a { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(22,23,25,.7); transition: color .3s; }
.main-nav a:hover { color: var(--crimson); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-btn { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; border: 1px solid var(--hairline); padding: 8px 12px; transition: color .3s, border-color .3s; }
.lang-btn:hover { border-color: var(--crimson); color: var(--crimson); }

/* ===== buttons ===== */
.btn { display: inline-flex; align-items: center; gap: 12px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; padding: 16px 28px; transition: background-color .3s, color .3s, border-color .3s; border: 1px solid transparent; }
.btn-slate { background: var(--slate); color: var(--linen); padding: 10px 20px; }
.btn-slate:hover { background: var(--crimson); }
.btn-crimson { background: var(--crimson); color: var(--linen); }
.btn-crimson:hover { background: var(--slate); }
.btn-ghost { border-color: var(--hairline); color: var(--slate); }
.btn-ghost:hover { border-color: var(--slate); }
.btn-outline-light { border-color: var(--linen-25); color: var(--linen); }
.btn-outline-light:hover { border-color: var(--oak); color: var(--oak); }
.btn-sm { padding: 12px 24px; font-size: 11px; }
.btn-sm:disabled { opacity: .3; pointer-events: none; }
.arrow-ico { width: 14px; height: 14px; }
html[dir="rtl"] .arrow-ico { transform: rotate(270deg); }
.header-actions .btn-slate { display: none; }
@media (min-width: 640px) { .header-actions .btn-slate { display: inline-flex; } }

/* ===== hero ===== */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.hero-grid { padding-top: 128px; padding-bottom: 40px; display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; align-items: end; }
@media (min-width: 768px) { .hero-grid { padding-top: 160px; } }
.hero-text { grid-column: span 12; position: relative; z-index: 3; }
@media (min-width: 1024px) { .hero-text { grid-column: span 7; } }
.hero-kicker { font-size: 11px; letter-spacing: .35em; text-transform: uppercase; color: var(--crimson); margin-bottom: 32px; animation: fadeIn 1s ease 1.2s both; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.hero-h1 { font-family: var(--font-head); font-weight: 200; font-size: clamp(3rem, 8.5vw, 6.5rem); line-height: .98; letter-spacing: -.04em; }
.mask { display: block; overflow: hidden; }
.mask-line { display: block; transform: translateY(110%); animation: maskUp 1.1s var(--ease) var(--d, 0s) forwards; will-change: transform; }
@keyframes maskUp { to { transform: translateY(0); } }
.hero-sub { margin-top: 32px; max-width: 448px; font-size: 16px; font-weight: 300; line-height: 1.65; color: rgba(22,23,25,.7); }
@media (min-width: 768px) { .hero-sub { font-size: 18px; } }
.hero-cta { margin-top: 40px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.hero-badges { margin-top: 56px; display: flex; flex-wrap: wrap; border-block: 1px solid var(--hairline); }
.badge { padding: 20px 24px; border-inline-start: 1px solid var(--hairline); }
.badge:first-child { border-inline-start: none; padding-inline-start: 0; }
.badge span { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: rgba(22,23,25,.6); }
.hero-media { grid-column: span 12; position: relative; margin-top: 48px; }
@media (min-width: 1024px) { .hero-media { grid-column: span 5; margin-top: 0; } }
.hero-frame { position: relative; overflow: hidden; aspect-ratio: 3/4; max-height: 72vh; width: 100%; animation: clipUp 1.4s var(--ease) .9s both; }
@keyframes clipUp { from { clip-path: inset(100% 0 0 0); } to { clip-path: inset(0% 0 0 0); } }
.hero-frame img { position: absolute; inset: 0; width: 100%; height: 118%; object-fit: cover; will-change: transform; }
.hero-frame-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(22,23,25,.25), transparent); }
.hero-frame-tag { position: absolute; bottom: 16px; inset-inline-start: 16px; color: var(--linen); font-size: 10px; letter-spacing: .3em; text-transform: uppercase; }
.hero-since { position: absolute; bottom: -20px; inset-inline-start: -20px; background: var(--oak); color: var(--slate); padding: 12px 20px; font-size: 10px; letter-spacing: .3em; text-transform: uppercase; display: none; animation: fadeIn 1s ease 1.8s both; }
@media (min-width: 768px) { .hero-since { display: block; } }

/* ===== marquee ===== */
.marquee-wrap { border-block: 1px solid var(--hairline); padding-block: 24px; background: rgba(255,255,255,.4); overflow: hidden; }
.marquee-track { display: flex; width: max-content; animation: marqueeMove 60s linear infinite; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.mq-item { display: flex; align-items: center; }
.mq-text { font-family: var(--font-head); font-size: 24px; font-weight: 200; letter-spacing: -.02em; color: rgba(22,23,25,.8); padding-inline: 32px; white-space: nowrap; }
@media (min-width: 768px) { .mq-text { font-size: 36px; } }
.mq-dot { width: 8px; height: 8px; transform: rotate(45deg); background: rgba(184,58,46,.7); flex-shrink: 0; }

/* ===== chapters / headings ===== */
.chapter { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; }
.ch-num { font-family: var(--font-head); font-size: 11px; letter-spacing: .3em; color: var(--crimson); text-transform: uppercase; }
.ch-line { height: 1px; width: 64px; background: rgba(0,0,0,.15); }
.ch-label { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: rgba(22,23,25,.6); }
.h2 { font-family: var(--font-head); font-size: 30px; font-weight: 300; letter-spacing: -.02em; line-height: 1.2; }
.h2-big { font-family: var(--font-head); font-size: 30px; font-weight: 200; letter-spacing: -.03em; line-height: 1.15; }
@media (min-width: 768px) { .h2 { font-size: 40px; } .h2-big { font-size: 48px; } }
.body-lg { font-size: 16px; font-weight: 300; line-height: 1.7; color: rgba(22,23,25,.65); }
@media (min-width: 768px) { .body-lg { font-size: 18px; } }
.section-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 56px; }
.mb-64 { margin-bottom: 64px; max-width: 640px; }
.section-head .h2 { max-width: 560px; }

/* ===== manifesto ===== */
.manifesto-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 1024px) { .manifesto-grid { grid-template-columns: repeat(12, 1fr); } .manifesto-grid > div:first-child { grid-column: span 8; } .manifesto-grid > div:last-child { grid-column: span 4; } }
.manifesto-body { margin-top: 32px; max-width: 576px; }
.img-hover { overflow: hidden; }
.img-hover img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.img-hover:hover img { transform: scale(1.05); }
.manifesto-img { aspect-ratio: 4/5; max-height: 420px; }
.stat-row { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--hairline); padding-block: 16px; margin-top: 8px; }
.stat-num { font-family: var(--font-head); font-size: 36px; font-weight: 200; }
.stat-label { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: rgba(22,23,25,.5); }

/* ===== branch hub ===== */
.oman-clock { font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: rgba(22,23,25,.5); font-variant-numeric: tabular-nums; }
.branch-grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .branch-grid { grid-template-columns: 1fr 1fr; } }
.branch-card { background: #fff; border: 1px solid var(--hairline); padding: 32px; display: flex; flex-direction: column; gap: 32px; transition: border-color .5s; }
@media (min-width: 768px) { .branch-card { padding: 48px; } }
.branch-card:hover { border-color: rgba(22,23,25,.3); }
.bc-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.bc-title { font-family: var(--font-head); font-size: 20px; font-weight: 500; letter-spacing: -.01em; }
@media (min-width: 768px) { .bc-title { font-size: 24px; } }
.bc-addr { margin-top: 8px; font-size: 14px; color: rgba(22,23,25,.55); font-weight: 300; }
.bc-status { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.bc-status-label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(22,23,25,.7); }
.pulse-dot { position: relative; width: 8px; height: 8px; border-radius: 9999px; }
.pulse-dot.open { background: #059669; color: #059669; }
.pulse-dot.closed { background: var(--crimson); color: var(--crimson); }
.pulse-dot::after { content: ""; position: absolute; inset: -4px; border-radius: 9999px; border: 1px solid currentColor; animation: pulseRing 2s cubic-bezier(.4,0,.6,1) infinite; }
@keyframes pulseRing { 0% { transform: scale(.6); opacity: .9; } 100% { transform: scale(1.6); opacity: 0; } }
.bc-hours { border-top: 1px solid var(--hairline); padding-top: 24px; }
.bc-hours-label { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: rgba(22,23,25,.45); margin-bottom: 8px; }
.bc-hours-today { font-family: var(--font-head); font-size: 18px; font-weight: 300; font-variant-numeric: tabular-nums; }
.bc-hours-full { margin-top: 4px; font-size: 12px; color: rgba(22,23,25,.45); font-weight: 300; }
.bc-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: auto; }
.bc-btn { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--hairline); padding: 10px 16px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; transition: color .3s, border-color .3s, background-color .3s; }
.bc-btn:hover { border-color: var(--crimson); color: var(--crimson); }
.bc-btn.dark { background: var(--slate); color: var(--linen); border-color: var(--slate); }
.bc-btn.dark:hover { background: var(--crimson); border-color: var(--crimson); color: var(--linen); }
.bc-btn .ico { width: 13px; height: 13px; }

/* ===== services ===== */
.services-grid { display: grid; border-top: 1px solid var(--hairline); border-inline-start: 1px solid var(--hairline); }
@media (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1280px) { .services-grid { grid-template-columns: 1fr 1fr 1fr; } }
.svc-cell { border-inline-end: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.svc-inner { padding: 32px; min-height: 260px; height: 100%; display: flex; flex-direction: column; transition: background-color .5s; }
@media (min-width: 768px) { .svc-inner { padding: 48px; } }
.svc-inner:hover { background: #fff; }
.svc-num { font-family: var(--font-head); font-size: 11px; letter-spacing: .3em; color: var(--oak); }
.svc-title { font-family: var(--font-head); font-size: 20px; font-weight: 500; letter-spacing: -.01em; margin-top: 24px; transition: color .3s; }
@media (min-width: 768px) { .svc-title { font-size: 24px; } }
.svc-inner:hover .svc-title { color: var(--crimson); }
.svc-desc { margin-top: 16px; font-size: 14px; font-weight: 300; line-height: 1.65; color: rgba(22,23,25,.6); max-width: 320px; }
@media (min-width: 768px) { .svc-desc { font-size: 16px; } }
.svc-underline { margin-top: auto; padding-top: 32px; display: block; }
.svc-underline::after { content: ""; display: block; height: 1px; width: 0; background: var(--crimson); transition: width .5s; }
.svc-inner:hover .svc-underline::after { width: 64px; }
.svc-cta { background: var(--slate); color: var(--linen); display: flex; }
.svc-cta .svc-inner { width: 100%; justify-content: space-between; }
.svc-cta:hover .svc-inner { background: var(--crimson); }
.svc-cta .svc-title { font-weight: 300; }
.svc-cta .svc-link { display: inline-block; margin-top: 24px; font-size: 11px; letter-spacing: .25em; text-transform: uppercase; border-bottom: 1px solid rgba(250,249,246,.4); padding-bottom: 4px; }

/* ===== portfolio ===== */
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; padding: 8px 16px; border: 1px solid var(--hairline); color: rgba(22,23,25,.6); transition: color .3s, border-color .3s, background-color .3s; }
.filter-btn:hover { color: var(--crimson); border-color: var(--crimson); }
.filter-btn.active { background: var(--slate); color: var(--linen); border-color: var(--slate); }
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
@media (min-width: 768px) { .portfolio-grid { grid-template-columns: repeat(4, 1fr); } }
.proj { position: relative; background: #fff; overflow: hidden; cursor: pointer; border: none; text-align: start; padding: 0; animation: projIn .5s var(--ease) both; }
@keyframes projIn { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }
.proj.std { aspect-ratio: 1/1; }
.proj.wide { grid-column: span 2; aspect-ratio: 2/1; }
.proj.tall { grid-row: span 2; min-height: 300px; }
.proj-img { position: absolute; inset: 0; overflow: hidden; }
.proj-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.proj:hover .proj-img img { transform: scale(1.05); }
.proj-shade { position: absolute; inset: 0; background: rgba(22,23,25,0); transition: background-color .5s; }
.proj:hover .proj-shade { background: rgba(22,23,25,.55); }
.proj-meta { position: absolute; inset-inline: 0; bottom: 0; padding: 20px; transform: translateY(16px); opacity: 0; transition: transform .5s, opacity .5s; color: var(--linen); }
@media (min-width: 768px) { .proj-meta { padding: 28px; } }
.proj:hover .proj-meta { transform: translateY(0); opacity: 1; }
.proj-title { font-family: var(--font-head); font-size: 16px; font-weight: 500; letter-spacing: -.01em; }
@media (min-width: 768px) { .proj-title { font-size: 18px; } }
.proj-sub { margin-top: 4px; font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: rgba(250,249,246,.7); }
.works-note { margin-top: 24px; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: rgba(22,23,25,.4); }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 50; background: rgba(22,23,25,.9); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.show { display: flex; animation: fadeIn .3s ease both; }
.lightbox-inner { max-width: 1152px; width: 100%; animation: lbIn .45s var(--ease) both; }
@keyframes lbIn { from { transform: scale(.94) translateY(20px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
.lightbox-inner img { width: 100%; max-height: 78vh; object-fit: cover; }
.lb-bar { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; color: var(--linen); gap: 16px; flex-wrap: wrap; }
.lb-title { font-family: var(--font-head); font-size: 18px; }
.lb-sub { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(250,249,246,.6); margin-top: 4px; }
.lb-close { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; border: 1px solid rgba(250,249,246,.3); padding: 8px 16px; color: var(--linen); transition: background-color .3s, color .3s; }
.lb-close:hover { background: var(--linen); color: var(--slate); }

/* ===== demarcation ===== */
.demarc { background: var(--slate); color: var(--linen); overflow: hidden; }
.demarc-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .demarc-grid { grid-template-columns: repeat(12, 1fr); } .demarc-grid > div { grid-column: span 6; } }
.demarc-tag { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--oak); }
.demarc-tag .ico { width: 16px; height: 16px; }
.demarc-title { line-height: 1.2; }
.demarc-body { margin-top: 24px; color: rgba(250,249,246,.65); max-width: 512px; }
.demarc-docs { margin-top: 40px; border-top: 1px solid var(--linen-15); }
.demarc-docs-label { margin-top: 24px; font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: rgba(250,249,246,.45); }
.demarc-doc { display: flex; align-items: center; gap: 16px; padding-block: 16px; border-bottom: 1px solid var(--linen-10); font-size: 14px; font-weight: 300; color: rgba(250,249,246,.8); }
.doc-num { font-family: var(--font-head); font-size: 11px; color: var(--oak); }
.dim { color: rgba(250,249,246,.5); }
.demarc-cta { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; }
.demarc .btn-crimson:hover { background: var(--linen); color: var(--slate); }
.demarc-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.demarc-img img { width: 100%; height: 100%; object-fit: cover; }
.demarc-img::after { content: ""; position: absolute; inset: 0; background: rgba(22,23,25,.2); }
.demarc-img-tag { position: absolute; bottom: 16px; inset-inline-start: 16px; font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: rgba(250,249,246,.8); z-index: 2; }

/* ===== intake wizard ===== */
.consult-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 1024px) { .consult-grid { grid-template-columns: repeat(12, 1fr); } .consult-grid > div:first-child { grid-column: span 5; } .consult-grid > div:last-child { grid-column: span 7; } }
.consult-note { margin-top: 24px; color: rgba(22,23,25,.6); max-width: 448px; }
.wizard-progress { margin-top: 40px; display: flex; gap: 12px; }
.wp-step { flex: 1; }
.wp-bar { height: 1px; background: rgba(0,0,0,.1); transition: background-color .5s; }
.wp-step.active .wp-bar { background: var(--crimson); }
.wp-label { margin-top: 12px; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(22,23,25,.4); }
.wp-step.active .wp-label { color: var(--slate); }
.wizard-card { background: #fff; border: 1px solid var(--hairline); padding: 32px; min-height: 420px; display: flex; flex-direction: column; }
@media (min-width: 768px) { .wizard-card { padding: 48px; } }
#wizard-body { animation: wizIn .45s var(--ease) both; }
@keyframes wizIn { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: translateX(0); } }
html[dir="rtl"] #wizard-body { animation-name: wizInRtl; }
@keyframes wizInRtl { from { opacity: 0; transform: translateX(-24px); } to { opacity: 1; transform: translateX(0); } }
.opt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.opt-grid.cols3 { grid-template-columns: 1fr 1fr; max-height: 224px; overflow-y: auto; padding-inline-end: 4px; }
@media (min-width: 640px) { .opt-grid.cols3 { grid-template-columns: repeat(3, 1fr); } }
.opt { border: 1px solid var(--hairline); background: #fff; padding: 16px 20px; font-size: 14px; text-align: start; transition: color .3s, border-color .3s, background-color .3s; }
.opt:hover { border-color: var(--crimson); color: var(--crimson); }
.opt.selected { background: var(--slate); color: var(--linen); border-color: var(--slate); }
.wiz-input { margin-top: 24px; width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--hairline); outline: none; padding-block: 12px; font-family: var(--font-head); font-size: 18px; font-weight: 300; color: var(--slate); transition: border-color .3s; }
.wiz-input:focus { border-color: var(--crimson); }
.wiz-input::placeholder { color: rgba(22,23,25,.35); }
.wizard-summary { margin-top: 32px; border: 1px solid var(--hairline); padding: 24px; background: var(--linen); animation: fadeUp .5s var(--ease) both; }
.ws-label { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: rgba(22,23,25,.5); margin-bottom: 12px; }
.ws-text { font-family: var(--font-head); font-size: 18px; font-weight: 300; }
.ws-send { margin-top: 24px; display: inline-flex; align-items: center; gap: 12px; background: var(--crimson); color: var(--linen); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; padding: 14px 24px; transition: background-color .3s; }
.ws-send:hover { background: var(--slate); }
.ws-send .ico { width: 14px; height: 14px; }
.wizard-nav { margin-top: auto; padding-top: 40px; display: flex; align-items: center; justify-content: space-between; }
.wizard-back { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(22,23,25,.5); transition: color .3s, opacity .3s; }
.wizard-back:hover { color: var(--slate); }
.wizard-back:disabled { opacity: 0; pointer-events: none; }
.wizard-back .ico { width: 14px; height: 14px; }
html[dir="rtl"] .dir-ico { transform: scaleX(-1); }

/* ===== documents ===== */
.docs-grid { display: grid; gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
@media (min-width: 768px) { .docs-grid { grid-template-columns: repeat(4, 1fr); } }
.doc-cell { background: var(--linen); padding: 32px; min-height: 220px; display: flex; flex-direction: column; transition: background-color .5s; }
@media (min-width: 768px) { .doc-cell { padding: 40px; } }
.doc-cell:hover { background: #fff; }
.doc-big-num { font-family: var(--font-head); font-size: 48px; font-weight: 200; color: rgba(196,166,130,.7); transition: color .5s; }
.doc-cell:hover .doc-big-num { color: var(--crimson); }
.doc-title { font-family: var(--font-head); font-size: 18px; font-weight: 500; letter-spacing: -.01em; margin-top: 32px; }
.doc-desc { margin-top: 12px; font-size: 14px; font-weight: 300; color: rgba(22,23,25,.55); line-height: 1.6; }

/* ===== footer ===== */
.footer { background: var(--slate); color: var(--linen); }
.footer .container { padding-top: 96px; padding-bottom: 48px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 48px; padding-bottom: 64px; border-bottom: 1px solid var(--linen-10); }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(12, 1fr); } .footer-brand { grid-column: span 5; } .footer-branch { grid-column: span 3; } }
.footer-logo { font-family: var(--font-head); font-size: 30px; font-weight: 200; letter-spacing: -.02em; line-height: 1.25; }
@media (min-width: 768px) { .footer-logo { font-size: 36px; } }
.footer-tagline { margin-top: 24px; font-size: 14px; font-weight: 300; color: rgba(250,249,246,.55); max-width: 384px; line-height: 1.7; }
.footer-socials { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 16px; }
.footer-chip { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: .15em; border: 1px solid rgba(250,249,246,.2); padding: 10px 16px; transition: color .3s, border-color .3s; }
.footer-chip:hover { border-color: var(--oak); color: var(--oak); }
.footer-chip .ico { width: 13px; height: 13px; }
.fb-label { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--oak); margin-bottom: 20px; }
.fb-addr { font-size: 14px; font-weight: 300; color: rgba(250,249,246,.7); line-height: 1.7; }
.fb-phone { display: block; margin-top: 12px; font-size: 14px; font-weight: 300; color: rgba(250,249,246,.7); font-variant-numeric: tabular-nums; transition: color .3s; direction: ltr; width: fit-content; }
.fb-phone:hover { color: var(--oak); }
.fb-phone + .fb-phone { margin-top: 4px; }
.fb-hours { margin-top: 16px; font-size: 12px; font-weight: 300; color: rgba(250,249,246,.4); line-height: 1.7; }
.footer-bottom { padding-top: 32px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.footer-bottom p { font-size: 11px; font-weight: 300; letter-spacing: .1em; color: rgba(250,249,246,.4); }

/* ===== concierge ===== */
#concierge-toggle {
  position: fixed; bottom: 24px; inset-inline-end: 24px; z-index: 50;
  width: 56px; height: 56px; background: var(--slate); color: var(--linen);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
  transition: background-color .3s;
  animation: projIn .6s var(--ease) 2s both;
}
#concierge-toggle:hover { background: var(--crimson); }
#concierge-toggle .ico { width: 20px; height: 20px; }
#concierge-panel {
  position: fixed; bottom: 96px; inset-inline-end: 24px; z-index: 50;
  width: calc(100vw - 48px); max-width: 448px;
  height: min(600px, calc(100vh - 128px));
  background: #fff; border: 1px solid var(--hairline); box-shadow: 0 30px 60px rgba(0,0,0,.2);
  display: flex; flex-direction: column; overflow: hidden;
  animation: chatIn .4s var(--ease) both;
}
@keyframes chatIn { from { opacity: 0; transform: translateY(24px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.chat-head { background: var(--slate); color: var(--linen); padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; }
.chat-title { font-family: var(--font-head); font-size: 14px; }
.chat-sub { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(250,249,246,.5); margin-top: 4px; }
.chat-live { display: flex; align-items: center; gap: 8px; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--oak); }
.live-dot { width: 6px; height: 6px; border-radius: 9999px; background: #34d399; }
.chat-messages { flex: 1; overflow-y: auto; padding: 24px 20px; display: flex; flex-direction: column; gap: 16px; }
.chat-scroll::-webkit-scrollbar { width: 3px; }
.chat-scroll::-webkit-scrollbar-thumb { background: rgba(0,0,0,.15); }
.msg { display: flex; }
.msg.user { justify-content: flex-end; }
.msg.assistant { justify-content: flex-start; }
.msg-bubble { max-width: 85%; padding: 12px 16px; font-size: 14px; font-weight: 300; line-height: 1.6; white-space: pre-wrap; }
.msg.user .msg-bubble { background: var(--slate); color: var(--linen); }
.msg.assistant .msg-bubble { background: var(--linen); border: 1px solid var(--hairline); color: var(--slate); }
.typing { display: inline-flex; gap: 4px; padding-block: 4px; }
.typing i { width: 5px; height: 5px; border-radius: 9999px; background: var(--slate); animation: typingBounce 1.2s infinite ease-in-out; }
.typing i:nth-child(2) { animation-delay: .15s; }
.typing i:nth-child(3) { animation-delay: .3s; }
@keyframes typingBounce { 0%, 60%, 100% { transform: translateY(0); opacity: .35; } 30% { transform: translateY(-4px); opacity: 1; } }
.chat-brief { padding: 0 20px 12px; }
.btn-brief { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid var(--crimson); color: var(--crimson); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; padding: 12px 16px; transition: background-color .3s, color .3s; }
.btn-brief:hover { background: var(--crimson); color: var(--linen); }
.btn-brief .ico { width: 13px; height: 13px; }
.chat-input-row { border-top: 1px solid var(--hairline); padding: 12px 16px; display: flex; align-items: center; gap: 8px; }
#concierge-input { flex: 1; background: transparent; border: none; outline: none; font-size: 14px; font-weight: 300; padding-block: 8px; font-family: var(--font-body); color: var(--slate); }
#concierge-input::placeholder { color: rgba(22,23,25,.35); }
#concierge-send { width: 40px; height: 40px; background: var(--slate); color: var(--linen); display: flex; align-items: center; justify-content: center; transition: background-color .3s, opacity .3s; flex-shrink: 0; }
#concierge-send:hover { background: var(--crimson); }
#concierge-send:disabled { opacity: .3; pointer-events: none; }
html[dir="rtl"] .send-ico { transform: rotate(180deg); }
