/*
Theme Name: EssenceMerch Pro
Theme URI: https://essencemerch.com
Author: EssenceMerch
Description: Premium China Sourcing & Import — Professional Elementor-Ready WordPress Theme. Fully designed, animation-rich, mobile-first.
Version: 4.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GPL v2 or later
Text Domain: essencemerch
Tags: elementor, full-width-template, custom-colors, custom-logo, custom-menu, featured-images, responsive-layout
*/

/* ============================================================
   GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,700&family=Nunito+Sans:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* — Palette — */
  --gold:         #C8A96E;
  --gold-2:       #D4B87A;
  --gold-light:   #E8D5B0;
  --gold-pale:    #FBF6EE;
  --gold-dark:    #9E7F38;
  --green:        #2D4A3E;
  --green-2:      #3A5E50;
  --green-light:  #4A7A68;
  --green-pale:   #EAF5F1;
  --cream:        #FAFAF8;
  --cream-2:      #F5F2EC;
  --cream-3:      #EDE9E1;
  --white:        #FFFFFF;
  --dark:         #111C17;
  --text:         #1A2B24;
  --text-2:       #2E4238;
  --text-mid:     #4A5E55;
  --text-soft:    #7A8E85;
  --text-muted:   #A8B8B0;
  --border:       #E2DDD4;
  --border-2:     #EDE9E1;

  /* — Shadows — */
  --s-xs: 0 1px 4px rgba(45,74,62,.06);
  --s-sm: 0 2px 14px rgba(45,74,62,.08);
  --s-md: 0 8px 36px rgba(45,74,62,.13);
  --s-lg: 0 20px 64px rgba(45,74,62,.17);
  --s-xl: 0 32px 96px rgba(45,74,62,.22);
  --s-gold: 0 8px 32px rgba(200,169,110,.35);
  --s-gold-lg: 0 16px 48px rgba(200,169,110,.45);

  /* — Radii — */
  --r-xs: 6px; --r-sm: 10px; --r-md: 18px;
  --r-lg: 26px; --r-xl: 36px; --r-full: 999px;

  /* — Transitions — */
  --ease:    all .3s cubic-bezier(.4,0,.2,1);
  --ease-bounce: all .4s cubic-bezier(.34,1.56,.64,1);
  --ease-slow: all .6s cubic-bezier(.4,0,.2,1);

  /* — Typography — */
  --font-h: 'Playfair Display', Georgia, serif;
  --font-b: 'Nunito Sans', -apple-system, 'Segoe UI', sans-serif;

  /* — Sizes — */
  --max-w: 1240px;
  --header-h: 80px;
}

/* ============================================================
   BASE RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-b);
  background: var(--cream);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img  { max-width: 100%; height: auto; display: block; }
a    { transition: var(--ease); color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   ELEMENTOR COMPATIBILITY
   ============================================================ */
.elementor-page .entry-title,
.elementor-page .page-title-wrap,
.elementor-page > .site-content > .page-header { display: none !important; }
.elementor-section-stretched { left: 0 !important; width: 100% !important; }
.elementor-widget-heading .elementor-heading-title { font-family: var(--font-h); }
.elementor-button { font-family: var(--font-b) !important; }
.e-con-inner { padding-left: 0 !important; padding-right: 0 !important; }
body.elementor-editor-active .em-header { position: relative !important; z-index: 1 !important; }
body.elementor-editor-active .em-wa-float,
body.elementor-editor-active .em-preloader { display: none !important; }

/* ============================================================
   PRELOADER
   ============================================================ */
.em-preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--green);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.em-preloader.done { opacity: 0; visibility: hidden; }
.em-pre-logo { font-family: var(--font-h); font-size: 2rem; font-weight: 800; color: var(--gold-light); letter-spacing: -.02em; margin-bottom: 32px; }
.em-pre-bar { width: 200px; height: 3px; background: rgba(255,255,255,.15); border-radius: 3px; overflow: hidden; }
.em-pre-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-2)); border-radius: 3px; animation: preLoad 1.6s ease forwards; }
@keyframes preLoad { 0%{width:0} 100%{width:100%} }

/* ============================================================
   HEADER
   ============================================================ */
.em-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  background: rgba(250,250,248,.0);
  transition: background .4s ease, box-shadow .4s ease, backdrop-filter .4s ease;
}
.em-header.scrolled {
  background: rgba(250,250,248,.97);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 1px 0 var(--border-2), var(--s-sm);
}
.em-header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 16px;
}

/* Logo */
.em-logo { display: flex; align-items: center; gap: 13px; text-decoration: none; flex-shrink: 0; }
.em-logo-mark {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(200,169,110,.4); flex-shrink: 0;
  position: relative; overflow: hidden; transition: var(--ease-bounce);
}
.em-logo-mark::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(255,255,255,.25),transparent); }
.em-logo-mark svg { width: 26px; height: 26px; fill: #fff; position: relative; z-index: 1; }
.em-logo:hover .em-logo-mark { transform: rotate(-8deg) scale(1.08); box-shadow: var(--s-gold); }
.em-logo-text { }
.em-logo-name { font-family: var(--font-h); font-size: 1.45rem; font-weight: 800; color: var(--green); letter-spacing: -.025em; line-height: 1.05; transition: var(--ease); }
.em-logo-sub  { font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 700; line-height: 1; }
.em-header.scrolled .em-logo-name { color: var(--text); }

/* When header transparent (top of page) — white logo */
.em-header:not(.scrolled) .em-logo-name,
.em-header:not(.scrolled) .em-nav-link,
.em-header:not(.scrolled) .em-logo-sub { }

/* Nav */
.em-nav { display: flex; align-items: center; gap: 0; flex: 1; justify-content: center; }
.em-nav-item { position: relative; }
.em-nav-link {
  display: flex; align-items: center; gap: 5px; padding: 9px 16px;
  border-radius: var(--r-sm); font-size: .875rem; font-weight: 600;
  color: var(--text-mid); text-decoration: none; white-space: nowrap;
  transition: var(--ease); position: relative;
}
.em-nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px; background: var(--gold); border-radius: 2px;
  transition: left .25s ease, right .25s ease;
}
.em-nav-link:hover::after, .em-nav-link.cur::after { left: 16px; right: 16px; }
.em-nav-link:hover, .em-nav-link.cur { color: var(--gold); background: rgba(200,169,110,.08); }
.em-nav-arr { width: 11px; height: 11px; transition: transform .22s; }
.em-nav-item:hover .em-nav-arr { transform: rotate(180deg); }

/* Mega dropdown */
.em-drop {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: var(--white); border: 1px solid var(--border-2);
  border-radius: var(--r-md); box-shadow: var(--s-xl);
  min-width: 230px; padding: 10px;
  opacity: 0; visibility: hidden; transition: var(--ease); z-index: 8999;
  pointer-events: none;
}
.em-nav-item:hover .em-drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: all; }
.em-drop-item {
  display: flex; align-items: center; gap: 11px; padding: 10px 14px;
  border-radius: var(--r-sm); font-size: .875rem; color: var(--text-mid);
  font-weight: 500; text-decoration: none; transition: var(--ease);
}
.em-drop-item:hover { background: var(--green-pale); color: var(--green); padding-left: 20px; }
.em-drop-icon { font-size: 1.1rem; width: 26px; text-align: center; }

/* Header CTA */
.em-hcta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Hamburger */
.em-hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 42px; height: 42px; align-items: center; justify-content: center;
  background: var(--cream-2); border-radius: var(--r-sm);
  border: 1px solid var(--border-2); transition: var(--ease);
}
.em-hamburger:hover { background: var(--gold-pale); border-color: var(--gold-light); }
.em-hamburger span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--ease); }
.em-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.em-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.em-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav drawer */
.em-mobile-nav {
  display: none; position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 8998; overflow-y: auto;
  padding: 24px; opacity: 0; transform: translateY(-8px); transition: var(--ease);
}
.em-mobile-nav.open { opacity: 1; transform: translateY(0); }
.em-mobile-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-radius: var(--r-sm); font-size: 1rem;
  font-weight: 600; color: var(--text); border-bottom: 1px solid var(--border-2);
  text-decoration: none; transition: var(--ease);
}
.em-mobile-link:hover { color: var(--gold); background: var(--gold-pale); }
.em-mobile-sub { padding: 8px 0 8px 16px; }
.em-mobile-sub a { display: flex; align-items: center; gap: 10px; padding: 9px 14px; font-size: .9rem; color: var(--text-mid); text-decoration: none; transition: var(--ease); }
.em-mobile-sub a:hover { color: var(--gold); }
.em-mobile-ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.em-wa-float { position: fixed; bottom: 30px; right: 30px; z-index: 9000; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.em-wa-bubble {
  background: var(--white); border-radius: var(--r-md); padding: 12px 16px;
  box-shadow: var(--s-lg); border: 1px solid var(--border-2);
  font-size: .8rem; font-weight: 600; color: var(--text-mid);
  white-space: nowrap; transform: translateX(20px); opacity: 0;
  transition: var(--ease); pointer-events: none;
}
.em-wa-float:hover .em-wa-bubble { transform: translateX(0); opacity: 1; }
.em-wa-btn {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,.5); text-decoration: none;
  position: relative; transition: var(--ease-bounce);
}
.em-wa-btn:hover { transform: scale(1.12); box-shadow: 0 10px 40px rgba(37,211,102,.6); }
.em-wa-btn svg { width: 32px; height: 32px; fill: white; }
.em-wa-ring { position: absolute; inset: -8px; border-radius: 50%; border: 2px solid rgba(37,211,102,.35); animation: waring 2.5s ease-out infinite; }
.em-wa-ring-2 { animation-delay: 1s; }
@keyframes waring { 0%{transform:scale(.85);opacity:1} 100%{transform:scale(1.4);opacity:0} }

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.em-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 9001;
  background: linear-gradient(90deg, var(--gold), var(--gold-2), var(--green));
  width: 0%; transition: width .1s linear;
}

/* ============================================================
   BUTTONS — the complete system
   ============================================================ */
.em-btn {
  display: inline-flex; align-items: center; gap: 9px;
  border-radius: var(--r-full); font-family: var(--font-b);
  font-weight: 700; letter-spacing: .04em; text-decoration: none;
  transition: var(--ease-bounce); cursor: pointer; border: none;
  white-space: nowrap; position: relative; overflow: hidden;
}
.em-btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0); transition: background .2s ease;
}
.em-btn:hover::before { background: rgba(255,255,255,.12); }

/* Sizes */
.em-btn-sm  { padding: 10px 22px; font-size: .82rem; }
.em-btn-md  { padding: 14px 32px; font-size: .9rem; }
.em-btn-lg  { padding: 17px 42px; font-size: 1rem; }
.em-btn-xl  { padding: 20px 52px; font-size: 1.05rem; }

/* Variants */
.em-btn-gold   { background: linear-gradient(135deg,var(--gold),var(--gold-dark)); color:#fff; box-shadow: var(--s-gold); }
.em-btn-gold:hover { transform: translateY(-3px); box-shadow: var(--s-gold-lg); color:#fff; }
.em-btn-gold:active { transform: translateY(-1px); }

.em-btn-green  { background: linear-gradient(135deg,var(--green),var(--green-2)); color:#fff; box-shadow: 0 6px 24px rgba(45,74,62,.32); }
.em-btn-green:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(45,74,62,.44); color:#fff; }

.em-btn-white  { background: #fff; color: var(--green); box-shadow: var(--s-md); }
.em-btn-white:hover { transform: translateY(-3px); box-shadow: var(--s-lg); color: var(--green); }

.em-btn-outline-gold { background: transparent; color: var(--gold); border: 2px solid var(--gold); box-shadow: none; }
.em-btn-outline-gold:hover { background: var(--gold); color: #fff; box-shadow: var(--s-gold); transform: translateY(-2px); }

.em-btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.55); }
.em-btn-outline-white:hover { background: rgba(255,255,255,.18); color: #fff; border-color: rgba(255,255,255,.8); }

.em-btn-wa { background: linear-gradient(135deg,#25D366,#128C7E); color:#fff; box-shadow: 0 6px 22px rgba(37,211,102,.38); }
.em-btn-wa:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(37,211,102,.5); color:#fff; }

/* Icon suffix animation */
.em-btn .em-arr { display: inline-block; transition: transform .25s ease; }
.em-btn:hover .em-arr { transform: translateX(5px); }

/* ============================================================
   ANIMATIONS & KEYFRAMES
   ============================================================ */
@keyframes fadeUp     { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeDown   { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeLeft   { from{opacity:0;transform:translateX(30px)} to{opacity:1;transform:translateX(0)} }
@keyframes fadeRight  { from{opacity:0;transform:translateX(-30px)} to{opacity:1;transform:translateX(0)} }
@keyframes scaleIn    { from{opacity:0;transform:scale(.88)} to{opacity:1;transform:scale(1)} }
@keyframes float      { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes floatAlt   { 0%,100%{transform:translateY(-6px)} 50%{transform:translateY(6px)} }
@keyframes shimmer    { 0%{background-position:-200% 0} 100%{background-position:200% 0} }
@keyframes rotateSlow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes marquee    { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes countUp    { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
@keyframes borderPulse { 0%,100%{border-color:rgba(200,169,110,.3)} 50%{border-color:rgba(200,169,110,.8)} }
@keyframes gradShift  { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }

/* AOS-style scroll reveal */
[data-em-reveal] { opacity: 0; transition: opacity .7s ease, transform .7s ease; }
[data-em-reveal="up"]    { transform: translateY(36px); }
[data-em-reveal="left"]  { transform: translateX(36px); }
[data-em-reveal="right"] { transform: translateX(-36px); }
[data-em-reveal="scale"] { transform: scale(.92); }
[data-em-reveal].revealed { opacity: 1; transform: none; }

/* Staggered children */
[data-em-stagger] > * { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
[data-em-stagger] > *.revealed { opacity: 1; transform: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-h); color: var(--text); line-height: 1.18; font-weight: 700; }
h1 { font-size: clamp(2.4rem,5vw,4.2rem); }
h2 { font-size: clamp(1.9rem,3.5vw,3rem); }
h3 { font-size: clamp(1.3rem,2.5vw,1.9rem); }
h4 { font-size: 1.25rem; }
p  { color: var(--text-mid); line-height: 1.8; }

/* Section labels */
.em-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .68rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); background: rgba(200,169,110,.12);
  padding: 6px 16px; border-radius: var(--r-full); border: 1px solid rgba(200,169,110,.28);
  margin-bottom: 16px;
}
.em-label-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: borderPulse 2s ease infinite; }
.em-label-dark { color: rgba(255,255,255,.8); background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }

/* Gradient headline */
.em-grad-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  background-size: 200% 200%; animation: gradShift 5s ease infinite;
}

/* Underline accent */
.em-line-accent {
  display: inline; background-image: linear-gradient(135deg,var(--gold),var(--gold-light));
  background-size: 100% 4px; background-repeat: no-repeat;
  background-position: 0 100%; padding-bottom: 2px;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.em-container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.em-section    { padding: 110px 0; }
.em-section-sm { padding: 70px 0; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.em-hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(145deg, #F4F1EA 0%, #EDF4F0 55%, #E5F2EC 100%);
  padding-top: var(--header-h);
}

/* Animated background orbs */
.em-hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
  pointer-events: none; animation: float 8s ease-in-out infinite;
}
.em-hero-orb-1 { width: 600px; height: 600px; background: rgba(200,169,110,.12); top: -200px; right: -150px; animation-duration: 10s; }
.em-hero-orb-2 { width: 400px; height: 400px; background: rgba(45,74,62,.08);  bottom: -100px; left: -100px; animation-duration: 12s; animation-delay: -3s; }
.em-hero-orb-3 { width: 300px; height: 300px; background: rgba(200,169,110,.08); top: 40%; left: 40%; animation-duration: 9s; animation-delay: -5s; }

/* Grid pattern */
.em-hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(45,74,62,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(45,74,62,.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

.em-hero-inner {
  position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; padding: 80px 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

/* Hero text */
.em-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,169,110,.12); border: 1px solid rgba(200,169,110,.3);
  padding: 7px 18px 7px 9px; border-radius: var(--r-full);
  font-size: .78rem; font-weight: 700; color: var(--gold-dark);
  margin-bottom: 24px; animation: fadeDown .7s ease;
}
.em-hero-badge-icon { width: 28px; height: 28px; background: linear-gradient(135deg,var(--gold),var(--gold-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .85rem; flex-shrink: 0; }
.em-hero-h1 { animation: fadeUp .8s .1s both; }
.em-hero-p  { font-size: 1.05rem; color: var(--text-mid); line-height: 1.85; max-width: 500px; margin: 20px 0 36px; animation: fadeUp .8s .2s both; }
.em-hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; animation: fadeUp .8s .3s both; }
.em-hero-stats { display: flex; gap: 40px; margin-top: 52px; padding-top: 40px; border-top: 1px solid var(--border-2); animation: fadeUp .8s .4s both; flex-wrap: wrap; }
.em-hero-stat-n { font-family: var(--font-h); font-size: 2.2rem; font-weight: 800; color: var(--green); line-height: 1; }
.em-hero-stat-n span { color: var(--gold); }
.em-hero-stat-l { font-size: .72rem; text-transform: uppercase; letter-spacing: .09em; color: var(--text-soft); font-weight: 700; margin-top: 5px; }

/* Hero visual */
.em-hero-visual { position: relative; animation: scaleIn .9s .2s both; }
.em-hero-img-wrap {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--s-xl);
}
.em-hero-img-main {
  width: 100%; height: 520px; object-fit: cover;
  transition: transform .8s ease;
}
.em-hero-img-wrap:hover .em-hero-img-main { transform: scale(1.04); }
.em-hero-img-placeholder {
  width: 100%; height: 520px;
  background: linear-gradient(145deg, #E0D0B0 0%, var(--gold) 35%, var(--green) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: white; gap: 16px; position: relative; overflow: hidden;
}
.em-hero-img-placeholder::before { content: ''; position: absolute; width: 350px; height: 350px; border-radius: 50%; background: rgba(255,255,255,.07); top: -120px; right: -80px; }
.em-hero-img-placeholder::after  { content: ''; position: absolute; width: 250px; height: 250px; border-radius: 50%; background: rgba(255,255,255,.05); bottom: -80px; left: -60px; }
.em-hero-placeholder-icon { font-size: 5rem; position: relative; z-index: 1; animation: float 4s ease infinite; }
.em-hero-placeholder-text { font-family: var(--font-h); font-size: 1.6rem; font-weight: 700; position: relative; z-index: 1; text-align: center; }
.em-hero-placeholder-sub  { font-size: .9rem; opacity: .82; position: relative; z-index: 1; }

/* Float cards */
.em-fc {
  position: absolute; background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px); border-radius: var(--r-md);
  padding: 14px 18px; box-shadow: var(--s-lg);
  border: 1px solid rgba(255,255,255,.8);
  display: flex; align-items: center; gap: 12px;
  animation: float 5s ease-in-out infinite;
}
.em-fc-1 { bottom: 40px; left: -40px; animation-delay: 0s; }
.em-fc-2 { top: 40px; right: -30px; animation-delay: -2.5s; }
.em-fc-3 { bottom: 130px; right: -25px; animation-delay: -1.2s; font-size: .8rem; }
.em-fc-icon { width: 42px; height: 42px; border-radius: 11px; background: linear-gradient(135deg,var(--gold-light),var(--gold)); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.em-fc-title { font-size: .88rem; font-weight: 800; color: var(--text); line-height: 1.1; }
.em-fc-sub   { font-size: .72rem; color: var(--text-soft); margin-top: 1px; }

/* ============================================================
   MARQUEE TICKER
   ============================================================ */
.em-ticker { background: var(--green); padding: 16px 0; overflow: hidden; }
.em-ticker-track { display: flex; width: max-content; animation: marquee 35s linear infinite; }
.em-ticker-track:hover { animation-play-state: paused; }
.em-ticker-item { display: flex; align-items: center; gap: 12px; padding: 0 32px; color: rgba(255,255,255,.78); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.em-ticker-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ============================================================
   SECTION INTROS
   ============================================================ */
.em-section-intro { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.em-section-intro.left { text-align: left; margin-left: 0; }
.em-section-intro h2 { margin-bottom: 14px; }
.em-section-intro p  { font-size: 1.05rem; }

/* ============================================================
   CATEGORIES / ICON BOXES
   ============================================================ */
.em-cats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.em-cat-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 34px 30px; border: 1px solid var(--border-2);
  transition: var(--ease); position: relative; overflow: hidden;
  cursor: pointer; group: true;
}
.em-cat-card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--r-lg);
  background: linear-gradient(145deg, rgba(200,169,110,.04), rgba(45,74,62,.03));
  opacity: 0; transition: var(--ease);
}
.em-cat-card::after {
  content: '→'; position: absolute; top: 28px; right: 26px;
  width: 34px; height: 34px; background: var(--cream-2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--text-muted); transition: var(--ease-bounce);
  line-height: 34px; text-align: center;
}
.em-cat-card:hover { transform: translateY(-8px); box-shadow: var(--s-lg); border-color: var(--gold-light); }
.em-cat-card:hover::before { opacity: 1; }
.em-cat-card:hover::after  { background: var(--gold); color: #fff; transform: rotate(-40deg); right: 22px; top: 24px; }

.em-cat-icon {
  width: 66px; height: 66px; border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin-bottom: 22px;
  transition: var(--ease-bounce);
}
.em-cat-card:hover .em-cat-icon { transform: scale(1.12) rotate(-8deg); background: linear-gradient(135deg,var(--gold),var(--gold-dark)); }
.em-cat-title { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 9px; }
.em-cat-desc  { font-size: .875rem; color: var(--text-soft); line-height: 1.65; margin: 0; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.em-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.em-about-visual { position: relative; }
.em-about-img-wrap { position: relative; padding: 24px 24px 0 0; }
.em-about-img, .em-about-placeholder {
  width: 100%; height: 460px; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--s-xl);
}
.em-about-placeholder {
  background: linear-gradient(145deg, var(--green-pale) 0%, var(--gold-light) 50%, var(--gold) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; color: var(--green);
}
.em-about-placeholder-icon { font-size: 5.5rem; animation: float 4s ease-in-out infinite; }

.em-about-badge {
  position: absolute; top: 0; right: 0; z-index: 2;
  background: linear-gradient(135deg,var(--green),var(--green-2));
  border-radius: var(--r-md); padding: 22px 20px;
  text-align: center; color: #fff; box-shadow: var(--s-md);
  min-width: 130px;
}
.em-about-badge-n { font-family: var(--font-h); font-size: 2.5rem; font-weight: 800; color: var(--gold-light); line-height: 1; }
.em-about-badge-t { font-size: .68rem; opacity: .8; letter-spacing: .07em; text-transform: uppercase; line-height: 1.4; margin-top: 5px; }

.em-about-img-tag {
  position: absolute; bottom: 28px; left: -20px; z-index: 2;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  border-radius: var(--r-md); padding: 12px 18px;
  box-shadow: var(--s-md); display: flex; align-items: center; gap: 10px;
  border: 1px solid rgba(255,255,255,.9); animation: float 5s ease-in-out infinite;
}
.em-about-tag-icon { width: 36px; height: 36px; background: linear-gradient(135deg,var(--gold-light),var(--gold)); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.em-about-tag-title { font-size: .84rem; font-weight: 800; color: var(--text); }
.em-about-tag-sub   { font-size: .7rem; color: var(--text-soft); }

/* Features */
.em-features { display: flex; flex-direction: column; gap: 20px; margin: 32px 0 36px; }
.em-feature {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px; border-radius: var(--r-md);
  border: 1px solid transparent; transition: var(--ease); cursor: default;
}
.em-feature:hover { background: var(--gold-pale); border-color: var(--gold-light); transform: translateX(6px); }
.em-feature-icon { width: 48px; height: 48px; border-radius: 13px; background: linear-gradient(135deg,var(--gold-light),rgba(200,169,110,.2)); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; transition: var(--ease-bounce); }
.em-feature:hover .em-feature-icon { transform: scale(1.1) rotate(-6deg); background: linear-gradient(135deg,var(--gold),var(--gold-dark)); }
.em-feature-title { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.em-feature-desc  { font-size: .84rem; color: var(--text-soft); line-height: 1.6; }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.em-process-section { background: linear-gradient(145deg,var(--green) 0%,var(--green-2) 100%); position: relative; overflow: hidden; }
.em-process-section::before { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: rgba(200,169,110,.06); top: -200px; left: -150px; }
.em-process-section::after  { content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,.03); bottom: -100px; right: -100px; }
.em-process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; position: relative; z-index: 1; }
.em-process-grid::before { content: ''; position: absolute; top: 33px; left: 12%; width: 76%; height: 2px; background: linear-gradient(90deg,transparent,rgba(200,169,110,.45),transparent); pointer-events: none; }
.em-step { text-align: center; transition: var(--ease); }
.em-step-num {
  width: 66px; height: 66px; border-radius: 50%;
  background: rgba(200,169,110,.12); border: 2px solid rgba(200,169,110,.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; font-family: var(--font-h); font-size: 1.5rem;
  font-weight: 800; color: var(--gold); position: relative; z-index: 1;
  transition: var(--ease-bounce);
}
.em-step:hover .em-step-num { background: var(--gold); color: #fff; border-color: var(--gold); transform: scale(1.1); box-shadow: var(--s-gold); }
.em-step-icon { font-size: 1.5rem; margin-bottom: 10px; display: block; }
.em-step-title { font-family: var(--font-h); font-size: 1.05rem; color: #fff; font-weight: 700; margin-bottom: 10px; }
.em-step-desc  { font-size: .84rem; color: rgba(255,255,255,.6); line-height: 1.65; }

/* ============================================================
   CASE STUDIES
   ============================================================ */
.em-cases-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.em-case {
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border-2); transition: var(--ease);
}
.em-case:hover { transform: translateY(-10px); box-shadow: var(--s-xl); }
.em-case:hover .em-case-img-wrap img { transform: scale(1.06); }
.em-case-img-wrap { height: 210px; overflow: hidden; }
.em-case-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.em-case-placeholder { height: 210px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; font-size: 4rem; }
.em-case-body { padding: 24px 26px; }
.em-case-tags { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.em-case-tag { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; color: #fff; background: linear-gradient(135deg,var(--gold),var(--gold-dark)); padding: 4px 12px; border-radius: var(--r-full); }
.em-case-client { font-size: .75rem; color: var(--text-muted); font-weight: 600; }
.em-case-title { font-family: var(--font-h); font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 9px; line-height: 1.3; }
.em-case-desc  { font-size: .85rem; color: var(--text-soft); line-height: 1.65; margin-bottom: 18px; }
.em-case-metrics { display: flex; gap: 20px; padding-top: 16px; border-top: 1px solid var(--border-2); flex-wrap: wrap; }
.em-metric span { display: block; font-family: var(--font-h); font-size: 1.4rem; font-weight: 800; color: var(--gold); line-height: 1; }
.em-metric small { font-size: .68rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.em-tgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.em-tcard {
  background: var(--white); border-radius: var(--r-lg);
  padding: 30px; border: 1px solid var(--border-2);
  transition: var(--ease); position: relative;
}
.em-tcard:hover { transform: translateY(-6px); box-shadow: var(--s-lg); border-color: var(--gold-light); }
.em-tcard::before { content: '"'; position: absolute; top: 20px; right: 24px; font-family: Georgia,serif; font-size: 5rem; line-height: 1; color: var(--gold); opacity: .12; pointer-events: none; }
.em-stars { color: var(--gold); font-size: .75rem; letter-spacing: 3px; margin-bottom: 14px; }
.em-ttext { font-style: italic; color: var(--text-mid); line-height: 1.85; font-size: .9rem; margin-bottom: 22px; }
.em-tauthor { display: flex; align-items: center; gap: 13px; }
.em-tavatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg,var(--gold-light),var(--gold)); display: flex; align-items: center; justify-content: center; font-family: var(--font-h); font-size: 1.2rem; font-weight: 700; color: var(--green); flex-shrink: 0; }
.em-tname { font-weight: 800; font-size: .92rem; color: var(--text); }
.em-trole { font-size: .76rem; color: var(--text-soft); }

/* ============================================================
   STATS BAR
   ============================================================ */
.em-stats-section { background: linear-gradient(135deg,var(--green),var(--green-2)); position: relative; overflow: hidden; }
.em-stats-section::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.em-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; z-index: 1; }
.em-stat-item { text-align: center; padding: 50px 24px; border-right: 1px solid rgba(255,255,255,.1); transition: var(--ease); }
.em-stat-item:last-child { border-right: none; }
.em-stat-item:hover { background: rgba(255,255,255,.05); }
.em-stat-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.em-stat-num { font-family: var(--font-h); font-size: 3rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 8px; }
.em-stat-num .gold { color: var(--gold); }
.em-stat-lbl { font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.6); font-weight: 700; }

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.em-filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 44px; justify-content: center; }
.em-filter-btn { padding: 10px 22px; border-radius: var(--r-full); font-size: .84rem; font-weight: 700; border: 1.5px solid var(--border); background: var(--white); color: var(--text-mid); transition: var(--ease-bounce); cursor: pointer; }
.em-filter-btn:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.em-filter-btn.active { background: linear-gradient(135deg,var(--gold),var(--gold-dark)); color: #fff; border-color: transparent; box-shadow: var(--s-gold); }
.em-products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.em-pcard { background: var(--white); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border-2); transition: var(--ease); }
.em-pcard:hover { transform: translateY(-8px); box-shadow: var(--s-xl); }
.em-pcard:hover .em-pimg-wrap { transform: scale(1.03); }
.em-pimg-outer { height: 220px; overflow: hidden; }
.em-pimg-wrap  { height: 220px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; font-size: 4rem; transition: transform .5s ease; }
.em-pbody { padding: 22px 24px; }
.em-pcat  { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: 7px; }
.em-pname { font-family: var(--font-h); font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 9px; }
.em-pdesc { font-size: .84rem; color: var(--text-soft); line-height: 1.62; margin-bottom: 18px; }
.em-pfoot { display: flex; align-items: center; justify-content: space-between; }
.em-pmoq  { font-size: .72rem; color: var(--text-muted); font-weight: 700; display: flex; align-items: center; gap: 4px; }
.em-pmoq::before { content: '•'; color: var(--gold); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.em-values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.em-vcard { background: var(--white); border-radius: var(--r-md); padding: 28px; border: 1px solid var(--border-2); display: flex; gap: 16px; transition: var(--ease); }
.em-vcard:hover { transform: translateY(-5px); box-shadow: var(--s-md); border-color: var(--gold-light); }
.em-vicon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg,var(--gold-pale),var(--gold-light)); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; transition: var(--ease-bounce); }
.em-vcard:hover .em-vicon { transform: rotate(-8deg) scale(1.1); background: linear-gradient(135deg,var(--gold),var(--gold-dark)); }
.em-vcard-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.em-vcard-desc  { font-size: .855rem; color: var(--text-soft); line-height: 1.65; }

.em-team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.em-tmcard { text-align: center; background: var(--white); border-radius: var(--r-lg); padding: 34px 24px; border: 1px solid var(--border-2); transition: var(--ease); }
.em-tmcard:hover { transform: translateY(-8px); box-shadow: var(--s-xl); }
.em-tmavatar { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 18px; background: linear-gradient(135deg,var(--gold-light),var(--gold)); display: flex; align-items: center; justify-content: center; font-family: var(--font-h); font-size: 2.2rem; font-weight: 700; color: var(--green); box-shadow: var(--s-gold); transition: var(--ease-bounce); }
.em-tmcard:hover .em-tmavatar { transform: scale(1.1); }
.em-tmname { font-family: var(--font-h); font-size: 1.08rem; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.em-tmrole { font-size: .82rem; color: var(--gold); font-weight: 700; margin-bottom: 14px; }
.em-tmbio  { font-size: .85rem; color: var(--text-soft); line-height: 1.65; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.em-contact-grid { display: grid; grid-template-columns: 1fr 1.65fr; gap: 60px; align-items: start; }
.em-contact-info h3 { font-size: 1.7rem; margin-bottom: 10px; }
.em-contact-info > p { color: var(--text-mid); margin-bottom: 34px; }
.em-cinfo-list { display: flex; flex-direction: column; }
.em-cinfo-item { display: flex; gap: 16px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--border-2); transition: var(--ease); cursor: default; }
.em-cinfo-item:last-child { border-bottom: none; }
.em-cinfo-item:hover { padding-left: 6px; }
.em-cinfo-icon { width: 50px; height: 50px; border-radius: 14px; background: linear-gradient(135deg,var(--gold-pale),var(--gold-light)); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; transition: var(--ease-bounce); }
.em-cinfo-item:hover .em-cinfo-icon { transform: scale(1.08) rotate(-5deg); background: linear-gradient(135deg,var(--gold),var(--gold-dark)); }
.em-cinfo-label { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; color: var(--text-soft); margin-bottom: 2px; }
.em-cinfo-value { font-size: .95rem; font-weight: 600; color: var(--text); }
.em-cinfo-value a { color: var(--gold); }

.em-wa-box { background: linear-gradient(135deg,#25D366,#128C7E); border-radius: var(--r-lg); padding: 28px; color: #fff; margin-top: 28px; transition: var(--ease); }
.em-wa-box:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(37,211,102,.38); }
.em-wa-box h4 { color: #fff; font-size: 1.15rem; margin-bottom: 7px; }
.em-wa-box p  { color: rgba(255,255,255,.82); font-size: .875rem; margin-bottom: 18px; }

.em-form-wrap { background: var(--white); border-radius: var(--r-xl); padding: 44px; border: 1px solid var(--border-2); box-shadow: var(--s-sm); }
.em-form-wrap h3 { font-size: 1.5rem; margin-bottom: 6px; }
.em-form-wrap > p { font-size: .875rem; color: var(--text-soft); margin-bottom: 30px; }
.em-fgroup { margin-bottom: 20px; }
.em-flabel { display: block; font-size: .8rem; font-weight: 800; color: var(--text); margin-bottom: 7px; letter-spacing: .03em; }
.em-finput, .em-fselect, .em-ftextarea {
  width: 100%; padding: 13px 18px; border: 1.5px solid var(--border);
  border-radius: var(--r-sm); background: var(--cream); font-family: var(--font-b);
  font-size: .9rem; color: var(--text); transition: var(--ease); outline: none;
  -webkit-appearance: none;
}
.em-finput:focus, .em-fselect:focus, .em-ftextarea:focus { border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(200,169,110,.1); }
.em-ftextarea { resize: vertical; min-height: 128px; }
.em-frow { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.em-fmsg { display: none; padding: 14px 18px; border-radius: var(--r-sm); margin-bottom: 20px; font-size: .9rem; font-weight: 600; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.em-page-hero {
  background: linear-gradient(145deg,#F3F0E9 0%,#EBF3EF 100%);
  padding: calc(var(--header-h) + 60px) 0 70px;
  text-align: center; border-bottom: 1px solid var(--border-2);
  position: relative; overflow: hidden;
}
.em-page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(45,74,62,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(45,74,62,.03) 1px,transparent 1px); background-size: 60px 60px; }
.em-breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; font-size: .8rem; color: var(--text-muted); margin-bottom: 16px; position: relative; z-index: 1; }
.em-breadcrumb a { color: var(--gold); font-weight: 700; }
.em-page-hero h1 { position: relative; z-index: 1; }
.em-page-hero p   { position: relative; z-index: 1; max-width: 540px; margin: 14px auto 0; font-size: 1.05rem; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.em-cta-section { background: linear-gradient(145deg,var(--green) 0%,var(--green-2) 100%); position: relative; overflow: hidden; }
.em-cta-section::before { content: ''; position: absolute; width: 700px; height: 700px; border-radius: 50%; background: rgba(200,169,110,.06); top: -280px; right: -180px; }
.em-cta-section::after  { content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,.03); bottom: -150px; left: -100px; }
.em-cta-inner { text-align: center; position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.em-cta-inner h2 { color: #fff; margin-bottom: 16px; }
.em-cta-inner p  { color: rgba(255,255,255,.72); font-size: 1.05rem; margin-bottom: 36px; }
.em-cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.em-footer { background: var(--dark); }
.em-footer-top { max-width: var(--max-w); margin: 0 auto; padding: 80px 28px 56px; display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 56px; }
.em-footer-brand {}
.em-flogo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; text-decoration: none; }
.em-flogo-mark { width: 44px; height: 44px; background: linear-gradient(135deg,var(--gold),var(--gold-dark)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: #fff; flex-shrink: 0; }
.em-flogo-name { font-family: var(--font-h); font-size: 1.3rem; font-weight: 800; color: #fff; }
.em-fdesc { font-size: .875rem; color: rgba(255,255,255,.45); line-height: 1.8; margin-bottom: 26px; }
.em-fsocials { display: flex; gap: 9px; }
.em-fsoc { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: .9rem; color: rgba(255,255,255,.55); text-decoration: none; transition: var(--ease-bounce); }
.em-fsoc:hover { background: var(--gold); color: #fff; border-color: var(--gold); transform: translateY(-3px) scale(1.05); }
.em-fcol h5 { color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.08); }
.em-flinks { display: flex; flex-direction: column; gap: 10px; }
.em-flinks a { font-size: .875rem; color: rgba(255,255,255,.46); text-decoration: none; transition: var(--ease); display: flex; align-items: center; gap: 7px; }
.em-flinks a::before { content: '›'; color: var(--gold); opacity: 0; transition: var(--ease); }
.em-flinks a:hover { color: rgba(255,255,255,.88); padding-left: 6px; }
.em-flinks a:hover::before { opacity: 1; }
.em-footer-bot { max-width: var(--max-w); margin: 0 auto; padding: 24px 28px; border-top: 1px solid rgba(255,255,255,.07); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.em-footer-bot p { font-size: .79rem; color: rgba(255,255,255,.3); margin: 0; }
.em-footer-bot a { color: var(--gold); text-decoration: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .em-hero-inner    { gap: 50px; }
  .em-cats-grid     { grid-template-columns: repeat(2,1fr); }
  .em-process-grid  { grid-template-columns: repeat(2,1fr); }
  .em-process-grid::before { display: none; }
  .em-stats-grid    { grid-template-columns: repeat(2,1fr); }
  .em-stat-item     { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .em-footer-top    { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --header-h: 70px; }
  .em-hamburger { display: flex; }
  .em-nav, .em-hcta .em-btn-outline-gold { display: none !important; }
  .em-mobile-nav { display: block; }
  .em-hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; padding: 60px 22px; }
  .em-hero-visual { order: -1; }
  .em-hero-img-main, .em-hero-img-placeholder { height: 340px; }
  .em-hero-ctas { justify-content: center; }
  .em-hero-stats { justify-content: center; }
  .em-fc { display: none; }
  .em-about-grid, .em-contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .em-cats-grid, .em-cases-grid, .em-tgrid, .em-products-grid, .em-team-grid { grid-template-columns: 1fr; }
  .em-stats-grid { grid-template-columns: 1fr 1fr; }
  .em-values-grid { grid-template-columns: 1fr; }
  .em-frow { grid-template-columns: 1fr; }
  .em-footer-top { grid-template-columns: 1fr 1fr; gap: 30px; padding: 44px 22px 32px; }
  .em-form-wrap { padding: 26px; }
  .em-section { padding: 72px 0; }
  .em-wa-float { bottom: 20px; right: 18px; }
  .em-wa-bubble { display: none; }
}
@media (max-width: 480px) {
  .em-footer-top { grid-template-columns: 1fr; }
  .em-stats-grid { grid-template-columns: 1fr; }
  .em-hero-stats { flex-direction: column; align-items: center; gap: 20px; }
  .em-cta-btns { flex-direction: column; align-items: center; }
  .em-hero-ctas { flex-direction: column; align-items: center; }
}

/* ============================================================
   WORDPRESS / ELEMENTOR CORE
   ============================================================ */
.wp-block-image img { border-radius: var(--r-md); }
.aligncenter { display: block; margin: 0 auto; }
.screen-reader-text { border:0;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important; }
