/* =============================================================================
 * VISTORA — global brand CSS
 * Mirrors the design tokens used by the Next.js prototype.
 * Per-page styles are inlined inside each page-*.php template.
 * ========================================================================== */

:root {
  --bg:            #FFFFFF;
  --fg:            #2D2D2D;
  --muted:         #5A5A5A;
  --border:        #E5E5E5;
  --card:          #FFFFFF;
  --secondary:     #F5E6D3;
  --primary:       #4A3B6B;
  --primary-fg:    #FFFFFF;
  --accent:        #C9A961;
  --accent-fg:     #2D2D2D;
  --secondary-fg:  #2D2D2D;
  --destructive:   #DC2626;
  --radius:        14px;

  /* Fixed-header height — single source of truth for the body offset.
     Matches .vp-site-header-inner height (4rem mobile / 5rem ≈ 80px desktop). */
  --vp-header-h:   4rem;

  /* Hero dark surface */
  --vp-dark:       #14101E;
  --vp-dark-2:     #251744;
  --vp-dark-3:     #3A2560;
}
@media (min-width: 768px) {
  :root { --vp-header-h: 5rem; }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
  min-height: 100vh;
}
body.lang-ar, body.is-rtl {
  font-family: 'Cairo', 'Inter', system-ui, sans-serif;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* Layout helpers */
.vp-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.vp-serif { font-family: 'Playfair Display', Georgia, serif; }
.lang-ar .vp-serif, .is-rtl .vp-serif { font-family: 'Cairo', 'Playfair Display', serif; }

/* Hero pattern shared by every dark hero */
.vp-hero {
  position: relative;
  background: var(--vp-dark);
  color: #fff;
  overflow: hidden;
  padding: 5rem 0 6rem;
}
.vp-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(44rem 44rem at 100% 33%, rgba(201, 169, 97,0.20), transparent 60%),
    radial-gradient(36rem 36rem at -10% 120%, rgba(74,59,107,0.50), transparent 60%);
  pointer-events: none;
}
.vp-hero::after {
  content: ""; position: absolute; inset: 0;
  opacity: 0.07; mix-blend-mode: overlay;
  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.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.vp-hero > * { position: relative; }

.vp-eyebrow {
  display: inline-block;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.vp-h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
}
.lang-ar .vp-h1, .is-rtl .vp-h1 { font-family: 'Cairo', serif; }
.vp-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 2.25rem;
  max-width: 42rem;
}

/* Section header (light section) */
.vp-section { position: relative; padding: 5rem 0; overflow: hidden; }
.vp-section.light { background: linear-gradient(to bottom, color-mix(in srgb, var(--secondary) 60%, transparent), var(--bg), color-mix(in srgb, var(--secondary) 40%, transparent)); }
.vp-section-head { text-align: center; max-width: 42rem; margin: 0 auto 4rem; }
.vp-section-head h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.875rem, 3vw, 3rem);
  margin: 0 0 1rem;
  color: var(--fg);
}
.lang-ar .vp-section-head h2, .is-rtl .vp-section-head h2 { font-family: 'Cairo', serif; }
.vp-section-head p { color: var(--muted); font-size: 1.05rem; margin: 0; }

/* Buttons */
.vp-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.75rem;
  height: 3.25rem; padding: 0 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: 0; cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.vp-btn-primary {
  background: var(--accent);
  color: var(--accent-fg);
}
.vp-btn-primary:hover {
  gap: 1.25rem;
  box-shadow: 0 0 45px -8px rgba(201, 169, 97,0.7);
}
.vp-btn-outline {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.vp-btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(201, 169, 97,0.6);
}
.vp-btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Cards */
.vp-card {
  background: var(--card);
  border: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
  border-radius: 1.5rem;
  padding: 1.5rem;
  transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
}
.vp-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 60%, transparent);
  box-shadow: 0 20px 45px -20px rgba(74,59,107,0.30);
}
.vp-card .vp-card-icon {
  width: 3rem; height: 3rem;
  border-radius: 1rem;
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 1rem;
}
.vp-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  line-height: 1.35;
}
.lang-ar .vp-card h3, .is-rtl .vp-card h3 { font-family: 'Cairo', serif; }
.vp-card p { color: var(--muted); font-size: 0.95rem; margin: 0; line-height: 1.6; }

/* Grids */
.vp-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.vp-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.vp-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.vp-grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
@media (max-width: 900px) {
  .vp-grid-3, .vp-grid-4, .vp-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .vp-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .vp-grid-3, .vp-grid-4 { grid-template-columns: 1fr; }
}

/* Site header (the simple version — full mega menu comes via JS toggling) */
.vp-site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.vp-site-header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(74,59,107,0.08);
}
.vp-site-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  height: var(--vp-header-h);
}
.vp-logo { display: flex; align-items: center; gap: 0.75rem; color: var(--primary); }
.vp-logo-mark {
  width: 2.75rem; height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--primary);
  display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(74,59,107,0.25);
}
.vp-logo-text { font-family: 'Playfair Display', serif; font-weight: 700; letter-spacing: 0.18em; font-size: 1.25rem; color: var(--primary); }
.vp-logo-sub  { font-size: 0.6rem; letter-spacing: 0.22em; color: var(--accent); text-transform: uppercase; }

/* Primary menu */
.vp-primary-menu {
  list-style: none; margin: 0; padding: 0;
  display: none;
  gap: 0.25rem;
}
@media (min-width: 1280px) { .vp-primary-menu { display: flex; align-items: center; } }
.vp-primary-menu .vp-menu-item { position: relative; }
.vp-primary-menu .vp-menu-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem; font-weight: 500;
  color: color-mix(in srgb, var(--fg) 80%, transparent);
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.vp-primary-menu .vp-menu-link:hover { color: var(--primary); background: color-mix(in srgb, var(--secondary) 60%, transparent); }
.vp-primary-menu .vp-chev { font-size: 0.7em; opacity: 0.8; }

/* Contact pill button (accent) */
.vp-primary-menu .vp-menu-cta { margin-inline-start: 0.5rem; }
.vp-primary-menu .vp-menu-cta > .vp-menu-link {
  background: var(--accent); color: var(--accent-fg); font-weight: 600;
  padding: 0.5rem 1rem;
}
.vp-primary-menu .vp-menu-cta > .vp-menu-link:hover {
  background: var(--accent); color: var(--accent-fg);
  box-shadow: 0 0 24px -6px rgba(201,169,97,0.7);
}

.vp-submenu {
  list-style: none; margin: 0; padding: 0.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: 0 20px 40px -20px rgba(74,59,107,0.35);
  position: absolute;
  top: 100%; inset-inline-start: 0;
  min-width: 16rem;
  display: none;
  z-index: 60;
}
.vp-site-header .vp-menu-item.has-children:hover > .vp-submenu,
.vp-site-header .vp-menu-item.has-children:focus-within > .vp-submenu { display: block; }
.vp-submenu .vp-menu-link {
  display: block; padding: 0.65rem 0.85rem;
  border-radius: 0.65rem;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--fg) 85%, transparent);
}
.vp-submenu .vp-menu-link:hover { background: color-mix(in srgb, var(--secondary) 80%, transparent); color: var(--primary); }

/* Mega-menu panels (Shop / Services) — show categories AND their sub-items */
.vp-submenu.vp-mega { display: none; gap: 0.75rem; padding: 1rem; min-width: auto; }
.vp-site-header .vp-menu-item.has-children:hover > .vp-submenu.vp-mega,
.vp-site-header .vp-menu-item.has-children:focus-within > .vp-submenu.vp-mega { display: grid; }
.vp-mega-1 { grid-template-columns: minmax(15rem, 1fr); width: 18rem; max-width: 92vw; }
.vp-mega-2 { grid-template-columns: repeat(2, minmax(11rem, 1fr)); width: 32rem; max-width: 92vw; }
.vp-mega-3 { grid-template-columns: repeat(3, minmax(11rem, 1fr)); width: 46rem; max-width: 92vw; }
.vp-mega-col { list-style: none; background: color-mix(in srgb, var(--secondary) 35%, transparent); border-radius: 0.85rem; padding: 0.6rem; }
.vp-mega-head { display: block; font-weight: 700; font-size: 0.84rem; color: var(--primary); padding: 0.35rem 0.5rem; border-radius: 0.5rem; }
.vp-mega-head:hover { background: color-mix(in srgb, var(--secondary) 75%, transparent); }
.vp-mega-list { list-style: none; margin: 0.2rem 0 0; padding: 0; }
.vp-mega-list .vp-menu-link { padding: 0.35rem 0.5rem; font-size: 0.78rem; color: color-mix(in srgb, var(--fg) 72%, transparent); white-space: normal; line-height: 1.3; }
.vp-mega-head { white-space: normal; line-height: 1.3; }
/* (Drawer mega-panel rendering is defined in the mobile-drawer section.) */

/* Header search bar (toggled open) */
.vp-search-bar {
  max-height: 0; overflow: hidden;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(10px);
  border-top: 1px solid transparent;
  transition: max-height 0.3s ease, border-color 0.3s ease;
}
.vp-search-bar.open { max-height: 6rem; border-top-color: var(--border); box-shadow: 0 8px 20px -12px rgba(74,59,107,0.25); }
.vp-search-bar form {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.9rem 0; color: var(--muted);
}
.vp-search-bar input {
  flex: 1; border: 0; background: transparent; font: inherit; color: var(--fg);
  padding: 0.4rem 0; outline: none;
}

/* Action icons row */
.vp-actions { display: flex; align-items: center; gap: 0.5rem; }
.vp-icon-btn {
  width: 2.25rem; height: 2.25rem;
  border-radius: 999px;
  background: transparent;
  border: 0;
  display: grid; place-items: center;
  color: var(--fg);
  position: relative;
}
.vp-icon-btn:hover { background: color-mix(in srgb, var(--secondary) 70%, transparent); }
.vp-icon-btn .vp-badge {
  position: absolute; top: -2px; inset-inline-end: -2px;
  background: var(--accent); color: var(--accent-fg);
  border-radius: 999px;
  padding: 0 0.32em;
  min-width: 1rem; height: 1rem;
  font-size: 0.62rem; font-weight: 700;
  display: grid; place-items: center;
  line-height: 1;
}
.vp-burger { display: grid; }
@media (min-width: 1280px) { .vp-burger { display: none; } }

/* Mobile drawer */
.vp-drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(20,16,30,0.55);
  z-index: 70;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.vp-drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.vp-drawer {
  position: fixed; top: 0; bottom: 0;
  inset-inline-start: 0;
  width: 86%; max-width: 22rem;
  background: #fff;
  z-index: 80;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 1rem 1.1rem 2rem;
  display: flex; flex-direction: column;
}
/* RTL: drawer is anchored to the right (inset-inline-start) and must slide off
   to the right. translateX is physical, so RTL needs +100% to hide. */
[dir="rtl"] .vp-drawer { transform: translateX(100%); }
.vp-drawer.open,
[dir="rtl"] .vp-drawer.open { transform: translateX(0); }

/* Drawer header: logo + close */
.vp-drawer-head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.25rem 0.25rem 1rem; margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.vp-drawer-logo { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--primary); }
.vp-drawer-logo img { width: 2rem; height: 2rem; border-radius: 0.5rem; object-fit: contain; }
.vp-drawer-logo span { font-family: 'Playfair Display', serif; font-weight: 700; letter-spacing: 0.16em; font-size: 1.15rem; }
.lang-ar .vp-drawer-logo span, .is-rtl .vp-drawer-logo span { font-family: 'Cairo', serif; }
.vp-drawer-close {
  display: grid; place-items: center; width: 2.5rem; height: 2.5rem; flex-shrink: 0;
  border: 0; border-radius: 999px; cursor: pointer; color: var(--fg);
  background: color-mix(in srgb, var(--secondary) 50%, transparent); transition: background 0.2s, transform 0.2s;
}
.vp-drawer-close:hover { background: color-mix(in srgb, var(--secondary) 85%, transparent); transform: rotate(90deg); }
.vp-drawer-body { flex: 1; }

/* Drawer nav — accordion */
.vp-drawer .vp-primary-menu { display: flex; flex-direction: column; gap: 0; }
.vp-drawer .vp-menu-item { border-bottom: 1px solid color-mix(in srgb, var(--border) 65%, transparent); }
.vp-drawer .vp-menu-item:last-child { border-bottom: 0; }
.vp-drawer .vp-menu-link {
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
  padding: 0.95rem 0.6rem; font-size: 1rem; font-weight: 600;
  color: var(--fg); border-radius: 0.6rem; white-space: normal; line-height: 1.35;
}
.vp-drawer .vp-menu-link:hover,
.vp-drawer .vp-menu-item.open > .vp-menu-link { background: color-mix(in srgb, var(--secondary) 55%, transparent); color: var(--primary); }
/* Extra breathing room under each top-level (main) item */
.vp-drawer .vp-primary-menu > .vp-menu-item > .vp-menu-link { margin-bottom: 10px; }
.vp-drawer .vp-chev { font-size: 0.95em; opacity: 0.65; transition: transform 0.25s ease; }
.vp-drawer .vp-menu-item.open > .vp-menu-link .vp-chev { transform: rotate(180deg); opacity: 1; }

/* Collapsible sub-levels (hidden until parent is .open) */
.vp-drawer .vp-submenu,
.vp-drawer .vp-submenu.vp-mega {
  display: none; position: static; min-width: 0; width: auto; max-width: none;
  background: transparent; border: 0; box-shadow: none;
  padding: 0.15rem 0 0.85rem;
}
.vp-drawer .vp-menu-item.open > .vp-submenu { display: block; }
.vp-drawer .vp-menu-item.open > .vp-submenu.vp-mega { display: grid; grid-template-columns: 1fr; gap: 0.4rem; }
.vp-drawer .vp-submenu .vp-menu-link,
.vp-drawer .vp-mega-list .vp-menu-link {
  padding: 0.6rem 0.8rem; font-size: 0.9rem; font-weight: 500;
  margin-inline-start: 0.85rem;
  border-inline-start: 2px solid color-mix(in srgb, var(--accent) 35%, transparent);
  border-radius: 0 0.5rem 0.5rem 0;
}
.vp-drawer .vp-mega-col { background: transparent; padding: 0; }
.vp-drawer .vp-mega-head {
  padding: 0.7rem 0.8rem; font-size: 0.92rem;
  margin-inline-start: 0.85rem;
  border-inline-start: 2px solid color-mix(in srgb, var(--accent) 55%, transparent);
  border-radius: 0 0.5rem 0.5rem 0;
}

/* Contact CTA pill — sits at the bottom with breathing room */
.vp-drawer .vp-menu-cta { border-bottom: 0; margin-top: 1.5rem; }
.vp-drawer .vp-menu-cta > .vp-menu-link {
  justify-content: center; background: var(--accent); color: var(--accent-fg);
  font-weight: 700; padding: 0.95rem; border-radius: 999px;
}
.vp-drawer .vp-menu-cta > .vp-menu-link:hover {
  background: var(--accent); color: var(--accent-fg);
  box-shadow: 0 0 24px -6px rgba(201,169,97,0.7);
}

/* Footer — mirrors components/layout/footer.tsx */
.vp-site-footer { background: var(--primary); color: var(--primary-fg); }
.vp-site-footer a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.vp-site-footer a:hover { color: var(--accent); }

/* Top CTA strip */
.vp-foot-cta {
  position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(to right, color-mix(in srgb, var(--accent) 15%, transparent), transparent, color-mix(in srgb, var(--accent) 15%, transparent));
}
.vp-foot-cta-inner {
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 2.5rem 1rem; text-align: center;
}
@media (min-width: 768px) { .vp-foot-cta-inner { flex-direction: row; text-align: start; } }
.vp-foot-cta h3 { font-size: clamp(1.5rem, 3vw, 1.875rem); font-weight: 700; margin: 0; color: #fff; }
.vp-foot-cta-btns { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .vp-foot-cta-btns { flex-direction: row; } }
.vp-foot-btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  height: 3rem; padding: 0 1.75rem; border-radius: 999px;
  background: var(--accent); color: var(--accent-fg); font-weight: 700;
  transition: transform 0.3s, box-shadow 0.3s;
}
.vp-foot-btn-gold:hover { transform: translateY(-2px); box-shadow: 0 0 40px -10px rgba(201,169,97,0.7); color: var(--accent-fg); }
.vp-foot-btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  height: 3rem; padding: 0 1.75rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.05);
  color: #fff; font-weight: 600; transition: background 0.2s;
}
.vp-foot-btn-ghost:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* Newsletter */
.vp-foot-news { border-bottom: 1px solid rgba(255,255,255,0.10); }
.vp-foot-news-inner { max-width: 42rem; margin: 0 auto; text-align: center; padding: 3rem 0; }
.vp-foot-news h3 { font-size: clamp(1.5rem, 3vw, 1.875rem); font-weight: 700; margin: 0 0 0.75rem; color: #fff; }
.vp-foot-news p { color: rgba(255,255,255,0.8); margin: 0 0 1.5rem; }
.vp-foot-news-form { display: flex; flex-direction: column; gap: 0.75rem; max-width: 28rem; margin: 0 auto; }
@media (min-width: 640px) { .vp-foot-news-form { flex-direction: row; } }
.vp-foot-news-form input {
  flex: 1; height: 2.5rem; padding: 0 0.9rem; border-radius: 0.5rem;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.20);
  color: #fff; font: inherit;
}
.vp-foot-news-form input::placeholder { color: rgba(255,255,255,0.5); }
.vp-foot-news-form button {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  height: 2.5rem; padding: 0 1.1rem; border-radius: 0.5rem; border: 0;
  background: var(--accent); color: var(--accent-fg); font-weight: 600; white-space: nowrap;
  transition: background 0.2s;
}
.vp-foot-news-form button:hover { background: color-mix(in srgb, var(--accent) 90%, black); }

/* Main footer grid */
.vp-foot-main {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  padding: 3rem 1rem;
}
@media (min-width: 768px) { .vp-foot-main { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .vp-foot-main { grid-template-columns: repeat(4, 1fr); gap: 3rem; } }
.vp-foot-logo { display: inline-flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; color: #fff; }
.vp-foot-logo img { opacity: 0.95; }
.vp-foot-logo span { font-size: 1.5rem; font-weight: 700; letter-spacing: 0.18em; color: #fff; }
.vp-foot-desc { color: rgba(255,255,255,0.7); font-size: 0.875rem; line-height: 1.6; margin: 0 0 1.5rem; }
.vp-foot-social { display: flex; align-items: center; gap: 0.75rem; }
.vp-foot-social a {
  height: 2.75rem; width: 2.75rem; border-radius: 999px;
  background: rgba(255,255,255,0.10); display: grid; place-items: center; color: #fff;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.vp-foot-social a:hover {
  background: var(--accent); color: var(--accent-fg); transform: translateY(-4px);
  box-shadow: 0 10px 24px -8px rgba(201,169,97,0.6);
}
.vp-foot-col h4 { font-size: 1.125rem; font-weight: 600; margin: 0 0 1rem; color: #fff; }
.vp-foot-col ul { list-style: none; margin: 0; padding: 0; }
.vp-foot-col li { margin-bottom: 0.75rem; }
.vp-foot-col a { font-size: 0.875rem; }
.vp-foot-contact li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.vp-foot-contact svg { color: var(--accent); flex-shrink: 0; margin-top: 0.1rem; }
.vp-foot-contact span, .vp-foot-contact a { color: rgba(255,255,255,0.7); font-size: 0.875rem; }

/* Copyright */
.vp-foot-copy { border-top: 1px solid rgba(255,255,255,0.10); }
.vp-foot-copy-inner {
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.5rem 0; font-size: 0.875rem; color: rgba(255,255,255,0.6);
}
.vp-foot-copy-inner p { margin: 0; }
@media (min-width: 768px) { .vp-foot-copy-inner { flex-direction: row; } }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Offset every page by exactly the fixed-header height (single source of truth,
   = 80px desktop / 64px mobile). */
body { padding-top: var(--vp-header-h); }

/* Keep the fixed header below the WordPress admin bar when logged in. */
.admin-bar .vp-site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .vp-site-header { top: 46px; } }

/* Legal / policy pages */
.vp-legal { line-height: 1.9; color: var(--fg); }
.vp-legal > p:first-of-type { font-size: 1.05rem; color: var(--muted); }
.vp-legal h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.3rem; margin: 2rem 0 .6rem; color: var(--primary); }
.lang-ar .vp-legal h2, .is-rtl .vp-legal h2 { font-family: 'Cairo', serif; }
.vp-legal h3 { font-size: 1.05rem; margin: 1.25rem 0 .4rem; color: var(--fg); }
.vp-legal p { margin: .5rem 0; color: color-mix(in srgb, var(--fg) 88%, transparent); }
.vp-legal ul { margin: .4rem 0 1rem; padding-inline-start: 1.4rem; }
.vp-legal li { margin: .3rem 0; }
.vp-legal ul li::marker { color: var(--accent); }
.vp-legal .vp-legal-foot { margin-top: 2.5rem; padding-top: 1rem; border-top: 1px solid var(--border); color: var(--muted); font-size: .9rem; }
[dir="rtl"] .vp-legal { text-align: right; }

/* Utilities */
.vp-text-center { text-align: center; }
.vp-mt-0 { margin-top: 0; }
.vp-mt-4 { margin-top: 1rem; }
.vp-mt-8 { margin-top: 2rem; }
.vp-mb-0 { margin-bottom: 0; }
.vp-mb-4 { margin-bottom: 1rem; }
.vp-mb-8 { margin-bottom: 2rem; }
.vp-flex { display: flex; }
.vp-flex-col { display: flex; flex-direction: column; }
.vp-gap-2 { gap: 0.5rem; }
.vp-gap-4 { gap: 1rem; }
.vp-gap-6 { gap: 1.5rem; }
.vp-items-center { align-items: center; }
.vp-justify-between { justify-content: space-between; }
.vp-text-accent { color: var(--accent); }
.vp-text-primary { color: var(--primary); }
.vp-text-muted { color: var(--muted); }

/* Event ticket grid (/events/) */
.ev-ticket-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
@media (max-width:980px){ .ev-ticket-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px){ .ev-ticket-grid { grid-template-columns:1fr; } }
.ev-tc { display:flex; flex-direction:column; background:#fff; border:1px solid var(--border); border-radius:1.25rem; overflow:hidden; text-decoration:none; color:inherit; transition:transform .35s, box-shadow .35s; }
.ev-tc:hover { transform:translateY(-5px); box-shadow:0 24px 48px -28px rgba(74,59,107,.45); }
.ev-tc-media { position:relative; aspect-ratio:16/9; background:var(--secondary) center/cover no-repeat; }
.ev-tc-price { position:absolute; top:.7rem; inset-inline-start:.7rem; background:var(--primary); color:#fff; font-weight:700; font-size:.82rem; padding:.3rem .7rem; border-radius:999px; }
.ev-tc-sold { position:absolute; top:.7rem; inset-inline-end:.7rem; background:#c0392b; color:#fff; font-weight:700; font-size:.7rem; text-transform:uppercase; padding:.3rem .6rem; border-radius:999px; }
.ev-tc-body { padding:1.1rem 1.25rem 1.35rem; display:flex; flex-direction:column; gap:.4rem; flex:1; }
.ev-tc-date { color:var(--accent); font-weight:600; font-size:.8rem; }
.ev-tc-body h3 { font-family:'Playfair Display',serif; font-weight:700; font-size:1.1rem; margin:0; color:var(--fg); line-height:1.3; }
.lang-ar .ev-tc-body h3 { font-family:'Cairo',serif; }
.ev-tc-loc { color:var(--muted); font-size:.85rem; }
.ev-tc-cta { margin-top:auto; padding-top:.5rem; color:var(--primary); font-weight:700; font-size:.85rem; }
