/* ============================================================
   MKT PIONEERS — Design System
   Light lavender canvas + violet/purple brand accents
   Fonts: Space Grotesk (display) · Urbanist (body) · Fraunces (accent)
   ============================================================ */

/* ----------------------------------------------------------
   1. TOKENS
---------------------------------------------------------- */
:root {
  /* color — dark canvas */
  --bg:            #F5F1FC;
  --bg-2:          #ECE6F8;
  --surface:       #FFFFFF;
  --surface-2:     #F4EFFC;
  --border:        #E4DAF5;
  --border-soft:   #EFE9FA;
  --text:          #1E1640;
  --muted:         #6B6388;
  --muted-2:       #968DB4;

  /* color — light editorial */
  --cream:         #FFFFFF;
  --cream-2:       #F6F2FC;
  --ink:           #1E1640;
  --ink-muted:     #6B6388;
  --cream-border:  #E7DEF7;

  /* accents */
  --amber:         #7C3AED;
  --amber-deep:    #5B21B6;
  --amber-soft:    rgba(124,58,237,0.10);
  --indigo:        #7C3AED;
  --indigo-2:      #9061F9;
  --teal:          #6D28D9;
  --coral:         #E5484D;

  /* gradients */
  --grad-warm:   linear-gradient(105deg, #7C3AED 0%, #6D28D9 45%, #9D5CF5 100%);
  --grad-cool:   linear-gradient(135deg, #7C3AED 0%, #C4B5FD 100%);
  --grad-violet: linear-gradient(135deg, #9061F9 0%, #7C3AED 60%, #5B21B6 120%);

  /* type */
  --font-display: "Space Grotesk", "Urbanist", system-ui, sans-serif;
  --font-body:    "Urbanist", -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-serif:   "Fraunces", Georgia, serif;

  --fs-h1: clamp(2.85rem, 1.5rem + 5.6vw, 6.25rem);
  --fs-h2: clamp(2.05rem, 1.3rem + 3.2vw, 3.85rem);
  --fs-h3: clamp(1.55rem, 1.1rem + 1.9vw, 2.6rem);
  --fs-h4: clamp(1.28rem, 1rem + 1.2vw, 1.8rem);
  --fs-h5: clamp(1.08rem, 0.95rem + 0.55vw, 1.3rem);
  --fs-body: clamp(1rem, 0.96rem + 0.22vw, 1.14rem);
  --fs-eyebrow: 0.8125rem;
  --fs-small: 0.875rem;

  /* spacing (8pt) */
  --s-1:4px; --s-2:8px; --s-3:12px; --s-4:16px; --s-6:24px;
  --s-8:32px; --s-12:48px; --s-16:64px; --s-24:96px; --s-32:128px; --s-40:160px;

  /* radius */
  --r-sm:8px; --r-md:16px; --r-lg:26px; --r-pill:999px;

  /* container */
  --container: 1240px;
  --bleed: 1480px;
  --gutter: clamp(20px, 5vw, 64px);

  /* fx */
  --shadow-amber: 0 14px 40px rgba(124,58,237,0.30);
  --shadow-soft:  0 24px 60px rgba(0,0,0,0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t: 0.55s var(--ease);
}

/* ----------------------------------------------------------
   2. RESET / BASE
---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
::selection { background: var(--amber); color: #fff; }

h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; }
h1 { font-size: var(--fs-h1); font-weight: 700; line-height: 1.0; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); letter-spacing: -0.015em; }
h5 { font-size: var(--fs-h5); letter-spacing: -0.01em; }
p { color: var(--text); }

/* ----------------------------------------------------------
   3. LAYOUT HELPERS
---------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--bleed { max-width: var(--bleed); }
.section { padding-block: clamp(64px, 9vw, 150px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 96px); }
.section--light { background: var(--cream); color: var(--ink); }
.section--light h1, .section--light h2, .section--light h3, .section--light h4, .section--light h5 { color: var(--ink); }
.section--light p { color: var(--ink-muted); }

.grid { display: grid; gap: var(--s-6); }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 60ch; }
.measure-sm { max-width: 46ch; }

/* eyebrow / label */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow); font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber);
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--amber); opacity: 0.7; }
.eyebrow--center::before { display: none; }
.section--light .eyebrow { color: var(--amber-deep); }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 72px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); margin-top: var(--s-4); font-size: 1.1rem; }
.section--light .section-head p { color: var(--ink-muted); }

/* gradient + serif text accents */
.grad-text {
  background: var(--grad-warm);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.serif-accent { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }

/* ----------------------------------------------------------
   4. BUTTONS
---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem;
  padding: 15px 30px; border-radius: var(--r-pill);
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap; will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--amber); color: #fff; }
.btn--primary:hover { background: var(--amber-deep); box-shadow: var(--shadow-amber); transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--border); color: var(--text); }
.btn--ghost:hover { border-color: var(--indigo); color: var(--indigo); background: rgba(124,58,237,0.10); transform: translateY(-2px); }
.section--light .btn--ghost { border-color: var(--cream-border); color: var(--ink); }
.section--light .btn--ghost:hover { border-color: var(--indigo); color: var(--indigo); background: rgba(124,58,237,0.07); }
.btn--light { background: var(--ink); color: var(--cream); }
.btn--light:hover { background: #000; transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--lg { padding: 18px 38px; font-size: 1.05rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 600;
  color: var(--text); transition: gap .3s var(--ease), color .3s var(--ease);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.link-arrow:hover { color: var(--amber); gap: 12px; }
.section--light .link-arrow:hover { color: var(--amber-deep); }

/* ----------------------------------------------------------
   5. HEADER / NAV
---------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 88px; transition: height .4s var(--ease); }
.scrolled .nav { height: 66px; }
.nav__logo { display: flex; align-items: center; gap: 11px; transition: transform .4s var(--ease); z-index: 2; }
.scrolled .nav__logo { transform: scale(0.92); }
.nav__logo .logo-mark { width: auto; height: 30px; flex: none; }
.nav__logo .logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; letter-spacing: -0.02em; color: var(--text); }
.nav__logo .logo-text b { color: var(--amber); }

.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a { font-weight: 600; font-size: 0.96rem; color: var(--muted); position: relative; padding: 6px 0; transition: color .3s; }
.nav__links a::after { content:""; position:absolute; left:0; right:100%; bottom:0; height:2px; background: var(--amber); transition: right .3s var(--ease); }
.nav__links a:hover, .nav__links a.active { color: var(--text); }
.nav__links a:hover::after, .nav__links a.active::after { right: 0; }
.nav__right { display: flex; align-items: center; gap: 22px; }

.nav__toggle { display: none; width: 44px; height: 44px; border-radius: var(--r-sm); align-items: center; justify-content: center; flex-direction: column; gap: 5px; z-index: 110; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
body.menu-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile overlay */
.nav__overlay {
  position: fixed; inset: 0; z-index: 105; background: var(--bg-2);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: var(--gutter); transform: translateY(-100%); transition: transform .5s var(--ease);
  visibility: hidden;
}
body.menu-open .nav__overlay { transform: translateY(0); visibility: visible; }
.nav__overlay a { font-family: var(--font-display); font-size: clamp(2rem, 9vw, 3.2rem); font-weight: 600; color: var(--text); padding: 6px 0; opacity: 0; transform: translateY(20px); transition: opacity .4s var(--ease), transform .4s var(--ease), color .3s; }
.nav__overlay a:hover { color: var(--amber); }
body.menu-open .nav__overlay a { opacity: 1; transform: translateY(0); }
body.menu-open .nav__overlay a:nth-child(1){transition-delay:.12s}
body.menu-open .nav__overlay a:nth-child(2){transition-delay:.18s}
body.menu-open .nav__overlay a:nth-child(3){transition-delay:.24s}
body.menu-open .nav__overlay a:nth-child(4){transition-delay:.30s}
body.menu-open .nav__overlay a:nth-child(5){transition-delay:.36s}
body.menu-open .nav__overlay a:nth-child(6){transition-delay:.42s}
.nav__overlay .btn { margin-top: var(--s-8); align-self: flex-start; font-size: 1rem; }

/* ----------------------------------------------------------
   6. HERO
---------------------------------------------------------- */
.hero { position: relative; padding-top: clamp(150px, 22vh, 240px); padding-bottom: clamp(70px, 10vw, 130px); overflow: hidden; }
.hero__glow { position: absolute; top: -10%; left: 50%; transform: translateX(-50%); width: min(900px, 120%); height: 700px; background: radial-gradient(50% 50% at 50% 40%, rgba(124,58,237,0.14), rgba(192,132,252,0.10) 50%, transparent 72%); pointer-events: none; z-index: 0; filter: blur(8px); }
.hero__inner { position: relative; z-index: 1; }
.hero h1 { max-width: 16ch; margin-top: var(--s-6); }
.hero__sub { font-size: clamp(1.1rem, 0.95rem + 0.7vw, 1.32rem); color: var(--muted); max-width: 56ch; margin-top: var(--s-6); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-4); margin-top: var(--s-8); }
.hero__meta { display: flex; flex-wrap: wrap; gap: var(--s-8); margin-top: var(--s-16); padding-top: var(--s-8); border-top: 1px solid var(--border); }
.hero__meta div { display: flex; flex-direction: column; }
.hero__meta b { font-family: var(--font-display); font-size: 1.7rem; color: var(--text); }
.hero__meta span { font-size: var(--fs-small); color: var(--muted); }

/* word mask reveal */
.reveal-words { display: inline-block; }
.reveal-words .word { display: inline-block; overflow: hidden; vertical-align: top; }
.reveal-words .word > span { display: inline-block; transform: translateY(110%); transition: transform .8s var(--ease); }
.reveal-words.in-view .word > span { transform: translateY(0); }

/* inner page hero */
.page-hero { padding-top: clamp(140px, 20vh, 210px); padding-bottom: clamp(48px, 6vw, 90px); position: relative; overflow: hidden; }
.page-hero .hero__glow { height: 520px; }
.page-hero h1 { max-width: 18ch; margin-top: var(--s-4); }
.page-hero p { color: var(--muted); max-width: 56ch; margin-top: var(--s-6); font-size: 1.15rem; }

/* ----------------------------------------------------------
   7. MARQUEE
---------------------------------------------------------- */
.marquee { overflow: hidden; padding-block: clamp(20px, 3vw, 34px); border-block: 1px solid var(--border); background: var(--bg-2); white-space: nowrap; }
.marquee__track { display: inline-flex; align-items: center; gap: 0; animation: marquee 28s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.6rem, 4vw, 3.1rem); letter-spacing: -0.02em; color: var(--text); padding-inline: 28px; }
.marquee__track .dot { color: var(--amber); }
.marquee--warm .marquee__track span { background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.marquee--warm .marquee__track .dot { -webkit-text-fill-color: var(--amber); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ----------------------------------------------------------
   8. SERVICE CARDS
---------------------------------------------------------- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--s-6); }
.service-card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: var(--s-8); overflow: hidden;
  transition: transform .45s var(--ease), border-color .45s var(--ease), background .45s var(--ease);
}
.service-card::after { content:""; position:absolute; inset:0; background: radial-gradient(120% 80% at 0% 0%, var(--amber-soft), transparent 60%); opacity:0; transition: opacity .45s; }
.service-card:hover { transform: translateY(-8px); border-color: rgba(124,58,237,0.45); }
.service-card:hover::after { opacity: 1; }
.service-card__num { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--amber); letter-spacing: 0.05em; }
.service-card h4 { margin: var(--s-6) 0 var(--s-3); position: relative; z-index: 1; }
.service-card p { color: var(--muted); position: relative; z-index: 1; }
.service-card__arrow { position: absolute; top: var(--s-8); right: var(--s-8); width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all .4s var(--ease); transform: rotate(-45deg); }
.service-card:hover .service-card__arrow { background: var(--amber); color: #fff; border-color: var(--amber); transform: rotate(0); }
.service-card__arrow svg { width: 18px; height: 18px; }

/* ----------------------------------------------------------
   9. STATS
---------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-6); }
.stat { padding: var(--s-6) 0; border-top: 1px solid var(--border); }
.section--light .stat { border-top-color: var(--cream-border); }
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem, 1.6rem + 3.4vw, 4.6rem); line-height: 1; color: var(--amber); letter-spacing: -0.03em; }
.section--light .stat__num { color: var(--amber-deep); }
.stat__label { color: var(--muted); margin-top: var(--s-3); font-size: 0.98rem; max-width: 22ch; }
.section--light .stat__label { color: var(--ink-muted); }

/* ----------------------------------------------------------
   10. FEATURE / SPLIT
---------------------------------------------------------- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.feature-row + .feature-row { margin-top: clamp(64px, 9vw, 140px); }
.feature-row--flip .feature-row__media { order: 2; }
.feature-row__media { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 5/4; position: relative; }
.feature-list { display: grid; gap: var(--s-3); margin-top: var(--s-8); }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--muted); }
.feature-list .check { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--amber-soft); color: var(--amber); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.feature-list .check svg { width: 13px; height: 13px; }
.section--light .feature-list li { color: var(--ink-muted); }

.mini-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: var(--s-6); }
.mini-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: var(--s-8); transition: transform .4s var(--ease), border-color .4s; }
.mini-card:hover { transform: translateY(-6px); border-color: var(--border); }
.mini-card .ic { width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: var(--s-6); background: var(--surface-2); }
.mini-card .ic svg { width: 26px; height: 26px; }
.mini-card h4 { margin-bottom: var(--s-3); }
.mini-card p { color: var(--muted); font-size: 1rem; }

/* art backplates (no external images needed) */
.art { position: absolute; inset: 0; }
.art::after { content:""; position:absolute; inset:0; background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px); background-size: 18px 18px; mix-blend-mode: overlay; }
.art-amber  { background: var(--grad-warm); }
.art-cool   { background: var(--grad-cool); }
.art-violet { background: var(--grad-violet); }
.art-dark   { background: linear-gradient(135deg, #2E1A5E, #1C1640); }
.art-label { position: absolute; left: 24px; bottom: 20px; font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: rgba(10,10,11,0.55); letter-spacing: -0.02em; z-index: 1; }
.art-cool .art-label, .art-violet .art-label, .art-dark .art-label { color: rgba(255,255,255,0.6); }

/* ----------------------------------------------------------
   11. PORTFOLIO
---------------------------------------------------------- */
.filters { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: var(--s-12); }
.filters button { padding: 10px 22px; border-radius: var(--r-pill); border: 1px solid var(--border); color: var(--muted); font-weight: 600; font-size: 0.92rem; transition: all .3s var(--ease); }
.filters button:hover { color: var(--text); border-color: var(--muted-2); }
.filters button.active { background: var(--text); color: #fff; border-color: var(--text); }

.work-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: var(--s-6); }
.project-card { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; display: block; transition: transform .5s var(--ease); transform-origin: center; }
.project-card .art { transition: transform .7s var(--ease), filter .5s; }
.project-card:hover .art { transform: scale(1.07); }
.project-card__overlay { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: var(--s-8); background: linear-gradient(to top, rgba(8,8,9,0.85) 0%, rgba(8,8,9,0.15) 55%, transparent 100%); opacity: 0; transform: translateY(12px); transition: opacity .45s var(--ease), transform .45s var(--ease); }
.project-card:hover .project-card__overlay { opacity: 1; transform: translateY(0); }
.project-card__cat { font-size: var(--fs-eyebrow); font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber); margin-bottom: 8px; }
.project-card__title { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: #fff; }
.project-card__title span { display:block; font-family: var(--font-body); font-weight:500; font-size: 0.95rem; color: var(--muted); margin-top: 6px; }
.project-card.is-hidden { display: none; }
/* static caption (always visible variant) */
.project-card--static .project-card__overlay { opacity: 1; transform: none; }

/* ----------------------------------------------------------
   12. PILLARS / CHECKLIST
---------------------------------------------------------- */
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.pillar { background: var(--bg); padding: var(--s-8); transition: background .35s; }
.pillar:hover { background: var(--surface); }
.pillar__n { font-family: var(--font-display); color: var(--muted-2); font-size: 0.9rem; }
.pillar h5 { margin-top: var(--s-4); display:flex; align-items:center; gap:10px; }
.pillar .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); flex:none; }

/* ----------------------------------------------------------
   13. TESTIMONIALS
---------------------------------------------------------- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: var(--s-6); }
.quote-card { background: #fff; border: 1px solid var(--cream-border); border-radius: var(--r-md); padding: var(--s-8); display: flex; flex-direction: column; gap: var(--s-6); }
.quote-card p { font-family: var(--font-serif); font-style: italic; font-size: 1.25rem; line-height: 1.5; color: var(--ink); }
.quote-card .stars { color: var(--amber-deep); letter-spacing: 3px; font-size: 0.9rem; }
.quote-card footer { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.quote-card .avatar { width: 46px; height: 46px; border-radius: 50%; flex:none; display:flex; align-items:center; justify-content:center; font-family: var(--font-display); font-weight: 700; color:#fff; }
.quote-card .who b { display: block; color: var(--ink); font-family: var(--font-body); font-weight: 700; }
.quote-card .who span { font-size: 0.88rem; color: var(--ink-muted); }

.logo-wall { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(28px, 5vw, 64px); }
.logo-wall span { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.1rem, 2.4vw, 1.7rem); color: var(--muted-2); opacity: 0.8; transition: color .3s, opacity .3s; letter-spacing: -0.01em; }
.logo-wall span:hover { color: var(--text); opacity: 1; }
.section--light .logo-wall span { color: #B3A8CE; }
.section--light .logo-wall span:hover { color: var(--ink); }

/* ----------------------------------------------------------
   14. PROCESS / TIMELINE
---------------------------------------------------------- */
.process { display: grid; gap: 0; }
.step { display: grid; grid-template-columns: 110px 1fr; gap: var(--s-8); padding: var(--s-8) 0; border-top: 1px solid var(--border); align-items: start; transition: padding-left .4s var(--ease); }
.section--light .step { border-top-color: var(--cream-border); }
.step:last-child { border-bottom: 1px solid var(--border); }
.section--light .step:last-child { border-bottom-color: var(--cream-border); }
.step:hover { padding-left: 12px; }
.step__n { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem,4vw,3rem); color: var(--amber); line-height: 1; }
.section--light .step__n { color: var(--amber-deep); }
.step h4 { margin-bottom: var(--s-3); }
.step p { color: var(--muted); max-width: 60ch; }
.section--light .step p { color: var(--ink-muted); }

/* ----------------------------------------------------------
   15. PRICING
---------------------------------------------------------- */
.billing-toggle { display: inline-flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-pill); padding: 6px; margin-inline: auto; }
.section--light .billing-toggle { background:#fff; border-color: var(--cream-border); }
.billing-toggle button { padding: 9px 20px; border-radius: var(--r-pill); font-weight: 600; font-size: 0.9rem; color: var(--muted); transition: all .3s; }
.billing-toggle button.active { background: var(--amber); color: #fff; }
.billing-toggle .save { font-size: 0.78rem; color: var(--teal); font-weight: 700; }

.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6); align-items: stretch; }
.price-card { background: #fff; border: 1px solid var(--cream-border); border-radius: var(--r-lg); padding: var(--s-12) var(--s-8); display: flex; flex-direction: column; position: relative; transition: transform .4s var(--ease), box-shadow .4s; }
.price-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(0,0,0,0.10); }
.price-card--featured { border-color: var(--amber); box-shadow: 0 30px 70px rgba(124,58,237,0.20); transform: scale(1.02); }
.price-card--featured:hover { transform: scale(1.02) translateY(-6px); }
.price-card__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad-warm); color: #fff; font-weight: 700; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 7px 16px; border-radius: var(--r-pill); }
.price-card__name { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); }
.price-card__pitch { color: var(--ink-muted); margin-top: var(--s-3); min-height: 3em; }
.price-card__price { margin: var(--s-6) 0; display: flex; align-items: baseline; gap: 6px; }
.price-card__price .amt { font-family: var(--font-display); font-weight: 700; font-size: 3.2rem; color: var(--ink); letter-spacing: -0.03em; }
.price-card__price .per { color: var(--ink-muted); font-size: 0.95rem; }
.price-card__price .from { font-size: 0.8rem; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.price-card ul { display: grid; gap: 12px; margin: var(--s-6) 0 var(--s-8); }
.price-card li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-size: 0.98rem; }
.price-card li .check { flex:none; width: 22px; height: 22px; border-radius: 50%; background: var(--amber-soft); color: var(--amber-deep); display:flex; align-items:center; justify-content:center; margin-top: 1px; }
.price-card li .check svg { width: 12px; height: 12px; }
.price-card .btn { margin-top: auto; }

/* comparison table */
.compare { width: 100%; border-collapse: collapse; }
.compare th, .compare td { text-align: left; padding: 18px 20px; border-bottom: 1px solid var(--border); }
.compare thead th { font-family: var(--font-display); font-weight: 600; }
.compare tbody td { color: var(--muted); }
.compare td.yes { color: var(--amber); }

/* ----------------------------------------------------------
   16. FAQ
---------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left; padding: var(--s-6) 0; font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; color: var(--text); }
.faq__icon { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: transform .35s var(--ease), background .35s, color .35s; }
.faq__icon svg { width: 15px; height: 15px; }
.faq__item.open .faq__icon { transform: rotate(45deg); background: var(--amber); color: #fff; border-color: var(--amber); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a p { color: var(--muted); padding-bottom: var(--s-6); max-width: 64ch; }

/* ----------------------------------------------------------
   17. CONTACT / FORM
---------------------------------------------------------- */
.contact-split { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.contact-info h2 { margin-bottom: var(--s-6); }
.contact-info .lead { color: var(--muted); font-size: 1.18rem; max-width: 42ch; }
.contact-list { display: grid; gap: var(--s-6); margin-top: var(--s-12); }
.contact-list a, .contact-list div { display: flex; gap: 16px; align-items: center; }
.contact-list .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--amber); flex:none; }
.contact-list .ic svg { width: 20px; height: 20px; }
.contact-list b { display: block; font-family: var(--font-body); }
.contact-list span { color: var(--muted); font-size: 0.92rem; }

.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(28px, 4vw, 48px); }
.field { margin-bottom: var(--s-6); }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--muted); margin-bottom: 8px; letter-spacing: 0.02em; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 14px 16px; color: var(--text); transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(124,58,237,0.18); }
.field.row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.field.error input, .field.error textarea, .field.error select { border-color: var(--coral); }
.field .err-msg { color: var(--coral); font-size: 0.8rem; margin-top: 6px; display: none; }
.field.error .err-msg { display: block; }
.form-note { color: var(--muted); font-size: 0.85rem; margin-top: var(--s-4); display: flex; gap: 10px; align-items: center; }
.form-note svg { width: 16px; height: 16px; color: var(--teal); flex: none; }
.form-success { display: none; text-align: center; padding: var(--s-12) var(--s-4); }
.form-success.show { display: block; }
.form-success .tick { width: 64px; height: 64px; border-radius: 50%; background: var(--amber-soft); color: var(--amber); display: flex; align-items: center; justify-content: center; margin: 0 auto var(--s-6); }
.form-success .tick svg { width: 30px; height: 30px; }

/* ----------------------------------------------------------
   18. CTA BAND
---------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band__inner { background: linear-gradient(120deg, #2A1466 0%, #5B21B6 55%, #7C3AED 100%); border-radius: clamp(20px, 3vw, 36px); padding: clamp(40px, 7vw, 96px); text-align: center; position: relative; overflow: hidden; }
.cta-band__inner::before { content:""; position:absolute; inset:0; background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px); background-size: 22px 22px; }
.cta-band h2 { color: #fff; max-width: 18ch; margin-inline: auto; position: relative; }
.cta-band p { color: rgba(255,255,255,0.82); max-width: 48ch; margin: var(--s-6) auto 0; position: relative; font-weight: 500; }
.cta-band .hero__actions { justify-content: center; position: relative; }
.cta-band .btn--primary { background: #fff; color: #2A1466; }
.cta-band .btn--primary:hover { background: #F1EAFC; box-shadow: 0 14px 40px rgba(0,0,0,0.3); }
.cta-band .btn--ghost { border-color: rgba(255,255,255,0.5); color: #fff; }
.cta-band .btn--ghost:hover { background: rgba(255,255,255,0.14); border-color:#fff; color:#fff; }

/* ----------------------------------------------------------
   19. FOOTER
---------------------------------------------------------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border); padding-top: clamp(56px, 8vw, 110px); }
.footer-cta { padding-bottom: clamp(48px, 7vw, 90px); border-bottom: 1px solid var(--border); }
.footer-cta a { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 8vw, 6rem); letter-spacing: -0.03em; color: var(--text); display: inline-flex; align-items: center; gap: 0.2em; transition: color .3s; line-height: 1.02; }
.footer-cta a:hover { color: var(--amber); }
.footer-cta a svg { width: 0.7em; height: 0.7em; transition: transform .4s var(--ease); }
.footer-cta a:hover svg { transform: translate(8px,-8px); }
.footer-main { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--s-8); padding-block: clamp(48px, 6vw, 80px); }
.footer-brand .nav__logo { margin-bottom: var(--s-6); }
.footer-logo { display: inline-block; margin-bottom: var(--s-6); }
.footer-logo img { height: 64px; width: auto; display: block; }
.footer-brand p { color: var(--muted); max-width: 36ch; font-size: 0.96rem; }
.footer-col h6 { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: var(--s-6); font-family: var(--font-body); font-weight: 700; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { color: var(--muted); font-size: 0.96rem; transition: color .25s; }
.footer-col a:hover { color: var(--amber); }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s-4); padding-block: var(--s-8); border-top: 1px solid var(--border); color: var(--muted-2); font-size: 0.86rem; }
.footer-bottom .socials { display: flex; gap: 10px; }
.footer-bottom .socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all .3s; }
.footer-bottom .socials a:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-2px); }
.footer-bottom .socials svg { width: 17px; height: 17px; }

/* ----------------------------------------------------------
   20. CUSTOM CURSOR + REVEAL + MISC
---------------------------------------------------------- */
.cursor-dot { position: fixed; top: 0; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--amber); pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); mix-blend-mode: difference; transition: width .25s, height .25s, background .25s; will-change: transform; }
.cursor-dot.grow { width: 56px; height: 56px; background: rgba(255,255,255,0.9); }
@media (hover: none) { .cursor-dot { display: none; } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal[data-delay="1"]{transition-delay:.08s}
.reveal[data-delay="2"]{transition-delay:.16s}
.reveal[data-delay="3"]{transition-delay:.24s}
.reveal[data-delay="4"]{transition-delay:.32s}
.reveal[data-delay="5"]{transition-delay:.40s}

.back-to-top { position: fixed; right: 24px; bottom: 24px; width: 48px; height: 48px; border-radius: 50%; background: var(--amber); color: #fff; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(12px); transition: all .35s var(--ease); z-index: 90; }
.back-to-top.show { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--amber-deep); }
.back-to-top svg { width: 20px; height: 20px; }

/* ----------------------------------------------------------
   21. RESPONSIVE
---------------------------------------------------------- */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: var(--s-12) var(--s-8); }
  .footer-brand { grid-column: 1 / -1; }
  .pricing { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-6px); }
}
@media (max-width: 860px) {
  .nav__links, .nav__right .btn { display: none; }
  .nav__toggle { display: flex; }
  .feature-row { grid-template-columns: 1fr; gap: var(--s-8); }
  .feature-row--flip .feature-row__media { order: 0; }
  .contact-split { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: var(--s-8) var(--s-6); }
  .step { grid-template-columns: 64px 1fr; gap: var(--s-6); }
}
@media (max-width: 560px) {
  .work-grid { grid-template-columns: 1fr; }
  .field.row { grid-template-columns: 1fr; }
  .hero__meta { gap: var(--s-6); }
  .cta-band__inner { padding: 36px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .reveal-words .word > span { transform: none !important; }
  .cursor-dot { display: none; }
}

/* ============================================================
   22. V2 COMPONENTS  (images, bento, tabs, team, metrics, chips)
   ============================================================ */
/* image frames */
.media { border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 26px 60px rgba(124,58,237,0.14); position: relative; background: var(--surface-2); }
.media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media--tall { aspect-ratio: 5/6; }
.media--wide { aspect-ratio: 16/11; }
.media--3x2 { aspect-ratio: 3/2; }
.media--4x3 { aspect-ratio: 4/3; }
.media__badge { position: absolute; left: 16px; bottom: 16px; background: rgba(255,255,255,0.92); color: var(--text); font-weight: 700; font-size: 0.8rem; padding: 8px 14px; border-radius: var(--r-pill); backdrop-filter: blur(6px); }

/* home hero split */
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.9fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.hero-grid .hero__sub { max-width: none; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

/* proof strip */
.proof { display: flex; align-items: center; gap: clamp(14px, 3vw, 30px); flex-wrap: wrap; margin-top: var(--s-8); }
.proof .stars { color: var(--amber); letter-spacing: 2px; font-size: 0.95rem; }
.proof .label { color: var(--muted); font-size: 0.9rem; }
.proof .divider { width: 1px; height: 26px; background: var(--border); }

/* benefit triad */
.triad { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6); }
.triad__item { display: flex; flex-direction: column; gap: 10px; }
.triad__item .ic { width: 50px; height: 50px; border-radius: 14px; background: var(--amber-soft); color: var(--amber); display: flex; align-items: center; justify-content: center; }
.triad__item .ic svg { width: 24px; height: 24px; }
.triad__item p { color: var(--muted); }
@media (max-width: 760px) { .triad { grid-template-columns: 1fr; } }

/* OUR WORK cards (image + body) */
.work3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--s-6); }
.work-card { border-radius: var(--r-lg); overflow: hidden; background: var(--surface); border: 1px solid var(--border); transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.work-card:hover { transform: translateY(-7px); box-shadow: 0 26px 52px rgba(124,58,237,0.16); }
.work-card__media { aspect-ratio: 4/3; overflow: hidden; }
.work-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.work-card:hover .work-card__media img { transform: scale(1.06); }
.work-card__body { padding: var(--s-6) var(--s-6) var(--s-8); }
.work-card__body .eyebrow { margin-bottom: 12px; }
.work-card__body h4 { margin-bottom: 10px; }
.work-card__body p { color: var(--muted); font-size: 0.98rem; }

/* bento grid */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-6); }
.bento__item { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--surface); border: 1px solid var(--border); min-height: 220px; display: flex; }
.bento__item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bento__item .cap { position: relative; z-index: 1; margin-top: auto; padding: var(--s-6); width: 100%; background: linear-gradient(to top, rgba(20,10,30,0.78), transparent); color: #fff; font-family: var(--font-display); font-weight: 600; }
.bento__item--2 { grid-column: span 2; }
.bento__item--tall { grid-row: span 2; }
@media (max-width: 760px) { .bento { grid-template-columns: 1fr 1fr; } .bento__item--2 { grid-column: span 2; } }

/* pricing tabs */
.tabs__nav { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: var(--s-12); }
.tabs__btn { padding: 12px 24px; border-radius: var(--r-pill); border: 1px solid var(--border); background: var(--surface); color: var(--muted); font-weight: 600; font-size: 0.95rem; transition: all .3s var(--ease); }
.tabs__btn:hover { color: var(--text); border-color: var(--muted-2); }
.tabs__btn.active { background: var(--amber); color: #fff; border-color: var(--amber); box-shadow: 0 12px 26px rgba(124,58,237,0.28); }
.tabs__panel { display: none; }
.tabs__panel.active { display: block; animation: tabIn .5s var(--ease); }
@keyframes tabIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* team cards */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: var(--s-6); }
.team-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--s-8); text-align: center; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(124,58,237,0.14); }
.team-card__avatar { width: 86px; height: 86px; border-radius: 50%; margin: 0 auto var(--s-6); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 1.8rem; color: #fff; overflow: hidden; }
.team-card__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card h4 { margin-bottom: 4px; }
.team-card .role { color: var(--amber-deep); font-weight: 600; font-size: 0.9rem; }
.team-card .tcontact { color: var(--muted); font-size: 0.86rem; margin-top: 12px; display: grid; gap: 4px; }
.team-card .tcontact a:hover { color: var(--amber); }

/* metric cards (case study) */
.metric-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: var(--s-6); }
.metric-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: var(--s-8); }
.metric-card .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.3rem); color: var(--amber); line-height: 1; letter-spacing: -0.02em; }
.metric-card .lbl { color: var(--muted); margin-top: 12px; font-size: 0.96rem; }

/* Meta Ads recreated data cards */
.ad-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--s-6); }
.ad-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--s-8); box-shadow: 0 16px 40px rgba(124,58,237,0.06); }
.ad-card__title { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--text); margin-bottom: var(--s-6); padding-bottom: var(--s-4); border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.ad-card__title .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--amber); flex: none; }
.ad-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--border-soft); }
.ad-row:last-child { border-bottom: none; }
.ad-row .k { color: var(--muted); font-size: 0.9rem; }
.ad-row .v { font-family: var(--font-display); font-weight: 600; color: var(--text); }
.ad-row .v.hot { color: var(--amber); }

/* capability chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { padding: 8px 16px; border-radius: var(--r-pill); border: 1px solid var(--amber); color: var(--amber-deep); background: var(--amber-soft); font-size: 0.85rem; font-weight: 600; }

/* split feature with real image (reuse feature-row) */
.feature-row__media.media { aspect-ratio: 3/2; }

.tabs { position: relative; }

/* ============================================================
   23. CHAT CONCIERGE WIDGET (global, routes to WhatsApp)
   ============================================================ */
.back-to-top { left: 24px; right: auto; }   /* move clear of chat launcher */
.chat-widget { position: fixed; right: 24px; bottom: 24px; z-index: 95; }
.chat-launcher { width: 60px; height: 60px; border-radius: 50%; background: var(--amber); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 34px rgba(124,58,237,0.42); transition: transform .3s var(--ease), background .3s; }
.chat-launcher:hover { transform: translateY(-2px) scale(1.04); background: var(--amber-deep); }
.chat-launcher svg { width: 26px; height: 26px; }
.chat-launcher .ic-close { display: none; }
.chat-widget.open .chat-launcher .ic-chat { display: none; }
.chat-widget.open .chat-launcher .ic-close { display: block; }
.chat-panel { position: absolute; right: 0; bottom: 74px; width: min(340px, calc(100vw - 48px)); background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: 0 30px 70px rgba(30,22,64,0.22); overflow: hidden; transform-origin: bottom right; animation: chatIn .35s var(--ease); }
@keyframes chatIn { from { opacity: 0; transform: translateY(12px) scale(.96); } to { opacity: 1; transform: none; } }
.chat-head { display: flex; align-items: center; gap: 12px; padding: 18px 20px; background: var(--grad-violet); color: #fff; }
.chat-ava { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; flex: none; }
.chat-head__t b { display: block; font-family: var(--font-display); font-size: 1rem; }
.chat-head__t span { font-size: 0.8rem; opacity: 0.85; }
.chat-body { padding: 20px; display: grid; gap: 14px; }
.chat-msg { background: var(--surface-2); color: var(--text); padding: 14px 16px; border-radius: 14px; border-top-left-radius: 4px; font-size: 0.92rem; line-height: 1.5; }
.chat-quick { display: grid; gap: 8px; }
.chat-quick button { text-align: left; padding: 11px 14px; border-radius: 12px; border: 1px solid var(--border); background: #fff; color: var(--text); font-weight: 600; font-size: 0.9rem; transition: all .25s var(--ease); }
.chat-quick button:hover { border-color: var(--amber); background: var(--amber-soft); color: var(--amber-deep); }
.chat-foot { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--border); }
.chat-foot input { flex: 1; min-width: 0; border: 1px solid var(--border); border-radius: var(--r-pill); padding: 10px 16px; background: var(--bg); }
.chat-foot input:focus { outline: none; border-color: var(--amber); }
.chat-send { width: 42px; height: 42px; flex: none; border-radius: 50%; background: var(--amber); color: #fff; display: flex; align-items: center; justify-content: center; transition: background .25s; }
.chat-send:hover { background: var(--amber-deep); }
.chat-send svg { width: 18px; height: 18px; }
.chat-links { display: flex; gap: 16px; padding: 0 20px 16px; }
.chat-links a { font-size: 0.82rem; font-weight: 600; color: var(--amber-deep); }
.chat-links a:hover { text-decoration: underline; }
@media (prefers-reduced-motion: reduce) { .chat-panel { animation: none; } }

/* ============================================================
   24. LANGUAGE SWITCHER
   ============================================================ */
.lang-select { appearance: none; -webkit-appearance: none; background-color: transparent; border: 1px solid var(--border); border-radius: var(--r-pill); padding: 8px 30px 8px 14px; font-family: var(--font-body); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.04em; color: var(--text); cursor: pointer; transition: border-color .25s, color .25s; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237C3AED' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 11px center; }
.lang-select:hover { border-color: var(--amber); color: var(--amber-deep); }
.lang-select:focus { outline: none; border-color: var(--amber); }
.lang-select option { color: #1E1640; }
.lang-select-m { margin-top: 22px; }
.lang-select-m .lang-select { font-size: 1rem; padding: 12px 38px 12px 18px; }
@media (max-width: 860px) { .nav__right .lang-select { display: none; } }

/* ---- online booking widget ---- */
#calendly-embed .bk { background:#fff; border:1px solid var(--border); border-radius:var(--r-lg); padding:32px 28px; }
.bk-h { margin:0 0 6px; }
.bk-grid { display:flex; flex-wrap:wrap; gap:10px; margin:18px 0; }
.bk-pill { padding:11px 18px; border:1px solid var(--border); border-radius:999px; background:#fff; cursor:pointer; font:inherit; color:var(--ink); transition:border-color .2s, color .2s, background .2s; }
.bk-pill:hover, .bk-pill[aria-checked="true"] { border-color:var(--amber); color:var(--amber); }
.bk-pill:focus-visible { outline:2px solid var(--amber); outline-offset:2px; }
.bk-back { background:none; border:none; cursor:pointer; font-size:1.3rem; color:var(--ink-muted); margin-bottom:8px; padding:4px 8px; }
.bk-back:hover { color:var(--amber); }
.bk-tz { color:var(--ink-muted); font-size:.85rem; margin-top:8px; }
.bk-form { display:flex; flex-direction:column; gap:12px; margin-top:18px; }
.bk-form input, .bk-form textarea { width:100%; padding:13px 16px; border:1px solid var(--border); border-radius:var(--r-md, 12px); font:inherit; background:#fff; color:var(--ink); }
.bk-form input:focus, .bk-form textarea:focus { outline:none; border-color:var(--amber); }
.bk-tick { width:54px; height:54px; margin:0 auto 14px; border-radius:50%; background:var(--amber); color:#fff; font-size:1.6rem; display:flex; align-items:center; justify-content:center; }
@media (prefers-reduced-motion: reduce) { .bk-pill { transition:none; } }

/* ---- booking admin ---- */
.adm-sec { margin:34px 0; padding-top:24px; border-top:1px solid var(--border); }
.adm-sec h2 { margin:0 0 16px; }
.adm-day { display:flex; gap:14px; align-items:flex-start; padding:8px 0; border-bottom:1px solid var(--border); flex-wrap:wrap; }
.adm-day > strong { min-width:96px; padding-top:6px; }
.adm-windows { display:flex; flex-wrap:wrap; gap:8px; align-items:center; }
.adm-rule { display:inline-flex; align-items:center; gap:8px; background:var(--amber-soft); border-radius:999px; padding:5px 12px; font-size:.9rem; }
.adm-rule button { background:none; border:none; cursor:pointer; color:var(--ink-muted); font-size:.85rem; }
.adm-rule button:hover { color:var(--amber-deep); }
.adm-add { display:inline-flex; gap:6px; align-items:center; }
.adm-add input[type="time"] { padding:6px 8px; border:1px solid var(--border); border-radius:8px; font:inherit; }
.adm-exform { display:flex; flex-wrap:wrap; gap:8px; align-items:center; margin-bottom:14px; }
.adm-exform input, .adm-exform select { padding:9px 11px; border:1px solid var(--border); border-radius:10px; font:inherit; }
.adm-booking { display:flex; justify-content:space-between; align-items:center; gap:12px; border-radius:12px; padding:12px 16px; margin-bottom:8px; background:#fff; border:1px solid var(--border); }
.adm-bar { display:flex; justify-content:space-between; align-items:center; gap:12px; margin-bottom:18px; flex-wrap:wrap; }

/* ============================================================
   REEL WALL — Our Work gallery
   ============================================================ */
.reel-filters { justify-content: center; }
.reelwall { column-width: 264px; column-gap: 22px; }
@media (max-width: 600px) { .reelwall { column-width: 156px; column-gap: 14px; } }
.reel { break-inside: avoid; -webkit-column-break-inside: avoid; margin: 0 0 22px; }
.reel__media { position: relative; border-radius: var(--r-lg); overflow: hidden; background: #0d0a18; box-shadow: 0 10px 30px -14px rgba(30,22,64,.45); cursor: pointer; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.reel__media:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -18px rgba(92,33,182,.5); }
.reel__vid, .reel__img { display: block; width: 100%; }
.reel__vid { aspect-ratio: 9/16; object-fit: cover; }
.reel__img { height: auto; }
.reel__media::after { content: ""; position: absolute; inset: auto 0 0 0; height: 40%; background: linear-gradient(to top, rgba(13,10,24,.4), transparent); opacity: 0; transition: opacity .4s; pointer-events: none; }
.reel__media:hover::after { opacity: 1; }
.reel__badge { position: absolute; top: 12px; left: 12px; z-index: 3; font-family: var(--font-display); font-size: .66rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--amber-deep); background: rgba(255,255,255,.92); backdrop-filter: blur(6px); padding: 6px 11px; border-radius: var(--r-pill); }
.reel__play { position: absolute; right: 12px; bottom: 12px; z-index: 3; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: var(--amber-deep); background: rgba(255,255,255,.94); backdrop-filter: blur(6px); opacity: 0; transform: scale(.8); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.reel__play svg { width: 18px; height: 18px; margin-left: 1px; }
.reel__play--zoom svg { margin-left: 0; }
.reel__media:hover .reel__play { opacity: 1; transform: scale(1); }
.reel__cap { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--text); margin: 12px 2px 0; }
.reel.is-hidden { display: none; }
.reel-more { text-align: center; color: var(--muted); font-size: .95rem; margin-top: var(--s-8); }

/* ---- Lightbox ---- */
.rlb { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 24px; background: rgba(15,10,30,.86); backdrop-filter: blur(12px); opacity: 0; pointer-events: none; transition: opacity .35s var(--ease); }
.rlb.open { opacity: 1; pointer-events: auto; }
.rlb__stage { position: relative; display: flex; align-items: center; justify-content: center; max-width: min(92vw, 540px); max-height: 88vh; }
.rlb__media { max-width: 100%; max-height: 88vh; border-radius: var(--r-md); overflow: hidden; box-shadow: 0 30px 80px -20px rgba(0,0,0,.6); background: #000; }
.rlb__media video, .rlb__media img { display: block; max-width: 100%; max-height: 88vh; width: auto; height: auto; }
.rlb__close { position: absolute; top: -52px; right: 0; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: rgba(255,255,255,.14); transition: background .3s; }
.rlb__close:hover { background: rgba(255,255,255,.28); }
.rlb__nav { position: fixed; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: rgba(255,255,255,.14); transition: background .3s; }
.rlb__nav:hover { background: rgba(255,255,255,.28); }
.rlb__nav--prev { left: max(16px, 3vw); }
.rlb__nav--next { right: max(16px, 3vw); }
.rlb__nav svg, .rlb__close svg { width: 22px; height: 22px; }
@media (max-width: 600px) { .rlb__nav { width: 42px; height: 42px; } .rlb__close { top: -46px; } }
body.rlb-open { overflow: hidden; }
