/* ══════════════════════════════════════════════════════
   ROSTAM PALACE — styles/style.css
   Est. 1650 · Shardeni Street · Old Tbilisi
══════════════════════════════════════════════════════ */

/* ── Aqua font (logo only) ──────────────────────────── */
@font-face {
  font-family: 'Aqua';
  src: local('Cinzel'), local('Trajan Pro'), local('Times New Roman');
  font-weight: 400;
  font-style: normal;
}

/* ── Custom properties ──────────────────────────────── */
:root {
  /* Palette */
  --gold:      #C8911E;
  --gold-l:    #E0A830;
  --gold-dim:  rgba(200,145,30,.18);
  --teal:      #009A9D;
  --teal-dim:  rgba(0,154,157,.14);

  /* Dark theme (default) */
  --bg:        #080D14;
  --bg2:       #0C1420;
  --surface:   #0F1822;
  --surface2:  #141F2E;
  --border:    rgba(255,255,255,.07);
  --border2:   rgba(255,255,255,.12);
  --heading:   #EBF0F7;
  --text:      #C2CED9;
  --text2:     #8FA4BA;
  --text3:     #5B7291;
  --overlay:   rgba(4,8,14,.85);

  /* Spacing */
  --nav-h:     64px;
  --radius:    10px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(0,0,0,.35);
  --shadow:    0 8px 32px rgba(0,0,0,.5);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.65);
  --glow-gold: 0 0 24px rgba(200,145,30,.2);
}

[data-theme="light"] {
  --bg:        #F5EFE6;
  --bg2:       #EDE5D8;
  --surface:   #FAF5EE;
  --surface2:  #F0E8DC;
  --border:    rgba(0,0,0,.09);
  --border2:   rgba(0,0,0,.15);
  --heading:   #1A1008;
  --text:      #3D2A14;
  --text2:     #6B5030;
  --text3:     #967A50;
  --overlay:   rgba(240,230,215,.88);
  --gold:      #A0720E;
  --teal:      #007A7D;
  --shadow-sm: 0 2px 12px rgba(0,0,0,.1);
  --shadow:    0 8px 32px rgba(0,0,0,.16);
}

/* ── Reset ──────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
  font-family:'Cormorant Garamond',Georgia,serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
  transition:background .3s,color .3s;
}
img { display:block; max-width:100%; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }

/* RTL base */
[dir=rtl] { direction:rtl; }
[dir=rtl] .menu-body        { flex-direction:row-reverse; }
[dir=rtl] .aside-btn,
[dir=rtl] .ft-col h4        { text-align:right; }

/* Language fonts */
[lang=fa], [dir=rtl],
.gi-main[style*="Vazirmatn"],
.lc-name[style*="Vazirmatn"] { font-family:'Vazirmatn',sans-serif; }

[lang=ka],
.gi-main[style*="Noto Serif"],
.lc-name[style*="Noto Serif"] { font-family:'Noto Serif Georgian',serif; }

/* ── Scroll progress ────────────────────────────────── */
#scroll-progress {
  position:fixed;
  top:0; left:0;
  height:2px; width:0;
  background:linear-gradient(90deg, var(--teal), var(--gold));
  z-index:9999;
  transition:width .08s linear;
}

/* ── Container ──────────────────────────────────────── */
.container {
  max-width:1200px;
  margin:0 auto;
  padding:0 clamp(16px,4vw,40px);
}

/* ══════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════ */
#nav {
  position:fixed;
  top:0; left:0; right:0;
  z-index:900;
  height:var(--nav-h);
  background:transparent;
  transition:background .3s, box-shadow .3s;
}
#nav.solid {
  background:rgba(8,13,20,.88);
  backdrop-filter:blur(18px) saturate(160%);
  -webkit-backdrop-filter:blur(18px) saturate(160%);
  box-shadow:0 1px 0 var(--border);
}
[data-theme="light"] #nav.solid {
  background:rgba(250,245,238,.92);
}

.nav-inner {
  max-width:1300px;
  margin:0 auto;
  padding:0 clamp(12px,3vw,32px);
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

/* Left slot — back button */
.nav-left-slot { flex:0 0 auto; }
.back-btn {
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--text2);
  transition:color .2s;
  padding:6px 0;
}
.back-btn svg { width:16px; height:16px; }
.back-btn:hover { color:var(--gold); }

/* Center — logo */
.nav-logo-btn {
  display:flex;
  align-items:center;
  justify-content:center;
  position:absolute;
  left:50%; transform:translateX(-50%);
}
.nav-brand-svg { width:clamp(160px,28vw,260px); height:auto; }

/* Right cluster */
.nav-r {
  display:flex;
  align-items:center;
  gap:clamp(8px,1.5vw,18px);
  flex:0 0 auto;
}
.nav-links {
  display:flex;
  gap:clamp(14px,2vw,28px);
}
.nav-links a {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(.72rem,1.1vw,.8rem);
  font-weight:700;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--text2);
  transition:color .2s;
  padding-bottom:2px;
  border-bottom:1px solid transparent;
}
.nav-links a:hover,
.nav-links a.act {
  color:var(--gold);
  border-color:var(--gold);
}
@media(max-width:860px){ .nav-links { display:none; } }

/* Language switcher */
.lsw {
  display:flex;
  gap:3px;
}
.lsw-btn {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:.62rem;
  font-weight:800;
  letter-spacing:.15em;
  color:var(--text3);
  padding:4px 7px;
  border-radius:4px;
  border:1px solid transparent;
  transition:all .2s;
}
.lsw-btn:hover { color:var(--gold); }
.lsw-btn.on {
  color:var(--gold);
  border-color:rgba(200,145,30,.35);
  background:var(--gold-dim);
}

/* Theme toggle */
.theme-btn {
  width:32px; height:32px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1rem;
  color:var(--text2);
  border:1px solid var(--border);
  transition:all .2s;
}
.theme-btn:hover { border-color:var(--gold); color:var(--gold); }
.theme-icon-dark  { display:none; }
.theme-icon-light { display:inline; }
[data-theme="dark"]  .theme-icon-dark  { display:inline; }
[data-theme="dark"]  .theme-icon-light { display:none; }
[data-theme="light"] .theme-icon-dark  { display:none; }
[data-theme="light"] .theme-icon-light { display:inline; }

/* Hamburger */
.hbg {
  width:32px; height:32px;
  display:none;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
}
.hbg span {
  display:block;
  width:20px; height:1.5px;
  background:var(--text2);
  transition:all .3s;
  transform-origin:center;
}
.hbg.open span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
.hbg.open span:nth-child(2) { opacity:0; }
.hbg.open span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }
@media(max-width:600px){ .hbg { display:flex; } }

/* Drawer overlay */
.ovl {
  position:fixed; inset:0;
  background:var(--overlay);
  z-index:800;
  opacity:0; pointer-events:none;
  transition:opacity .3s;
}
.ovl.on { opacity:1; pointer-events:auto; }

/* Drawer */
.drawer {
  position:fixed;
  top:0; right:-280px;
  width:260px; height:100%;
  background:var(--surface);
  border-left:1px solid var(--border);
  z-index:850;
  display:flex;
  flex-direction:column;
  padding:80px 24px 32px;
  gap:4px;
  transition:right .35s cubic-bezier(.4,0,.2,1);
  box-shadow:var(--shadow-lg);
}
.drawer.open { right:0; }
[dir=rtl] .drawer { right:auto; left:-280px; border-left:none; border-right:1px solid var(--border); }
[dir=rtl] .drawer.open { left:0; }
.drawer a {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:1.05rem;
  font-weight:600;
  letter-spacing:.08em;
  color:var(--text);
  padding:10px 12px;
  border-radius:6px;
  transition:all .2s;
}
.drawer a:hover { background:var(--surface2); color:var(--gold); }

/* ══════════════════════════════════════════════════════
   MENU PAGE
══════════════════════════════════════════════════════ */
.menu-page-top {
  padding-top:var(--nav-h);
  min-height:100vh;
  background:var(--bg);
}

/* Category tabs bar — sticky */
.menu-cats-bar {
  position:sticky;
  top:var(--nav-h);
  z-index:80;
  background:var(--surface);
  border-bottom:1px solid var(--border);
  overflow:hidden;
}
.cats-inner {
  display:flex;
  gap:0;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding:0 clamp(8px,2vw,20px);
  -ms-overflow-style:none;
  scrollbar-width:none;
}
.cats-inner::-webkit-scrollbar { display:none; }
.cat-tab {
  flex:0 0 auto;
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(.7rem,1.1vw,.78rem);
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--text3);
  padding:clamp(10px,2vw,14px) clamp(12px,2.5vw,20px);
  border-bottom:2px solid transparent;
  transition:all .2s;
  white-space:nowrap;
}
.cat-tab:hover { color:var(--gold); }
.cat-tab.on { color:var(--gold); border-bottom-color:var(--gold); }

/* Layout: aside + main */
.menu-body {
  display:flex;
  align-items:flex-start;
  max-width:1300px;
  margin:0 auto;
  padding:0 clamp(8px,2vw,24px);
  gap:clamp(16px,2.5vw,32px);
}

/* Aside navigation */
.menu-aside {
  flex:0 0 clamp(140px,16vw,200px);
  position:sticky;
  top:calc(var(--nav-h) + 54px + 24px);
  padding:20px 0;
  max-height:calc(100vh - var(--nav-h) - 80px);
  overflow-y:auto;
  scrollbar-width:none;
}
.menu-aside::-webkit-scrollbar { display:none; }
@media(max-width:820px){ .menu-aside { display:none; } }

.aside-lbl {
  font-size:.6rem;
  font-weight:800;
  letter-spacing:.3em;
  text-transform:uppercase;
  color:var(--teal);
  padding:0 12px 12px;
  opacity:.8;
}
.aside-btn {
  display:block;
  width:100%;
  text-align:left;
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:.82rem;
  font-weight:600;
  letter-spacing:.08em;
  color:var(--text2);
  padding:8px 12px;
  border-radius:6px;
  border-left:2px solid transparent;
  transition:all .2s;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.aside-btn:hover { background:var(--surface2); color:var(--text); }
.aside-btn.on {
  color:var(--gold);
  border-left-color:var(--gold);
  background:var(--gold-dim);
}
[dir=rtl] .aside-btn { text-align:right; border-left:none; border-right:2px solid transparent; }
[dir=rtl] .aside-btn.on { border-right-color:var(--gold); }

/* Main content */
.menu-main {
  flex:1;
  min-width:0;
  padding:24px 0 80px;
}

/* Category section */
.cat-sec { margin-bottom:clamp(40px,7vw,64px); }
.cat-head {
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:clamp(16px,3vw,24px);
  padding:0 4px;
}
.cat-head-emoji {
  font-size:clamp(1.4rem,3vw,1.8rem);
  line-height:1;
}
.cat-head h2 {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(1.15rem,2.5vw,1.5rem);
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--heading);
}
.cat-ln {
  flex:1;
  height:1px;
  background:linear-gradient(90deg, var(--border2), transparent);
}
.cat-count {
  font-size:.65rem;
  font-weight:800;
  letter-spacing:.1em;
  color:var(--teal);
  background:var(--teal-dim);
  border:1px solid rgba(0,154,157,.25);
  padding:3px 8px;
  border-radius:20px;
}

/* Items grid */
.items-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(clamp(240px,32vw,300px), 1fr));
  gap:clamp(10px,2vw,16px);
}

/* Menu card */
.menu-card {
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  overflow:hidden;
  cursor:pointer;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s;
  display:flex;
  flex-direction:column;
}
.menu-card:hover {
  transform:translateY(-3px);
  box-shadow:var(--shadow);
  border-color:var(--border2);
}

/* Card image area */
.mc-img {
  position:relative;
  height:clamp(120px,18vw,160px);
  overflow:hidden;
  background:var(--surface2);
}
.mc-img img {
  width:100%; height:100%;
  object-fit:cover;
  transition:transform .4s ease;
}
.menu-card:hover .mc-img img { transform:scale(1.05); }
.mc-emoji-fb {
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  font-size:2.5rem;
  background:radial-gradient(ellipse 80% 80% at 50% 50%, var(--surface2) 0%, var(--bg2) 100%);
}
.mc-img-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(8,13,20,.5) 0%, transparent 60%);
}

/* Card body */
.mc-body {
  padding:clamp(10px,2vw,14px);
  display:flex;
  flex-direction:column;
  gap:6px;
  flex:1;
}
.mc-name {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(.92rem,1.5vw,1.02rem);
  font-weight:700;
  color:var(--heading);
  line-height:1.3;
}
.mc-desc {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(.76rem,1.1vw,.82rem);
  color:var(--text3);
  line-height:1.5;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  flex:1;
}

/* Card footer */
.mc-foot {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:auto;
  padding-top:8px;
  border-top:1px solid var(--border);
}
.mc-price {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(.92rem,1.5vw,1rem);
  font-weight:700;
  color:var(--gold);
}
.mc-add-btn {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--bg);
  background:var(--gold);
  padding:5px 12px;
  border-radius:5px;
  transition:all .2s;
}
.mc-add-btn:hover { background:var(--gold-l); }
.mc-qty {
  display:flex;
  align-items:center;
  gap:6px;
}
.mc-qty-btn {
  width:24px; height:24px;
  border-radius:50%;
  border:1px solid var(--border2);
  display:flex; align-items:center; justify-content:center;
  font-size:.9rem;
  color:var(--text);
  transition:all .2s;
}
.mc-qty-btn:hover { border-color:var(--gold); color:var(--gold); }
.mc-qty-num {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:.88rem;
  font-weight:700;
  color:var(--gold);
  min-width:16px;
  text-align:center;
}

/* ══════════════════════════════════════════════════════
   CART
══════════════════════════════════════════════════════ */
#cart-btn {
  position:fixed;
  bottom:clamp(20px,4vw,32px);
  right:clamp(16px,3vw,28px);
  width:56px; height:56px;
  border-radius:50%;
  background:var(--gold);
  color:var(--bg);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:700;
  box-shadow:0 4px 20px rgba(200,145,30,.4);
  transition:transform .2s, box-shadow .2s;
}
#cart-btn:hover { transform:scale(1.06); box-shadow:0 6px 28px rgba(200,145,30,.5); }
#cart-btn.visible { display:flex; }
#cart-btn.pop { animation:cartPop .38s ease; }
@keyframes cartPop {
  0%  { transform:scale(1); }
  40% { transform:scale(1.18); }
  100%{ transform:scale(1); }
}
.cart-ico { width:22px; height:22px; }
.cart-badge {
  position:absolute;
  top:-4px; right:-4px;
  width:20px; height:20px;
  border-radius:50%;
  background:var(--teal);
  color:#fff;
  font-size:.6rem;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
  border:2px solid var(--bg);
}
[dir=rtl] #cart-btn { right:auto; left:clamp(16px,3vw,28px); }

/* Cart overlay */
.cart-ovl {
  position:fixed; inset:0;
  background:var(--overlay);
  z-index:750;
  opacity:0; pointer-events:none;
  transition:opacity .3s;
}
.cart-ovl.on { opacity:1; pointer-events:auto; }

/* Cart drawer */
#cart-drawer {
  position:fixed;
  top:0; right:-400px;
  width:min(380px, 96vw);
  height:100%;
  background:var(--surface);
  border-left:1px solid var(--border);
  z-index:760;
  display:flex;
  flex-direction:column;
  transition:right .35s cubic-bezier(.4,0,.2,1);
  box-shadow:var(--shadow-lg);
}
#cart-drawer.open { right:0; }
[dir=rtl] #cart-drawer { right:auto; left:-400px; border-left:none; border-right:1px solid var(--border); }
[dir=rtl] #cart-drawer.open { left:0; }

.cart-hdr {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:clamp(14px,2.5vw,20px) clamp(16px,3vw,24px);
  border-bottom:1px solid var(--border);
  flex-shrink:0;
}
.cart-title {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:1.1rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--heading);
}
.cart-close {
  width:30px; height:30px;
  border-radius:50%;
  border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-size:1.2rem;
  color:var(--text2);
  transition:all .2s;
  line-height:1;
}
.cart-close:hover { border-color:var(--gold); color:var(--gold); }

/* Cart items */
.cart-items {
  flex:1;
  overflow-y:auto;
  padding:clamp(12px,2vw,16px) clamp(16px,3vw,24px);
  display:flex;
  flex-direction:column;
  gap:10px;
  scrollbar-width:thin;
  scrollbar-color:var(--border2) transparent;
}
.cart-empty {
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Cormorant Garamond',Georgia,serif;
  font-style:italic;
  font-size:1rem;
  color:var(--text3);
  padding:32px 0;
}
.cart-item {
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  background:var(--surface2);
  border:1px solid var(--border);
  border-radius:var(--radius);
}
.ci-emoji { font-size:1.3rem; flex-shrink:0; }
.ci-info { flex:1; min-width:0; }
.ci-name {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:.9rem;
  font-weight:600;
  color:var(--heading);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.ci-price {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:.78rem;
  color:var(--text3);
  margin-top:2px;
}
.ci-controls {
  display:flex;
  align-items:center;
  gap:6px;
  flex-shrink:0;
}
.ci-btn {
  width:22px; height:22px;
  border-radius:50%;
  border:1px solid var(--border2);
  display:flex; align-items:center; justify-content:center;
  font-size:.85rem;
  color:var(--text2);
  transition:all .2s;
}
.ci-btn:hover { border-color:var(--gold); color:var(--gold); }
.ci-qty {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:.88rem;
  font-weight:700;
  color:var(--gold);
  min-width:14px;
  text-align:center;
}
.ci-subtotal {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:.88rem;
  font-weight:700;
  color:var(--gold);
  flex-shrink:0;
  margin-left:4px;
}

/* Cart footer */
.cart-ftr {
  padding:clamp(12px,2vw,16px) clamp(16px,3vw,24px);
  border-top:1px solid var(--border);
  background:var(--surface);
  flex-shrink:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.cart-total {
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.cart-total-lbl {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:.75rem;
  font-weight:700;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--text2);
}
#cart-total-val {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:1.25rem;
  font-weight:700;
  color:var(--gold);
}
.cart-actions { display:flex; gap:8px; }
.cart-actions button {
  flex:1;
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  padding:10px 12px;
  border-radius:var(--radius);
  border:1px solid var(--border2);
  color:var(--text2);
  transition:all .2s;
}
#cart-qr-btn {
  background:var(--gold);
  border-color:var(--gold);
  color:var(--bg) !important;
}
#cart-qr-btn:hover:not(:disabled) { background:var(--gold-l); }
#cart-qr-btn:disabled { opacity:.4; cursor:not-allowed; }
#cart-clear-btn:hover { border-color:rgba(220,60,60,.5); color:#e05555; }

/* ══════════════════════════════════════════════════════
   QR MODAL
══════════════════════════════════════════════════════ */
#qr-modal {
  position:fixed; inset:0;
  z-index:980;
  display:none;
  align-items:center;
  justify-content:center;
  background:var(--overlay);
  padding:16px;
}
#qr-modal.open { display:flex; }
.qr-box {
  background:var(--surface);
  border:1px solid var(--border2);
  border-radius:var(--radius-lg);
  padding:clamp(24px,4vw,36px);
  max-width:420px;
  width:100%;
  box-shadow:var(--shadow-lg);
  text-align:center;
}
.qr-title {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:1.4rem;
  font-weight:700;
  letter-spacing:.1em;
  color:var(--heading);
  margin-bottom:6px;
}
.qr-sub {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:.88rem;
  font-style:italic;
  color:var(--text3);
  margin-bottom:20px;
}
.qr-canvas-wrap {
  background:#f2ece0;
  border-radius:10px;
  padding:16px;
  display:inline-block;
  margin-bottom:20px;
}
.qr-order-list {
  text-align:left;
  margin-bottom:20px;
  background:var(--surface2);
  border-radius:var(--radius);
  padding:14px 16px;
  display:flex;
  flex-direction:column;
  gap:7px;
}
.qr-item-row {
  display:flex;
  align-items:center;
  gap:8px;
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:.88rem;
}
.qr-item-name { flex:1; color:var(--text); }
.qr-item-qty  { color:var(--text3); font-size:.8rem; }
.qr-item-price { color:var(--gold); font-weight:700; }
.qr-total-row {
  display:flex;
  justify-content:space-between;
  border-top:1px solid var(--border);
  padding-top:8px;
  font-family:'Cormorant Garamond',Georgia,serif;
}
.qr-total-lbl { font-size:.78rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--text2); }
.qr-total-val { font-size:1.1rem; font-weight:700; color:var(--gold); }
.qr-actions {
  display:flex;
  gap:10px;
}
.qr-btn-new,.qr-btn-close {
  flex:1;
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  padding:11px;
  border-radius:var(--radius);
  border:1px solid var(--border2);
  color:var(--text2);
  transition:all .2s;
}
.qr-btn-close {
  background:var(--gold);
  border-color:var(--gold);
  color:var(--bg);
}
.qr-btn-close:hover { background:var(--gold-l); }
.qr-btn-new:hover   { border-color:var(--teal); color:var(--teal); }

/* ══════════════════════════════════════════════════════
   ITEM MODAL
══════════════════════════════════════════════════════ */
#item-modal {
  position:fixed; inset:0;
  z-index:960;
  display:none;
  align-items:flex-end;
  justify-content:center;
  background:var(--overlay);
  padding:0;
}
@media(min-width:600px){
  #item-modal { align-items:center; padding:16px; }
}
#item-modal.open { display:flex; }

.imod-box {
  background:var(--surface);
  border:1px solid var(--border2);
  border-radius:var(--radius-lg) var(--radius-lg) 0 0;
  width:100%;
  max-width:520px;
  max-height:90vh;
  overflow-y:auto;
  display:flex;
  flex-direction:column;
  box-shadow:var(--shadow-lg);
  scrollbar-width:none;
  animation:slideUp .32s cubic-bezier(.34,1.56,.64,1);
}
@media(min-width:600px){
  .imod-box {
    border-radius:var(--radius-lg);
    animation:popIn .28s cubic-bezier(.34,1.4,.64,1);
  }
}
.imod-box::-webkit-scrollbar { display:none; }
@keyframes slideUp {
  from { transform:translateY(30px); opacity:0; }
  to   { transform:translateY(0);    opacity:1; }
}
@keyframes popIn {
  from { transform:scale(.93); opacity:0; }
  to   { transform:scale(1);   opacity:1; }
}

/* Hero */
.imod-hero {
  position:relative;
  height:clamp(160px,28vw,220px);
  background:var(--surface2);
  flex-shrink:0;
  overflow:hidden;
}
.imod-close-btn {
  position:absolute;
  top:12px; right:12px;
  z-index:2;
  width:30px; height:30px;
  border-radius:50%;
  background:rgba(0,0,0,.45);
  backdrop-filter:blur(6px);
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem;
  color:#fff;
  transition:background .2s;
  line-height:1;
}
.imod-close-btn:hover { background:rgba(200,145,30,.6); }
[dir=rtl] .imod-close-btn { right:auto; left:12px; }
.imod-emoji-fb {
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  font-size:3.5rem;
}
.imod-hero-grad {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(8,13,20,.7) 0%, transparent 55%);
}
.imod-price-badge {
  position:absolute;
  bottom:12px; right:12px;
  background:var(--gold);
  color:var(--bg);
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:1.05rem;
  font-weight:700;
  padding:4px 12px;
  border-radius:20px;
  z-index:1;
}
[dir=rtl] .imod-price-badge { right:auto; left:12px; }

/* Body */
.imod-body {
  padding:clamp(14px,3vw,20px) clamp(16px,4vw,24px);
  display:flex;
  flex-direction:column;
  gap:14px;
  flex:1;
}
.imod-name {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(1.15rem,2.5vw,1.35rem);
  font-weight:700;
  color:var(--heading);
  line-height:1.25;
}
.imod-tags { display:flex; flex-wrap:wrap; gap:6px; }
.imod-tag {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:.65rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  padding:3px 9px;
  border-radius:20px;
  border:1px solid;
}
.tag-spicy   { color:#e85c3a; border-color:rgba(232,92,58,.3);  background:rgba(232,92,58,.1);  }
.tag-veg     { color:#5aad6e; border-color:rgba(90,173,110,.3); background:rgba(90,173,110,.1); }
.tag-grilled { color:#e07840; border-color:rgba(224,120,64,.3); background:rgba(224,120,64,.1); }
.tag-sig     { color:#C8911E; border-color:rgba(200,145,30,.3); background:rgba(200,145,30,.1); }
.tag-popular { color:#c456a0; border-color:rgba(196,86,160,.3); background:rgba(196,86,160,.1); }
.tag-halal   { color:#009A9D; border-color:rgba(0,154,157,.3);  background:rgba(0,154,157,.1);  }

.imod-section { display:flex; flex-direction:column; gap:6px; }
.imod-sec-lbl {
  font-size:.6rem;
  font-weight:800;
  letter-spacing:.25em;
  text-transform:uppercase;
  color:var(--teal);
  opacity:.9;
}
.imod-desc {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(.9rem,1.4vw,.98rem);
  color:var(--text2);
  line-height:1.7;
}
.imod-meta-row { display:flex; flex-wrap:wrap; gap:10px; }
.imod-meta-chip {
  display:flex;
  align-items:center;
  gap:8px;
  background:var(--surface2);
  border:1px solid var(--border);
  border-radius:8px;
  padding:8px 12px;
}
.imod-meta-icon { font-size:1.1rem; }
.imod-ingr { display:flex; flex-wrap:wrap; gap:6px; }
.imod-ing-chip {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:.78rem;
  color:var(--text2);
  background:var(--surface2);
  border:1px solid var(--border);
  padding:3px 10px;
  border-radius:20px;
}
.imod-allergens { display:flex; flex-wrap:wrap; gap:6px; }
.imod-alrg {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:.72rem;
  font-weight:700;
  color:#e07840;
  background:rgba(224,120,64,.1);
  border:1px solid rgba(224,120,64,.3);
  padding:3px 9px;
  border-radius:20px;
}

/* CTA */
.imod-cta {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:clamp(12px,2.5vw,16px) clamp(16px,4vw,24px);
  border-top:1px solid var(--border);
  background:var(--surface);
  gap:12px;
  flex-shrink:0;
}
.imod-cta-price {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:1.3rem;
  font-weight:700;
  color:var(--gold);
}
.imod-add-btn {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:.75rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  background:var(--gold);
  color:var(--bg);
  padding:10px 22px;
  border-radius:var(--radius);
  transition:background .2s;
}
.imod-add-btn:hover { background:var(--gold-l); }
.imod-qty-wrap {
  display:flex;
  align-items:center;
  gap:10px;
  background:var(--surface2);
  border:1px solid var(--border2);
  border-radius:var(--radius);
  padding:6px 14px;
}
.imod-qty-btn {
  width:26px; height:26px;
  border-radius:50%;
  border:1px solid var(--border2);
  display:flex; align-items:center; justify-content:center;
  font-size:1rem;
  color:var(--text);
  transition:all .2s;
}
.imod-qty-btn:hover { border-color:var(--gold); color:var(--gold); }
.imod-qty-num {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:1rem;
  font-weight:700;
  color:var(--gold);
  min-width:20px;
  text-align:center;
}

/* ══════════════════════════════════════════════════════
   TOAST
══════════════════════════════════════════════════════ */
#toast {
  position:fixed;
  bottom:clamp(90px,14vw,108px);
  right:clamp(16px,3vw,28px);
  z-index:800;
  display:flex;
  align-items:center;
  gap:8px;
  background:var(--surface2);
  border:1px solid var(--gold);
  border-radius:24px;
  padding:9px 16px 9px 12px;
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:.84rem;
  font-weight:600;
  color:var(--heading);
  box-shadow:var(--shadow);
  transform:translateY(20px);
  opacity:0;
  pointer-events:none;
  transition:all .3s cubic-bezier(.34,1.56,.64,1);
  max-width:280px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
#toast.show { transform:translateY(0); opacity:1; }
.toast-dot {
  width:7px; height:7px;
  border-radius:50%;
  background:var(--gold);
  flex-shrink:0;
}
[dir=rtl] #toast { right:auto; left:clamp(16px,3vw,28px); }

/* ══════════════════════════════════════════════════════
   STORY (HOME PAGE)
══════════════════════════════════════════════════════ */
.story-unified {
  display:flex;
  flex-direction:column;
  gap:1.4em;
}
.story-unified p {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(1rem,1.6vw,1.12rem);
  color:var(--text2);
  line-height:1.85;
}
[dir=rtl] .story-unified p {
  font-family:'Vazirmatn',sans-serif;
  font-size:clamp(.95rem,1.5vw,1.05rem);
  line-height:2;
}

/* ── Reveal animations ──────────────────────────────── */
.reveal {
  opacity:0;
  transform:translateY(22px);
  transition:opacity .6s ease, transform .6s ease;
}
.reveal.in {
  opacity:1;
  transform:translateY(0);
}

/* ══════════════════════════════════════════════════════
   FOOTER (shared with menu.html)
══════════════════════════════════════════════════════ */
footer {
  background:var(--surface);
  border-top:1px solid var(--border);
  padding:clamp(44px,7vw,68px) 0 clamp(20px,4vw,32px);
  margin-top:auto;
}
.ft-grid {
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr;
  gap:clamp(20px,4vw,44px);
  margin-bottom:clamp(24px,4vw,36px);
}
.ft-logo-text {
  font-family:'Aqua',serif !important;
  font-size:clamp(.95rem,2vw,1.25rem);
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--gold) !important;
  margin-bottom:9px;
}
.ft-brand p {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-style:italic;
  font-size:clamp(.84rem,1.3vw,.94rem);
  color:var(--text2);
  line-height:1.7;
}
[dir=rtl] .ft-brand p { font-style:normal; }
.ft-col h4 {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(.72rem,1.1vw,.8rem);
  font-weight:700;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--teal);
  margin-bottom:12px;
}
.ft-col p {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(.84rem,1.3vw,.94rem);
  color:var(--text2);
  margin-bottom:5px;
  line-height:1.6;
}
.ft-btm {
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  border-top:1px solid var(--border);
  padding-top:18px;
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(.76rem,1.2vw,.82rem);
  color:var(--text3);
}
.ft-btm a { color:var(--text3); }
.ft-btm a:hover { color:var(--gold); }
.ft-soc { display:flex; gap:8px; margin-top:12px; }
.soc-btn {
  width:32px; height:32px;
  border-radius:50%;
  border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  color:var(--text3);
  transition:all .2s;
}
.soc-btn:hover { border-color:var(--gold); color:var(--gold); }

/* ══════════════════════════════════════════════════════
   RESERVATION PAGE
══════════════════════════════════════════════════════ */
.res-section {
  min-height:calc(100vh - var(--nav-h));
  padding:clamp(40px,8vw,80px) 0;
  display:flex;
  align-items:center;
  background:var(--bg);
}
.res-inner {
  max-width:600px;
  margin:0 auto;
  padding:0 clamp(16px,4vw,32px);
  width:100%;
}
.res-eyebrow {
  font-size:.62rem;
  font-weight:700;
  letter-spacing:.3em;
  text-transform:uppercase;
  color:var(--teal);
  margin-bottom:12px;
}
.res-h {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(1.6rem,4vw,2.4rem);
  font-weight:600;
  letter-spacing:.06em;
  color:var(--heading);
  margin-bottom:6px;
}
.res-sub {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-style:italic;
  font-size:clamp(.9rem,1.5vw,1rem);
  color:var(--text3);
  margin-bottom:clamp(28px,5vw,40px);
}
[dir=rtl] .res-sub { font-style:normal; }

/* Form */
.res-form { display:flex; flex-direction:column; gap:16px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-group { display:flex; flex-direction:column; gap:6px; }
.form-label {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--text3);
}
.form-input {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:.96rem;
  color:var(--text);
  background:var(--surface2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:10px 14px;
  width:100%;
  transition:border-color .2s;
  outline:none;
  -webkit-appearance:none;
}
.form-input:focus { border-color:var(--gold); }
.form-input.err    { border-color:rgba(220,60,60,.6); }
.form-input::placeholder { color:var(--text3); }
.form-err {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:.72rem;
  color:#e05555;
  display:none;
}
.form-err.on { display:block; }
/* Table options */
.tbl-grid { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.tbl-opt {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:.82rem;
  font-weight:600;
  color:var(--text2);
  background:var(--surface2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:10px 12px;
  text-align:center;
  cursor:pointer;
  transition:all .2s;
}
.tbl-opt:hover { border-color:var(--border2); color:var(--text); }
.tbl-opt.sel {
  background:var(--gold-dim);
  border-color:rgba(200,145,30,.5);
  color:var(--gold);
}
/* Submit */
.res-submit {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:.8rem;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  background:var(--gold);
  color:var(--bg);
  border:none;
  border-radius:var(--radius);
  padding:14px;
  width:100%;
  transition:background .2s;
  margin-top:6px;
}
.res-submit:hover { background:var(--gold-l); }

/* ══════════════════════════════════════════════════════
   HOME PAGE ELEMENTS
══════════════════════════════════════════════════════ */
/* Hero */
.hero {
  position:relative;
  height:100svh;
  min-height:520px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:var(--bg2);
}
.hero-bg {
  position:absolute;
  inset:0;
  background:
    radial-gradient(ellipse 80% 70% at 20% 80%, rgba(0,154,157,.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(200,145,30,.08) 0%, transparent 50%);
}
.hero-stars {
  position:absolute; inset:0;
  overflow:hidden;
  pointer-events:none;
}
.hero-body {
  position:relative;
  z-index:2;
  text-align:center;
  padding:0 clamp(20px,6vw,60px);
  max-width:900px;
}
.hero-over {
  font-size:clamp(.6rem,1.2vw,.7rem);
  font-weight:700;
  letter-spacing:.4em;
  text-transform:uppercase;
  color:var(--teal);
  margin-bottom:clamp(14px,3vw,22px);
}
.hero-rule {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-bottom:clamp(14px,3vw,22px);
}
.hero-rule-line {
  width:clamp(24px,5vw,48px);
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(200,145,30,.5));
}
.hero-rule-line.r { background:linear-gradient(270deg, transparent, rgba(200,145,30,.5)); }
.hero-rule-gem {
  width:6px; height:6px;
  background:rgba(200,145,30,.7);
  transform:rotate(45deg);
}
.hero-brand {
  font-family:'Aqua',serif !important;
  font-size:clamp(2.2rem,8vw,5rem);
  font-weight:400;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--gold);
  line-height:1;
  margin-bottom:clamp(10px,2vw,18px);
}
.hero-tagline {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(.95rem,2vw,1.25rem);
  font-style:italic;
  color:var(--text2);
  line-height:1.65;
  margin-bottom:clamp(28px,5vw,44px);
  white-space:pre-line;
}
[dir=rtl] .hero-tagline { font-style:normal; }
.hero-ctas {
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}
.btn-gold {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.2em;
  text-transform:uppercase;
  background:var(--gold);
  color:var(--bg);
  padding:13px 28px;
  border-radius:var(--radius);
  border:1px solid var(--gold);
  transition:all .2s;
}
.btn-gold:hover { background:var(--gold-l); border-color:var(--gold-l); }
.btn-outline {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--gold);
  padding:13px 28px;
  border-radius:var(--radius);
  border:1px solid rgba(200,145,30,.4);
  transition:all .2s;
  background:transparent;
}
.btn-outline:hover { border-color:var(--gold); background:var(--gold-dim); }
.scroll-hint {
  position:absolute;
  bottom:28px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  font-size:.58rem;
  letter-spacing:.3em;
  text-transform:uppercase;
  color:var(--text3);
  animation:float 2.8s ease-in-out infinite;
}
.scroll-hint::after {
  content:'';
  width:1px;
  height:28px;
  background:linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes float {
  0%,100%{ transform:translateX(-50%) translateY(0); }
  50%    { transform:translateX(-50%) translateY(-6px); }
}

/* Story section */
.story-section {
  padding:clamp(60px,10vw,100px) 0;
  background:var(--bg);
}
.story-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(32px,6vw,72px);
  align-items:start;
}
@media(max-width:760px){ .story-grid { grid-template-columns:1fr; } }
.story-lbl {
  font-size:.62rem;
  font-weight:700;
  letter-spacing:.3em;
  text-transform:uppercase;
  color:var(--teal);
  margin-bottom:12px;
}
.story-h {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(1.4rem,3.5vw,2.2rem);
  font-weight:600;
  letter-spacing:.06em;
  color:var(--heading);
  line-height:1.2;
  margin-bottom:clamp(20px,4vw,32px);
}
#story-body { font-size:0; }
.portrait-side {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}
.portrait-img-wrap {
  width:100%;
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--border);
  aspect-ratio:3/4;
  background:var(--surface2);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--text3);
  font-style:italic;
}
.portrait-lbl {
  font-size:.6rem;
  font-weight:700;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--teal);
}
.portrait-caption {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:.88rem;
  font-style:italic;
  color:var(--text3);
  text-align:center;
  line-height:1.5;
}

/* Highlights */
.hl-section {
  padding:clamp(50px,8vw,80px) 0;
  background:var(--surface);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.hl-lbl {
  font-size:.62rem;
  font-weight:700;
  letter-spacing:.3em;
  text-transform:uppercase;
  color:var(--teal);
  text-align:center;
  margin-bottom:10px;
}
.hl-h {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(1.3rem,3vw,2rem);
  font-weight:600;
  letter-spacing:.08em;
  text-align:center;
  color:var(--heading);
  margin-bottom:clamp(32px,6vw,52px);
}
.hl-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:clamp(16px,3vw,32px);
}
@media(max-width:680px){ .hl-grid { grid-template-columns:1fr; } }
.hl-card {
  padding:clamp(20px,3.5vw,28px);
  background:var(--surface2);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  text-align:center;
}
.hl-icon { font-size:1.8rem; margin-bottom:12px; }
.hl-card h3 {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(.98rem,1.6vw,1.12rem);
  font-weight:700;
  color:var(--heading);
  margin-bottom:8px;
}
.hl-card p {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(.82rem,1.3vw,.9rem);
  color:var(--text2);
  line-height:1.65;
}

/* Location */
.loc-section {
  padding:clamp(50px,8vw,80px) 0;
  background:var(--bg);
}
.loc-lbl {
  font-size:.62rem;
  font-weight:700;
  letter-spacing:.3em;
  text-transform:uppercase;
  color:var(--teal);
  margin-bottom:10px;
}
.loc-h {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(1.3rem,3vw,2rem);
  font-weight:600;
  letter-spacing:.06em;
  color:var(--heading);
  margin-bottom:clamp(20px,4vw,32px);
}
.loc-grid {
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:clamp(24px,4vw,48px);
  align-items:start;
}
@media(max-width:680px){ .loc-grid { grid-template-columns:1fr; } }
.loc-info p {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(.88rem,1.4vw,.96rem);
  color:var(--text2);
  margin-bottom:8px;
  line-height:1.6;
}
.loc-map {
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--border);
  background:var(--surface2);
  aspect-ratio:16/9;
}
.loc-map iframe { width:100%; height:100%; display:block; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media(max-width:900px){
  .ft-grid { grid-template-columns:1fr; }
  .ft-btm { flex-direction:column; text-align:center; }
}
@media(max-width:680px){
  .items-grid { grid-template-columns:1fr 1fr; }
  .form-row { grid-template-columns:1fr; }
}
@media(max-width:420px){
  .items-grid { grid-template-columns:1fr; }
}
@media(max-width:768px){
  input, select, textarea { font-size:16px !important; }
}

/* Decorative ornament used in various headings */
.orn {
  display:inline-block;
  width:28px; height:1px;
  background:linear-gradient(90deg, transparent, var(--gold), transparent);
  vertical-align:middle;
  margin:0 10px;
  opacity:.5;
}