/*
  emilycopywriting.com -- style.css
  Theme: Lavender #9B86BD + Navy #1C2B4A + Cream #FEFCF8
  Nav: LEFT SIDEBAR (fixed 200px) - FIRST SIDEBAR NAV in entire series of 24 builds
  Hero: SPLIT LAYOUT (cream text left / editorial image right) - not diagonal, not bento
  Packages: SEED / BLOOM / MEADOW (flower-themed names, first in series)
  Fonts: Fraunces (heading, organic variable) + Work Sans (body)
  CSS prefix: em-
  Multilingual: EN + NL (Dutch/Flemish)
*/
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Work+Sans:wght@300;400;500;600;700;800&display=swap');

/* ======================== TOKENS ======================== */
:root {
  --em-lav:    #9B86BD;
  --em-lav2:   #7A67A3;
  --em-lavlt:  rgba(155,134,189,.1);
  --em-lavlt2: rgba(155,134,189,.06);
  --em-lavbd:  rgba(155,134,189,.28);
  --em-navy:   #1C2B4A;
  --em-navy2:  #111E36;
  --em-navlt:  rgba(28,43,74,.08);
  --em-cream:  #FEFCF8;
  --em-paper:  #F6F1E8;
  --em-sand:   #EDE6D6;
  --em-ink:    #1C2B4A;
  --em-coal:   #2E3A56;
  --em-steel:  #546080;
  --em-muted:  #8090AE;
  --em-dim:    #B8C2D4;
  --em-edge:   #DDE1EC;
  --em-edge2:  #EAEDF6;

  --em-bar:  200px; /* Sidebar width */
  --em-max:  1020px;
  --em-r:    5px;
  --em-r2:   12px;
  --em-r3:   20px;
  --em-r4:   30px;

  --em-fh: 'Fraunces', 'Georgia', serif;
  --em-fb: 'Work Sans', system-ui, -apple-system, sans-serif;

  --em-ease: all 0.22s cubic-bezier(.4,0,.2,1);
  --em-sh1:  0 1px 6px rgba(28,43,74,.05);
  --em-sh2:  0 4px 24px rgba(28,43,74,.10);
  --em-sh3:  0 16px 56px rgba(28,43,74,.18);
  --em-sh4:  0 0 0 3px rgba(155,134,189,.22);
}

/* ======================== RESET ======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--em-cream);
  color: var(--em-ink);
  font-family: var(--em-fb);
  font-size: 1rem;
  line-height: 1.74;
  overflow-x: hidden;
  /* SIDEBAR OFFSET - unique layout approach */
  padding-left: var(--em-bar);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
address { font-style: normal; }

/* ======================== TYPOGRAPHY ======================== */
h1 { font-family: var(--em-fh); font-size: clamp(3rem, 5.5vw, 7rem); font-weight: 700; line-height: .92; letter-spacing: -.025em; }
h2 { font-family: var(--em-fh); font-size: clamp(2rem, 3.2vw, 4rem); font-weight: 700; line-height: 1.0; letter-spacing: -.015em; }
h3 { font-family: var(--em-fh); font-size: 1.25rem; font-weight: 700; }
p  { font-size: .9rem; line-height: 1.88; color: var(--em-steel); }

/* ======================== LEFT SIDEBAR NAV (UNIQUE - first in 24 builds) ======================== */
.em-sidebar {
  position: fixed;
  left: 0; top: 0; bottom: 0;
  width: var(--em-bar);
  background: var(--em-navy);
  z-index: 900;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.4rem;
  overflow-y: auto;
}
/* Logo */
.em-sidebar-logo {
  font-family: var(--em-fh); font-size: .92rem; font-weight: 700;
  color: white; line-height: 1.2; text-decoration: none;
  display: block; margin-bottom: 2.5rem;
}
.em-sidebar-logo span { color: var(--em-lav); display: block; font-size: .7rem; font-weight: 400; font-family: var(--em-fb); letter-spacing: .04em; margin-top: .15rem; opacity: .6; }
/* Nav links */
.em-sidebar-nav { display: flex; flex-direction: column; gap: .08rem; flex: 1; }
.em-sidebar-lk {
  font-family: var(--em-fb); font-size: .88rem; font-weight: 600;
  color: rgba(255,255,255,.38); padding: .5rem .65rem;
  border-radius: var(--em-r); transition: var(--em-ease); display: block;
}
.em-sidebar-lk:hover, .em-sidebar-lk.em-on {
  color: white; background: rgba(255,255,255,.06);
}
.em-sidebar-lk.em-on { color: var(--em-lav); }
/* Language switcher in sidebar */
.em-sidebar-lang { display: flex; gap: .2rem; padding: .5rem .65rem; margin-top: .4rem; }
.em-sidebar-lang-opt { font-family: var(--em-fb); font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.25); padding: .14rem .34rem; border-radius: 4px; cursor: pointer; transition: var(--em-ease); }
.em-sidebar-lang-opt.em-lang-on { color: var(--em-lav); background: rgba(155,134,189,.15); }
.em-sidebar-lang-div { width: 1px; background: rgba(255,255,255,.12); margin: .15rem 0; }
/* Social icons at sidebar bottom */
.em-sidebar-soc { display: flex; gap: .32rem; margin-top: auto; padding-top: 1rem; }
.em-sidebar-soc a { width: 28px; height: 28px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--em-r); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.25); transition: var(--em-ease); }
.em-sidebar-soc a:hover { border-color: var(--em-lav); color: var(--em-lav); }
/* CTA button at sidebar bottom */
.em-sidebar-cta { display: block; text-align: center; font-family: var(--em-fb); font-size: .78rem; font-weight: 700; color: var(--em-navy); background: var(--em-lav); padding: .55rem; border-radius: var(--em-r); margin-top: .65rem; transition: background .15s; }
.em-sidebar-cta:hover { background: var(--em-lav2); }
/* Mobile top bar (replaces sidebar on mobile) */
.em-topbar { display: none; position: fixed; top: 0; left: 0; right: 0; height: 58px; background: var(--em-navy); z-index: 900; align-items: center; justify-content: space-between; padding: 0 1.4rem; }
.em-topbar-logo { font-family: var(--em-fh); font-size: .9rem; font-weight: 700; color: white; }
.em-topbar-logo span { color: var(--em-lav); }
.em-topbar-right { display: flex; align-items: center; gap: .5rem; }
.em-topbar-lang { font-family: var(--em-fb); font-size: .6rem; font-weight: 700; color: rgba(255,255,255,.35); padding: .14rem .3rem; cursor: pointer; }
.em-topbar-lang.em-lang-on { color: var(--em-lav); }
.em-mob-burger { display: flex; flex-direction: column; gap: 4.5px; cursor: pointer; padding: 5px; width: 32px; justify-content: center; }
.em-mob-burger span { width: 20px; height: 1.5px; background: white; display: block; border-radius: 2px; transition: transform .2s, opacity .18s; }
.em-mob-burger.em-bx span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.em-mob-burger.em-bx span:nth-child(2) { opacity: 0; }
.em-mob-burger.em-bx span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
/* Mobile fullscreen overlay */
.em-mob-drawer { position: fixed; inset: 0; background: var(--em-navy2); z-index: 850; transform: translateX(-100%); transition: transform .28s cubic-bezier(.4,0,.2,1); }
.em-mob-drawer.em-open { transform: none; }
.em-mob-drawer-head { height: 58px; display: flex; align-items: center; justify-content: space-between; padding: 0 1.4rem; }
.em-mob-drawer-logo { font-family: var(--em-fh); font-size: .9rem; font-weight: 700; color: white; }
.em-mob-drawer-logo span { color: var(--em-lav); }
.em-mob-drawer-links { padding: 1.5rem 1.4rem; }
.em-mob-drawer-lk { font-family: var(--em-fh); font-size: 2.4rem; font-weight: 700; color: rgba(255,255,255,.12); display: block; padding: .18rem 0; transition: color .14s; }
.em-mob-drawer-lk:hover { color: var(--em-lav); }
.em-mob-drawer-ft { padding: 1.2rem 1.4rem; border-top: 1px solid rgba(255,255,255,.06); display: flex; gap: .5rem; flex-wrap: wrap; }

/* ======================== LAYOUT ======================== */
.em-shell { max-width: var(--em-max); margin: 0 auto; padding: 0 2.5rem; }
.em-slab { padding: 7rem 0; }
.em-slab-sm { padding: 4rem 0; }
.em-badge { display: inline-flex; align-items: center; gap: .38rem; font-family: var(--em-fb); font-size: .54rem; font-weight: 700; text-transform: uppercase; letter-spacing: .26em; color: var(--em-lav); margin-bottom: .5rem; }
.em-badge::before { content: ''; width: 18px; height: 1.5px; background: var(--em-lav); }

/* ======================== HERO: SPLIT LAYOUT (cream text left / image right) ======================== */
.em-hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  background: var(--em-cream);
  overflow: hidden;
  display: flex;
  align-items: center;
}
/* Right image panel */
.em-hero-pic {
  position: absolute;
  right: 0; top: 0;
  width: 46%;
  height: 100%;
  overflow: hidden;
}
.em-hero-pic img { width: 100%; height: 100%; object-fit: cover; display: block; }
.em-hero-pic::before { content: ''; position: absolute; left: 0; top: 0; width: 60px; height: 100%; background: linear-gradient(to right, var(--em-cream), transparent); z-index: 2; }
/* Lavender accent divider */
.em-hero-div { position: absolute; left: 53%; top: 0; width: 2px; height: 100%; background: var(--em-lav); opacity: .4; z-index: 3; }
/* Text content */
.em-hero-shell { position: relative; z-index: 4; max-width: var(--em-max); margin: 0 auto; padding: 0 2.5rem; width: 100%; }
.em-hero-body { max-width: 500px; }
.em-hero-tag { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--em-fb); font-size: .54rem; font-weight: 700; text-transform: uppercase; letter-spacing: .28em; color: var(--em-lav); margin-bottom: 1.2rem; }
.em-hero-tag::before { content: ''; width: 22px; height: 1.5px; background: var(--em-lav); }
.em-hero-h1 { color: var(--em-navy); margin-bottom: .8rem; }
.em-hero-sub { max-width: 44ch; color: var(--em-steel); font-size: .9rem; line-height: 1.86; margin-bottom: 2rem; }
.em-hero-acts { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.em-hero-stats { display: grid; grid-template-columns: repeat(4, auto); gap: 2rem; border-top: 1px solid var(--em-edge); padding-top: 1.5rem; }
.em-hero-stat-n { font-family: var(--em-fh); font-size: 1.9rem; font-weight: 700; color: var(--em-navy); line-height: 1; }
.em-hero-stat-l { font-family: var(--em-fb); font-size: .56rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--em-muted); margin-top: .18rem; max-width: 12ch; line-height: 1.52; }

/* ======================== SERVICES: STAGGER GRID (first card spans 2 rows - unique) ======================== */
.em-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 2.5rem;
}
.em-svc-feat { grid-row: 1 / 3; } /* Featured card spans both rows - creates stagger */
.em-svc-card { background: white; border: 1.5px solid var(--em-edge); border-radius: var(--em-r3); padding: 1.6rem; display: flex; flex-direction: column; transition: var(--em-ease); text-decoration: none; }
.em-svc-card:hover { border-color: var(--em-lav); box-shadow: 0 0 0 3px var(--em-lavlt), var(--em-sh2); transform: translateY(-2px); }
.em-svc-feat { background: var(--em-navy); border-color: transparent; }
.em-svc-icon-wrap { width: 40px; height: 40px; background: var(--em-lavlt); border-radius: var(--em-r2); display: flex; align-items: center; justify-content: center; color: var(--em-lav); margin-bottom: .88rem; transition: var(--em-ease); }
.em-svc-card:not(.em-svc-feat):hover .em-svc-icon-wrap { background: var(--em-lav); color: white; }
.em-svc-feat .em-svc-icon-wrap { background: rgba(155,134,189,.2); color: var(--em-lav); }
.em-svc-nm { font-family: var(--em-fh); font-size: 1.05rem; font-weight: 700; color: var(--em-navy); margin-bottom: .15rem; }
.em-svc-feat .em-svc-nm { color: white; font-size: 1.5rem; }
.em-svc-from { font-family: var(--em-fb); font-size: .58rem; font-weight: 700; color: var(--em-lav); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .5rem; }
.em-svc-short { font-size: .82rem; color: var(--em-muted); line-height: 1.72; flex: 1; margin-bottom: .88rem; }
.em-svc-feat .em-svc-short { color: rgba(255,255,255,.42); font-size: .9rem; }
.em-svc-go { display: flex; align-items: center; gap: .28rem; font-family: var(--em-fb); font-size: .8rem; font-weight: 700; color: var(--em-lav); margin-top: auto; }
.em-svc-go svg { transition: transform .18s; }
.em-svc-card:hover .em-svc-go svg { transform: translateX(3px); }

/* ======================== CASE STUDIES: HORIZONTAL 3-CARD ======================== */
.em-cases-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.em-case-card { border-radius: var(--em-r3); overflow: hidden; background: var(--em-navy); position: relative; transition: var(--em-ease); }
.em-case-card:hover { transform: translateY(-3px); box-shadow: var(--em-sh3); }
.em-case-img { height: 180px; overflow: hidden; position: relative; }
.em-case-img img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(.4) saturate(.6); transition: filter .3s; }
.em-case-card:hover .em-case-img img { filter: brightness(.5) saturate(.7); }
.em-case-stat-overlay { position: absolute; top: .8rem; left: .8rem; font-family: var(--em-fh); font-size: 2rem; font-weight: 700; color: var(--em-lav); line-height: 1; }
.em-case-body { padding: 1.2rem; }
.em-case-tags { display: flex; gap: .2rem; flex-wrap: wrap; margin-bottom: .5rem; }
.em-case-tag { font-family: var(--em-fb); font-size: .5rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.3); border: 1px solid rgba(255,255,255,.12); padding: .1rem .38rem; border-radius: 20px; }
.em-case-nm { font-family: var(--em-fh); font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: .1rem; }
.em-case-type { font-family: var(--em-fb); font-size: .64rem; color: rgba(255,255,255,.3); }

/* ======================== STATISTICS STRIP ======================== */
.em-stats-band { background: var(--em-lavlt); border-top: 1px solid var(--em-lavbd); border-bottom: 1px solid var(--em-lavbd); }
.em-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); padding: 2.5rem 0; }
.em-stat-unit { text-align: center; padding: 0 1rem; border-right: 1px solid var(--em-edge); }
.em-stat-unit:last-child { border-right: none; }
.em-stat-num { font-family: var(--em-fh); font-size: 2.8rem; font-weight: 700; color: var(--em-navy); line-height: 1; }
.em-stat-lbl { font-family: var(--em-fb); font-size: .6rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--em-muted); margin-top: .2rem; }

/* ======================== TESTIMONIALS: 2-COL STAGGER ======================== */
.em-voices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 3rem; }
.em-voice-box { border-radius: var(--em-r3); padding: 1.8rem; }
.em-voice-box:nth-child(odd) { background: var(--em-navy); }
.em-voice-box:nth-child(even) { background: white; border: 1.5px solid var(--em-edge); }
.em-voice-box:nth-child(1) { margin-top: 1.5rem; } /* Stagger first card down */
.em-voice-box:nth-child(4) { margin-top: -1.5rem; } /* Stagger fourth card up */
.em-voice-q { font-family: var(--em-fh); font-size: .98rem; font-weight: 600; line-height: 1.55; margin-bottom: 1rem; position: relative; padding-left: .9rem; }
.em-voice-q::before { content: '"'; position: absolute; left: 0; top: -.05rem; font-size: 1.3rem; color: var(--em-lav); line-height: .7; }
.em-voice-box:nth-child(odd) .em-voice-q { color: white; }
.em-voice-box:nth-child(even) .em-voice-q { color: var(--em-navy); }
.em-voice-box:nth-child(even) .em-voice-q::before { color: var(--em-lav); }
.em-voice-who { font-family: var(--em-fb); font-size: .82rem; font-weight: 700; color: var(--em-lav); }
.em-voice-co { font-family: var(--em-fb); font-size: .7rem; color: var(--em-muted); }
.em-voice-box:nth-child(odd) .em-voice-co { color: rgba(255,255,255,.35); }

/* ======================== PROCESS: VERTICAL NUMBERED LIST (different from horizontal timelines) ======================== */
.em-proc-list { max-width: 620px; margin: 3rem auto 0; }
.em-proc-item { display: flex; gap: 1.5rem; align-items: flex-start; padding: 1.5rem 0; border-bottom: 1px solid var(--em-edge2); }
.em-proc-n { width: 38px; height: 38px; border-radius: 50%; background: var(--em-lav); display: flex; align-items: center; justify-content: center; font-family: var(--em-fh); font-size: .8rem; font-weight: 700; color: white; flex-shrink: 0; }
.em-proc-h { font-family: var(--em-fh); font-size: 1.05rem; font-weight: 700; color: var(--em-navy); margin-bottom: .22rem; }
.em-proc-p { font-size: .84rem; color: var(--em-muted); line-height: 1.8; margin: 0; }

/* ======================== PRICING ======================== */
.em-pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.em-pkg-card { border: 2px solid var(--em-edge); border-radius: var(--em-r4); padding: 2rem; background: white; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: var(--em-ease); }
.em-pkg-card:hover { box-shadow: var(--em-sh2); }
.em-pkg-feat { border-color: var(--em-lav); background: var(--em-navy); }
.em-pkg-feat-ribbon { position: absolute; top: 18px; right: -26px; font-family: var(--em-fb); font-size: .48rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; background: var(--em-lav); color: white; padding: .2rem 2.4rem; transform: rotate(45deg); }
.em-pkg-flower { font-size: 1.8rem; margin-bottom: .6rem; }
.em-pkg-nm { font-family: var(--em-fh); font-size: 1.9rem; font-weight: 700; color: var(--em-navy); margin-bottom: .1rem; }
.em-pkg-feat .em-pkg-nm { color: white; }
.em-pkg-sub { font-family: var(--em-fb); font-size: .68rem; color: var(--em-muted); margin-bottom: 1rem; }
.em-pkg-feat .em-pkg-sub { color: rgba(255,255,255,.4); }
.em-pkg-price { font-family: var(--em-fh); font-size: clamp(2rem, 3.5vw, 3.6rem); font-weight: 700; color: var(--em-lav); line-height: 1; letter-spacing: -.04em; margin-bottom: 1.2rem; }
.em-pkg-price sup { font-size: 1.1rem; vertical-align: super; }
.em-pkg-incs { display: flex; flex-direction: column; gap: .32rem; flex: 1; margin-bottom: 1.4rem; }
.em-pkg-inc { display: flex; align-items: flex-start; gap: .42rem; font-size: .84rem; color: var(--em-coal); }
.em-pkg-feat .em-pkg-inc { color: rgba(255,255,255,.65); }
.em-pkg-inc svg { color: var(--em-lav); flex-shrink: 0; margin-top: .14rem; }

/* ======================== FAQ: 2-COLUMN GRID (different from single-col and sidebar+accordion) ======================== */
.em-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 3rem; margin-top: 3rem; }
.em-faq-item { border-bottom: 1px solid var(--em-edge2); }
.em-faq-btn { width: 100%; text-align: left; padding: 1.05rem 0; display: flex; align-items: center; justify-content: space-between; gap: .8rem; cursor: pointer; background: none; border: none; }
.em-faq-q { font-family: var(--em-fh); font-size: .96rem; font-weight: 700; color: var(--em-navy); line-height: 1.42; }
.em-faq-ic { width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--em-edge); display: flex; align-items: center; justify-content: center; color: var(--em-lav); flex-shrink: 0; transition: var(--em-ease); }
.em-faq-item.em-faq-open .em-faq-ic { background: var(--em-lav); border-color: var(--em-lav); color: white; transform: rotate(45deg); }
.em-faq-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.em-faq-item.em-faq-open .em-faq-body { max-height: 260px; }
.em-faq-a { padding: 0 0 1.05rem; font-size: .86rem; color: var(--em-steel); line-height: 1.88; }

/* ======================== INNER PAGE HEAD ======================== */
.em-pagehead { background: var(--em-navy); text-align: center; padding: 5.5rem 2.5rem 4.5rem; position: relative; overflow: hidden; }
.em-pagehead::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(155,134,189,.15) 0%, transparent 70%); }
.em-pagehead-tag { display: inline-block; font-family: var(--em-fb); font-size: .52rem; font-weight: 700; text-transform: uppercase; letter-spacing: .24em; color: rgba(255,255,255,.3); border: 1px solid rgba(255,255,255,.1); padding: .24rem .68rem; border-radius: 20px; margin-bottom: .65rem; position: relative; }
.em-pagehead h1 { color: white; max-width: 22ch; margin: 0 auto; position: relative; }
.em-pagehead-sub { color: rgba(255,255,255,.4); max-width: 52ch; margin: .65rem auto 0; font-size: .9rem; line-height: 1.86; position: relative; }

/* ======================== SERVICE PAGE ======================== */
.em-svc-pg { max-width: var(--em-max); margin: 0 auto; padding: 5rem 2.5rem; display: grid; grid-template-columns: 1fr 250px; gap: 4.5rem; align-items: start; }
.em-svc-pg-body h2 { font-family: var(--em-fh); font-size: 1.35rem; font-weight: 700; color: var(--em-lav2); margin: 2.2rem 0 .4rem; }
.em-svc-pg-body p { margin-bottom: .88rem; }
.em-svc-inc-list { display: flex; flex-direction: column; gap: .36rem; margin-bottom: 1.4rem; }
.em-svc-inc { display: flex; align-items: flex-start; gap: .48rem; font-size: .85rem; color: var(--em-coal); }
.em-svc-inc svg { color: var(--em-lav); flex-shrink: 0; margin-top: .14rem; }
.em-svc-del { background: var(--em-lavlt); border-left: 3px solid var(--em-lav); padding: .7rem .9rem; border-radius: 0 var(--em-r) var(--em-r) 0; margin-bottom: 1.4rem; }
.em-svc-del p { margin: 0; font-size: .84rem; color: var(--em-coal); }
.em-svc-aside { position: sticky; top: 24px; }
.em-aside-box { background: var(--em-navy); border-radius: var(--em-r3); overflow: hidden; }
.em-aside-img img { width: 100%; height: 110px; object-fit: cover; filter: brightness(.2); }
.em-aside-inner { padding: 1.1rem; }
.em-aside-nm { font-size: .5rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.28); margin-bottom: .18rem; }
.em-aside-rate { font-family: var(--em-fh); font-size: .9rem; color: var(--em-lav); margin-bottom: .72rem; font-weight: 700; }
.em-aside-btns { display: flex; flex-direction: column; gap: .32rem; }
.em-other-h { font-size: .46rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--em-dim); margin: 1.2rem 0 .48rem; }
.em-other-lk { display: flex; align-items: center; gap: .38rem; font-size: .8rem; color: var(--em-muted); padding: .35rem 0; border-bottom: 1px solid var(--em-edge); transition: color .14s; }
.em-other-lk:hover { color: var(--em-lav2); }

/* ======================== LEGAL ======================== */
.em-legal { max-width: 800px; margin: 0 auto; padding: 5rem 2.5rem 7rem; }
.em-legal h2 { font-family: var(--em-fh); font-size: 1.4rem; font-weight: 700; color: var(--em-lav2); margin: 2.5rem 0 .5rem; }
.em-legal h3 { font-family: var(--em-fh); font-size: .96rem; font-weight: 700; color: var(--em-navy); margin: 1.3rem 0 .28rem; }
.em-legal p { margin-bottom: .88rem; font-size: .88rem; }
.em-legal ul { padding-left: 1.2rem; margin: .4rem 0 .88rem; display: flex; flex-direction: column; gap: .3rem; }
.em-legal li { font-size: .88rem; list-style: disc; color: var(--em-steel); line-height: 1.72; }
.em-legal a { color: var(--em-lav2); }
.em-legal table { width: 100%; border-collapse: collapse; font-size: .82rem; margin: .88rem 0 1.1rem; }
.em-legal th { background: var(--em-navy); color: white; padding: .48rem .88rem; text-align: left; font-size: .58rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; }
.em-legal td { padding: .48rem .88rem; border: 1px solid var(--em-edge); color: var(--em-steel); }
.em-legal address { background: var(--em-lavlt); border-left: 3px solid var(--em-lav); padding: .88rem 1.1rem; font-size: .86rem; color: var(--em-coal); line-height: 1.86; margin: .88rem 0; border-radius: 0 var(--em-r) var(--em-r) 0; }
.em-legal-eff { display: inline-block; font-size: .7rem; color: var(--em-dim); background: var(--em-paper); border: 1px solid var(--em-edge); padding: .26rem .68rem; border-radius: 20px; margin-bottom: 1.4rem; }

/* ======================== BUILDER / CHECKOUT ======================== */
.em-builder-pg { max-width: var(--em-max); margin: 0 auto; padding: 4rem 2.5rem 7rem; display: grid; grid-template-columns: 1fr 260px; gap: 4rem; align-items: start; }
.em-build-sec { margin-bottom: 2.5rem; }
.em-build-lbl { display: block; font-family: var(--em-fb); font-size: .52rem; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; color: var(--em-lav2); margin-bottom: .88rem; }
.em-build-items { display: flex; flex-direction: column; gap: .38rem; }
.em-build-row { background: white; border: 1.5px solid var(--em-edge); border-radius: var(--em-r2); padding: .78rem .92rem; display: flex; align-items: center; gap: .65rem; cursor: pointer; user-select: none; transition: var(--em-ease); }
.em-build-row:hover { border-color: var(--em-lavbd); background: var(--em-lavlt); }
.em-build-row.em-picked { border-color: var(--em-lav); background: var(--em-lavlt); }
.em-pick-mark { width: 17px; height: 17px; border: 1.5px solid var(--em-dim); border-radius: var(--em-r); flex-shrink: 0; transition: var(--em-ease); }
.em-build-row.em-picked .em-pick-mark { background: var(--em-lav); border-color: var(--em-lav); }
.em-build-row-nm { font-size: .86rem; color: var(--em-muted); flex: 1; }
.em-build-row.em-picked .em-build-row-nm { color: var(--em-navy); font-weight: 600; }
.em-build-row-pr { font-size: .64rem; font-weight: 700; color: var(--em-lav2); text-align: right; min-width: 5rem; }
.em-addon-chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.em-addon-chip { background: white; border: 1.5px solid var(--em-edge); border-radius: var(--em-r); padding: .48rem .88rem; cursor: pointer; user-select: none; transition: var(--em-ease); }
.em-addon-chip:hover { border-color: var(--em-lavbd); }
.em-addon-chip.em-chip-on { border-color: var(--em-lav); background: var(--em-lavlt); }
.em-chip-nm { font-size: .8rem; font-weight: 600; color: var(--em-muted); }
.em-addon-chip.em-chip-on .em-chip-nm { color: var(--em-navy); }
.em-chip-pr { font-size: .6rem; color: var(--em-dim); }
.em-addon-chip.em-chip-on .em-chip-pr { color: var(--em-lav2); }
.em-hrs-block { background: white; border: 1.5px solid var(--em-edge); border-radius: var(--em-r2); padding: .9rem; }
.em-hrs-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: .42rem; }
.em-hrs-lbl { font-size: .86rem; color: var(--em-muted); }
.em-hrs-cnt { font-family: var(--em-fh); font-size: 2rem; font-weight: 700; color: var(--em-lav2); line-height: 1; }
.em-hrs-slider { -webkit-appearance: none; width: 100%; height: 3px; background: var(--em-edge); border-radius: 2px; cursor: pointer; margin-top: .42rem; }
.em-hrs-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--em-lav); cursor: pointer; box-shadow: 0 2px 8px rgba(155,134,189,.4); }
.em-hrs-note { font-size: .66rem; color: var(--em-dim); margin-top: .42rem; line-height: 1.6; }
/* Tally */
.em-tally { background: var(--em-navy); border-radius: var(--em-r3); overflow: hidden; position: sticky; top: 24px; }
.em-tally-hd { background: rgba(255,255,255,.04); padding: .8rem 1.1rem; }
.em-tally-hl { font-family: var(--em-fb); font-size: .5rem; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: rgba(255,255,255,.5); }
.em-tally-mid { padding: .8rem 1.1rem; min-height: 60px; }
.em-tally-blank { font-size: .76rem; color: rgba(255,255,255,.22); font-style: italic; }
.em-tally-ln { display: flex; justify-content: space-between; gap: .5rem; font-size: .74rem; margin-bottom: .35rem; }
.em-tally-lnm { color: rgba(255,255,255,.38); }
.em-tally-lpr { font-weight: 700; color: white; }
.em-tally-ft { border-top: 1px solid rgba(255,255,255,.06); padding: .8rem 1.1rem; }
.em-tally-tot { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: .8rem; }
.em-tally-totlbl { font-size: .46rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.28); }
.em-tally-totamt { font-family: var(--em-fh); font-size: 2.5rem; font-weight: 700; color: var(--em-lav); line-height: 1; letter-spacing: -.04em; }
.em-tally-go { display: block; width: 100%; background: var(--em-lav); color: white; font-family: var(--em-fb); font-size: .86rem; font-weight: 700; padding: .72rem; border-radius: var(--em-r2); border: none; cursor: pointer; transition: background .16s; }
.em-tally-go:hover:not(:disabled) { background: var(--em-lav2); }
.em-tally-go:disabled { opacity: .22; cursor: not-allowed; }
/* Checkout */
.em-co-layout { max-width: 860px; margin: 0 auto; padding: 5rem 2.5rem; display: grid; grid-template-columns: 1fr 240px; gap: 4rem; align-items: start; }
.em-fg { margin-bottom: .65rem; }
.em-fl { display: block; font-size: .5rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--em-dim); margin-bottom: .24rem; }
.em-fi { width: 100%; background: var(--em-paper); border: 1.5px solid var(--em-edge); border-radius: var(--em-r2); padding: .6rem .85rem; color: var(--em-navy); font-size: .9rem; transition: border-color .15s; }
.em-fi:focus { outline: none; border-color: var(--em-lav); background: white; box-shadow: var(--em-sh4); }
.em-fi::placeholder { color: var(--em-dim); }
.em-agree-row { display: flex; align-items: flex-start; gap: .5rem; font-size: .82rem; color: var(--em-coal); line-height: 1.6; margin: .9rem 0; }
.em-agree-row input { margin-top: .12rem; accent-color: var(--em-lav); }
.em-agree-row a { color: var(--em-lav2); }
.em-co-sum { background: var(--em-navy); border-radius: var(--em-r3); overflow: hidden; position: sticky; top: 24px; }
.em-co-sum-hd { background: rgba(255,255,255,.04); padding: .72rem 1rem; }
.em-co-sum-hl { font-size: .48rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.5); }
.em-co-sum-body { padding: .8rem 1rem; }
.em-co-sum-ln { display: flex; justify-content: space-between; gap: 1rem; font-size: .76rem; margin-bottom: .35rem; }
.em-co-sum-lnm { color: rgba(255,255,255,.38); }
.em-co-sum-lpr { font-weight: 700; color: white; }
.em-co-sum-div { border: none; border-top: 1px solid rgba(255,255,255,.05); margin: .5rem 0; }
.em-co-sum-tot { display: flex; justify-content: space-between; align-items: flex-end; }
.em-co-sum-totl { font-size: .46rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.28); }
.em-co-sum-totv { font-family: var(--em-fh); font-size: 2rem; font-weight: 700; color: var(--em-lav); line-height: 1; letter-spacing: -.04em; }

/* ======================== RESULT PAGES ======================== */
.em-result-pg { min-height: 75vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 5rem 2.5rem; background: var(--em-navy); }
.em-result-inner { max-width: 460px; }

/* ======================== BUTTONS ======================== */
.em-btn-lav { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--em-fb); font-size: .86rem; font-weight: 700; color: white; background: var(--em-lav); padding: .72rem 1.8rem; border-radius: var(--em-r); transition: background .15s; border: none; cursor: pointer; white-space: nowrap; }
.em-btn-lav:hover { background: var(--em-lav2); }
.em-btn-navy { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--em-fb); font-size: .86rem; font-weight: 700; color: white; background: var(--em-navy); padding: .72rem 1.8rem; border-radius: var(--em-r); transition: background .15s; border: none; cursor: pointer; white-space: nowrap; }
.em-btn-navy:hover { background: var(--em-navy2); }
.em-btn-outline { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--em-fb); font-size: .86rem; font-weight: 700; color: var(--em-navy); background: transparent; padding: .7rem 1.78rem; border-radius: var(--em-r); border: 1.5px solid var(--em-edge); transition: var(--em-ease); white-space: nowrap; }
.em-btn-outline:hover { border-color: var(--em-lav); }
.em-btn-outline-w { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--em-fb); font-size: .86rem; font-weight: 700; color: white; background: transparent; padding: .7rem 1.78rem; border-radius: var(--em-r); border: 1.5px solid rgba(255,255,255,.22); transition: var(--em-ease); white-space: nowrap; }
.em-btn-outline-w:hover { border-color: rgba(255,255,255,.65); }
.em-btn-pkg { display: block; width: 100%; text-align: center; font-family: var(--em-fb); font-size: .86rem; font-weight: 700; color: var(--em-lav2); background: transparent; padding: .7rem; border-radius: var(--em-r); border: 1.5px solid var(--em-lavbd); transition: var(--em-ease); }
.em-btn-pkg:hover { background: var(--em-lavlt); }
.em-btn-pkg-w { display: block; width: 100%; text-align: center; font-family: var(--em-fb); font-size: .86rem; font-weight: 700; color: rgba(255,255,255,.5); background: transparent; padding: .7rem; border-radius: var(--em-r); border: 1.5px solid rgba(255,255,255,.16); transition: var(--em-ease); }
.em-btn-pkg-w:hover { border-color: rgba(255,255,255,.4); color: white; }

/* ======================== COOKIE + CHAT ======================== */
.em-ck-bar { position: fixed; bottom: 0; left: var(--em-bar); right: 0; background: var(--em-navy2); border-top: 3px solid var(--em-lav); z-index: 9999; padding: .88rem 2rem; display: none; gap: 1rem; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.em-ck-bar p { font-size: .78rem; color: rgba(255,255,255,.5); margin: 0; }
.em-ck-bar a { color: var(--em-lav); }
.em-ck-btns { display: flex; gap: .38rem; flex-shrink: 0; }
.em-ck-yes { background: var(--em-lav); color: white; font-size: .76rem; font-weight: 700; padding: .38rem .92rem; border: none; border-radius: var(--em-r); cursor: pointer; }
.em-ck-no  { background: transparent; color: rgba(255,255,255,.4); font-size: .76rem; padding: .38rem .92rem; border: 1px solid rgba(255,255,255,.12); border-radius: var(--em-r); cursor: pointer; }
.em-chat-fab { position: fixed; bottom: 4.5rem; right: 1.5rem; z-index: 9990; width: 50px; height: 50px; background: var(--em-lav); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(155,134,189,.5); cursor: pointer; border: none; transition: var(--em-ease); }
.em-chat-fab:hover { background: var(--em-lav2); transform: scale(1.06); }
.em-chatpop { position: fixed; bottom: 7.8rem; right: 1.5rem; z-index: 9989; width: 268px; background: var(--em-cream); border: 1px solid var(--em-edge); border-radius: var(--em-r3); box-shadow: var(--em-sh3); opacity: 0; pointer-events: none; transform: translateY(10px) scale(.97); transition: opacity .2s, transform .22s; overflow: hidden; }
.em-chatpop.em-chat-open { opacity: 1; pointer-events: auto; transform: none; }
.em-chatpop-hd { background: var(--em-navy); padding: .88rem 1rem; display: flex; align-items: center; justify-content: space-between; }
.em-chatpop-title { font-family: var(--em-fh); font-size: .9rem; color: white; font-weight: 700; }
.em-chatpop-title span { color: var(--em-lav); }
.em-chatpop-sub { font-size: .54rem; color: rgba(255,255,255,.5); }
.em-chatpop-x { color: rgba(255,255,255,.5); background: none; border: none; cursor: pointer; }
.em-chatpop-bd { padding: .88rem; }
.em-chat-done { display: none; text-align: center; padding: .8rem; font-size: .8rem; color: var(--em-lav2); font-weight: 700; }
.em-chat-inp { width: 100%; background: white; border: 1px solid var(--em-edge); border-radius: var(--em-r2); padding: .44rem .72rem; font-size: .8rem; color: var(--em-navy); margin-bottom: .36rem; resize: none; font-family: var(--em-fb); }
.em-chat-inp:focus { outline: none; border-color: var(--em-lavbd); }
.em-chat-inp::placeholder { color: var(--em-dim); }
.em-chat-send { width: 100%; background: var(--em-lav); color: white; font-size: .78rem; font-weight: 700; padding: .46rem; border-radius: var(--em-r2); border: none; cursor: pointer; font-family: var(--em-fb); }

/* ======================== LAVENDER CTA BAND ======================== */
.em-lavband { background: linear-gradient(135deg, var(--em-navy) 0%, var(--em-navy2) 60%, rgba(28,43,74,.95) 100%); }
.em-lavband-inner { max-width: 700px; margin: 0 auto; padding: 6rem 2.5rem; text-align: center; }
.em-lavband-inner h2 { color: white; margin-bottom: .5rem; }
.em-lavband-inner p { color: rgba(255,255,255,.5); margin-bottom: 2rem; font-size: .96rem; max-width: 44ch; margin-left: auto; margin-right: auto; }
.em-band-acts { display: flex; gap: .65rem; justify-content: center; flex-wrap: wrap; }

/* ======================== ANIMATIONS ======================== */
.em-fade { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
.em-fade.em-vis { opacity: 1; transform: none; }
.em-fade-l { opacity: 0; transform: translateX(-14px); transition: opacity .5s ease, transform .5s ease; }
.em-fade-l.em-vis { opacity: 1; transform: none; }
.em-fade-r { opacity: 0; transform: translateX(14px); transition: opacity .5s ease, transform .5s ease; }
.em-fade-r.em-vis { opacity: 1; transform: none; }

/* ======================== FOOTER ======================== */
.em-foot { background: var(--em-navy2); }
.em-foot-top { max-width: var(--em-max); margin: 0 auto; padding: 5rem 2.5rem 2.5rem; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 3rem; }
.em-foot-logo { font-family: var(--em-fh); font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: .3rem; }
.em-foot-logo span { color: var(--em-lav); }
.em-foot-tag { font-size: .72rem; color: rgba(255,255,255,.28); max-width: 26ch; line-height: 1.72; margin-bottom: .5rem; }
.em-foot-vat { font-size: .6rem; color: rgba(255,255,255,.18); margin-bottom: 1rem; }
.em-foot-soc { display: flex; gap: .35rem; }
.em-foot-soc a { width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--em-r); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.28); transition: var(--em-ease); }
.em-foot-soc a:hover { border-color: var(--em-lav); color: var(--em-lav); }
.em-foot-col-h { font-size: .46rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.2); margin-bottom: .78rem; }
.em-foot-links { display: flex; flex-direction: column; gap: .4rem; }
.em-foot-links a { font-size: .78rem; color: rgba(255,255,255,.38); transition: color .14s; }
.em-foot-links a:hover { color: var(--em-lav); }
.em-foot-ct { display: flex; flex-direction: column; gap: .5rem; }
.em-foot-ct a { font-size: .76rem; color: rgba(255,255,255,.38); display: flex; align-items: flex-start; gap: .4rem; line-height: 1.52; transition: color .14s; }
.em-foot-ct a:hover { color: var(--em-lav); }
.em-foot-ct svg { flex-shrink: 0; color: var(--em-lav); opacity: .55; margin-top: .04rem; }
.em-foot-btm { border-top: 1px solid rgba(255,255,255,.05); max-width: var(--em-max); margin: 0 auto; padding: 1.3rem 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.em-foot-copy { font-size: .58rem; color: rgba(255,255,255,.2); }
.em-foot-leg { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.em-foot-leg a { font-size: .58rem; color: rgba(255,255,255,.28); transition: color .14s; }
.em-foot-leg a:hover { color: var(--em-lav); }

/* ======================== RESPONSIVE - SIDEBAR COLLAPSE ======================== */
@media (max-width: 960px) {
  body { padding-left: 0; padding-top: 58px; }
  .em-sidebar { display: none; }
  .em-topbar { display: flex; }
  .em-ck-bar { left: 0; }
  .em-hero-pic { width: 42%; }
  .em-svc-grid { grid-template-columns: 1fr 1fr; }
  .em-svc-feat { grid-row: auto; }
  .em-cases-row { grid-template-columns: 1fr; }
  .em-voices-grid { grid-template-columns: 1fr; }
  .em-voices-grid .em-voice-box:nth-child(1),
  .em-voices-grid .em-voice-box:nth-child(4) { margin-top: 0; }
  .em-stats-row { grid-template-columns: 1fr 1fr; gap: 0; }
  .em-stat-unit { border-bottom: 1px solid var(--em-edge); }
  .em-pkg-grid { grid-template-columns: 1fr; }
  .em-faq-grid { grid-template-columns: 1fr; }
  .em-foot-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .em-svc-pg, .em-builder-pg, .em-co-layout { grid-template-columns: 1fr; }
  .em-proc-list { max-width: 100%; }
}
@media (max-width: 640px) {
  .em-hero-pic { display: none; }
  .em-hero-div { display: none; }
  .em-svc-grid { grid-template-columns: 1fr; }
  .em-foot-top { grid-template-columns: 1fr; }
  .em-stats-row { grid-template-columns: 1fr 1fr; }
  .em-shell { padding: 0 1.2rem; }
  .em-hero-stats { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
}
