body:not(.mic-ready) > *:not(#mic-loader) { opacity: 0 !important; pointer-events: none !important; }
body:not(.mic-ready) { background: #1A1410; }

/* ─────────────────────────────────────────
   ZERO CSS VARIABLES FOR TEXT COLORS.
   Every color is a hardcoded hex value.
   This is intentional and non-negotiable.
───────────────────────────────────────── */
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; background: #F4EDE2; overscroll-behavior: none; }
body {
  background: #F4EDE2;
  color: #1A1410;
  font-family: 'DM Sans', Arial, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}

::selection { background: #F5D5C0; color: #1A1410; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-thumb { background: #E8621A; }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
#hero {
  padding-top: clamp(56px, 8vw, 72px);
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: stretch;
}

.hero-left {
  background: #F4EDE2;
  padding: 4vw 5vw 0 5vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.15s forwards;
}
.hero-kicker-line { width: 32px; height: 1px; background: #E8621A; }
.hero-kicker-text {
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #E8621A;
  font-family: 'DM Sans', Arial, sans-serif;
}

.hero-h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 5vw, 6rem);
  font-weight: 300;
  line-height: 1.03;
  color: #1A1410;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.28s forwards;
}
.hero-h1 em { font-style: italic; color: #E8621A; }

.hero-body-text {
  font-size: 0.95rem;
  color: #4A3E34;
  max-width: 440px;
  line-height: 1.88;
  margin-bottom: 2.4rem;
  font-family: 'DM Sans', Arial, sans-serif;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.7s 0.42s forwards;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 0.55s forwards;
}
.btn-orange {
  display: inline-flex;
  align-items: center;
  background: #E8621A;
  color: #ffffff;
  padding: 0.88rem 2rem;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.btn-orange:hover { background: #C04E0E; transform: translateY(-2px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #1A1410;
  padding: 0.88rem 2rem;
  border: 1px solid #D8CCBC;
  cursor: pointer;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: #E8621A; color: #E8621A; }

/* Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid #D8CCBC;
  opacity: 0;
  animation: fadeUp 0.7s 0.7s forwards;
}
.stat-block { padding-right: 1.2rem; min-width: 0; }
.stat-block + .stat-block { border-left: 1px solid #D8CCBC; padding-left: 1.2rem; padding-right: 1.2rem; }
.stat-block:last-child { padding-right: 0; }
.stat-big {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: #1A1410;
  line-height: 1;
  display: block;
  transition: color 0.2s;
}
.stat-big .suf { color: #E8621A; }
.stat-lbl {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8A7E72;
  margin-top: 0.5rem;
  display: block;
  font-family: 'DM Sans', Arial, sans-serif;
  line-height: 1.4;
  word-break: break-word;
}
.stat-ctx {
  font-size: 0.7rem;
  color: #4A3E34;
  line-height: 1.5;
  margin-top: 0.4rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s, opacity 0.3s;
  font-family: 'DM Sans', Arial, sans-serif;
}
.stat-block:hover .stat-ctx { max-height: 80px; opacity: 1; }
.stat-block:hover .stat-big { color: #E8621A; }

/* Hero right dark panel */
.hero-right {
  background: #1A1410;
  position: relative;
  overflow: hidden;
  align-self: stretch;
}
.hero-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.hero-right-deco {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16rem;
  font-weight: 600;
  font-style: italic;
  color: #ffffff;
  opacity: 0.025;
  pointer-events: none;
  user-select: none;
}
.hero-logo-box {
  position: relative;
  z-index: 1;
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.9s 0.35s forwards;
}
.hero-logo-letters {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.hero-logo-m {
  font-family: 'Big Shoulders Display', Impact, 'Arial Black', Arial, sans-serif;
  font-weight: 900;
  font-size: 7rem;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-logo-c {
  font-family: 'Big Shoulders Display', Impact, 'Arial Black', Arial, sans-serif;
  font-weight: 900;
  font-size: 7rem;
  color: #E8621A;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-logo-mic-svg {
  margin: 0 4px;
  position: relative;
  top: -4px;
  filter: drop-shadow(0 4px 12px rgba(232,98,26,0.4));
}
.hero-logo-manch {
  font-family: 'Noto Sans Devanagari', 'DM Sans', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
  display: block;
}
.hero-logo-full-text {
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-top: 0.3rem;
  font-family: 'DM Sans', Arial, sans-serif;
  display: block;
}
.hero-tag {
  margin-top: 2rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  text-align: center;
  font-family: 'DM Sans', Arial, sans-serif;
}
.hero-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: #E8621A;
}

/* ══════════════════════════════
   LEAD CAPTURE
══════════════════════════════ */
#lead {
  background: #111111;
  padding: 4rem 5vw;
}
.lc-box { max-width: 1100px; margin: 0 auto; }

.lc-front {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}
.lc-front.gone { display: none; }

.lc-tag-line {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #E8621A;
  font-family: 'DM Sans', Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}
.lc-tag-line::before { content: ''; width: 18px; height: 1px; background: #E8621A; }
.lc-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.2;
}
.lc-headline em { font-style: italic; color: #E8621A; }
.lc-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.8rem;
  line-height: 1.75;
  font-family: 'DM Sans', Arial, sans-serif;
}

.lc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 0.8rem;
  align-items: end;
}
.lc-fgroup {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.lc-flbl {
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-family: 'DM Sans', Arial, sans-serif;
}
.lc-finput {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffffff;
  padding: 0.8rem 0.9rem;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 0.83rem;
  font-weight: 300;
  border-radius: 2px;
  outline: none;
  width: 100%;
}
.lc-finput::placeholder { color: rgba(255,255,255,0.5); }
.lc-finput:focus { border-color: #E8621A; }
.lc-fsub {
  background: #E8621A;
  color: #ffffff;
  padding: 0.8rem 1.4rem;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  white-space: nowrap;
  align-self: end;
}
.lc-fsub:hover { background: #C04E0E; }

/* Assessment tile */
.lc-assess {
  display: none;
  text-align: center;
  padding: 2rem 0;
}
.lc-assess.show { display: block; }
.lc-assess.show { display: block; }
.lc-assess-h {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 0.8rem;
}
.lc-assess-h em { font-style: italic; color: #E8621A; }
.lc-assess-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.42);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'DM Sans', Arial, sans-serif;
}
.lc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  text-align: left;
}
.lc-step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(232,98,26,0.2);
  border-radius: 3px;
  padding: 1.5rem;
}
.lc-step-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: #E8621A;
  display: block;
  margin-bottom: 0.5rem;
}
.lc-step-title { font-size: 0.82rem; font-weight: 500; color: #ffffff; margin-bottom: 0.3rem; font-family: 'DM Sans', Arial, sans-serif; }
.lc-step-desc { font-size: 0.75rem; color: rgba(255,255,255,0.4); line-height: 1.6; font-family: 'DM Sans', Arial, sans-serif; }
.btn-assess {
  display: inline-flex;
  align-items: center;
  background: #E8621A;
  color: #ffffff;
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-assess:hover { background: #C04E0E; }
.assess-note { font-size: 0.7rem; color: rgba(255,255,255,0.22); margin-top: 1rem; font-family: 'DM Sans', Arial, sans-serif; }

/* ══════════════════════════════
   MARQUEE
══════════════════════════════ */
.marquee {
  background: #E8621A;
  overflow: hidden;
  padding: 0.85rem 0;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-flex;
  gap: 2.5rem;
  animation: marquee 32s linear infinite;
}
.mi {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  flex-shrink: 0;
  font-family: 'DM Sans', Arial, sans-serif;
}
.ms { color: rgba(255,255,255,0.4); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ══════════════════════════════
   SECTIONS COMMON
══════════════════════════════ */
section { padding: 5rem 5vw; }

.kicker {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}
.kicker-txt {
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #E8621A;
  font-family: 'DM Sans', Arial, sans-serif;
}
.kicker::after { content: ''; width: 32px; height: 1px; background: #E8621A; }

.sh1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  font-weight: 300;
  line-height: 1.12;
  color: #1A1410;
}
.sh1 em { font-style: italic; color: #E8621A; }
.sh1-white {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  font-weight: 300;
  line-height: 1.12;
  color: #ffffff;
}
.sh1-white em { font-style: italic; color: #E8621A; }

/* ══════════════════════════════
   WHY MIC
══════════════════════════════ */
#why { background: #EDE3D4; }

.why-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
  margin-bottom: 0;
}
.why-body {
  font-size: 0.93rem;
  color: #4A3E34;
  line-height: 1.9;
  font-family: 'DM Sans', Arial, sans-serif;
  margin-top: 1.5rem;
}
.why-body p + p { margin-top: 1.1rem; }
.why-body strong { color: #1A1410; font-weight: 500; }

.pillars-lbl {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8A7E72;
  margin: 2.5rem 0 1.2rem;
  display: block;
  font-family: 'DM Sans', Arial, sans-serif;
}
.pillars { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; margin-top: 1.5rem; }

/* Flip cards */
.flip-wrap { height: 180px; perspective: 1000px; cursor: pointer; }
.flip-card {
  width: 100%; height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.4,0.2,0.2,1);
}
.flip-wrap:hover .flip-card { transform: rotateY(180deg); }
.flip-f, .flip-b {
  position: absolute; inset: 0;
  border-radius: 3px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}
.flip-f {
  background: #F4EDE2;
  border: 1px solid #D8CCBC;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
}
.flip-f-lbl {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #E8621A;
  margin-bottom: 0.3rem;
  font-family: 'DM Sans', Arial, sans-serif;
}
.flip-f-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: #1A1410;
  word-break: break-word;
  hyphens: auto;
}
.flip-b {
  background: #111111;
  border: 1px solid rgba(232,98,26,0.3);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.1rem;
  gap: 0.35rem;
}
.flip-b-lbl {
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #E8621A;
  flex-shrink: 0;
  font-family: 'DM Sans', Arial, sans-serif;
}
.flip-b-body {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  font-family: 'DM Sans', Arial, sans-serif;
  overflow: hidden;
}

/* Origin quote */
.origin-card {
  background: #111111;
  padding: 3rem 2.8rem;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  border-left: 3px solid #E8621A;
}
.origin-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 8rem;
  line-height: 0.7;
  color: #E8621A;
  opacity: 0.1;
  display: block;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.origin-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: #ffffff;
}
.origin-text em { font-style: normal; color: #E8621A; }
.origin-attr {
  margin-top: 2rem;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  font-family: 'DM Sans', Arial, sans-serif;
}

/* ══════════════════════════════
   WHO WE SERVE
══════════════════════════════ */
#serve { background: #F4EDE2; content-visibility: auto; contain-intrinsic-size: auto 600px; }
.serve-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
}
.serve-desc { font-size: 0.9rem; color: #4A3E34; line-height: 1.85; font-family: 'DM Sans', Arial, sans-serif; }
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #D8CCBC;
  border: 1px solid #D8CCBC;
}
.sc {
  background: #F4EDE2;
  padding: 2.2rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.sc::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: #E8621A;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.sc:hover { background: #EDE3D4; }
.sc:hover::after { transform: scaleX(1); }
.sc-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.82rem;
  color: #E8621A;
  margin-bottom: 1rem;
  display: block;
}
.sc-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #1A1410;
  margin-bottom: 0.6rem;
}
.sc-text { font-size: 0.78rem; color: #8A7E72; line-height: 1.75; font-family: 'DM Sans', Arial, sans-serif; }

/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
#services { background: #111111; content-visibility: auto; contain-intrinsic-size: auto 800px; }
.svc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  margin-top: 4rem;
}
.svc-primary {
  border: 1px solid rgba(232,98,26,0.22);
  border-radius: 4px;
  padding: 3rem;
  background: rgba(232,98,26,0.04);
}
.svc-badge {
  display: inline-block;
  background: #E8621A;
  color: #ffffff;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1.4rem;
  font-family: 'DM Sans', Arial, sans-serif;
}
.svc-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.1rem;
}
.svc-title em { font-style: italic; color: #E8621A; }
.svc-desc { font-size: 0.86rem; color: rgba(255,255,255,0.48); line-height: 1.85; margin-bottom: 2.2rem; font-family: 'DM Sans', Arial, sans-serif; }
.svc-steps { display: flex; flex-direction: column; gap: 1.5rem; }
.svc-step { display: flex; gap: 1.2rem; }
.svc-step-n {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  color: #E8621A;
  min-width: 28px;
  margin-top: 1px;
}
.svc-step-title { font-size: 0.85rem; color: #ffffff; font-weight: 500; margin-bottom: 0.2rem; font-family: 'DM Sans', Arial, sans-serif; }
.svc-step-desc { font-size: 0.78rem; color: rgba(255,255,255,0.42); line-height: 1.7; font-family: 'DM Sans', Arial, sans-serif; }

.svc-also { display: flex; flex-direction: column; gap: 1.4rem; }
.svc-also-lbl {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-family: 'DM Sans', Arial, sans-serif;
}
.svc-card {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 3px;
  padding: 1.8rem;
  transition: border-color 0.2s, background 0.2s;
}
.svc-card:hover { border-color: rgba(232,98,26,0.3); background: rgba(232,98,26,0.04); }
.svc-card-tag {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #E8621A;
  margin-bottom: 0.6rem;
  display: block;
  font-family: 'DM Sans', Arial, sans-serif;
}
.svc-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.svc-card-desc { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.75; font-family: 'DM Sans', Arial, sans-serif; }

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
#about { background: #EDE3D4; }
.about-grid {
  margin-top: 3.5rem;
  overflow: hidden;
}
.about-photo-wrap { display: none; }
.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
  display: block;
}
.about-caption {
  margin-top: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8A7E72;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', Arial, sans-serif;
}
.about-caption::before { content: ''; width: 20px; height: 1px; background: #E8621A; }

.about-body {
  font-size: 0.92rem;
  color: #4A3E34;
  line-height: 1.9;
  font-family: 'DM Sans', Arial, sans-serif;
}
.about-body p + p { margin-top: 1rem; }
.about-body strong { color: #1A1410; font-weight: 500; }

.about-creds { margin-top: 2.5rem; }
.ac {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid #D8CCBC;
}
.ac:first-child { border-top: 1px solid #D8CCBC; }
.ac-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #E8621A;
  flex-shrink: 0;
  margin-top: 7px;
}
.ac-text { font-size: 0.82rem; color: #4A3E34; line-height: 1.6; font-family: 'DM Sans', Arial, sans-serif; }
.ac-text strong { color: #1A1410; font-weight: 500; }

.langs-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #F4EDE2;
  border: 1px solid #D8CCBC;
  border-radius: 3px;
}
.langs-lbl { font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: #8A7E72; margin-bottom: 0.8rem; font-family: 'DM Sans', Arial, sans-serif; }
.langs-row { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.5rem; }
.lchip {
  padding: 0.28rem 0.8rem;
  border-radius: 2px;
  font-size: 0.75rem;
  font-family: 'DM Sans', Arial, sans-serif;
}
.lchip.p { background: #E8621A; color: #ffffff; }
.lchip.s { background: #EDE3D4; color: #4A3E34; border: 1px solid #D8CCBC; }
.langs-note { font-size: 0.7rem; color: #8A7E72; margin-top: 0.5rem; line-height: 1.5; font-family: 'DM Sans', Arial, sans-serif; }

/* Cred wall */
.cred-wall { margin-top: 3rem; padding-top: 3rem; border-top: 1px solid #D8CCBC; }
.cred-wall-ttl { font-size: 0.67rem; letter-spacing: 0.2em; text-transform: uppercase; color: #8A7E72; margin-bottom: 2.5rem; text-align: center; font-family: 'DM Sans', Arial, sans-serif; }
.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #D8CCBC;
  border: 1px solid #D8CCBC;
}
.cred-col { background: #F4EDE2; padding: 2rem 1.8rem; }
.cred-col-lbl { font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: #E8621A; margin-bottom: 1rem; display: block; font-family: 'DM Sans', Arial, sans-serif; }
.cred-items { display: flex; flex-direction: column; gap: 0.5rem; }
.cred-item { font-size: 0.8rem; color: #4A3E34; padding: 0.3rem 0; border-bottom: 1px solid #D8CCBC; font-family: 'DM Sans', Arial, sans-serif; }
.cred-item:last-child { border-bottom: none; }

/* ══════════════════════════════
   TEAM
══════════════════════════════ */
#team { background: #F4EDE2; content-visibility: auto; contain-intrinsic-size: auto 600px; }
.team-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}
.team-desc { font-size: 0.9rem; color: #4A3E34; line-height: 1.85; font-family: 'DM Sans', Arial, sans-serif; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.tc {
  padding: 2rem 1.8rem;
  border: 1px solid #D8CCBC;
  border-radius: 3px;
  background: #F4EDE2;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.tc:hover { transform: translateY(-3px); border-color: #F5D5C0; box-shadow: 0 12px 32px rgba(26,20,16,0.07); }
.tc-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #EDE3D4;
  border: 1px solid #D8CCBC;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  margin-bottom: 1.1rem;
}
.tc-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.05rem; font-weight: 400; color: #1A1410; margin-bottom: 0.4rem; }
.tc-desc { font-size: 0.77rem; color: #8A7E72; line-height: 1.7; font-family: 'DM Sans', Arial, sans-serif; }
.tc-stat { margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid #D8CCBC; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: #E8621A; font-family: 'DM Sans', Arial, sans-serif; }

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
#testimonials { background: #EDE3D4; content-visibility: auto; contain-intrinsic-size: auto 800px; }
.testi-carousel-wrap {
  position: relative;
  margin: 3rem 0 0;
  overflow: hidden;
  border-radius: 6px;
}
.testi-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.32, 0.72, 0, 1);
  will-change: transform;
  position: relative;
  z-index: 1;
}
.testi-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 550px;
  max-height: 550px;
  border-radius: 6px;
  overflow: hidden;
}
.testi-slide-img {
  position: relative;
  overflow: hidden;
}
.testi-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testi-slide-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, #111111 100%);
  pointer-events: none;
}
.testi-slide-caption {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  padding: 0.4rem 0.8rem;
  border-radius: 2px;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-family: 'DM Sans', Arial, sans-serif;
  z-index: 2;
}
.testi-slide-content {
  background: #111111;
  padding: 2.2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 3px solid #E8621A;
  overflow: hidden;
}
.testi-outcome-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,98,26,0.12);
  border: 1px solid rgba(232,98,26,0.3);
  border-radius: 2px;
  padding: 0.4rem 1rem;
  margin-bottom: 1rem;
  align-self: flex-start;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E8621A;
  font-family: 'DM Sans', Arial, sans-serif;
}
.testi-stars {
  color: #E8621A;
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}
.testi-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.12rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.72;
  color: #ffffff;
  margin-bottom: 1.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
}
.testi-name {
  font-size: 1.02rem;
  font-weight: 600;
  color: #ffffff;
  font-family: 'DM Sans', Arial, sans-serif;
}
.testi-role {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  font-family: 'DM Sans', Arial, sans-serif;
}
.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  position: relative;
}
.testi-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #E8621A;
  background: transparent;
  color: #E8621A;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  flex-shrink: 0;
  padding: 0;
}
.testi-arrow:hover {
  background: #E8621A;
  color: #fff;
}
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  align-items: center;
}
.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid #E8621A;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.testi-dot.active {
  background: #E8621A;
  transform: scale(1.2);
}
.testi-progress {
  height: 2px;
  background: rgba(232,98,26,0.15);
  margin-top: 1rem;
  border-radius: 1px;
  overflow: hidden;
}
.testi-progress-bar {
  height: 100%;
  background: #E8621A;
  width: 0%;
  border-radius: 1px;
  transition: width 0.3s linear;
}
@media (max-width: 768px) {
  .testi-carousel-wrap { border-radius: 6px; overflow: hidden; background: #111111; }
  .testi-slide {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
    background: #111111;
  }
  .testi-slide-img {
    height: 55vw;
    max-height: 300px;
  }
  .testi-slide-img::after {
    background: linear-gradient(to bottom, transparent 50%, #111111 100%);
  }
  .testi-slide-content {
    border-left: none;
    border-top: 3px solid #E8621A;
    padding: 1.2rem 1.2rem 1.5rem;
  }
  .testi-arrow {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }
  .testi-quote { font-size: 0.82rem; line-height: 1.65; -webkit-line-clamp: 8; margin-bottom: 1rem; }
  .testi-outcome-tag { font-size: 0.5rem; padding: 0.3rem 0.7rem; margin-bottom: 0.6rem; }
  .testi-name { font-size: 1rem; }
  .testi-role { font-size: 0.7rem; }
  .testi-stars { font-size: 0.9rem; margin-bottom: 0.5rem; letter-spacing: 2px; }
}

/* Dignitary */
.dig-banner { background: #E8621A; padding: 3.5rem 5vw; }
.dig-inner { display: grid; grid-template-columns: auto 1fr; gap: 3rem; align-items: center; max-width: 1000px; margin: 0 auto; }
.dig-icon { font-size: 2.5rem; }
.dig-lbl { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 0.6rem; font-family: 'DM Sans', Arial, sans-serif; }
.dig-text { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.35rem; font-weight: 300; color: #ffffff; line-height: 1.5; }
.dig-names { font-size: 0.78rem; color: rgba(255,255,255,0.72); margin-top: 0.8rem; line-height: 1.7; font-family: 'DM Sans', Arial, sans-serif; }

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
#contact { background: #111111; content-visibility: auto; contain-intrinsic-size: auto 700px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; margin-top: 3rem; }
.contact-desc { font-size: 0.88rem; color: rgba(255,255,255,0.42); line-height: 1.9; margin-top: 1.2rem; margin-bottom: 2.2rem; font-family: 'DM Sans', Arial, sans-serif; }
.contact-dets { display: flex; flex-direction: column; gap: 1.3rem; }
.cdet { display: flex; gap: 1rem; align-items: flex-start; }
.cdet-icon { font-size: 1rem; min-width: 22px; }
.cdet-lbl { font-size: 0.58rem; letter-spacing: 0.15em; text-transform: uppercase; color: #E8621A; display: block; margin-bottom: 2px; font-family: 'DM Sans', Arial, sans-serif; }
.cdet-val { font-size: 0.82rem; color: rgba(255,255,255,0.58); line-height: 1.5; font-family: 'DM Sans', Arial, sans-serif; }

.cf { display: flex; flex-direction: column; gap: 1.1rem; }
.cf-g { display: flex; flex-direction: column; gap: 0.4rem; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.cf-lbl { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.3); font-family: 'DM Sans', Arial, sans-serif; }
.cf-input, .cf-sel, .cf-ta {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #ffffff;
  padding: 0.88rem 1rem;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 0.87rem;
  font-weight: 300;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}
.cf-input::placeholder, .cf-ta::placeholder { color: rgba(255,255,255,0.2); }
.cf-input:focus, .cf-sel:focus, .cf-ta:focus { border-color: #E8621A; background: rgba(232,98,26,0.04); }
.cf-sel option { background: #1A1410; }
.cf-ta { resize: vertical; min-height: 100px; }
.cf-btn {
  align-self: flex-start;
  background: #E8621A;
  color: #ffffff;
  padding: 1rem 2.4rem;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.cf-btn:hover { background: #C04E0E; transform: translateY(-1px); }
.cf-note { font-size: 0.7rem; color: rgba(255,255,255,0.22); line-height: 1.6; padding-top: 0.8rem; border-top: 1px solid rgba(255,255,255,0.06); font-family: 'DM Sans', Arial, sans-serif; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: #0D0D0D;
  padding: 3rem 5vw;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo-txt {
  font-family: 'Big Shoulders Display', Impact, 'Arial Black', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.footer-logo-txt .fm { color: #ffffff; }
.footer-logo-txt .fc { color: #E8621A; }
.footer-nav { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-nav a {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.2s;
  font-family: 'DM Sans', Arial, sans-serif;
}
.footer-nav a:hover { color: #E8621A; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.18); font-family: 'DM Sans', Arial, sans-serif; }
.footer-tagline { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 0.88rem; font-style: italic; color: rgba(255,255,255,0.22); }

/* ══════════════════════════════
   SCROLL REVEAL
══════════════════════════════ */
.rv { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.rv.on { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }

@keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  #hero { grid-template-columns: 55% 45%; }
  #about > div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .svc-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .hero-stats { grid-template-columns: 1fr 1fr; row-gap: 2rem; }
  .stat-block + .stat-block { border-left: none; padding-left: 0; }
  .stat-block:nth-child(odd) { border-right: 1px solid #D8CCBC; padding-right: 2rem; }
  .why-grid, .contact-grid, .svc-grid { grid-template-columns: 1fr; gap: 3rem; }
  .serve-header, .team-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .lc-front { grid-template-columns: 1fr; gap: 2rem; }
  .lc-form-row { grid-template-columns: 1fr 1fr; }
  .lc-form-row .lc-fsub { grid-column: span 2; }
  .cred-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .lc-steps { grid-template-columns: 1fr; }
  .dig-inner { grid-template-columns: 1fr; gap: 1rem; }
  .about-photo-wrap { width: clamp(160px, 35vw, 280px); margin: 0 2rem 1.5rem 0; }

  #lc-front { grid-template-columns: 1fr !important; gap: 2rem; }
  .lc-form-row { grid-template-columns: 1fr !important; }}
@media (max-width: 600px) {
  .about-photo-wrap { float: none; width: 60%; margin: 0 auto 2rem; }
}
@media (max-width: 768px) {
  .nav-ul { display: none !important; visibility: hidden; height: 0; overflow: hidden; }
  .ham-btn { display: flex; }
  section { padding: 3rem 5vw; }
  #hero { padding-top: 62px; grid-template-columns: 1fr; }
  .hero-right { min-height: 100vw; }
  .hero-right img { object-position: center 40%; }
  .hero-left { padding: 0.5rem 5vw 2rem; }
  /* Why MIC — stack on mobile */
  .why-top-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .why-body { font-size: 0.88rem; }
  .origin-card { padding: 2rem 1.5rem; }
  .origin-text { font-size: 1.15rem; }
  /* Pillars — 2 col on mobile */
  .pillars { grid-template-columns: repeat(2, 1fr) !important; gap: 0.75rem !important; }
  .flip-wrap { height: auto !important; perspective: none !important; }
  .flip-card {
    transform: none !important;
    transform-style: flat !important;
    height: auto !important;
    position: static !important;
  }
  .flip-f {
    position: static !important;
    transform: none !important;
    backface-visibility: visible !important;
    height: auto !important;
    padding: 1.1rem 1rem !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.75rem !important;
  }
  .flip-f-icon { font-size: 1.5rem !important; flex-shrink: 0; margin: 0 !important; }
  .flip-f-lbl { display: none !important; }
  .flip-f-title { font-size: 0.88rem !important; font-weight: 500 !important; }
  .flip-b { display: none !important; }
  .serve-grid { grid-template-columns: 1fr 1fr; }
  .lc-form-row { grid-template-columns: 1fr; }
  .lc-form-row .lc-fsub { grid-column: 1; }
  #lc-front { grid-template-columns: 1fr !important; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .cred-wall-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .serve-grid, .pillars, .team-grid, .cred-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stat-block:nth-child(odd) { border-right: none; }
  .cf-row { grid-template-columns: 1fr; }
  .hero-logo-m, .hero-logo-c { font-size: 5rem; }
}


/* Wrapper — set font-size here to scale the whole logo */


/* ── Inline SVG logos scale to wrapper width ── */
#nav-logo-link svg,
#nav-logo-link > div > svg { width: 100%; height: auto; display: block; }
.footer-logo-wrap svg,
.footer-logo-wrap > svg { width: 100%; height: auto; display: block; }
.hero-logo-wrap svg { width: 100%; height: auto; display: block; }


/* ══ NAV ══ */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: 72px;
  display: flex; align-items: center;
  padding: 0 4vw;
  background: #F4EDE2;
  border-bottom: 1px solid #E0D5C5;
  transition: box-shadow 0.3s;
  gap: 2rem;
}
#site-nav.scrolled { box-shadow: 0 1px 20px rgba(26,20,16,0.08); }

/* Logo: takes natural width, pushes nothing */
.nl-logo {
  display: flex; align-items: center; gap: 0.85rem;
  text-decoration: none; flex-shrink: 0;
}
.nl-logo-box { width: 120px; height: auto; overflow: visible; flex-shrink: 0; line-height: 0; }
.nl-logo-box svg { display: block; width: 120px !important; height: auto !important; }

/* Links: flex:1 so they fill space, justify-content:center for true center */
.nl-links {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 2rem; list-style: none;
}
.nl-links a {
  text-decoration: none; color: #1A1410;
  font-size: 0.69rem; letter-spacing: 0.13em; text-transform: uppercase;
  font-weight: 400; font-family: 'DM Sans', Arial, sans-serif;
  white-space: nowrap; position: relative; transition: color 0.2s;
}
.nl-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: #E8621A;
  transform: scaleX(0); transform-origin: center; transition: transform 0.25s;
}
.nl-links a:hover { color: #E8621A; }
.nl-links a:hover::after { transform: scaleX(1); }

/* CTA: fixed to right */
.nl-cta {
  display: inline-block; text-decoration: none; flex-shrink: 0;
  background: #E8621A; color: #ffffff;
  padding: 0.55rem 1.3rem; border-radius: 2px;
  font-size: 0.69rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-family: 'DM Sans', Arial, sans-serif; font-weight: 400;
  white-space: nowrap; transition: background 0.2s;
}
.nl-cta:hover { background: #C04E0E; }

.ham-btn {
  display: none; flex-direction: column; gap: 6px;
  align-items: center; justify-content: center;
  background: none; border: 1.5px solid rgba(26,20,16,0.2); border-radius: 4px;
  cursor: pointer; padding: 8px 9px;
  min-width: 44px; min-height: 44px;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.2s;
}
.ham-btn:active { border-color: #E8621A; }
.ham-btn span { display: block; width: 24px; height: 2.5px; background: #1A1410; border-radius: 2px; transition: all 0.3s; }
.ham-btn.open span:nth-child(1) { transform: rotate(45deg) translate(6px,6px); }
.ham-btn.open span:nth-child(2) { opacity: 0; }
.ham-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }


@media (max-width: 1100px) { .nl-links { gap: 1.3rem; } .nl-links a { font-size: 0.64rem; } }
@media (max-width: 900px) {
  .nl-links { display: none; }
  .ham-btn { display: flex; }
  #site-nav { gap: 1rem; }
}
.flip-f-icon {
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: auto;
  display: block;
  padding-top: 0.2rem;
}
.flip-f {
  background: #F4EDE2;
  border: 1px solid #D8CCBC;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.4rem 1.2rem 1.2rem;
  gap: 0;
}


/* ── Assessment UI ── */
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Assessment Question Screen ── */
.assess-q-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 5rem; font-weight: 300;
  color: rgba(232,98,26,0.18); line-height: 1;
  margin-bottom: 0.2rem;
}
.assess-q-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.25rem, 2.8vw, 1.75rem); font-weight: 300;
  color: #ffffff; line-height: 1.5; margin-bottom: 2rem;
}
.assess-input-wrap { width: 100%; }

/* Scale */
.assess-scale-wrap { display: flex; flex-direction: column; gap: 1rem; width: 100%; }
.assess-scale-labels { display: flex; justify-content: space-between; font-size: 0.65rem; color: rgba(255,255,255,0.35); font-family: 'DM Sans', Arial, sans-serif; letter-spacing: 0.08em; }
.assess-slider {
  width: 100%; -webkit-appearance: none; height: 5px;
  background: rgba(255,255,255,0.12); border-radius: 3px; outline: none; cursor: pointer;
}
.assess-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 24px; height: 24px;
  border-radius: 50%; background: #E8621A; cursor: pointer;
  box-shadow: 0 0 0 5px rgba(232,98,26,0.2);
}
.assess-scale-value {
  text-align: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem; font-weight: 300; color: #E8621A; line-height: 1;
}

/* Assessment Options - FORCED STYLING */
.assess-options {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.6rem !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.assess-option {
  /* FORCE these properties */
  background-color: rgba(26,20,16,0.8) !important;
  background-image: none !important;
  border: 1.5px solid rgba(255,255,255,0.15) !important;
  border-radius: 4px !important;
  color: rgba(255,255,255,0.85) !important;
  cursor: pointer !important;
  display: block !important;
  font-family: 'DM Sans', Arial, sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  padding: 0.9rem 1.2rem !important;
  text-align: left !important;
  text-decoration: none !important;
  text-shadow: none !important;
  width: 100% !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
  transition: all 0.2s ease !important;
  
  /* Kill browser defaults completely */
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  -webkit-font-smoothing: antialiased !important;
}

.assess-option:hover {
  background-color: rgba(232,98,26,0.12) !important;
  border-color: rgba(232,98,26,0.7) !important;
  color: #fff !important;
}

.assess-option:focus {
  outline: none !important;
  border-color: #E8621A !important;
}

.assess-option:active {
  transform: scale(0.99) !important;
}

.assess-option.selected {
  background-color: rgba(232,98,26,0.18) !important;
  border-color: #E8621A !important;
  border-left: 3px solid #E8621A !important;
  color: #fff !important;
  font-weight: 500 !important;
  padding-left: calc(1.2rem - 1px) !important;
  box-shadow: inset 0 0 12px rgba(232,98,26,0.15), 0 0 8px rgba(232,98,26,0.2) !important;
}

.assess-multi-hint {
  font-size: 0.62rem !important;
  color: rgba(255,255,255,0.25) !important;
  margin-top: 0.5rem !important;
  font-family: 'DM Sans', Arial, sans-serif !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}

/* Text inputs */
.assess-text-input, .assess-text-area {
  width: 100%; max-width: 520px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.18); color: #fff;
  padding: 1rem 1.2rem; font-family: 'DM Sans', Arial, sans-serif;
  font-size: 1rem; font-weight: 300; border-radius: 4px;
  outline: none; transition: border-color 0.2s; resize: vertical;
  box-sizing: border-box; min-height: 48px;
}
.assess-text-input:focus, .assess-text-area:focus { border-color: #E8621A; }
.assess-text-input::placeholder, .assess-text-area::placeholder { color: rgba(255,255,255,0.2); }

/* Next button */
.assess-next-btn {
  background: #E8621A;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 0.95rem 2rem;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.2s;
  margin-top: 1.4rem;
  font-weight: 600;
  display: block;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.assess-next-btn:hover {
  background: #C04E0E;
  box-shadow: 0 4px 12px rgba(232,98,26,0.3);
}
.assess-next-btn:active {
  background: #B5450A;
}
.assess-error-msg {
  font-size: 0.75rem; color: #E8621A; margin-top: 0.6rem;
  font-family: 'DM Sans', Arial, sans-serif; display: none;
}

/* Report */
.report-header { margin-top: 0; margin-bottom: 2.5rem; text-align: center; padding: 2rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); color: #F4EDE2; }
.report-kicker { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: #E8621A; margin-bottom: 1rem; font-family: 'DM Sans', Arial, sans-serif; }
.report-headline { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(1.4rem, 2.5vw, 2.2rem); font-weight: 300; color: #fff; line-height: 1.3; font-style: italic; }
.report-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; align-items: start; }
.report-grid-3 { grid-template-columns: repeat(3, 1fr); }
.report-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: 3px; padding: 1.8rem; overflow: hidden; min-width: 0; box-sizing: border-box; }
.report-card-label { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: #E8621A; margin-bottom: 0.8rem; font-family: 'DM Sans', Arial, sans-serif; }
.report-card-body { font-size: 0.85rem; color: #FFF; line-height: 1.75; font-family: 'DM Sans', Arial, sans-serif; word-wrap: break-word; overflow-wrap: break-word; hyphens: auto; }
.report-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.report-list li { font-size: 0.82rem; color: #FFF; line-height: 1.6; font-family: 'DM Sans', Arial, sans-serif; padding-left: 1rem; position: relative; }
.report-list.strengths li::before { content: '↑'; position: absolute; left: 0; color: #4ecb71; }
.report-list.gaps li::before { content: '↓'; position: absolute; left: 0; color: #ff6b6b; }
.report-list.wins li::before { content: '→'; position: absolute; left: 0; color: #E8621A; }
.report-coach-note { background: rgba(232,98,26,0.08); border: 1px solid rgba(232,98,26,0.25); border-radius: 3px; padding: 2rem; margin: 1.5rem 0; }
.report-locked { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 3px; padding: 2rem; margin-bottom: 1.5rem; text-align: center; }
.report-locked-title { font-size: 0.85rem; font-weight: 500; color: #F4EDE2; margin-bottom: 0.7rem; font-family: 'DM Sans', Arial, sans-serif; }
.report-locked-sub { font-size: 0.78rem; color: #FFF; line-height: 1.65; margin-bottom: 1.2rem; font-family: 'DM Sans', Arial, sans-serif; }
.report-locked-dims { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.report-locked-dim { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 0.5rem 1rem; border-radius: 2px; font-size: 0.72rem; color: #F5F5F5; font-family: 'DM Sans', Arial, sans-serif; }

@media (max-width: 600px) {
  .report-grid, .report-grid-3 { grid-template-columns: 1fr; }
}

/* Report text visibility — ensure all report content is readable on dark overlay */
#assess-report,
#assess-report p,
#assess-report div,
#assess-report span,
#assess-report li,
#assess-report h2,
#assess-report h3 {
  color: #F4EDE2;
}
#assess-report .report-card-body { color: #FFF !important; }
#assess-report .report-list li { color: #FFF !important; }
#assess-report .report-locked-sub { color: #FFF !important; }
#assess-report .report-locked-dim { color: #F5F5F5 !important; }
#assess-report .report-locked-title { color: #F4EDE2 !important; }
#assess-report .report-headline { color: #FFF !important; }
#assess-report .report-kicker { color: #E8621A !important; }
#assess-report .report-card-label { color: #E8621A !important; }
#assess-report .report-coach-note p { color: #FFF !important; }

/* Loading dots */
.ldot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #E8621A; opacity: 0.3;
  animation: ldotpulse 1.4s ease-in-out infinite;
}
.ldot:nth-child(2) { animation-delay: 0.2s; }
.ldot:nth-child(3) { animation-delay: 0.4s; }
@keyframes ldotpulse {
  0%, 80%, 100% { opacity: 0.2; transform: scale(0.85); }
  40% { opacity: 1; transform: scale(1); }
}


@keyframes shake {
  0%,100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
}


/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid #D8CCBC;
}
.faq-item:first-child { border-top: 1px solid #D8CCBC; }
.faq-q {
  width: 100%; text-align: left;
  background: none; border: none; cursor: pointer;
  padding: 1.4rem 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 0.92rem; font-weight: 400; color: #1A1410;
  line-height: 1.5; transition: color 0.2s;
}
.faq-q:hover { color: #E8621A; }
.faq-icon {
  font-size: 1.3rem; color: #E8621A; flex-shrink: 0;
  transition: transform 0.3s; line-height: 1;
}
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  font-size: 0.87rem; color: #4A3E34;
  line-height: 1.85; font-family: 'DM Sans', Arial, sans-serif;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding-bottom: 0;
}
.faq-a.open {
  max-height: 300px;
  padding-bottom: 1.4rem;
}


/* About grid responsive */
@media (max-width: 768px) {
  #about > div[style*="grid-template-columns:1fr 1.4fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  #about > div[style*="grid-template-columns:1fr 1.4fr"] > div:first-child {
    position: static !important;
  }
}


@media (max-width: 768px) {
  .cred-wall { margin-top: 2rem !important; padding-top: 2rem !important; }
  .assess-strip-inner {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .assess-strip-inner h2 {
    font-size: clamp(1.8rem, 6vw, 2.4rem) !important;
  }
  #assessment-strip {
    padding: 3rem 5vw !important;
  }
}


@media (max-width: 768px) {
  .contact-grid {
    margin-top: 1.5rem !important;
    gap: 2rem !important;
  }
  .sh1-white {
    font-size: clamp(2rem, 8vw, 3rem) !important;
    margin-bottom: 0 !important;
  }
  #contact {
    padding-bottom: 3rem !important;
  }
  .contact-desc {
    margin-top: 0 !important;
    margin-bottom: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .hero-stats {
    border-top: none !important;
    margin-top: 1.5rem !important;
    padding-top: 1rem !important;
  }
  .hero-stats .stat-block {
    border-right: none !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 768px) {
  #site-nav {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 5vw !important;
    height: 56px !important;
    gap: 0 !important;
  }
  .nl-links { display: none !important; }

  .nl-cta { display: none !important; }
  .nl-logo { align-items: center !important; gap: 0.2rem !important; }
  .nl-logo-box { width: 80px !important; height: auto !important; overflow: visible !important; }
  .nl-logo-box svg { width: 80px !important; height: auto !important; margin: 0 !important; }
  .ham-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 44px !important;
    min-height: 44px !important;
  }

}

@media (max-width: 600px) {
  .gate-2col {
    grid-template-columns: 1fr !important;
  }
  #assess-gate {
    padding: 2rem 4vw !important;
    align-items: flex-start !important;
  }
  #assess-gate > div {
    width: 100% !important;
  }
  #assess-gate h2 {
    font-size: 1.6rem !important;
    text-align: left !important;
  }
  #assess-gate p {
    text-align: left !important;
  }
}

/* ── LEAD CAPTURE mobile ── */
@media (max-width: 768px) {
  .lc-front { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .lc-headline { font-size: 1.5rem !important; }
  .lc-form-row { grid-template-columns: 1fr !important; }
  #lead { padding: 3rem 5vw !important; }
}

/* ── SERVICES mobile ── */
@media (max-width: 768px) {
  .svc-grid { grid-template-columns: 1fr !important; gap: 2rem !important; margin-top: 2rem !important; }
  .svc-primary { padding: 2rem 1.5rem !important; }
  .svc-secondary-grid { grid-template-columns: 1fr !important; gap: 1rem !important; }
}

/* ── DIGNITARY mobile ── */
@media (max-width: 768px) {
  .dig-inner { grid-template-columns: 1fr !important; text-align: center !important; gap: 1.2rem !important; }
  .dig-icon { font-size: 2rem !important; }
}


/* ── FAQ mobile ── */
@media (max-width: 768px) {
  #faq { padding: 3rem 5vw !important; }
  .faq-q { font-size: 0.9rem !important; padding: 1rem 0 !important; }
  .faq-a { font-size: 0.82rem !important; }
}

/* ── FOOTER mobile ── */
@media (max-width: 768px) {
  .footer-top { flex-direction: column !important; align-items: flex-start !important; gap: 1.5rem !important; }
  .footer-nav { gap: 1rem !important; }
  .footer-bottom { flex-direction: column !important; align-items: flex-start !important; gap: 0.6rem !important; }
  footer { padding: 3rem 5vw 2rem !important; }
}

/* ── Mobile Drawer ── */
.mob-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: linear-gradient(165deg, #1e1814 0%, #151110 50%, #0f0c0a 100%);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  gap: 0;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.3s ease;
}
.mob-drawer.open { display: flex; opacity: 1; transform: translateX(0); }
.mob-drawer.open ~ .wa-float { display: none !important; }
.mob-drawer-header {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 6vw; border-bottom: 1px solid rgba(232,98,26,0.12);
}
.mob-drawer-logo svg { display: block; width: 70px; height: auto; }
.mob-drawer-nav {
  flex: 1; width: 100%; display: flex; flex-direction: column;
  padding: 2rem 6vw 1.5rem; gap: 0; overflow-y: auto;
}
.mob-drawer-nav a {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(244,237,226,0.65);
  text-decoration: none;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.25s, padding-left 0.25s;
  position: relative;
}
.mob-drawer-nav a::before {
  content: '';
  width: 0; height: 2px;
  background: #E8621A;
  border-radius: 1px;
  transition: width 0.3s ease;
  flex-shrink: 0;
}
.mob-drawer-nav a:hover, .mob-drawer-nav a:active {
  color: #E8621A;
  padding-left: 0.5rem;
}
.mob-drawer-nav a:hover::before, .mob-drawer-nav a:active::before {
  width: 18px;
}
.mob-drawer-cta {
  display: block;
  margin: 1.5rem 6vw 0;
  padding: 0.9rem 2rem;
  background: #E8621A;
  color: #fff;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s;
}
.mob-drawer-cta:hover, .mob-drawer-cta:active { background: #C04E0E; }
.mob-drawer-footer {
  width: 100%; padding: 1.5rem 6vw 2.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  margin-top: auto;
}
.mob-drawer-social {
  display: flex; gap: 1.2rem; align-items: center;
}
.mob-drawer-social a {
  color: rgba(244,237,226,0.35); text-decoration: none;
  transition: color 0.2s;
}
.mob-drawer-social a:hover { color: #E8621A; }
.mob-drawer-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.78rem; font-style: italic;
  color: rgba(232,98,26,0.4); text-align: center;
  line-height: 1.5;
}
.mob-close-btn {
  background: none;
  border: 1px solid rgba(244,237,226,0.15);
  border-radius: 50%;
  color: rgba(244,237,226,0.6);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  font-family: 'DM Sans', Arial, sans-serif;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.mob-close-btn:hover, .mob-close-btn:active {
  color: #E8621A; border-color: rgba(232,98,26,0.4);
  background: rgba(232,98,26,0.08);
}

/* Anchor scroll offset — fixed nav compensation */
#hero, #lead, #why, #serve, #services, #about, #testimonials, #faq, #contact,
#assessment-strip, .cred-wall, #dignitary {
  scroll-margin-top: 72px;
}
@media (max-width: 768px) {
  #hero, #lead, #why, #serve, #services, #about, #testimonials, #faq, #contact,
  #assessment-strip, .cred-wall {
    scroll-margin-top: 56px;
  }
}

/* Loading screen */
#mic-loader {
  position: fixed; inset: 0; z-index: 99999; background: #1A1410;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#mic-loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo-wrap { position: relative; width: clamp(260px, 45vw, 520px); display: flex; align-items: center; justify-content: center; }
#mic-loader .loader-svg { width: 100%; height: auto; }
.loader-wave { transform-origin: center; animation: waveExpand 2s ease-in-out infinite; }
.loader-wave-1 { animation-delay: 0s; }
.loader-wave-2 { animation-delay: 0.25s; }
.loader-wave-3 { animation-delay: 0.5s; }
.loader-wave-4 { animation-delay: 0.75s; }
.loader-wave-5 { animation-delay: 0.15s; }
.loader-wave-6 { animation-delay: 0.4s; }
.loader-wave-7 { animation-delay: 0.65s; }
.loader-wave-8 { animation-delay: 0.9s; }
@keyframes waveExpand {
  0% { opacity: 0; transform: scale(0.85); }
  30% { opacity: 0.7; }
  70% { opacity: 0.3; }
  100% { opacity: 0; transform: scale(1.25); }
}
.loader-mic-head { animation: micGlow 1.6s ease-in-out infinite; }
@keyframes micGlow {
  0%,100% { filter: brightness(1); }
  50% { filter: brightness(1.3); }
}
.loader-grill { animation: grillShimmer 1.6s ease-in-out infinite; }
.loader-grill:nth-child(2) { animation-delay: 0.1s; }
.loader-grill:nth-child(3) { animation-delay: 0.2s; }
.loader-grill:nth-child(4) { animation-delay: 0.3s; }
@keyframes grillShimmer {
  0%,100% { stroke: rgba(255,255,255,0.12); }
  50% { stroke: rgba(255,255,255,0.35); }
}
.loader-m, .loader-c { opacity: 0; transition: opacity 0.4s ease; }
.loader-fonts-ready .loader-m, .loader-fonts-ready .loader-c { animation: letterFade 2s ease-in-out infinite; }
.loader-c { animation-delay: 0.3s; }
@keyframes letterFade {
  0%,100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.loader-inst-text { opacity: 0; transition: opacity 0.4s ease; }
.loader-fonts-ready .loader-inst-text { opacity: 1; }
#mic-loader .loader-bar { width: clamp(100px, 18vw, 200px); height: 3px; background: rgba(255,255,255,0.08); border-radius: 3px; margin-top: clamp(1.2rem, 2.5vw, 2rem); overflow: hidden; }
#mic-loader .loader-bar-fill { height: 100%; width: 0; background: linear-gradient(90deg, #E8621A, #F07030); border-radius: 3px; animation: loaderFill 1.8s ease-in-out forwards; }
@keyframes loaderFill { 0%{width:0} 60%{width:70%} 100%{width:100%} }
.loader-tagline { font-family: 'DM Sans', Arial, sans-serif; font-size: clamp(0.6rem, 1.2vw, 0.85rem); color: rgba(255,255,255,0.2); margin-top: clamp(0.8rem, 1.5vw, 1.4rem); letter-spacing: 0.15em; text-transform: uppercase; animation: tagFade 2.4s ease-in-out infinite; }
@keyframes tagFade { 0%,100%{ opacity:0.2 } 50%{ opacity:0.5 } }

/* WhatsApp floating button */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; color: #fff; font-size: 0;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
.wa-float-label {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
  background: #fff; color: #1A1410; padding: 8px 14px; border-radius: 8px;
  font-family: 'DM Sans', Arial, sans-serif; font-size: 0.78rem; font-weight: 500;
  white-space: nowrap; box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.wa-float-label::after {
  content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: #fff;
}
.wa-float:hover .wa-float-label { opacity: 1; }
@media (max-width: 600px) {
  .wa-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 28px; height: 28px; }
  .wa-float-label { display: none; }
}

/* Exit-intent popup */
.exit-popup-overlay {
  position: fixed; inset: 0; z-index: 5000;
  background: rgba(13,13,13,0.88); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.exit-popup-overlay.show { opacity: 1; visibility: visible; }
.exit-popup {
  background: #1A1410; border: 1px solid rgba(232,98,26,0.3); border-radius: 8px;
  max-width: 480px; width: 100%; padding: 2.5rem; text-align: center; position: relative;
  transform: translateY(20px); transition: transform 0.3s;
}
.exit-popup-overlay.show .exit-popup { transform: translateY(0); }

/* Footer social */
.footer-social { display: flex; gap: 1rem; align-items: center; margin-top: 1rem; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6); text-decoration: none; transition: all 0.2s;
}
.footer-social a:hover { background: #E8621A; border-color: #E8621A; color: #fff; }

/* Lazy image fade-in — only when JS is active */
.js-ready img[loading="lazy"] { opacity: 0; transition: opacity 0.5s ease; }
.js-ready img[loading="lazy"].loaded { opacity: 1; }
