
/* ===== Design tokens (from original styles.css) ===== */
:root{
  --radius: 1.1rem;
  --r-lg: 17.6px;
  --r-xl: 21.6px;
  --r-2xl: 25.6px;
  --r-3xl: 29.6px;
  --r-4xl: 33.6px;

  --background: #0D0B14;
  --foreground: #F3EFE6;
  --card: rgba(243, 239, 230, 0.045);
  --popover: #1C1712;
  --primary: #D4A657;
  --primary-foreground: #241B08;
  --secondary: rgba(243, 239, 230, 0.08);
  --muted-foreground: #DCD5C8;
  --accent: #F5C46B;
  --accent-foreground: #1F1608;
  --highlight: #E8B84B;
  --border: rgba(243, 239, 230, 0.10);
  --input: rgba(243, 239, 230, 0.12);
  --ring: #D4A657;
  --glass: rgba(243, 239, 230, 0.045);
  --glass-strong: rgba(243, 239, 230, 0.08);

  --font-display: "Space Grotesk", sans-serif;
  --font-sans: "Inter", sans-serif;
}

html, body, #inner-body, #content, .site-content, .content-area, #main, main {
  background-color: var(--background) !important;
  color: var(--foreground) !important;
}

#site-elementor-header, .aux-elementor-header, .aux-elementor-footer, #site-header {
  display: none !important;
}
#inner-body, #content, #main-content, .site-content, .aux-content-inner-wrap, .aux-page-wrap, .elementor, .elementor-top-section, .elementor-section-wrap, .elementor-container, .elementor-column, .elementor-widget-wrap, .elementor-element, .elementor-widget {
  margin-top:0 !important; padding-top:0 !important;
}


*{ box-sizing: border-box; }

.chat-widget{ position:fixed; right:24px; bottom:24px; z-index:70; }
.chat-bubble{
  position:relative; width:60px; height:60px; border-radius:999px; overflow:visible;
  border:2px solid rgba(212,166,87,55%); background: var(--glass);
  backdrop-filter: blur(8px) saturate(140%); -webkit-backdrop-filter: blur(8px) saturate(140%);
  box-shadow: 0 15px 35px -10px rgba(0,0,0,.6);
  cursor:pointer; padding:0; transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
  animation: chatBubbleFloat 3.4s ease-in-out infinite;
}
.chat-bubble:hover{ transform: scale(1.08); border-color: rgba(212,166,87,90%); box-shadow: 0 20px 45px -10px rgba(212,166,87,35%); }
.chat-bubble img{ width:100%; height:100%; border-radius:999px; object-fit:cover; display:block; }
.chat-badge{
  position:absolute; top:-4px; right:-4px; min-width:22px; height:22px; padding:0 5px; border-radius:999px;
  background: linear-gradient(135deg,#ff6b6b,#e63946); color:#fff; font-size:12px; font-weight:700;
  display:flex; align-items:center; justify-content:center; border:2px solid var(--background);
  animation: chatBadgePulse 2s ease-in-out infinite;
}
.chat-widget.open .chat-bubble{ display:none; }
@keyframes chatBubbleFloat{ 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-6px); } }
@keyframes chatBadgePulse{ 0%,100%{ transform: scale(1); } 50%{ transform: scale(1.15); } }

.chat-panel{
  position:absolute; right:0; bottom:76px; width:340px; max-width:calc(100vw - 48px);
  border-radius: var(--r-3xl); overflow:hidden; background: rgba(13,11,20,97%);
  border:1px solid var(--border); backdrop-filter: blur(12px) saturate(140%); -webkit-backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 30px 70px -15px rgba(0,0,0,.7);
  display:flex; flex-direction:column; opacity:0; transform: translateY(24px) scale(.96); pointer-events:none;
  transition: opacity .35s cubic-bezier(.2,.8,.2,1), transform .35s cubic-bezier(.2,.8,.2,1);
}
.chat-widget.open .chat-panel{ opacity:1; transform: translateY(0) scale(1); pointer-events:auto; }
.chat-panel-header{
  display:flex; align-items:center; gap:12px; padding:18px 20px;
  border-bottom:1px solid var(--border); background: rgba(255,255,255,3%);
}
.chat-avatar{ width:40px; height:40px; border-radius:999px; overflow:hidden; flex-shrink:0; border:1px solid var(--border); }
.chat-avatar img{ width:100%; height:100%; object-fit:cover; display:block; }
.chat-name{ display:block; font-family: var(--font-display); font-size:14.5px; font-weight:600; }
.chat-status{ display:flex; align-items:center; gap:6px; font-size:11.5px; color: var(--muted-foreground); margin-top:2px; }
.chat-dot{ width:7px; height:7px; border-radius:999px; background:#4ade80; box-shadow:0 0 0 2px rgba(74,222,128,25%); }
.chat-close{
  margin-left:auto; width:28px; height:28px; border-radius:999px; background:transparent; border:none;
  color: var(--muted-foreground); font-size:20px; line-height:1; cursor:pointer; transition: color .2s, background .2s;
}
.chat-close:hover{ color: var(--foreground); background: rgba(255,255,255,8%); }
.chat-body{ padding:20px; display:flex; flex-direction:column; gap:10px; min-height:160px; max-height:320px; overflow-y:auto; }
.chat-msg{
  max-width:82%; padding:10px 14px; border-radius:16px 16px 16px 4px; font-size:13.5px; line-height:1.5;
  background: var(--glass); border:1px solid var(--border); color: var(--foreground);
  opacity:0; transform: translateY(8px); animation: chatMsgIn .4s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes chatMsgIn{ to{ opacity:1; transform: translateY(0); } }
.chat-typing{
  display:inline-flex; align-items:center; gap:4px; padding:12px 16px; border-radius:16px 16px 16px 4px;
  background: var(--glass); border:1px solid var(--border); width:fit-content;
}
.chat-typing span{ width:6px; height:6px; border-radius:999px; background: var(--muted-foreground); animation: chatDot 1.2s infinite; }
.chat-typing span:nth-child(2){ animation-delay:.2s; }
.chat-typing span:nth-child(3){ animation-delay:.4s; }
@keyframes chatDot{ 0%,60%,100%{ opacity:.3; transform: translateY(0); } 30%{ opacity:1; transform: translateY(-3px); } }
.chat-cta{
  display:flex; align-items:center; justify-content:center; gap:8px; margin:0 16px 16px;
  padding:13px 20px; border-radius:999px; background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--primary-foreground); font-size:12.5px; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  text-align:center; box-shadow: 0 10px 25px -8px rgba(212,166,87,35%); transition: transform .3s;
}
.chat-cta:hover{ transform: translateY(-2px); }
@media (max-width:600px){ .chat-widget{ right:16px; bottom:16px; } .chat-bubble{ width:54px; height:54px; } .chat-panel{ width:calc(100vw - 32px); bottom:66px; } }


.social-rail{
  position:fixed; right:24px; top:50%; transform:translateY(-50%);
  z-index:60; display:flex; flex-direction:column; gap:12px;
}
.social-rail-link{
  display:flex; align-items:center; justify-content:center;
  width:42px; height:42px; border-radius:999px;
  background: var(--glass); border:1px solid var(--border);
  backdrop-filter: blur(8px) saturate(140%); -webkit-backdrop-filter: blur(8px) saturate(140%);
  color: var(--accent);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s, background .35s, box-shadow .35s, color .35s;
}
.social-rail-link svg{ width:18px; height:18px; }
.social-rail-link:hover{
  transform: translateX(-4px) scale(1.06);
  border-color: rgba(212,166,87,55%);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--primary-foreground);
  box-shadow: 0 12px 30px -10px rgba(212,166,87,45%);
}
@media (max-width:900px){ .social-rail{ display:none; } }

*, *::before, *::after{ border-color: var(--border); }

html{ scroll-behavior: smooth; }

body{
  margin:0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img{ display:block; max-width:100%; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding:0; }

h1,h2,h3{
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  font-weight: 300;
  margin: 0;
}

.font-display{ font-family: var(--font-display); letter-spacing: -0.02em; }

.glass{
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.text-gradient-gold{
  background: linear-gradient(135deg, #F5C46B, #D4A657);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.container{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px){ .container{ padding: 0 32px; } }

/* ===== Reveal-on-scroll ===== */
.reveal-base{
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}
.reveal-base.reveal-in{ opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce){
  .reveal-base{ opacity:1 !important; transform:none !important; transition:none !important; }
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}

/* ===== Keyframes ===== */
@keyframes portraitFloat{ 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-10px); } }
@keyframes portraitGlowPulse{ 0%,100%{ opacity:.6; } 50%{ opacity:1; } }
@keyframes marquee{ from{ transform: translateX(0);} to{ transform: translateX(-50%);} }
@keyframes shimmer{ 0%,100%{ opacity:.12; transform: scaleY(.7);} 50%{ opacity:.6; transform: scaleY(1);} }
@keyframes float{ 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-14px);} }

.animate-marquee{ animation: marquee 28s linear infinite; }
.animate-shimmer{ animation: shimmer 5.5s ease-in-out infinite; }
.animate-float{ animation: float 7s ease-in-out infinite; }

/* ===== Buttons / pills ===== */
.btn-primary{
  display:inline-flex; align-items:center; gap:8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--primary-foreground);
  padding: 16px 32px;
  font-size: 12px; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  box-shadow: 0 10px 30px -8px rgba(212,166,87,25%);
  transition: transform .3s, box-shadow .3s;
}
.btn-primary:hover{ transform: translateY(-4px); box-shadow: 0 20px 45px -10px rgba(212,166,87,40%); }
.btn-primary.small{ padding: 12px 24px; }

.btn-ghost{
  display:inline-flex; align-items:center; gap:8px;
  border-radius:999px; padding:16px 32px;
  font-size:12px; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  transition: transform .3s, border-color .3s, color .3s;
}
.btn-ghost:hover{ transform: translateY(-4px); border-color: var(--primary); color: var(--primary); }
.btn-ghost.small{ padding:10px 20px; }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; font-weight:600; letter-spacing:.2em; text-transform:uppercase;
  color: var(--primary); margin-bottom: 16px;
}
.eyebrow::before{ content:""; display:block; width:20px; height:1px; background: linear-gradient(90deg, var(--primary), var(--accent)); }

.section-head{ max-width: 680px; margin: 0 auto 56px; text-align:center; }
.section-head h2{ font-size: 36px; font-weight: 300; }
.section-head p{ margin-top:16px; font-size:15.5px; color: var(--muted-foreground); }
@media (min-width:1024px){ .section-head h2{ font-size:42px; } }

section{ position:relative; }
.section-pad{ padding: 96px 0; }
.section-pad-lg{ padding: 96px 0 112px; }
.divider-y{ border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
@media (min-width:1024px){ .section-pad, .section-pad-lg{ padding-top:112px; padding-bottom:112px; } }

/* ===== Navbar ===== */
.navbar{
  position: sticky; top:0; z-index:50;
  border-bottom: 1px solid var(--border);
  background: rgba(13,11,20,70%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.navbar .container{ display:flex; align-items:center; justify-content:space-between; padding-top:16px; padding-bottom:16px; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand-badge{
  font-family: var(--font-display); display:flex; align-items:center; justify-content:center;
  width:40px; height:40px; border-radius:999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--primary-foreground); font-size:14px; font-weight:700;
}
.brand-name{ display:block; font-family: var(--font-display); font-size:17px; font-weight:600; line-height:1.25; }
.brand-sub{ display:block; font-size:10px; letter-spacing:.15em; color: var(--muted-foreground); }
.nav-links{ display:none; align-items:center; gap:32px; font-size:14px; font-weight:500; color: var(--muted-foreground); }
.nav-links a{ transition: color .2s; }
.nav-links a:hover{ color: var(--foreground); }
@media (min-width:1024px){ .nav-links{ display:flex; } }
.nav-cta-wrap{ display:flex; align-items:center; gap:12px; }
.nav-cta{ display:none; }
@media (min-width:640px){ .nav-cta{ display:inline-flex; } }
.nav-toggle{
  display:flex; height:40px; width:40px; flex-direction:column; align-items:center; justify-content:center; gap:6px;
  border-radius:999px;
}
@media (min-width:1024px){ .nav-toggle{ display:none; } }
.nav-toggle span{ display:block; width:16px; height:1px; background: var(--foreground); }
.mobile-menu{
  display:none; border-top:1px solid var(--border);
  background: rgba(13,11,20,95%);
  padding: 24px; backdrop-filter: blur(24px);
}
.mobile-menu.open{ display:block; }
@media (min-width:1024px){ .mobile-menu{ display:none !important; } }
.mobile-menu-links{ display:flex; flex-direction:column; gap:16px; font-size:14px; }
.mobile-menu-links a{ color: var(--muted-foreground); }
.mobile-menu-links a:hover{ color: var(--foreground); }

/* ===== Hero ===== */
.hero{ position:relative; overflow:hidden; }
.hero-bg{ position:absolute; inset:0; pointer-events:none; }
.hero-bg img{ height:100%; width:100%; object-fit:cover; opacity:.3; }
.hero-bg::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(to bottom, rgba(13,11,20,70%), rgba(13,11,20,85%), var(--background));
}
.hero-streaks{ position:absolute; inset:0; display:flex; gap:6px; opacity:.4; pointer-events:none; }
.hero-streaks span{ flex:1; background: linear-gradient(to bottom, transparent, rgba(212,166,87,25%), transparent); }
.hero-glow{ position:absolute; top:-208px; left:50%; transform:translateX(-50%); width:900px; height:700px; border-radius:999px; background: rgba(245,196,107,15%); filter: blur(120px); pointer-events:none; }

.hero-inner{ position:relative; padding: 16px 0 64px; }
@media (min-width:1024px){ .hero-inner{ padding-top:112px; } }
.hero-grid{ display:grid; gap:56px; align-items:center; }
@media (min-width:1024px){ .hero-grid{ grid-template-columns: 1.15fr .85fr; } }

.hero h1{ font-size:52px; line-height:1.02; font-weight:300; }
@media (min-width:640px){ .hero h1{ font-size:68px; } }
@media (min-width:1024px){ .hero h1{ font-size:80px; } }
.hero-lede{ margin-top:28px; max-width:600px; font-size:17px; color: var(--muted-foreground); }
.hero-ctas{ margin-top:36px; display:flex; flex-wrap:wrap; gap:16px; }

.hero-portrait{ position:relative; margin:0 auto; width:100%; max-width:380px; }
.hero-portrait-glow{ position:absolute; inset:-24px; border-radius:32px; background: rgba(212,166,87,10%); filter: blur(48px); animation: portraitGlowPulse 4s ease-in-out infinite; }
.hero-portrait-card{ position:relative; overflow:hidden; border-radius: var(--r-3xl); padding:8px; animation: portraitFloat 6s ease-in-out infinite; }
.hero-portrait-card img{ width:100%; border-radius: var(--r-2xl); object-fit:cover; filter: grayscale(1); aspect-ratio: 896/1152; transition: transform 1s ease; }
.hero-portrait-card:hover img{ transform: scale(1.1); }
.hero-portrait-caption{
  position:absolute; left:8px; right:8px; bottom:8px; border-radius: 0 0 var(--r-2xl) var(--r-2xl);
  background: linear-gradient(to top, rgba(13,11,20,95%), rgba(13,11,20,60%), transparent);
  padding: 56px 20px 20px;
}
.hero-portrait-caption p:first-child{ font-family: var(--font-display); font-size:18px; margin:0; }
.hero-portrait-caption p:last-child{ margin:2px 0 0; font-size:12px; letter-spacing:.15em; color: var(--primary); text-transform:uppercase; }
.hero-badge{
  position:absolute; top:-20px; right:-16px; border-radius: var(--r-2xl);
  background: rgba(13,11,20,80%); padding: 12px 20px; box-shadow: 0 25px 50px -12px rgb(0 0 0/.5);
}
.hero-badge p:first-child{ font-family: var(--font-display); font-size:20px; color: var(--primary); margin:0; }
.hero-badge p:last-child{ font-size:11px; color: var(--muted-foreground); margin:2px 0 0; }

.hero-stats{ margin-top:64px; display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (min-width:1024px){ .hero-stats{ grid-template-columns: repeat(4,1fr); } }
.stat-card{ border-radius: var(--r-2xl); padding: 24px; will-change: transform; transition: transform .45s cubic-bezier(.2,.8,.2,1), border-color .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s cubic-bezier(.2,.8,.2,1), background .45s cubic-bezier(.2,.8,.2,1); }
.stat-card:hover{ transform: translateY(-8px) !important; border-color: rgba(212,166,87,45%); box-shadow: 0 20px 45px -15px rgba(0,0,0,.5); background: var(--glass-strong); }
.stat-card b{ display:block; font-family: var(--font-display); font-size:38px; font-weight:600; color: var(--primary); line-height:1.1; }
.stat-card b, .stat-card b *{ font-size:38px !important; font-weight:600 !important; color: var(--primary) !important; font-family: var(--font-display) !important; line-height:1.1 !important; }
.stat-card span{ font-size:13px; color: var(--muted-foreground); }

.marquee-wrap{ position:relative; border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding: 28px 0; }
.marquee-label{ margin: 0 0 20px; text-align:center; font-size:12px; letter-spacing:.2em; text-transform:uppercase; color: var(--muted-foreground); }
.marquee-mask{ overflow:hidden; }
.marquee-track{ display:flex; width:max-content; }
.marquee-group{ display:flex; gap:64px; padding-right:64px; }
.marquee-group span{ font-family: var(--font-display); font-size:20px; white-space:nowrap; color: rgba(184,175,158,70%); }

/* ===== Services ===== */
.services-grid{ display:grid; gap:20px; grid-template-columns:1fr; }
@media (min-width:640px){ .services-grid{ grid-template-columns: repeat(2,1fr); } }
@media (min-width:1024px){ .services-grid{ grid-template-columns: repeat(3,1fr); } }
.service-card{
  position:relative; display:flex; min-height:300px; flex-direction:column; justify-content:flex-end;
  overflow:hidden; border-radius: var(--r-3xl); border:1px solid var(--border); will-change: transform;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), border-color .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s cubic-bezier(.2,.8,.2,1);
}
.service-card:hover{ transform: translateY(-10px) !important; border-color: rgba(212,166,87,55%); box-shadow: 0 25px 55px -12px rgba(0,0,0,.65); }
.service-card img{ position:absolute; inset:0; height:100%; width:100%; object-fit:cover; opacity:.55; transition: transform .7s; }
.service-card:hover img{ transform: scale(1.1); }
.service-card::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(to bottom, rgba(13,11,20,30%), rgba(13,11,20,60%), rgba(13,11,20,95%));
}
.service-card-body{ position:relative; padding:28px; background: linear-gradient(to top, rgba(13,11,20,97%) 0%, rgba(13,11,20,90%) 45%, rgba(13,11,20,55%) 85%, transparent); }
.service-card-body::before{ content:""; position:absolute; inset:-20px -10px -10px; background: radial-gradient(ellipse at bottom left, rgba(13,11,20,70%) 0%, rgba(13,11,20,30%) 60%, transparent 85%); pointer-events:none; z-index:0; }
.service-card-body > *{ position:relative; z-index:1; }
.service-card-body h3{ margin-bottom:8px; font-size:22px; text-shadow: 0 4px 24px rgba(0,0,0,.85), 0 2px 6px rgba(0,0,0,.9); }
.service-card-body p{ margin:0 0 16px; font-size:14px; color: var(--foreground); text-shadow: 0 2px 12px rgba(0,0,0,.8), 0 1px 3px rgba(0,0,0,.9); }
.service-card-link{ display:inline-flex; align-items:center; gap:8px; font-size:13.5px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; color: var(--accent); text-shadow: 0 2px 12px rgba(0,0,0,.8), 0 1px 3px rgba(0,0,0,.9); }
.service-card-link span{ transition: transform .3s; }
.service-card:hover .service-card-link span{ transform: translateX(6px); }

/* ===== Why work with me ===== */
.why-grid{ display:grid; gap:48px; align-items:center; }
@media (min-width:1024px){ .why-grid{ grid-template-columns: .9fr 1.1fr; } }
.why-image{ position:relative; overflow:hidden; border-radius: var(--r-3xl); border:1px solid var(--border); }
.why-image img{ height:100%; min-height:320px; width:100%; object-fit:cover; }
.why-image::after{ content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(13,11,20,80%), transparent, transparent); }
.why-image-caption{ position:absolute; bottom:20px; left:24px; z-index:1; }
.why-image-caption p:first-child{ font-family: var(--font-display); font-size:18px; margin:0; }
.why-image-caption p:last-child{ margin:2px 0 0; font-size:12px; letter-spacing:.15em; color: var(--primary); text-transform:uppercase; }
.why-text h2{ margin-bottom:20px; font-size:36px; }
@media (min-width:1024px){ .why-text h2{ font-size:38px; } }
.why-text p{ margin:0 0 16px; font-size:15px; color: var(--muted-foreground); }
.why-text b{ color: var(--foreground); }

.why-cards{ margin-top:56px; display:grid; gap:20px; grid-template-columns:1fr; }
@media (min-width:640px){ .why-cards{ grid-template-columns: repeat(3,1fr); } }
.why-card{ border-radius: var(--r-3xl); padding:32px; will-change: transform; transition: transform .45s cubic-bezier(.2,.8,.2,1), border-color .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s cubic-bezier(.2,.8,.2,1), background .45s cubic-bezier(.2,.8,.2,1); }
.why-card:hover{ transform: translateY(-8px) !important; border-color: rgba(212,166,87,45%); box-shadow: 0 20px 45px -15px rgba(0,0,0,.5); background: var(--glass-strong); }
.why-card span{ font-family: var(--font-display); font-size:14px; color: var(--primary); }
.why-card h3{ margin:8px 0; font-size:20px; }
.why-card p{ margin:0; font-size:14px; color: var(--muted-foreground); }

.emirates-grid{ display:grid; gap:16px; grid-template-columns:1fr; }
@media (min-width:640px){ .emirates-grid{ grid-template-columns: repeat(2,1fr); } }
@media (min-width:1024px){ .emirates-grid{ grid-template-columns: repeat(4,1fr); } }
.emirate-card{ height:100%; border-radius: var(--r-2xl); padding:24px; will-change: transform; transition: transform .45s cubic-bezier(.2,.8,.2,1), border-color .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s cubic-bezier(.2,.8,.2,1), background .45s cubic-bezier(.2,.8,.2,1); }
.emirate-card:hover{ transform: translateY(-8px) !important; border-color: rgba(212,166,87,45%); box-shadow: 0 20px 45px -15px rgba(0,0,0,.5); background: var(--glass-strong); }
.emirate-card h3{ margin: 0 0 6px; font-size:18px; }
.emirate-card p{ margin:0; font-size:13px; color: var(--muted-foreground); }

.process-grid{ display:grid; gap:20px; grid-template-columns:1fr; }
@media (min-width:640px){ .process-grid{ grid-template-columns: repeat(2,1fr); } }
@media (min-width:1024px){ .process-grid{ grid-template-columns: repeat(4,1fr); } }
.process-card{ height:100%; border-radius: var(--r-3xl); padding:28px; will-change: transform; transition: transform .45s cubic-bezier(.2,.8,.2,1), border-color .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s cubic-bezier(.2,.8,.2,1), background .45s cubic-bezier(.2,.8,.2,1); }
.process-card:hover{ transform: translateY(-8px) !important; border-color: rgba(212,166,87,45%); box-shadow: 0 20px 45px -15px rgba(0,0,0,.5); background: var(--glass-strong); }
.process-card .num{ display:inline-block; transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.process-card:hover .num{ transform: scale(1.15); }
.process-card .num{ font-family: var(--font-display); font-size:30px; }
.process-card h3{ margin:12px 0 8px; font-size:20px; }
.process-card p{ margin:0; font-size:14px; color: var(--muted-foreground); }

/* ===== Work / case studies ===== */
.work-feature{ display:grid; gap:40px; border-radius: var(--r-3xl); padding:32px; }
@media (min-width:1024px){ .work-feature{ grid-template-columns: 1.2fr .8fr; padding:48px; } }
.work-feature-tag{ display:inline-block; margin-bottom:12px; border-radius:999px; border:1px solid rgba(212,166,87,40%); padding:4px 12px; font-size:11px; font-weight:600; letter-spacing:.15em; text-transform:uppercase; color: var(--primary); }
.work-feature h3{ margin: 0 0 16px; font-size:30px; font-weight:300; }
@media (min-width:1024px){ .work-feature h3{ font-size:34px; } }
.work-feature p{ margin:0 0 28px; font-size:15px; color: var(--muted-foreground); }
.work-feature-stats{ display:grid; gap:16px; }
.work-stat{ border-radius: var(--r-2xl); padding:20px; }
.work-stat b{ display:block; font-family: var(--font-display); font-size:30px; color: var(--primary); }
.work-stat b, .work-stat b *{ font-size:30px !important; font-weight:600 !important; color: var(--primary) !important; font-family: var(--font-display) !important; }
.work-stat span{ font-size:13px; color: var(--muted-foreground); }
.work-feature-note{ margin-top:16px; font-size:12px; color: rgba(184,175,158,70%); }

.cases-grid{ margin-top:24px; display:grid; gap:20px; grid-template-columns:1fr; }
@media (min-width:1024px){ .cases-grid{ grid-template-columns: repeat(3,1fr); } }
.case-card{ position:relative; display:flex; min-height:340px; flex-direction:column; justify-content:flex-end; overflow:hidden; border-radius: var(--r-3xl); border:1px solid var(--border); will-change: transform; transition: transform .45s cubic-bezier(.2,.8,.2,1), border-color .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s cubic-bezier(.2,.8,.2,1); }
.case-card:hover{ transform: translateY(-10px) !important; border-color: rgba(212,166,87,55%); box-shadow: 0 25px 55px -12px rgba(0,0,0,.65); }
.case-card img{ position:absolute; inset:0; height:100%; width:100%; object-fit:cover; opacity:.8; transition: transform .7s; }
.case-card:hover img{ transform: scale(1.1); }
.case-card::after{ content:""; position:absolute; inset:0; background: linear-gradient(to bottom, rgba(13,11,20,20%), rgba(13,11,20,55%), rgba(13,11,20,95%)); }
.case-card-body{ position:relative; padding:28px; background: linear-gradient(to top, rgba(13,11,20,98%) 0%, rgba(13,11,20,94%) 55%, rgba(13,11,20,75%) 90%, rgba(13,11,20,40%)); }
.case-card-body::before{ content:""; position:absolute; inset:-20px -10px -10px; background: radial-gradient(ellipse at bottom left, rgba(13,11,20,70%) 0%, rgba(13,11,20,30%) 60%, transparent 85%); pointer-events:none; z-index:0; }
.case-card-body > *{ position:relative; z-index:1; }
.case-card-body .tag{ font-size:11px; font-weight:700; letter-spacing:.15em; text-transform:uppercase; color: var(--accent); text-shadow: 0 2px 12px rgba(0,0,0,.8), 0 1px 3px rgba(0,0,0,.9); }
.case-card-body h3{ margin:4px 0 8px; font-size:20px; text-shadow: 0 4px 24px rgba(0,0,0,.85), 0 2px 6px rgba(0,0,0,.9); }
.case-card-body p{ margin:0 0 16px; font-size:14px; color: var(--foreground); text-shadow: 0 2px 12px rgba(0,0,0,.8), 0 1px 3px rgba(0,0,0,.9); }
.case-card-body .metric{ font-family: var(--font-display); font-size:36px; font-weight:700; display:inline-block; filter: drop-shadow(0 2px 10px rgba(0,0,0,.8)) drop-shadow(0 1px 3px rgba(0,0,0,.9)); }
.work-footnote{ margin-top:20px; text-align:center; font-size:12.5px; color: rgba(184,175,158,70%); }

/* ===== About ===== */
.about-grid{ display:grid; gap:48px; align-items:center; grid-template-columns:1fr; }
@media (min-width:1024px){ .about-grid{ grid-template-columns: .42fr 1fr .75fr; } }
.about-photo{ position:relative; display:none; }
@media (min-width:1024px){ .about-photo{ display:block; } }
.about-photo-glow{ position:absolute; inset:-16px; border-radius: var(--r-3xl); background: rgba(212,166,87,10%); filter: blur(32px); }
.about-photo img{ position:relative; width:100%; border-radius: var(--r-3xl); border:1px solid var(--border); object-fit:cover; filter: grayscale(1); aspect-ratio: 896/1152; }
.about-text h2{ margin-bottom:20px; font-size:36px; }
@media (min-width:1024px){ .about-text h2{ font-size:38px; } }
.about-text p{ margin:0 0 16px; font-size:15px; color: var(--muted-foreground); }
.about-tags{ display:flex; flex-wrap:wrap; gap:8px; }
.about-tags span{ border-radius:999px; padding:6px 16px; font-size:12.5px; color: var(--muted-foreground); }
.about-facts{ border-radius: var(--r-3xl); padding: 12px 28px; }
.about-fact{ display:flex; align-items:flex-start; justify-content:space-between; gap:16px; padding:14px 0; border-bottom:1px solid var(--border); }
.about-fact:last-child{ border-bottom:none; }
.about-fact span:first-child{ font-size:13px; color: var(--muted-foreground); }
.about-fact span:last-child{ text-align:right; font-size:13px; font-weight:500; }

/* ===== Testimonials ===== */
.testimonials-grid{ display:grid; gap:20px; grid-template-columns:1fr; }
@media (min-width:1024px){ .testimonials-grid{ grid-template-columns: repeat(3,1fr); } }
.testimonial-card{ display:flex; height:100%; flex-direction:column; justify-content:space-between; border-radius: var(--r-3xl); padding:32px; will-change: transform; transition: transform .45s cubic-bezier(.2,.8,.2,1), border-color .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s cubic-bezier(.2,.8,.2,1), background .45s cubic-bezier(.2,.8,.2,1); }
.testimonial-card:hover{ transform: translateY(-8px) !important; border-color: rgba(212,166,87,45%); box-shadow: 0 20px 45px -15px rgba(0,0,0,.5); background: var(--glass-strong); }
.testimonial-card p{ margin:0 0 28px; font-size:15px; color: var(--muted-foreground); font-style:italic; }
.testimonial-person{ display:flex; align-items:center; gap:12px; }
.testimonial-avatar{ font-family: var(--font-display); display:flex; align-items:center; justify-content:center; width:44px; height:44px; border-radius:999px; background: linear-gradient(135deg, var(--primary), var(--accent)); color: var(--primary-foreground); font-size:14px; font-weight:600; }
.testimonial-person b{ display:block; font-size:14px; }
.testimonial-person span{ font-size:12px; color: var(--muted-foreground); }

/* ===== FAQ ===== */
.faq-wrap{ max-width:880px; margin:0 auto; padding:0 24px; }
@media (min-width:1024px){ .faq-wrap{ padding:0 32px; } }
.faq-list{ border-radius: var(--r-3xl); padding: 0 28px; }
.faq-item{ padding:20px 0; border-bottom:1px solid var(--border); }
.faq-item:last-child{ border-bottom:none; }
.faq-q{ display:flex; width:100%; align-items:center; justify-content:space-between; gap:16px; text-align:left; }
.faq-q span:first-child{ font-size:15px; font-weight:500; }
.faq-icon{ font-family: var(--font-display); font-size:24px; color: var(--primary); transition: transform .3s; }
.faq-item.open .faq-icon{ transform: rotate(45deg); }
.faq-a-wrap{ display:grid; grid-template-rows:0fr; opacity:0; transition: all .4s; }
.faq-item.open .faq-a-wrap{ grid-template-rows:1fr; opacity:1; margin-top:12px; }
.faq-a-inner{ overflow:hidden; }
.faq-a-inner p{ margin:0; font-size:14px; color: var(--muted-foreground); }

/* ===== Contact CTA ===== */
.cta-box{ position:relative; overflow:hidden; border-radius:40px; border:1px solid var(--border); transition: border-color .4s, box-shadow .4s; }
.cta-box:hover{ border-color: rgba(212,166,87,50%); box-shadow: 0 25px 60px -12px rgba(0,0,0,.6); }
.cta-box:hover img{ transform: scale(1.06); }
.cta-box img{ position:absolute; inset:0; height:100%; width:100%; object-fit:cover; opacity:.85; transition: transform .6s ease; }
.cta-box::after{ content:""; position:absolute; inset:0; background: linear-gradient(to bottom, rgba(13,11,20,35%), rgba(13,11,20,25%), rgba(13,11,20,55%)); pointer-events:none; transition: background .4s; }
.cta-inner{ position:relative; padding:64px 32px; text-align:center; }
.cta-inner::before{ content:""; position:absolute; inset:-20px -40px; background: radial-gradient(ellipse at center, rgba(13,11,20,55%) 0%, rgba(13,11,20,25%) 55%, transparent 80%); pointer-events:none; z-index:0; }
.cta-inner > *{ position:relative; z-index:1; }
@media (min-width:1024px){ .cta-inner{ padding:80px 32px; } }
.cta-inner h2{ max-width:640px; margin:0 auto; font-size:36px; font-weight:300; text-shadow: 0 4px 24px rgba(0,0,0,.85), 0 2px 6px rgba(0,0,0,.9); }
@media (min-width:1024px){ .cta-inner h2{ font-size:44px; } }
.cta-inner > p{ max-width:520px; margin:16px auto 0; font-size:15.5px; color: var(--foreground); text-shadow: 0 2px 12px rgba(0,0,0,.8), 0 1px 3px rgba(0,0,0,.9); }
.cta-buttons{ margin-top:36px; display:flex; flex-wrap:wrap; justify-content:center; gap:16px; }

/* ===== Footer ===== */
.footer{ border-top:1px solid var(--border); padding: 64px 0 32px; }
.footer-grid{ display:grid; gap:40px; grid-template-columns:1fr; }
@media (min-width:768px){ .footer-grid{ grid-template-columns: 1.3fr .7fr .8fr 1fr; } }
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.footer-brand span.name{ font-family: var(--font-display); font-size:18px; font-weight:600; }
.footer-col p.desc{ max-width:280px; font-size:14px; color: var(--muted-foreground); }
.footer-socials{ margin-top:20px; display:flex; gap:12px; }
.footer-social{ display:flex; align-items:center; justify-content:center; width:36px; height:36px; border-radius:999px; font-size:12px; font-weight:600; color: var(--muted-foreground); transition: color .2s, border-color .2s; }
.footer-social:hover{ color: var(--primary); border-color: var(--primary); }
.footer-heading{ margin:0 0 16px; font-size:12px; font-weight:600; letter-spacing:.15em; text-transform:uppercase; color: var(--muted-foreground); }
.footer-links{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px; font-size:14px; color: var(--muted-foreground); }
.footer-links a{ transition: color .2s; }
.footer-links a:hover{ color: var(--foreground); }
.footer-wa{ margin-top:16px; display:inline-flex; border-radius:999px; padding:10px 20px; font-size:12px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; transition: color .2s, border-color .2s; }
.footer-wa:hover{ color: var(--primary); border-color: var(--primary); }
.footer-bottom{ margin-top:48px; display:flex; flex-direction:column; align-items:center; justify-content:space-between; gap:12px; border-top:1px solid var(--border); padding-top:24px; font-size:12px; color: var(--muted-foreground); }
@media (min-width:640px){ .footer-bottom{ flex-direction:row; } }



/* Timeline (About page) */
.timeline{ position:relative; max-width:640px; margin-top:16px; padding-left:44px; }
.timeline::before{ content:""; position:absolute; left:9px; top:8px; bottom:8px; width:2px; background: linear-gradient(to bottom, var(--primary), var(--accent), rgba(212,166,87,10%)); }
.timeline-item{ position:relative; padding-bottom:44px; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-dot{ position:absolute; left:-44px; top:4px; width:20px; height:20px; border-radius:999px; background: var(--background); border:2px solid var(--accent); box-shadow: 0 0 0 4px rgba(212,166,87,12%); }
.timeline-dot::after{ content:""; position:absolute; inset:4px; border-radius:999px; background: linear-gradient(135deg, var(--primary), var(--accent)); }
.timeline-year{ display:inline-block; font-family: var(--font-display); font-size:12px; font-weight:700; letter-spacing:.08em; color: var(--accent); margin-bottom:10px; }
.timeline-card{ border-radius: var(--r-2xl); padding:20px 22px; }
.timeline-date{ font-size:12.5px; color: var(--muted-foreground); }


/* Responsive page-header heading (mobile-safe scaling) */
.page-h1{ font-size: clamp(28px, 8vw, 44px); font-weight:300; line-height:1.1; }

/* Respect reduced-motion preference: pause decorative loops for accessibility + battery */
@media (prefers-reduced-motion: reduce) {
  .chat-bubble, .hero-portrait-card, .hero-portrait-glow, .chat-badge {
    animation: none !important;
  }
  .reveal-base { transition-duration: .01ms !important; }
}


/* Mobile spacing tightening — section padding was fixed desktop-size on all screens */
@media (max-width:640px) {
  .section-pad-lg{ padding: 56px 0 64px; }
  .hero-grid{ gap:40px; }
  .about-grid{ gap:32px; }
  .why-grid{ gap:32px; }
  .container{ padding: 0 20px; }
  .footer{ padding: 48px 0 24px; }
  .hero-inner{ padding: 8px 0 40px; }
}
