/* =========================================================================
   Event Production Kuwait — main stylesheet
   Dark / neon-violet identity. Logical properties throughout so the
   same rules serve both the Arabic (RTL) and English (LTR) interface.
   ========================================================================= */

/* ---------- 1. Tokens ---------------------------------------------------- */
:root {
  --bg:            #0A0A14;
  --bg-2:          #0D0D1B;
  --surface:       #12121F;
  --surface-2:     #17172A;
  --surface-3:     #1E1E33;

  --line:          rgba(255,255,255,.08);
  --line-2:        rgba(255,255,255,.14);

  --violet:        #7C3AED;
  --violet-soft:   #A78BFA;
  --cyan:          #22D3EE;
  --pink:          #F472B6;

  --text:          #F4F4FA;
  --muted:         #A3A3BD;
  --muted-2:       #6D6D8A;

  --grad:          linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
  --grad-text:     linear-gradient(120deg, #C4B5FD 0%, #A78BFA 35%, #22D3EE 100%);
  --grad-soft:     linear-gradient(140deg, rgba(124,58,237,.16), rgba(34,211,238,.08));

  --r-sm:  10px;
  --r:     18px;
  --r-lg:  28px;
  --r-xl:  40px;

  --shadow:    0 24px 60px -24px rgba(0,0,0,.8);
  --shadow-lg: 0 40px 90px -30px rgba(0,0,0,.9);
  --glow:      0 0 0 1px rgba(124,58,237,.30), 0 24px 70px -28px rgba(124,58,237,.75);

  --container: 1240px;
  --gutter:    clamp(18px, 4vw, 40px);
  --header-h:  80px;

  --font-ar:      'Tajawal', system-ui, sans-serif;
  --font-ar-head: 'Cairo', 'Tajawal', system-ui, sans-serif;
  --font-en:      'Inter', system-ui, sans-serif;
  --font-en-head: 'Space Grotesk', 'Inter', system-ui, sans-serif;

  --ease: cubic-bezier(.22,.75,.28,1);
}

/* ---------- 2. Reset ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ar);
  font-size: 16.5px;
  line-height: 1.85;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.epk-ltr { font-family: var(--font-en); line-height: 1.75; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-ar-head);
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 .6em;
  letter-spacing: -.01em;
}
body.epk-ltr h1, body.epk-ltr h2, body.epk-ltr h3,
body.epk-ltr h4, body.epk-ltr h5, body.epk-ltr h6 {
  font-family: var(--font-en-head);
  font-weight: 700;
  letter-spacing: -.025em;
}

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
img, svg, video { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
figure { margin: 0; }
hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }

::selection { background: var(--violet); color: #fff; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 9px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--violet); }

/* ---------- 3. Layout primitives ---------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-wide { max-width: 1480px; }
.container-narrow { max-width: 860px; }

.section { padding-block: clamp(72px, 9vw, 132px); position: relative; }
.section-tight { padding-block: clamp(52px, 6vw, 84px); }

.grid { display: grid; gap: clamp(18px, 2.4vw, 30px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.skip-link {
  position: absolute;
  inset-inline-start: -9999px;
  top: 0;
  z-index: 999;
  background: var(--violet);
  color: #fff;
  padding: 12px 22px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
}
.skip-link:focus { inset-inline-start: 20px; }

/* ---------- 4. Ambient background --------------------------------------- */
.epk-ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}
.epk-ambient .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .5;
  will-change: transform;
}
.epk-ambient .orb-1 {
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(124,58,237,.65), transparent 68%);
  top: -220px; inset-inline-start: -140px;
  animation: float-a 26s ease-in-out infinite;
}
.epk-ambient .orb-2 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(34,211,238,.42), transparent 68%);
  top: 34%; inset-inline-end: -180px;
  animation: float-b 32s ease-in-out infinite;
}
.epk-ambient .orb-3 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(244,114,182,.28), transparent 70%);
  bottom: -200px; inset-inline-start: 34%;
  animation: float-a 38s ease-in-out infinite reverse;
}

.epk-grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes float-a {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(60px, 70px) scale(1.12); }
}
@keyframes float-b {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-70px, -50px) scale(1.08); }
}

/* ---------- 5. Typography helpers --------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--violet-soft);
  background: rgba(124,58,237,.10);
  border: 1px solid rgba(124,58,237,.28);
  border-radius: 100px;
  padding: 7px 16px;
  margin-bottom: 22px;
}
body.epk-rtl .eyebrow { letter-spacing: 0; text-transform: none; font-size: .84rem; }
.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: .4; transform: scale(.7);} }

.h-display { font-size: clamp(2.4rem, 6.2vw, 4.6rem); line-height: 1.1; }
.h-1       { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.h-2       { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
.h-3       { font-size: clamp(1.25rem, 2vw, 1.55rem); }

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead  { font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: var(--muted); max-width: 62ch; }
.muted { color: var(--muted); }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-bottom: 16px; }

/* ---------- 6. Buttons --------------------------------------------------- */
.btn {
  --btn-bg: var(--grad);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: .97rem;
  line-height: 1;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), color .3s;
}
.btn .epk-icon { transition: transform .3s var(--ease); }
body.epk-rtl .btn .epk-icon { transform: scaleX(-1); }
.btn:hover { transform: translateY(-3px); }
.btn:hover .epk-icon { transform: translateX(4px); }
body.epk-rtl .btn:hover .epk-icon { transform: scaleX(-1) translateX(4px); }
.btn:active { transform: translateY(-1px); }

.btn-primary {
  background: var(--btn-bg);
  color: #fff;
  box-shadow: 0 14px 40px -14px rgba(124,58,237,.85);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:hover { box-shadow: 0 22px 55px -16px rgba(34,211,238,.6); }

.btn-ghost {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-2);
  color: var(--text);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { border-color: var(--violet-soft); background: rgba(124,58,237,.12); color: #fff; }

.btn-outline { border: 1px solid var(--violet); color: var(--violet-soft); }
.btn-outline:hover { background: var(--violet); color: #fff; }

.btn-sm { padding: 10px 20px; font-size: .87rem; }
.btn-lg { padding: 17px 38px; font-size: 1.03rem; }
.btn-block { width: 100%; }

.btn-wa { background: #25D366; color: #062d16; box-shadow: 0 14px 40px -16px rgba(37,211,102,.8); }
.btn-wa:hover { color: #04240f; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--violet-soft);
}
.link-arrow .epk-icon { transition: transform .3s var(--ease); }
body.epk-rtl .link-arrow .epk-icon { transform: scaleX(-1); }
.link-arrow:hover { color: var(--cyan); }
.link-arrow:hover .epk-icon { transform: translateX(5px); }
body.epk-rtl .link-arrow:hover .epk-icon { transform: scaleX(-1) translateX(5px); }

/* ---------- 7. Header ---------------------------------------------------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), height .35s var(--ease), border-color .35s;
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  height: 68px;
  background: rgba(10,10,20,.82);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 40px -20px rgba(0,0,0,.9);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  width: 100%;
}

/* Logo */
.site-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.site-brand img { height: 40px; width: auto; }
.brand-mark { width: 40px; height: 40px; flex-shrink: 0; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-ar-head);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -.01em;
}
body.epk-ltr .brand-name { font-family: var(--font-en-head); font-size: .98rem; letter-spacing: .01em; }
.brand-tag { font-size: .66rem; color: var(--muted-2); letter-spacing: .1em; text-transform: uppercase; }

/* Primary nav */
.site-nav { margin-inline-start: auto; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 100px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--muted);
  transition: color .25s, background .25s;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,.05); }
.nav-item.is-current > .nav-link { color: var(--text); }
.nav-item.is-current > .nav-link::before {
  content: '';
  position: absolute;
  bottom: 2px;
  inset-inline: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
}
.nav-caret { opacity: .6; }

.sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  inset-inline-start: 0;
  min-width: 214px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .28s var(--ease);
}
.nav-item.has-children:hover > .sub-menu,
.nav-item.has-children:focus-within > .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.sub-menu .nav-link { padding: 9px 14px; border-radius: var(--r-sm); width: 100%; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid var(--line-2);
  font-size: .84rem;
  font-weight: 700;
  color: var(--muted);
  transition: all .25s var(--ease);
}
.lang-switch:hover { color: var(--text); border-color: var(--violet-soft); background: rgba(124,58,237,.12); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--line-2);
  color: var(--text);
}
.nav-toggle:hover { background: rgba(255,255,255,.06); }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(6,6,12,.72);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; }
.mobile-nav-panel {
  position: absolute;
  inset-block: 0;
  inset-inline-end: 0;
  width: min(400px, 88vw);
  background: var(--bg-2);
  border-inline-start: 1px solid var(--line);
  padding: 26px var(--gutter) 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .42s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 26px;
}
body.epk-rtl .mobile-nav-panel { transform: translateX(-100%); }
.mobile-nav.is-open .mobile-nav-panel { transform: translateX(0); }

.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; }
.mobile-nav .nav-menu { flex-direction: column; align-items: stretch; gap: 2px; }
.mobile-nav .nav-link {
  padding: 15px 18px;
  border-radius: var(--r-sm);
  font-size: 1.06rem;
  justify-content: space-between;
}
.mobile-nav .nav-item.is-current > .nav-link { background: rgba(124,58,237,.14); color: var(--text); }
.mobile-nav .nav-item.is-current > .nav-link::before { display: none; }
.mobile-nav .sub-menu {
  position: static; opacity: 1; visibility: visible; transform: none;
  box-shadow: none; background: transparent; border: 0;
  padding-inline-start: 14px;
}
.mobile-contact { margin-top: auto; display: flex; flex-direction: column; gap: 12px; border-top: 1px solid var(--line); padding-top: 22px; }
.mobile-contact a { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .93rem; }
.mobile-contact a:hover { color: var(--text); }

/* ---------- 8. Hero ------------------------------------------------------ */
.hero {
  position: relative;
  min-height: clamp(620px, 96vh, 940px);
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 80px;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(ellipse 90% 65% at 50% 40%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 65% at 50% 40%, #000 20%, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  width: 100%;
}
.hero-copy { max-width: 640px; }
.hero-title { font-size: clamp(2.5rem, 6.4vw, 4.7rem); line-height: 1.08; margin-bottom: 24px; }
.hero-title span { display: block; }
.hero-text { font-size: clamp(1.02rem, 1.4vw, 1.16rem); color: var(--muted); margin-bottom: 34px; max-width: 55ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 42px; }

.hero-metrics { display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 46px); }
.hero-metric strong {
  display: block;
  font-family: var(--font-en-head);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 700;
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-metric span { font-size: .84rem; color: var(--muted-2); }

/* Hero visual collage */
.hero-visual { position: relative; aspect-ratio: 4/4.4; }
.hero-card {
  position: absolute;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-lg);
  background: var(--surface);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-1 { inset-inline-start: 0; top: 4%; width: 62%; aspect-ratio: 3/4; z-index: 2; animation: bob 9s ease-in-out infinite; }
.hero-card-2 { inset-inline-end: 0; top: 26%; width: 52%; aspect-ratio: 4/3; z-index: 3; animation: bob 11s ease-in-out infinite reverse; }
.hero-card-3 { inset-inline-start: 12%; bottom: 0; width: 54%; aspect-ratio: 4/3; z-index: 1; animation: bob 13s ease-in-out infinite; }

@keyframes bob { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-16px);} }

.hero-badge {
  position: absolute;
  inset-inline-end: 4%;
  bottom: 8%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  border-radius: 100px;
  background: rgba(18,18,31,.86);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  font-size: .86rem;
  font-weight: 700;
}
.hero-badge .epk-icon { color: var(--cyan); }

.hero-scroll {
  position: absolute;
  inset-inline-start: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.hero-scroll .bar {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, var(--violet), transparent);
  animation: scroll-bar 2s ease-in-out infinite;
}
@keyframes scroll-bar { 0%,100% { opacity: .3; transform: scaleY(.6);} 50% { opacity: 1; transform: scaleY(1);} }

/* ---------- 9. Cards ----------------------------------------------------- */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-soft);
  opacity: 0;
  transition: opacity .45s var(--ease);
  pointer-events: none;
}
.card:hover { transform: translateY(-7px); border-color: rgba(124,58,237,.42); box-shadow: var(--glow); }
.card:hover::before { opacity: 1; }
.card > * { position: relative; z-index: 1; }

.card-icon {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(124,58,237,.13);
  border: 1px solid rgba(124,58,237,.28);
  color: var(--violet-soft);
  margin-bottom: 20px;
  transition: all .4s var(--ease);
}
.card:hover .card-icon { background: var(--grad); border-color: transparent; color: #fff; transform: rotate(-6deg) scale(1.06); }
.card h3 { font-size: 1.14rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .95rem; margin: 0; }

.card-index {
  position: absolute;
  inset-inline-end: 22px;
  top: 18px;
  font-family: var(--font-en-head);
  font-size: 3.1rem;
  font-weight: 700;
  color: rgba(255,255,255,.05);
  line-height: 1;
  z-index: 0;
}

/* ---------- 10. Stats ---------------------------------------------------- */
.stats-band {
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(124,58,237,.05), transparent 60%);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); }
.stat {
  background: var(--bg);
  padding: clamp(26px, 3.4vw, 42px) clamp(18px, 2.4vw, 30px);
  text-align: center;
  transition: background .4s var(--ease);
}
.stat:hover { background: var(--surface); }
.stat-num {
  font-family: var(--font-en-head);
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block;
  margin-bottom: 10px;
}
.stat-label { font-size: .9rem; color: var(--muted); }

/* ---------- 11. Services ------------------------------------------------- */
.services-grid { grid-template-columns: repeat(3, 1fr); }

/* ---------- 12. Process -------------------------------------------------- */
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.4vw, 28px); position: relative; }
.process-list::before {
  content: '';
  position: absolute;
  top: 28px;
  inset-inline: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), var(--cyan), transparent);
  opacity: .38;
}
.process-step { position: relative; text-align: center; }
.process-num {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid rgba(124,58,237,.45);
  font-family: var(--font-en-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--violet-soft);
  position: relative;
  z-index: 1;
  transition: all .4s var(--ease);
}
.process-step:hover .process-num { background: var(--grad); color: #fff; border-color: transparent; box-shadow: 0 0 34px -6px rgba(124,58,237,.9); }
.process-step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.process-step p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ---------- 13. Event cards --------------------------------------------- */
.events-grid { grid-template-columns: repeat(3, 1fr); }

.event-card {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform .45s var(--ease), border-color .45s, box-shadow .45s;
}
.event-card:hover { transform: translateY(-8px); border-color: rgba(124,58,237,.45); box-shadow: var(--glow); }

.event-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--surface-2); }
.event-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.event-card:hover .event-media img { transform: scale(1.07); }
.event-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,20,.92) 4%, rgba(10,10,20,.15) 55%, transparent);
}

.event-cat {
  position: absolute;
  top: 16px;
  inset-inline-start: 16px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(10,10,20,.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-2);
  font-size: .74rem;
  font-weight: 700;
  color: var(--violet-soft);
}

.event-body { padding: 24px clamp(20px, 2.4vw, 28px) 26px; }
.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .8rem;
  color: var(--muted-2);
  margin-bottom: 12px;
}
.event-meta span { display: inline-flex; align-items: center; gap: 6px; }
.event-body h3 { font-size: 1.16rem; margin-bottom: 10px; transition: color .3s; }
.event-card:hover .event-body h3 { color: var(--violet-soft); }
.event-body p { font-size: .92rem; color: var(--muted); margin-bottom: 16px; }
.event-more { display: inline-flex; align-items: center; gap: 7px; font-size: .87rem; font-weight: 700; color: var(--cyan); }
.event-more .epk-icon { transition: transform .3s var(--ease); }
body.epk-rtl .event-more .epk-icon { transform: scaleX(-1); }
.event-card:hover .event-more .epk-icon { transform: translateX(5px); }
body.epk-rtl .event-card:hover .event-more .epk-icon { transform: scaleX(-1) translateX(5px); }

/* Filters */
.event-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: clamp(32px, 4vw, 52px);
}
.filter-btn {
  padding: 10px 22px;
  border-radius: 100px;
  border: 1px solid var(--line-2);
  font-size: .9rem;
  font-weight: 600;
  color: var(--muted);
  transition: all .3s var(--ease);
}
.filter-btn:hover { color: var(--text); border-color: var(--violet-soft); }
.filter-btn.is-active { background: var(--grad); border-color: transparent; color: #fff; box-shadow: 0 10px 30px -12px rgba(124,58,237,.9); }

/* ---------- 14. Single event -------------------------------------------- */
.event-hero {
  position: relative;
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: clamp(46px, 6vw, 76px);
}
.event-hero-media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-lg);
  margin-bottom: clamp(30px, 4vw, 48px);
}
.event-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.event-hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,20,.75), transparent 60%);
}

.event-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-block: clamp(30px, 4vw, 44px);
}
.fact { background: var(--surface); padding: 22px 24px; }
.fact-label { display: flex; align-items: center; gap: 7px; font-size: .78rem; color: var(--muted-2); margin-bottom: 7px; }
.fact-value { font-weight: 700; font-size: 1rem; }

.scope-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(124,58,237,.10);
  border: 1px solid rgba(124,58,237,.26);
  font-size: .84rem;
  color: var(--violet-soft);
}

.prose { font-size: 1.03rem; line-height: 2; color: #DCDCEA; }
.prose h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); margin-top: 2em; }
.prose h3 { font-size: 1.28rem; margin-top: 1.7em; }
.prose ul, .prose ol { margin: 0 0 1.3em; padding-inline-start: 1.35em; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: .5em; }
.prose a { color: var(--cyan); text-decoration: underline; text-underline-offset: 4px; }
.prose a:hover { color: var(--violet-soft); }
.prose blockquote {
  margin: 2em 0;
  padding: 22px 28px;
  border-inline-start: 3px solid var(--violet);
  background: var(--surface);
  border-radius: 0 var(--r) var(--r) 0;
  color: var(--muted);
  font-style: italic;
}
body.epk-rtl .prose blockquote { border-radius: var(--r) 0 0 var(--r); }
.prose img { border-radius: var(--r); margin-block: 1.6em; }
.prose code { background: var(--surface-2); padding: 2px 8px; border-radius: 6px; font-size: .9em; }

/* Gallery */
.event-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-item {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--line);
  cursor: zoom-in;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(124,58,237,.28);
  opacity: 0; transition: opacity .35s;
}
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(5,5,10,.93);
  backdrop-filter: blur(12px);
  display: grid; place-items: center;
  padding: 5vh 5vw;
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: var(--r); box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 24px; inset-inline-end: 24px;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,.06);
}
.lightbox-close:hover { background: var(--violet); }

/* Post navigation */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: clamp(40px, 5vw, 64px);
}
.post-nav a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 26px;
  border-radius: var(--r);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: all .35s var(--ease);
}
.post-nav a:hover { border-color: rgba(124,58,237,.45); background: var(--surface-2); }
.post-nav small { font-size: .78rem; color: var(--muted-2); }
.post-nav strong { font-size: 1rem; font-weight: 700; }
.post-nav .next { text-align: end; }

/* ---------- 15. Testimonials -------------------------------------------- */
.testi-grid { grid-template-columns: repeat(3, 1fr); }
.testi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 34px);
  position: relative;
  transition: all .4s var(--ease);
}
.testi:hover { border-color: rgba(124,58,237,.4); transform: translateY(-5px); }
.testi .quote-mark { color: var(--violet); opacity: .32; margin-bottom: 16px; }
.testi-text { font-size: 1rem; color: #D6D6E6; margin-bottom: 22px; }
.testi-person { display: flex; align-items: center; gap: 13px; padding-top: 18px; border-top: 1px solid var(--line); }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-person strong { display: block; font-size: .95rem; }
.testi-person span { font-size: .8rem; color: var(--muted-2); }
.testi-stars { display: flex; gap: 3px; color: #FBBF24; margin-bottom: 14px; }

/* ---------- 16. Clients marquee ----------------------------------------- */
.marquee { overflow: hidden; position: relative; padding-block: 12px; }
.marquee::before, .marquee::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 140px; z-index: 2;
  pointer-events: none;
}
.marquee::before { inset-inline-start: 0; background: linear-gradient(to right, var(--bg), transparent); }
.marquee::after  { inset-inline-end: 0;  background: linear-gradient(to left,  var(--bg), transparent); }
body.epk-rtl .marquee::before { background: linear-gradient(to left, var(--bg), transparent); }
body.epk-rtl .marquee::after  { background: linear-gradient(to right, var(--bg), transparent); }

.marquee-track {
  display: flex;
  gap: clamp(36px, 5vw, 76px);
  width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
body.epk-rtl .marquee-track { animation-name: marquee-rtl; }
@keyframes marquee-rtl { from { transform: translateX(0); } to { transform: translateX(50%); } }

.client-logo {
  height: 46px;
  display: grid;
  place-items: center;
  opacity: .62;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  flex-shrink: 0;
}
.client-logo:hover { opacity: 1; transform: translateY(-2px); }
.client-logo img { height: 100%; width: auto; }

/* ---------- 17. CTA band ------------------------------------------------- */
.cta-band { position: relative; }
.cta-inner {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 76px) clamp(26px, 5vw, 68px);
  background:
    radial-gradient(circle at 12% 18%, rgba(124,58,237,.35), transparent 55%),
    radial-gradient(circle at 88% 82%, rgba(34,211,238,.24), transparent 55%),
    var(--surface);
  border: 1px solid var(--line-2);
  overflow: hidden;
  text-align: center;
}
.cta-inner::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}
.cta-inner > * { position: relative; }
.cta-inner h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-inner p { color: var(--muted); max-width: 55ch; margin: 0 auto 32px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- 18. About page ---------------------------------------------- */
.page-hero {
  padding-top: calc(var(--header-h) + clamp(60px, 8vw, 110px));
  padding-bottom: clamp(40px, 5vw, 70px);
  position: relative;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2.2rem, 5.2vw, 3.7rem); margin-bottom: 18px; }
.page-hero .lead { margin-inline: auto; }

.breadcrumbs {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
  font-size: .84rem; color: var(--muted-2);
  margin-bottom: 22px;
}
.breadcrumbs a:hover { color: var(--violet-soft); }
.breadcrumbs .sep { opacity: .5; }

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.split-media { position: relative; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--line-2); box-shadow: var(--shadow-lg); }
.split-media img { width: 100%; }

.pillar-grid { grid-template-columns: repeat(3, 1fr); }
.pillar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 34px);
  transition: all .4s var(--ease);
}
.pillar:hover { border-color: rgba(124,58,237,.42); transform: translateY(-6px); }
.pillar .card-icon { margin-bottom: 18px; }
.pillar h3 { font-size: 1.1rem; }
.pillar p { color: var(--muted); font-size: .94rem; margin: 0; }

.why-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2.4vw, 26px); }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 13px;
  background: rgba(34,211,238,.10);
  border: 1px solid rgba(34,211,238,.26);
  color: var(--cyan);
}
.why-item h3 { font-size: 1.02rem; margin-bottom: 5px; }
.why-item p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ---------- 19. Contact page -------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(26px, 3.6vw, 46px);
}

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: .88rem; font-weight: 600; color: var(--muted); }
.form-field label .req { color: var(--pink); }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 17px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  font-size: .96rem;
  transition: border-color .28s, background .28s, box-shadow .28s;
}
.form-field textarea { resize: vertical; min-height: 132px; line-height: 1.75; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--muted-2); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--violet);
  background: var(--surface-2);
  box-shadow: 0 0 0 4px rgba(124,58,237,.14);
}
.form-field select { appearance: none; cursor: pointer; }
.form-field.select-wrap { position: relative; }
.form-field.select-wrap::after {
  content: '';
  position: absolute;
  inset-inline-end: 18px;
  top: 46px;
  width: 8px; height: 8px;
  /* Physical borders on purpose: logical ones flip in RTL and the
     rotated chevron would point sideways instead of down. */
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  pointer-events: none;
}
.form-hp { position: absolute !important; inset-inline-start: -9999px; opacity: 0; height: 0; }

.form-note { font-size: .82rem; color: var(--muted-2); margin-top: 14px; }

.form-alert {
  padding: 15px 20px;
  border-radius: var(--r-sm);
  font-size: .93rem;
  margin-bottom: 20px;
  display: none;
}
.form-alert.is-visible { display: block; }
.form-alert.ok  { background: rgba(34,197,94,.12);  border: 1px solid rgba(34,197,94,.35);  color: #86EFAC; }
.form-alert.err { background: rgba(244,63,94,.12);  border: 1px solid rgba(244,63,94,.35);  color: #FDA4AF; }

.contact-aside { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: all .35s var(--ease);
}
.contact-item:hover { border-color: rgba(124,58,237,.4); transform: translateX(-4px); }
body.epk-ltr .contact-item:hover { transform: translateX(4px); }
.contact-item .ci-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 13px;
  background: rgba(124,58,237,.12);
  border: 1px solid rgba(124,58,237,.28);
  color: var(--violet-soft);
}
.contact-item small { display: block; font-size: .78rem; color: var(--muted-2); margin-bottom: 3px; }
.contact-item strong { font-size: .98rem; font-weight: 700; word-break: break-word; }

.social-row { display: flex; flex-wrap: wrap; gap: 10px; }
.social-btn {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 13px;
  border: 1px solid var(--line-2);
  color: var(--muted);
  transition: all .32s var(--ease);
}
.social-btn:hover { background: var(--grad); border-color: transparent; color: #fff; transform: translateY(-3px); }

.map-embed {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 21/8;
  filter: grayscale(.7) invert(.92) hue-rotate(180deg) contrast(.9);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- 20. Blog / archive ------------------------------------------ */
.post-grid { grid-template-columns: repeat(3, 1fr); }
.post-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .4s var(--ease);
}
.post-card:hover { transform: translateY(-6px); border-color: rgba(124,58,237,.42); }
.post-card-media { aspect-ratio: 16/10; overflow: hidden; background: var(--surface-2); }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.post-card:hover .post-card-media img { transform: scale(1.06); }
.post-card-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card-body h3 { font-size: 1.1rem; margin: 0; }
.post-card-body time { font-size: .8rem; color: var(--muted-2); }
.post-card-body p { font-size: .92rem; color: var(--muted); margin: 0; }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: clamp(40px, 5vw, 62px); flex-wrap: wrap; }
.pagination .page-numbers {
  min-width: 44px; height: 44px;
  display: inline-grid; place-items: center;
  padding-inline: 14px;
  border-radius: 12px;
  border: 1px solid var(--line-2);
  font-size: .93rem; font-weight: 600;
  color: var(--muted);
  transition: all .3s var(--ease);
}
.pagination .page-numbers:hover { color: var(--text); border-color: var(--violet-soft); }
.pagination .page-numbers.current { background: var(--grad); border-color: transparent; color: #fff; }

.empty-state { text-align: center; padding-block: clamp(50px, 7vw, 90px); }
.empty-state .epk-icon { color: var(--muted-2); margin: 0 auto 20px; }

/* ---------- 21. Footer --------------------------------------------------- */
.site-footer {
  position: relative;
  margin-top: clamp(60px, 8vw, 110px);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(124,58,237,.05), transparent 40%), var(--bg-2);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: clamp(28px, 4vw, 52px);
  padding-block: clamp(50px, 6vw, 78px);
}
.footer-brand .site-brand { margin-bottom: 20px; }
.footer-about { color: var(--muted); font-size: .93rem; max-width: 38ch; margin-bottom: 22px; }

.footer-col h4 {
  font-size: .95rem;
  margin-bottom: 18px;
  letter-spacing: .02em;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { color: var(--muted); font-size: .93rem; display: inline-flex; align-items: center; gap: 8px; }
.footer-links a::before {
  content: '';
  width: 0; height: 1px;
  background: var(--violet-soft);
  transition: width .3s var(--ease);
}
.footer-links a:hover { color: var(--text); }
.footer-links a:hover::before { width: 12px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list a, .footer-contact-list span {
  display: flex; align-items: flex-start; gap: 11px;
  color: var(--muted); font-size: .92rem;
}
.footer-contact-list a:hover { color: var(--text); }
.footer-contact-list .epk-icon { color: var(--violet-soft); flex-shrink: 0; margin-top: 4px; }

.newsletter { display: flex; gap: 8px; margin-top: 18px; }
.newsletter input {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 100px;
  font-size: .9rem;
}
.newsletter input:focus { outline: none; border-color: var(--violet); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 24px;
  border-top: 1px solid var(--line);
  font-size: .86rem;
  color: var(--muted-2);
}
.footer-bottom a:hover { color: var(--violet-soft); }

/* Floating actions */
.float-actions {
  position: fixed;
  inset-inline-end: 22px;
  bottom: 22px;
  z-index: 180;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: rgba(18,18,31,.9);
  backdrop-filter: blur(14px);
  color: var(--text);
  box-shadow: var(--shadow);
  transition: all .35s var(--ease);
}
.float-btn:hover { transform: translateY(-4px) scale(1.05); }
.float-btn.wa { background: #25D366; color: #06301a; border-color: transparent; }
.float-btn.top { opacity: 0; visibility: hidden; }
.float-btn.top.is-visible { opacity: 1; visibility: visible; }

/* ---------- 22. Reveal animations --------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }
[data-reveal-delay="5"] { transition-delay: .40s; }
[data-reveal-delay="6"] { transition-delay: .48s; }

/* ---------- 23. Comments & widgets -------------------------------------- */
.comments-area { margin-top: clamp(40px, 5vw, 66px); }
.comment-list { display: flex; flex-direction: column; gap: 20px; }
.comment-list .comment-body {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 26px;
}
.comment-form input, .comment-form textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  margin-bottom: 14px;
}
.comment-form .submit {
  background: var(--grad);
  color: #fff;
  border: 0;
  border-radius: 100px;
  padding: 13px 30px;
  font-weight: 700;
  cursor: pointer;
}

.widget { margin-bottom: 30px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; }
.widget-title { font-size: 1.02rem; margin-bottom: 14px; }
.widget ul { display: flex; flex-direction: column; gap: 9px; }
.widget a { color: var(--muted); font-size: .93rem; }
.widget a:hover { color: var(--violet-soft); }

.search-form { display: flex; gap: 8px; }
.search-form input {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 100px;
}
.search-form button { padding: 12px 22px; border-radius: 100px; background: var(--grad); color: #fff; font-weight: 700; }

/* ---------- 24. 404 ------------------------------------------------------ */
.error-404 {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-top: var(--header-h);
}
.error-code {
  font-family: var(--font-en-head);
  font-size: clamp(6rem, 20vw, 14rem);
  font-weight: 700;
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 10px;
}

/* ---------- 25. Responsive ---------------------------------------------- */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; margin-inline: auto; width: 100%; }
  .hero-copy { max-width: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .site-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  /* The nav carried the auto margin; hand it to the actions instead. */
  .header-actions { margin-inline-start: auto; }
  /* The quote button lives in the drawer on small screens — keeping it in
     the bar pushes the header past the viewport and scrolls the page. */
  .epk-header-cta { display: none; }
  .services-grid, .events-grid, .post-grid, .testi-grid, .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .process-list::before { display: none; }
  .event-facts { grid-template-columns: repeat(2, 1fr); }
  .event-gallery { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  :root { --header-h: 68px; }
  body { font-size: 15.8px; }
  .brand-name { font-size: .9rem; }
  .brand-tag { display: none; }
  .site-brand img, .brand-mark { height: 34px; width: 34px; }
  .hero-metrics { gap: 22px 26px; }
  .hero-metric strong { font-size: 1.5rem; }
  .services-grid, .events-grid, .post-grid, .testi-grid,
  .pillar-grid, .why-list, .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr; }
  .event-facts { grid-template-columns: 1fr; }
  .event-gallery { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .post-nav { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .event-hero-media { aspect-ratio: 4/3; border-radius: var(--r-lg); }
  .float-actions { inset-inline-end: 14px; bottom: 14px; }
  .hero-scroll { display: none; }
}

/* ---------- 26. Motion & print ------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .float-actions, .epk-ambient, .epk-grain { display: none !important; }
  body { background: #fff; color: #000; }
}
