:root {
  --ink-950: #0a0d12;
  --ink-900: #0f1319;
  --ink-800: #151b23;
  --slate-500: #95a0ad;
  --mist-100: #e8edf3;
  --white: #ffffff;
  --brand-blue: #3a6f9f;
  --brand-blue-bright: #4b82b5;
  --brand-magenta: #a640a0;
  --brand-magenta-bright: #be4fba;
  --brand-gold: #e8af49;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.14);
  --shadow-soft: 0 18px 42px rgba(0, 0, 0, 0.34);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --container-max: 1240px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 12% 10%, rgba(190, 79, 186, 0.16), transparent 38%),
    radial-gradient(circle at 85% 90%, rgba(75, 130, 181, 0.16), transparent 40%),
    var(--ink-950);
  color: var(--mist-100);
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-wordmark,
.display-alt {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--white);
}

.site-shell {
  overflow-x: hidden;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-tight {
  padding: 72px 0;
}

.container-wide {
  width: min(var(--container-max), calc(100% - 2.4rem));
  margin-inline: auto;
}

.text-muted-strong {
  color: var(--slate-500);
}

.nav-ghost {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 18px 0;
  transition: 0.25s ease;
  border-bottom: 1px solid transparent;
}

.nav-ghost.nav-scrolled {
  background: rgba(10, 13, 18, 0.82);
  backdrop-filter: blur(12px) saturate(140%);
  border-bottom-color: rgba(255, 255, 255, 0.09);
  padding: 10px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: var(--mist-100);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.mobile-menu-btn i {
  font-size: 1.35rem;
  line-height: 1;
}

.mobile-offcanvas {
  background: linear-gradient(180deg, #0a0f16, #0b1219);
}

.mobile-nav-links {
  display: grid;
  gap: 0.3rem;
}

.mobile-nav-links a {
  display: block;
  padding: 0.82rem 0.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1rem;
  color: #d8e0ea;
}

.mobile-nav-links a:hover {
  color: #fff;
}

.brand-wordmark {
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.98rem;
  text-transform: uppercase;
}

.brand-wordmark span {
  color: var(--brand-magenta-bright);
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.main-nav a {
  opacity: 0.85;
  transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  opacity: 1;
  color: var(--white);
}

.btn-brand,
.btn-outline-brand {
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn-brand {
  color: var(--white);
  background: linear-gradient(105deg, var(--brand-magenta-bright), var(--brand-blue-bright));
  box-shadow: 0 14px 28px rgba(72, 30, 70, 0.38);
}

.btn-brand:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(72, 30, 70, 0.46);
}

.btn-outline-brand {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--mist-100);
  background: rgba(255, 255, 255, 0.03);
}

.btn-outline-brand:hover {
  border-color: rgba(255, 255, 255, 0.58);
}

.hero-block {
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding-top: 5.8rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  align-items: end;
}

.kicker {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: var(--glass);
  color: var(--mist-100);
  padding: 0.4rem 0.88rem;
  font-size: 0.79rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  margin-top: 1.1rem;
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5.6vw, 5.35rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.hero-title .line {
  display: block;
}

.hero-title .gradient {
  background: linear-gradient(100deg, var(--brand-magenta-bright), var(--brand-blue-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-body {
  max-width: 62ch;
  color: var(--slate-500);
  font-size: 1.06rem;
}

.hero-cta-row {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-panel {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-soft);
  min-height: 520px;
  background: #121922;
}

.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-panel-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(7, 10, 16, 0), rgba(7, 10, 16, 0.92));
}

.panel-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-top: 0.85rem;
}

.panel-stat {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 0.72rem;
  background: rgba(17, 24, 33, 0.72);
}

.panel-stat .value {
  display: block;
  font-weight: 700;
  color: var(--white);
}

.panel-stat .label {
  color: var(--slate-500);
  font-size: 0.78rem;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card-fluid {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.card-fluid::before {
  content: "";
  position: absolute;
  inset: -35% auto auto -18%;
  width: 140px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(190, 79, 186, 0.25), transparent 70%);
}

.card-fluid h3 {
  font-size: 1.16rem;
  margin-bottom: 0.62rem;
}

.card-fluid p {
  color: var(--slate-500);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.card-fluid .mini-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.85rem;
  color: var(--white);
  font-size: 0.84rem;
}

.section-title {
  margin-bottom: 0.8rem;
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  line-height: 1;
}

.section-title .highlight {
  color: var(--brand-gold);
}

.section-intro {
  max-width: 70ch;
  color: var(--slate-500);
}

.story-strip {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  margin-top: 1.2rem;
  background: #10161f;
}

.story-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 310px;
}

.story-strip-content {
  padding: 1.5rem;
}

.story-strip-content p {
  color: var(--slate-500);
}

.stat-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stat-chip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 1rem;
}

.stat-chip .big {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}

.stat-chip .small {
  color: var(--slate-500);
  font-size: 0.84rem;
}

.logo-ticker-wrap {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.logo-ticker {
  white-space: nowrap;
  display: inline-flex;
  gap: 1.7rem;
  padding: 1rem 0;
}

.logo-pill {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  color: #d8e0e8;
}

.vertical-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.step-card {
  border-left: 2px solid rgba(255, 255, 255, 0.26);
  padding-left: 1rem;
}

.step-index {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.step-card p {
  color: var(--slate-500);
  margin-bottom: 0;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.work-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #101722;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.work-card img {
  width: 100%;
  height: 214px;
  object-fit: cover;
}

.work-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tag-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c8d2df;
  margin-bottom: 0.6rem;
}

.work-content p {
  color: var(--slate-500);
  margin-bottom: 0.95rem;
}

.spacer {
  flex: 1;
}

.cta-band {
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 3px solid var(--brand-magenta-bright);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  background: linear-gradient(130deg, rgba(166, 64, 160, 0.14), rgba(58, 111, 159, 0.16));
}

.cta-band p {
  color: #d5ddea;
  margin-bottom: 1rem;
}

.footer-shell {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 36px 0 24px;
  margin-top: 52px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1rem;
}

.footer-grid h6 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #dbe3ee;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
  color: var(--slate-500);
  font-size: 0.9rem;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom {
  margin-top: 1rem;
  color: #818b96;
  font-size: 0.82rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

.page-hero-mini {
  padding-top: 9.2rem;
  padding-bottom: 2.5rem;
}

.anchor-subnav {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.anchor-subnav a {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.44rem 0.8rem;
  font-size: 0.84rem;
  color: #cad3dd;
}

.anchor-subnav a:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.media-hero {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-soft);
}

.media-hero img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.content-layout {
  display: grid;
  grid-template-columns: 1.55fr 0.85fr;
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.content-layout article {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
}

.content-layout article p,
.content-layout article li {
  color: #bcc6d2;
  line-height: 1.72;
}

.content-layout aside {
  position: sticky;
  top: 86px;
  align-self: start;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  overflow: visible;
}

.content-layout aside .btn-brand {
  display: inline-flex;
  margin-top: 1rem;
}

.fact-list {
  display: grid;
  gap: 0.8rem;
}

.fact-item {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
  padding-bottom: 0.58rem;
}

.fact-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.fact-item .label {
  font-size: 0.76rem;
  color: #8c97a3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fact-item .value {
  color: #eef3f9;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

/* ── CONTENT CAROUSEL (portfolio image row blocks) ───────────────────────── */
.lm-content-carousel {
  margin: 1.8rem 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.lm-content-carousel .carousel-item img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.lm-content-carousel .carousel-control-prev,
.lm-content-carousel .carousel-control-next {
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0.9;
  transition: background 0.2s;
}

.lm-content-carousel .carousel-control-prev { left: 14px; }
.lm-content-carousel .carousel-control-next { right: 14px; }

.lm-content-carousel .carousel-control-prev:hover,
.lm-content-carousel .carousel-control-next:hover {
  background: var(--brand-magenta-bright);
  border-color: var(--brand-magenta-bright);
  opacity: 1;
}

.lm-content-carousel .carousel-control-prev-icon,
.lm-content-carousel .carousel-control-next-icon {
  width: 16px;
  height: 16px;
}

.lm-content-carousel .carousel-indicators {
  margin-bottom: 0.7rem;
}

.lm-content-carousel .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.45);
  border: none;
  margin: 0 4px;
  transition: background-color 0.2s;
}

.lm-content-carousel .carousel-indicators .active {
  background-color: var(--brand-magenta-bright);
  transform: scale(1.25);
}

@media (max-width: 640px) {
  .lm-content-carousel .carousel-item img {
    height: 240px;
  }
}

.gallery-row img {
  width: 100%;
  height: 190px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1100px) {
  .hero-grid,
  .story-strip,
  .content-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .panel-stat-row,
  .grid-cards,
  .stat-grid,
  .work-grid,
  .vertical-steps,
  .gallery-row,
  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panel {
    min-height: 420px;
  }

  .media-hero img {
    height: 360px;
  }

  .content-layout aside {
    position: static;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 78px 0;
  }

  .main-nav,
  .desktop-cta {
    display: none;
  }

  .panel-stat-row,
  .grid-cards,
  .stat-grid,
  .work-grid,
  .vertical-steps,
  .gallery-row,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .hero-block {
    min-height: auto;
  }

  .hero-panel {
    min-height: 300px;
  }

  .logo-pill {
    font-size: 0.83rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =======================================================================
   LIMITLESS EDITORIAL LAYER  ·  home.html redesign
   All classes prefixed lm- to avoid collision with existing rules
   ======================================================================= */

/* ── Eyebrow label ─────────────────────────────────────────────────────── */
.lm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.77rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-magenta-bright);
  margin-bottom: 0.9rem;
}
.lm-eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}

/* ── Editorial display type ────────────────────────────────────────────── */
.lm-display-mega {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(5rem, 16vw, 14rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 0.55rem;
}
/* Gradient accent on LESS — makes the -LESS suffix "pop" against LIMIT */
.lm-hero-accent {
  background: linear-gradient(100deg, var(--brand-magenta-bright) 5%, var(--brand-blue-bright) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block; /* required for background-clip:text to work on span */
}
.lm-editorial-h2 {
  font-size: clamp(1.8rem, 4.8vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 1rem;
}
.lm-editorial-body {
  font-size: 1.07rem;
  line-height: 1.7;
  color: var(--slate-500);
  max-width: 58ch;
}

/* ── Ghosted section number ────────────────────────────────────────────── */
.lm-section-num {
  position: absolute;
  top: 0;
  right: -0.06em;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(8rem, 25vw, 22rem);
  font-weight: 700;
  line-height: 0.88;
  color: var(--white);
  opacity: 0.025;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ── HERO ───────────────────────────────────────────────────────────────── */
.lm-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.lm-hero-bg {
  position: absolute;
  inset: -6%;
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
  transition: transform 12s ease-out;
  will-change: transform;
}
.lm-hero:hover .lm-hero-bg {
  transform: scale(0.97);
}
.lm-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 900px 600px at 0% 0%,   rgba(190, 79, 186, 0.28), transparent 58%),
    radial-gradient(ellipse 900px 600px at 100% 100%, rgba(75, 130, 181, 0.24), transparent 58%),
    linear-gradient(180deg, rgba(6, 8, 14, 0.38) 0%, rgba(6, 8, 14, 0.66) 55%, rgba(6, 8, 14, 0.96) 100%);
}
.lm-hero-content {
  position: relative;
  z-index: 3;
  padding-top: 7rem;
  padding-bottom: 6.5rem;
}
.lm-hero-inner { max-width: 1100px; }
.lm-motto {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.9vw, 1.5rem);
  color: rgba(233, 238, 243, 0.7);
  margin: 0 0 1.9rem;
  letter-spacing: 0.01em;
}
.lm-hero-mission {
  max-width: 62ch;
  margin-bottom: 2rem;
}
.lm-hero-mission p {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.72;
  color: var(--slate-500);
  margin-bottom: 0.3rem;
}
.lm-hero-vision { color: rgba(149, 160, 173, 0.65) !important; }
.lm-hero-ctas {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
/* Scroll hint chevron */
.lm-scroll-hint {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  animation: lm-bounce 2.2s ease-in-out infinite;
}
.lm-scroll-hint i { font-size: 1.1rem; }
@keyframes lm-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── DIAGONAL SECTION CUTS ─────────────────────────────────────────────── */
/* Each clipped section overlaps the one above via negative margin, the
   diagonal clip-path reveals the section behind through the cut corner. */

.lm-services-section {
  background: #0d1420;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: -64px;
  clip-path: polygon(0 64px, 100% 0, 100% 100%, 0 100%);
  padding: calc(96px + 64px) 0 96px;
}
.lm-work-section {
  background: #070a10;
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-top: -64px;
  clip-path: polygon(0 0, 100% 64px, 100% 100%, 0 100%);
  padding: calc(80px + 64px) 0 80px;
}
.lm-testimonials-section {
  background: #0c1725;
  position: relative;
  z-index: 3;
  overflow: hidden;
  margin-top: -64px;
  clip-path: polygon(0 64px, 100% 0, 100% 100%, 0 100%);
  padding: calc(96px + 64px) 0 96px;
}
.lm-trust-section {
  background: #09101a;
  position: relative;
  z-index: 4;
  overflow: hidden;
  margin-top: -64px;
  clip-path: polygon(0 0, 100% 64px, 100% 100%, 0 100%);
  padding: calc(56px + 64px) 0 56px;
}
.lm-news-section {
  background: #0b1219;
  position: relative;
  z-index: 5;
  overflow: hidden;
  margin-top: -64px;
  clip-path: polygon(0 64px, 100% 0, 100% 100%, 0 100%);
  padding: calc(96px + 64px) 0 96px;
}
.lm-cta-section {
  background: #0b1219;
  position: relative;
  z-index: 6;
  padding: 72px 0;
}

/* ── SERVICES ───────────────────────────────────────────────────────────── */
.lm-services-split {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.lm-services-lead {
  position: sticky;
  top: 108px;
  align-self: start;
}
.lm-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}
.lm-service-row {
  display: grid;
  grid-template-columns: 18px 1fr 18px;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.18s ease, padding-left 0.18s ease;
  cursor: default;
}
.lm-service-row:hover {
  background: rgba(190, 79, 186, 0.055);
  padding-left: 0.85rem;
}
.lm-sr-dash {
  color: var(--brand-magenta-bright);
  font-weight: 700;
  font-size: 1.1rem;
}
.lm-service-row strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}
.lm-service-row span {
  display: block;
  font-size: 0.87rem;
  color: var(--slate-500);
  line-height: 1.5;
}
.lm-service-row .bi-arrow-right {
  color: var(--brand-magenta-bright);
  opacity: 0;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.lm-service-row:hover .bi-arrow-right {
  opacity: 1;
  transform: translateX(3px);
}

/* ── WORK / PROJECT MOSAIC ─────────────────────────────────────────────── */
.lm-mosaic {
  display: grid;
  gap: 4px;
  margin-top: 1.6rem;
}
.lm-mosaic-feature {
  position: relative;
  height: 560px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
}
.lm-mosaic-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.lm-mosaic-half {
  position: relative;
  height: 370px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
}
/* Image kenburn-lite on hover via background-size transition */
.lm-mosaic-feature,
.lm-mosaic-half {
  background-size: 102%;
  transition: background-size 0.7s ease;
}
.lm-mosaic-feature:hover,
.lm-mosaic-half:hover {
  background-size: 108%;
}
.lm-mosaic-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.88) 100%);
  transition: background 0.3s ease;
  z-index: 1;
}
.lm-mosaic-feature:hover .lm-mosaic-overlay,
.lm-mosaic-half:hover .lm-mosaic-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0, 0, 0, 0.95) 100%);
}
.lm-mosaic-meta { color: var(--white); }
.lm-mosaic-meta > .lm-cat {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--brand-magenta-bright);
  margin-bottom: 0.5rem;
}
.lm-mosaic-meta > h3 {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.6rem;
}
.lm-mosaic-half .lm-mosaic-meta > h3 { font-size: clamp(1.1rem, 1.9vw, 1.45rem); }
.lm-mosaic-meta > p {
  font-size: 0.94rem;
  color: #bdc9d5;
  margin-bottom: 0.75rem;
}
.lm-mosaic-meta > a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: color 0.18s, border-color 0.18s;
}
.lm-mosaic-meta > a:hover {
  color: var(--brand-magenta-bright);
  border-bottom-color: var(--brand-magenta-bright);
}
.lm-work-cta-row {
  text-align: right;
  padding: 1.5rem 0 0;
}

/* ── TESTIMONIALS ────────────────────────────────────────────────────────── */
.lm-quote-block {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.lm-quote-mark {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 5.5rem;
  line-height: 0.7;
  color: var(--brand-magenta-bright);
  opacity: 0.45;
  user-select: none;
}
.lm-testimonial { display: none; animation: lm-fadein 0.42s ease; }
.lm-testimonial.active { display: block; }
@keyframes lm-fadein {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lm-quote-mega {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.8vw, 2rem);
  line-height: 1.5;
  color: var(--mist-100);
  margin: 0.4rem 0 1.2rem;
  border: 0;
  padding: 0;
}
.lm-quote-attr {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  font-style: normal;
}
.lm-quote-attr strong { font-size: 0.95rem; color: var(--white); }
.lm-quote-attr span   { font-size: 0.83rem; color: var(--slate-500); }
.lm-quote-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.8rem;
}
.lm-q-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 0; padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.2s, transform 0.2s;
}
.lm-q-dot.active {
  background: var(--brand-magenta-bright);
  transform: scale(1.35);
}

/* ── TRUST / STATS ROW ───────────────────────────────────────────────────── */
.lm-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: calc(2.5rem + 15px) 0 0;
}
.lm-stat {
  flex: 1 1 160px;
  text-align: center;
  padding: 1rem;
}
.lm-stat-big {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.lm-stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--slate-500);
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.lm-stat-divider {
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* ── NEWS EDITORIAL ──────────────────────────────────────────────────────── */
.lm-news-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}
.lm-news-img-wrap { overflow: hidden; }
.lm-news-img-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.lm-news-feature:hover .lm-news-img-wrap img { transform: scale(1.04); }
.lm-news-feature-body {
  padding: 1.3rem 0;
  border-left: 3px solid var(--brand-magenta-bright);
  padding-left: 1.1rem;
  margin-top: 1rem;
}
.lm-news-feature-body h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 0.55rem;
}
.lm-news-feature-body h3 a { color: var(--mist-100); }
.lm-news-feature-body h3 a:hover { color: var(--white); }
.lm-news-feature-body p {
  font-size: 0.97rem;
  color: var(--slate-500);
  margin-bottom: 0.75rem;
  line-height: 1.65;
}
.lm-news-meta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.76rem;
  color: var(--slate-500);
  margin-bottom: 0.7rem;
  flex-wrap: wrap;
}
.lm-tag {
  background: rgba(190, 79, 186, 0.17);
  color: var(--brand-magenta-bright);
  padding: 0.14rem 0.5rem;
  border-radius: 4px;
  font-size: 0.71rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.lm-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  padding-bottom: 2px;
  transition: color 0.18s, border-color 0.18s;
}
.lm-read-more:hover {
  color: var(--brand-magenta-bright);
  border-bottom-color: var(--brand-magenta-bright);
}
.lm-news-sidebar {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.lm-news-compact {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 0.9rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  align-items: start;
}
.lm-news-compact:last-child { border-bottom: 0; }
.lm-news-compact .lm-nc-img { overflow: hidden; }
.lm-news-compact img {
  width: 108px;
  height: 75px;
  object-fit: cover;
  display: block;
  transition: transform 0.32s ease;
}
.lm-news-compact:hover img { transform: scale(1.06); }
.lm-news-compact h5 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--mist-100);
  margin: 0;
}
.lm-news-compact a:hover h5 { color: var(--white); }
.lm-news-footer { margin-top: 2rem; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1020px) {
  .lm-services-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .lm-services-lead { position: static; }
  .lm-mosaic-pair { grid-template-columns: 1fr; }
  .lm-mosaic-feature { height: 420px; }
  .lm-mosaic-half { height: 300px; }
  .lm-news-grid { grid-template-columns: 1fr; gap: 2rem; }
  .lm-stat-divider { display: none; }
}
@media (max-width: 640px) {
  .lm-display-mega { font-size: clamp(4rem, 22vw, 6.5rem); }
  .lm-services-section,
  .lm-work-section,
  .lm-testimonials-section,
  .lm-trust-section,
  .lm-news-section {
    clip-path: polygon(0 44px, 100% 0, 100% 100%, 0 100%);
    margin-top: -44px;
  }
  .lm-work-section {
    clip-path: polygon(0 0, 100% 44px, 100% 100%, 0 100%);
  }
  .lm-trust-section {
    clip-path: polygon(0 0, 100% 44px, 100% 100%, 0 100%);
  }
}

/* =======================================================================
   HOME POLISH OVERRIDES (pass 2)
   ======================================================================= */

/* Remove hover-induced layout jumps in "What we do" */
.lm-service-row {
  transition: background 0.2s ease;
}
.lm-service-row:hover {
  padding-left: 0.4rem;
}
.lm-service-row > div {
  transition: transform 0.2s ease;
}
.lm-service-row:hover > div {
  transform: translateX(8px);
}
.lm-service-row .bi-arrow-right {
  opacity: 0.5;
}

/* Reworked Work section flow */
.lm-work-flow {
  display: grid;
  grid-template-columns: 0.85fr 1.25fr;
  gap: 3.5rem;
  align-items: start;
}
.lm-work-intro {
  position: sticky;
  top: 108px;
  align-self: start;
}
.lm-work-rail {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}
.lm-work-item {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 1.1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: center;
}
.lm-work-media {
  display: block;
  overflow: hidden;
  border-radius: var(--asym-radius-lg);
}
.lm-work-media img {
  width: 100%;
  height: 158px;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  transition: transform 0.35s ease;
}
.lm-work-item:hover .lm-work-media img {
  transform: scale(1.04);
}
.lm-work-copy h3 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  line-height: 1.2;
}
.lm-work-copy h3 a {
  color: var(--mist-100);
}
.lm-work-copy h3 a:hover {
  color: var(--white);
}
.lm-work-copy p {
  color: var(--slate-500);
  margin-bottom: 0.55rem;
  font-size: 0.93rem;
}

/* Real client logos */
.lm-logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 52px;
}
.lm-logo-item img {
  max-width: 132px;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) contrast(1.05);
  opacity: 0.9;
  transition: opacity 0.22s ease, filter 0.22s ease, transform 0.22s ease;
}
.lm-logo-item:hover img {
  opacity: 1;
  filter: none;
  transform: translateY(-1px);
}

/* Keep testimonial block height stable as quote lengths vary */
#js-testimonials {
  position: relative;
}

@media (max-width: 1020px) {
  .lm-work-flow {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .lm-work-intro {
    position: static;
  }
  .lm-work-item {
    grid-template-columns: 220px 1fr;
  }
}

@media (max-width: 640px) {
  .lm-work-item {
    grid-template-columns: 1fr;
  }
  .lm-work-media {
    border-radius: var(--asym-radius-lg);
  }
  .lm-work-media img {
    height: 190px;
  }
  .lm-logo-item {
    width: 120px;
    height: 46px;
  }
  .lm-logo-item img {
    max-width: 104px;
    max-height: 28px;
  }
}

/* =======================================================================
   HOME FINAL POLISH OVERRIDES (pass 3)
   ======================================================================= */

/* Real header logo: large at top, shrinks on scroll */
.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 62px;
  width: auto;
  display: block;
  transition: height 0.22s ease;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.38));
}

.nav-ghost.nav-scrolled .brand-logo {
  height: 42px;
}

/* Slightly sharper premium rhythm */
.btn-brand,
.btn-outline-brand {
  letter-spacing: 0.02em;
}

.lm-editorial-h2 {
  text-wrap: balance;
}

/* Hero transition fix to remove harsh stop before first diagonal */
.lm-hero-bg {
  inset: -8%;
  background-position: center 42%;
}

.lm-hero-overlay {
  background:
    radial-gradient(ellipse 900px 600px at 0% 0%, rgba(190, 79, 186, 0.28), transparent 58%),
    radial-gradient(ellipse 900px 600px at 100% 100%, rgba(75, 130, 181, 0.24), transparent 58%),
    linear-gradient(180deg, rgba(6, 8, 14, 0.32) 0%, rgba(6, 8, 14, 0.58) 58%, rgba(6, 8, 14, 0.82) 100%);
}

.lm-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 128px;
  background: linear-gradient(180deg, rgba(13, 20, 32, 0) 0%, #0d1420 100%);
  z-index: 2;
  pointer-events: none;
}

.lm-scroll-hint {
  bottom: 5.6rem;
}

.lm-services-section {
  margin-top: -72px;
  padding: calc(88px + 64px) 0 96px;
}

/* Gradient accent on news feature divider */
.lm-news-feature-body {
  border-left: 3px solid transparent;
  border-image: linear-gradient(180deg, var(--brand-magenta-bright), var(--brand-blue-bright)) 1;
}

/* Footer: more breathing room + old legal details support */
.footer-shell {
  padding: 56px 0 30px;
  margin-top: 64px;
  background: linear-gradient(180deg, rgba(8, 12, 18, 0), rgba(8, 12, 18, 0.5));
}

.footer-grid {
  grid-template-columns: 1.25fr 1.1fr 1fr 1fr 1fr;
  gap: 1.35rem;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
  font-size: 0.84rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-socials {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  flex-shrink: 0;
}
.footer-socials a {
  color: var(--slate-500);
  font-size: 1.05rem;
  line-height: 1;
  transition: color 0.2s;
}
.footer-socials a:hover {
  color: var(--brand-magenta-bright);
}

@media (max-width: 1020px) {
  .brand-logo {
    height: 52px;
  }

  .nav-ghost.nav-scrolled .brand-logo {
    height: 38px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .main-nav,
  .desktop-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    height: 44px;
  }

  .nav-ghost.nav-scrolled .brand-logo {
    height: 34px;
  }

  .lm-scroll-hint {
    bottom: 4.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-grid h6 {
    font-size: 0.72rem;
    text-align: center;
    margin-bottom: 0.28rem;
  }

  .footer-grid p,
  .footer-grid li,
  .footer-grid a {
    font-size: 0.78rem;
    text-align: center;
    line-height: 1.45;
  }

  .footer-grid ul {
    text-align: center;
  }

  .footer-bottom {
    font-size: 0.66rem;
    line-height: 1.45;
    text-align: center;
  }

  .lm-stats-row {
    padding-top: 1.15rem;
  }

  .lm-trust-section {
    padding: calc(44px + 44px) 0 28px;
  }

  .lm-news-section {
    padding: calc(56px + 44px) 0 72px;
  }
}

/* Desktop-only trust/stats spacing tweak */
@media (min-width: 1021px) {
  .lm-stats-row {
    padding-top: 2.15rem;
    padding-bottom: 1.35rem;
  }

  .lm-news-section {
    padding-top: calc(70px + 64px);
  }
}

.lm-lazy-hidden {
  display: none !important;
}

/* =======================================================================
   INNER PAGES EXTENSION (services/work/portfolio/contact)
   ======================================================================= */

.lm-inner-hero {
  position: relative;
  padding: 170px 0 58px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lm-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: saturate(0.88) contrast(1.05);
  z-index: 0;
}

.lm-story-section {
  padding: 86px 0 72px;
}

.lm-prose {
  max-width: 920px;
}

.lm-prose p,
.lm-prose li {
  color: #c0cad7;
  line-height: 1.72;
}

.lm-prose h5,
.lm-prose h6 {
  margin-top: 1.2rem;
  margin-bottom: 0.45rem;
}

.lm-careers-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.lm-career-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--asym-radius-lg);
}

.lm-career-title {
  margin: 0;
  font-size: clamp(1.02rem, 1.7vw, 1.28rem);
}

.lm-career-card p {
  margin: 0;
  color: var(--slate-500);
}

.lm-career-card .btn-brand {
  align-self: flex-start;
  margin-top: auto;
}

.lm-career-closed {
  border-color: rgba(255, 255, 255, 0.08);
  opacity: 0.82;
}

.lm-career-closed-note {
  color: #d4dce7 !important;
}

.lm-inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 12, 18, 0.55), rgba(8, 12, 18, 0.78) 62%, rgba(8, 12, 18, 0.93)),
    radial-gradient(700px 400px at 0% 0%, rgba(190, 79, 186, 0.14), transparent 68%),
    radial-gradient(700px 400px at 100% 100%, rgba(75, 130, 181, 0.14), transparent 68%);
  pointer-events: none;
  z-index: 1;
}

.lm-inner-hero-services { background: #0c1420; }
.lm-inner-hero-story { background: #0b121c; }
.lm-inner-hero-portfolio { background: #0a111a; }
.lm-inner-hero-contact { background: #0c1420; }

.lm-inner-hero-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2rem;
  align-items: end;
}

.lm-map-embed {
  width: 100%;
  height: 650px;
  border: 0;
  border-radius: var(--radius-lg);
}

.lm-inner-title {
  max-width: 18ch;
}

.lm-inner-stats {
  display: grid;
  gap: 0.65rem;
}

.lm-inner-stats div {
  display: grid;
  gap: 0.1rem;
  border-left: 2px solid rgba(255, 255, 255, 0.16);
  padding: 0.4rem 0 0.4rem 0.8rem;
}

.lm-inner-stats strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  color: var(--white);
  line-height: 1;
}

.lm-inner-stats span {
  color: var(--slate-500);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lm-flat-top {
  margin-top: 0 !important;
  clip-path: none !important;
}

.lm-dual-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.lm-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.3rem;
  border-radius: 8px;
}

.lm-panel h3 {
  margin: 0.25rem 0 0.55rem;
  font-size: clamp(1.1rem, 1.9vw, 1.5rem);
}

.lm-panel p {
  margin-bottom: 0;
  color: var(--slate-500);
}

.lm-process-grid {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.lm-process-grid article {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 0.85rem;
}

.lm-process-grid span {
  display: inline-block;
  color: var(--brand-magenta-bright);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.lm-process-grid h4 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
}

.lm-process-grid p {
  margin: 0;
  color: var(--slate-500);
  font-size: 0.88rem;
}

.lm-sector-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.lm-sector-grid article {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.lm-sector-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.lm-sector-grid h5 {
  margin: 0;
  padding: 0.65rem 0.75rem 0.8rem;
  font-size: 0.95rem;
}

.lm-pullquote {
  border-left: 2px solid var(--brand-magenta-bright);
  padding-left: 1rem;
}

.lm-pullquote p {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  line-height: 1.45;
  color: #dbe4ef;
}

.lm-pullquote span {
  display: block;
  margin-top: 0.65rem;
  color: var(--slate-500);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lm-story-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1.2rem;
}

.lm-story-layout article p {
  color: #c0cad7;
  line-height: 1.72;
}

.lm-story-layout article h3 {
  margin: 1.2rem 0 0.4rem;
  font-size: 1.22rem;
}

.lm-story-lead {
  font-size: 1.12rem;
  color: #e3ebf6 !important;
  line-height: 1.65;
}

.lm-aside-image {
  width: 100%;
  display: block;
  height: 220px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lm-fact-stack {
  display: grid;
  gap: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.8rem;
}

.lm-fact-stack small {
  display: block;
  font-size: 0.7rem;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.lm-fact-stack strong {
  color: #edf2f8;
  font-size: 0.9rem;
  line-height: 1.4;
}

.lm-chip-cloud {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.lm-chip-cloud span {
  font-size: 0.74rem;
  border: 1px solid rgba(255, 255, 255, 0.23);
  color: #d5deea;
  padding: 0.28rem 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lm-contact-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1rem;
}

.lm-contact-cards {
  display: grid;
  gap: 0.65rem;
}

.lm-contact-cards div {
  border-left: 2px solid rgba(255, 255, 255, 0.18);
  padding-left: 0.8rem;
}

.lm-contact-cards small {
  display: block;
  color: var(--slate-500);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.15rem;
}

.lm-contact-cards a {
  color: #edf3fb;
  font-weight: 600;
}

@media (max-width: 1020px) {
  .lm-inner-hero-wrap,
  .lm-story-layout,
  .lm-contact-layout {
    grid-template-columns: 1fr;
  }

  .lm-dual-cards,
  .lm-process-grid,
  .lm-sector-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lm-chip-cloud {
    justify-content: flex-start;
  }

  .lm-careers-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .lm-inner-hero {
    padding: 132px 0 46px;
  }

  .lm-map-embed {
    height: 420px;
  }

  .lm-story-section {
    padding: 74px 0 62px;
  }

  .lm-dual-cards,
  .lm-process-grid,
  .lm-sector-grid {
    grid-template-columns: 1fr;
  }

  .lm-aside-image {
    height: 190px;
  }
}

/* =======================================================================
   SHARED CORNER LANGUAGE
   ======================================================================= */

:root {
  --asym-radius-lg: 18px 0 18px 0;
  --asym-radius-md: 14px 0 14px 0;
}

.hero-panel,
.panel-stat,
.card-fluid,
.story-strip,
.stat-chip,
.work-card,
.lm-work-media,
.cta-band,
.media-hero,
.content-layout article,
.content-layout aside,
.lm-panel,
.lm-fact-stack,
.lm-aside-image,
.lm-contact-cards div,
.mobile-menu-btn,
.gallery-row img {
  border-radius: var(--asym-radius-lg);
}

.hero-panel img,
.media-hero img,
.work-card img,
.lm-work-media img,
.gallery-row img,
.lm-sector-grid img {
  border-radius: var(--asym-radius-lg);
}

.lm-panel,
.lm-fact-stack,
.content-layout article,
.work-card,
.story-strip,
.hero-panel,
.media-hero {
  overflow: hidden;
}

.lm-contact-cards div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.75rem 0.85rem;
}

.form-control {
  border-radius: var(--asym-radius-md) !important;
}