
    /* ══════════════════════════
       HERO CAROUSEL
    ══════════════════════════ */
    .hero-carousel {
      position: relative;
      height: 100svh;
      min-height: 680px;
      overflow: hidden;
      background: var(--navy);
      cursor: grab;
      user-select: none;
    }

    .hero-carousel.dragging {
      cursor: grabbing;
    }

    /* Top vignette for nav readability */
    .hero-carousel::before {
      content: '';
      position: absolute;
      inset: 0 0 auto;
      z-index: 4;
      height: 260px;
      pointer-events: none;
      background: linear-gradient(to bottom,
          oklch(11% 0.08 282 / .80) 0%,
          oklch(11% 0.08 282 / .28) 55%,
          transparent 100%);
    }

    /* Grid texture */
    .hero-carousel::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background-image:
        linear-gradient(oklch(99% 0.005 88 / .018) 1px, transparent 1px),
        linear-gradient(90deg, oklch(99% 0.005 88 / .018) 1px, transparent 1px);
      background-size: 80px 80px;
    }

    /* ── Slides ── */
    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1s cubic-bezier(.4, 0, .2, 1);
    }

    .hero-slide.active {
      opacity: 1;
    }

    .hero-slide>img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Dark overlay per slide */
    .hero-slide::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(115deg,
          oklch(11% 0.085 282 / .93) 0%,
          oklch(11% 0.085 282 / .62) 42%,
          oklch(11% 0.085 282 / .14) 100%);
    }

    /* Ambient accent glow */
    .hero-slide::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background: radial-gradient(ellipse 65% 55% at 8% 60%, oklch(74.9% 0.166 61 / .09) 0%, transparent 60%);
    }

    /* ── Slide content ── */
    .hero-slide-content {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: clamp(90px, 12vw, 130px) 0 clamp(72px, 8vw, 108px);
    }

    .hero-inner {
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 clamp(20px, 4vw, 40px);
    }

    /* Text elements — start hidden, animate in when slide is active */
    .hero-slide .hero-slide-lbl,
    .hero-slide .hero-slide-h,
    .hero-slide .hero-slide-sub,
    .hero-slide .hero-slide-btns {
      opacity: 0;
    }

    .hero-slide.active .hero-slide-lbl {
      animation: hs-fade .7s ease-out .10s forwards;
    }

    .hero-slide.active .hero-slide-h {
      animation: hs-up .85s cubic-bezier(.16, 1, .3, 1) .25s forwards;
    }

    .hero-slide.active .hero-slide-sub {
      animation: hs-up .75s cubic-bezier(.16, 1, .3, 1) .46s forwards;
    }

    .hero-slide.active .hero-slide-btns {
      animation: hs-up .65s cubic-bezier(.16, 1, .3, 1) .62s forwards;
    }

    @keyframes hs-fade {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes hs-up {
      from {
        opacity: 0;
        transform: translateY(26px);
      }

      to {
        opacity: 1;
        transform: none;
      }
    }

    .hero-slide-lbl {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--orange);
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 22px;
    }

    .hero-slide-lbl::before {
      content: '';
      width: 26px;
      height: 1px;
      background: var(--orange);
      flex-shrink: 0;
    }

    .hero-slide-h {
      font-family: var(--ff-d);
      font-weight: 900;
      font-size: clamp(44px, 6vw, 88px);
      line-height: .92;
      letter-spacing: -0.03em;
      color: var(--ink);
      margin-bottom: 22px;
    }

    .hero-slide-h .dim {
      color: oklch(99% 0.005 88 / .26);
    }

    .hero-slide-sub {
      font-size: clamp(14px, 1.5vw, 17px);
      line-height: 1.72;
      color: oklch(99% 0.005 88 / .52);
      max-width: 50ch;
      margin-bottom: 38px;
    }

    .hero-slide-btns {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    /* Stat badge — bottom right */
    .hero-slide-stat {
      position: absolute;
      bottom: clamp(72px, 8vw, 108px);
      right: max(clamp(20px, 4vw, 40px), calc((100% - 1100px) / 2 + clamp(20px, 4vw, 40px)));
      z-index: 2;
      text-align: right;
      opacity: 0;
    }

    .hero-slide.active .hero-slide-stat {
      animation: hs-up .7s cubic-bezier(.16, 1, .3, 1) .55s forwards;
    }

    .hero-stat-n {
      font-family: var(--ff-d);
      font-weight: 900;
      font-size: clamp(42px, 6vw, 80px);
      letter-spacing: -0.045em;
      color: var(--ink);
      line-height: 1;
    }

    .hero-stat-n em {
      font-style: normal;
      color: var(--orange);
    }

    .hero-stat-l {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: .06em;
      color: oklch(99% 0.005 88 / .42);
      margin-top: 4px;
    }

    /* ── Arrows ── */
    .hero-arrow {
      position: absolute;
      top: 50%;
      z-index: 5;
      transform: translateY(-50%);
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: oklch(99% 0.005 88 / .08);
      border: 1px solid oklch(99% 0.005 88 / .18);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--ink);
      transition: background .2s, border-color .2s, transform .25s;
      -webkit-tap-highlight-color: transparent;
    }

    .hero-arrow:hover {
      background: oklch(99% 0.005 88 / .18);
      border-color: oklch(99% 0.005 88 / .45);
      transform: translateY(-50%) scale(1.1);
    }

    .hero-arrow svg {
      display: block;
    }

    .hero-prev {
      left: clamp(16px, 3vw, 52px);
    }

    .hero-next {
      right: clamp(16px, 3vw, 52px);
    }

    /* ── Circular ring nav ── */
    .hero-dots {
      position: absolute;
      bottom: clamp(26px, 3vw, 38px);
      left: max(clamp(20px, 4vw, 40px), calc((100% - 1100px) / 2 + clamp(20px, 4vw, 40px)));
      z-index: 5;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .hero-dot {
      width: 46px;
      height: 46px;
      cursor: pointer;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      -webkit-tap-highlight-color: transparent;
    }

    .hero-dot-svg {
      width: 46px;
      height: 46px;
      transform: rotate(-90deg);
      position: absolute;
      inset: 0;
    }

    .hero-dot-track {
      fill: none;
      stroke: oklch(99% 0.005 88 / .18);
      stroke-width: 1.5;
    }

    .hero-dot-ring {
      fill: none;
      stroke: var(--orange);
      stroke-width: 1.5;
      stroke-dasharray: 94.25;
      stroke-dashoffset: 94.25;
      stroke-linecap: round;
    }

    .hero-dot-num {
      font-family: var(--ff-d);
      font-size: 11px;
      font-weight: 700;
      color: oklch(99% 0.005 88 / .3);
      position: relative;
      z-index: 1;
      transition: color .25s;
      letter-spacing: 0;
    }

    .hero-dot.active .hero-dot-num {
      color: var(--ink);
    }

    /* ══════════════════════════
       MANIFEST — stats strip
    ══════════════════════════ */
    .manifest {
      background: oklch(14% 0.085 282);
    }

    .manifest-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      background: oklch(99% 0.005 88 / .07);
      max-width: 1100px;
      margin: 0 auto;
    }

    .mst-cell {
      background: oklch(14% 0.085 282);
      padding: clamp(40px, 5.5vw, 72px) clamp(28px, 3.5vw, 52px);
      display: flex;
      flex-direction: column;
    }

    .mst-n {
      font-family: var(--ff-d);
      font-weight: 900;
      font-size: clamp(52px, 6.5vw, 88px);
      letter-spacing: -0.04em;
      color: var(--ink);
      line-height: 1;
    }

    .mst-n sup {
      font-size: .42em;
      vertical-align: .35em;
      color: inherit;
      opacity: .8;
    }

    .mst-cell.c-orange .mst-n {
      color: var(--orange);
    }

    .mst-cell.c-lime .mst-n {
      color: var(--lime);
    }

    .mst-l {
      font-size: clamp(13px, 1.25vw, 15px);
      font-weight: 600;
      color: var(--ink);
      margin-top: 12px;
      line-height: 1.3;
    }

    .mst-sub {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: oklch(99% 0.005 88 / .35);
      margin-top: 6px;
    }

    /* ══════════════════════════
       SOLUTIONS BRIDGE
    ══════════════════════════ */
    .sol-bridge {
      background: var(--bg);
    }

    .sb-hdr {
      margin-bottom: 36px;
    }

    .sb-hdr h2 {
      font-family: var(--ff-d);
      font-weight: 700;
      font-size: clamp(22px, 2.8vw, 38px);
      letter-spacing: -0.02em;
      color: oklch(17% 0.085 282);
      line-height: 1.15;
      margin-top: 10px;
    }

    .sb-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .sb-panel {
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      padding: clamp(40px, 5.5vw, 72px) clamp(36px, 4.5vw, 60px);
      background: oklch(99% 0.005 88);
      border: 1px solid oklch(22% 0.093 282 / .09);
      border-radius: 6px;
      text-decoration: none;
      transition: transform .3s cubic-bezier(.16, 1, .3, 1), box-shadow .3s cubic-bezier(.16, 1, .3, 1);
    }

    .sb-panel:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px oklch(22% 0.093 282 / .10);
    }

    .sb-panel:focus-visible {
      outline: 2px solid var(--orange);
      outline-offset: 3px;
    }

    /* Ghost number watermark */
    .sb-panel::before {
      content: attr(data-num);
      position: absolute;
      right: -8px;
      bottom: -16px;
      font-family: var(--ff-d);
      font-weight: 900;
      font-size: clamp(100px, 14vw, 160px);
      line-height: 1;
      letter-spacing: -0.04em;
      color: oklch(22% 0.093 282 / .05);
      pointer-events: none;
      user-select: none;
    }

    /* Hover arrow */
    .sb-panel::after {
      content: '→';
      position: absolute;
      bottom: clamp(32px, 4vw, 48px);
      right: clamp(32px, 4vw, 52px);
      font-size: 20px;
      color: var(--orange);
      opacity: 0;
      transform: translateX(-8px);
      transition: opacity .25s ease, transform .25s ease;
    }

    .sb-panel:last-child::after {
      color: var(--lime);
    }

    .sb-panel:hover::after {
      opacity: 1;
      transform: none;
    }

    .sb-tag {
      display: inline-flex;
      align-items: center;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .13em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 3px;
      margin-bottom: 28px;
      align-self: flex-start;
    }

    .sb-tag.orange {
      background: oklch(74.9% 0.166 61 / .1);
      color: oklch(62% 0.16 61);
      border: 1px solid oklch(74.9% 0.166 61 / .22);
    }

    .sb-tag.lime {
      background: oklch(81.3% 0.173 121 / .1);
      color: oklch(42% 0.12 140);
      border: 1px solid oklch(81.3% 0.173 121 / .22);
    }

    .sb-h {
      font-family: var(--ff-d);
      font-weight: 700;
      font-size: clamp(22px, 2.8vw, 38px);
      letter-spacing: -0.025em;
      color: var(--forest);
      line-height: 1.1;
      margin-bottom: 16px;
    }

    .sb-p {
      font-size: clamp(13px, 1.3vw, 15px);
      line-height: 1.75;
      color: var(--muted);
      max-width: 38ch;
      flex: 1;
    }


    /* ══════════════════════════
       ABOUT
    ══════════════════════════ */
    .about {
      background: oklch(17% 0.085 282);
    }

    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(48px, 6vw, 96px);
      align-items: center;
      padding: clamp(64px, 8vw, 108px) 0;
    }

    .about-img-wrap {
      border-radius: 8px;
      overflow: hidden;
      aspect-ratio: 4/5;
      position: relative;
    }

    .about-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .about-rhs .lbl {
      color: var(--orange);
      margin-bottom: 18px;
    }

    .about-rhs h2 {
      font-family: var(--ff-d);
      font-weight: 700;
      font-size: clamp(24px, 3vw, 42px);
      letter-spacing: -0.02em;
      color: var(--ink);
      line-height: 1.15;
      margin-bottom: 20px;
    }

    .about-rhs>p {
      font-size: 15px;
      line-height: 1.75;
      color: oklch(99% 0.005 88 / .55);
      max-width: 48ch;
      margin-bottom: 16px;
      text-align: justify;
    }

    .about-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: oklch(99% 0.005 88 / .08);
      margin: 28px 0 36px;
    }

    .about-stat {
      padding: 20px 18px;
      background: oklch(17% 0.085 282);
    }

    .about-stat-n {
      font-family: var(--ff-d);
      font-weight: 900;
      font-size: clamp(26px, 3vw, 36px);
      letter-spacing: -0.04em;
      color: var(--ink);
      line-height: 1;
      margin-bottom: 5px;
    }

    .about-stat-l {
      font-size: 12px;
      color: oklch(99% 0.005 88 / .45);
      font-weight: 500;
      line-height: 1.4;
    }

    /* ══════════════════════════
       MEDIA FORMATS — 3 PRODUCTS
    ══════════════════════════ */
    .mediaformats {
      background: var(--bg);
    }

    .mf-hdr {
      margin-bottom: 52px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
    }

    .mf-hdr .lbl {
      color: var(--orange);
      margin-bottom: 14px;
    }

    .mf-hdr h2 {
      font-family: var(--ff-d);
      font-weight: 700;
      font-size: clamp(24px, 3vw, 40px);
      letter-spacing: -0.02em;
      color: var(--forest);
      line-height: 1.15;
      margin-bottom: 8px;
    }

    .mf-hdr p {
      font-size: 14px;
      color: var(--muted);
    }

    .mf-products {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .mf-product {
      display: flex;
      flex-direction: column;
      background: oklch(99% 0.005 88);
      border: 1px solid oklch(22% 0.093 282 / .1);
      border-radius: 4px;
      overflow: hidden;
    }

    .mf-prod-img {
      position: relative;
      overflow: hidden;
      height: clamp(190px, 19vw, 250px);
    }

    .mf-prod-img img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .65s cubic-bezier(.16, 1, .3, 1);
    }

    .mf-product:hover .mf-prod-img img {
      transform: scale(1.05);
    }

    .mf-prod-num {
      position: absolute;
      top: 14px;
      left: 14px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .14em;
      color: var(--ink);
      background: oklch(10% 0.08 282 / .6);
      padding: 4px 9px;
    }

    .mf-panel-body {
      padding: 24px 22px 26px;
      background: transparent;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .mf-panel-tag {
      display: inline-flex;
      align-items: center;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 3px;
      margin-bottom: 14px;
      align-self: flex-start;
    }

    .mf-panel-body h3 {
      font-family: var(--ff-d);
      font-weight: 700;
      font-size: clamp(18px, 2vw, 24px);
      letter-spacing: -0.02em;
      color: var(--forest);
      line-height: 1.15;
      margin-bottom: 10px;
    }

    .mf-panel-body>p {
      font-size: 13px;
      line-height: 1.75;
      color: var(--muted);
      margin-bottom: 20px;
      flex: 1;
    }

    .mf-spec-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      margin-bottom: 22px;
      background: oklch(22% 0.093 282 / .1);
      border-radius: 4px;
      overflow: hidden;
    }

    .mf-spec {
      padding: 12px 14px;
      background: oklch(99% 0.005 88);
    }

    .mf-spec-n {
      font-family: var(--ff-d);
      font-weight: 700;
      font-size: 17px;
      letter-spacing: -0.02em;
      color: var(--forest);
      line-height: 1;
    }

    .mf-spec-l {
      font-size: 9px;
      text-transform: uppercase;
      letter-spacing: .07em;
      color: var(--muted);
      margin-top: 3px;
    }

    .mf-panel-body .btn {
      align-self: center;
    }

    /* ══════════════════════════
       WHY HCM
    ══════════════════════════ */
    .why {
      background: oklch(17% 0.085 282);
    }

    .why-inner {
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: clamp(48px, 6vw, 96px);
      align-items: start;
      padding: clamp(64px, 8vw, 108px) 0;
    }

    .why-left .lbl {
      color: var(--orange);
      margin-bottom: 18px;
    }

    .why-left h2 {
      font-family: var(--ff-d);
      font-weight: 700;
      font-size: clamp(24px, 3vw, 40px);
      letter-spacing: -0.02em;
      color: var(--ink);
      line-height: 1.15;
      margin-bottom: 36px;
    }

    .why-row {
      display: flex;
      gap: 22px;
      padding: 22px 16px 22px 0;
      border-top: 1px solid oklch(99% 0.005 88 / .07);
      border-radius: 4px;
      cursor: default;
      transition: background .25s, padding-left .25s;
    }

    .why-row:last-child {
      border-bottom: 1px solid oklch(99% 0.005 88 / .07);
    }

    .why-row:hover {
      background: oklch(99% 0.005 88 / .03);
      padding-left: 12px;
    }

    .why-idx {
      font-family: var(--ff-d);
      font-weight: 900;
      font-size: clamp(38px, 5vw, 58px);
      letter-spacing: -0.045em;
      color: oklch(99% 0.005 88 / .07);
      line-height: 1;
      flex-shrink: 0;
      min-width: 58px;
      transition: color .25s;
    }

    .why-row:hover .why-idx {
      color: var(--orange);
    }

    .why-ttl {
      font-family: var(--ff-d);
      font-weight: 700;
      font-size: 15px;
      color: var(--ink);
      line-height: 1.2;
      margin-bottom: 7px;
      margin-top: 5px;
    }

    .why-txt {
      font-size: 13.5px;
      line-height: 1.7;
      color: oklch(99% 0.005 88 / .42);
    }

    /* Sticky photo panel */
    .why-right {
      position: sticky;
      top: 96px;
    }

    .why-visual {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      aspect-ratio: 3/4;
    }

    .why-visual>img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .why-vis-over {
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg,
          oklch(9% 0.08 282 / .97) 0%,
          oklch(9% 0.08 282 / .5) 52%,
          transparent 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 26px 22px;
    }

    .why-vis-stat {
      margin-bottom: 16px;
    }

    .wvs-n {
      font-family: var(--ff-d);
      font-weight: 900;
      font-size: clamp(40px, 5.5vw, 68px);
      letter-spacing: -0.04em;
      color: var(--ink);
      line-height: 1;
    }

    .wvs-n em {
      font-style: normal;
      color: var(--lime);
      font-size: .55em;
      vertical-align: .2em;
    }

    .wvs-l {
      font-size: 12px;
      color: oklch(99% 0.005 88 / .5);
      margin-top: 5px;
      line-height: 1.4;
    }

    .why-antara {
      padding: 12px 14px;
      background: oklch(81.3% 0.173 121 / .08);
      border: 1px solid oklch(81.3% 0.173 121 / .22);
      border-radius: 6px;
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .why-antara-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--lime);
      flex-shrink: 0;
      margin-top: 3px;
      box-shadow: 0 0 8px oklch(81.3% 0.173 121 / .6);
    }

    .why-antara-txt {
      font-size: 12px;
      color: var(--lime);
      font-weight: 600;
      line-height: 1.5;
    }

    /* ══════════════════════════
       FEATURED PROJECTS
    ══════════════════════════ */
    .projects {
      background: #F3F2ED;
    }

    .proj-hdr {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 48px;
    }

    .proj-hdr .lbl {
      color: var(--orange);
      margin-bottom: 14px;
    }

    .proj-hdr h2 {
      font-family: var(--ff-d);
      font-weight: 700;
      font-size: clamp(24px, 3vw, 38px);
      letter-spacing: -0.02em;
      color: var(--forest);
      line-height: 1.15;
    }

    /* Feature card */
    .proj-feature {
      display: grid;
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      margin-bottom: 12px;
    }

    .proj-feature>img {
      grid-area: 1/1;
      width: 100%;
      height: 100%;
      min-height: 480px;
      object-fit: cover;
      z-index: 1;
      transition: transform .65s cubic-bezier(.16, 1, .3, 1);
    }

    .proj-feature:hover>img {
      transform: scale(1.04);
    }

    .proj-over {
      grid-area: 1/1;
      z-index: 2;
      background: linear-gradient(0deg, oklch(13% 0.08 282 / .97) 0%, oklch(13% 0.08 282 / .5) 45%, transparent 75%);
      padding: 36px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .proj-tag {
      display: inline-flex;
      align-items: center;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 3px 9px;
      border-radius: 3px;
      margin-bottom: 10px;
      align-self: flex-start;
    }

    .proj-brand {
      font-family: var(--ff-d);
      font-weight: 900;
      font-size: clamp(28px, 4vw, 52px);
      letter-spacing: -0.03em;
      color: var(--ink);
      line-height: 1;
      margin-bottom: 10px;
    }

    .proj-desc {
      font-size: 14px;
      line-height: 1.7;
      color: oklch(99% 0.005 88 / .55);
      max-width: 52ch;
      margin-bottom: 22px;
    }

    .proj-metrics {
      display: flex;
      gap: 32px;
      margin-bottom: 24px;
    }

    .pm-n {
      font-family: var(--ff-d);
      font-weight: 900;
      font-size: clamp(22px, 2.8vw, 32px);
      letter-spacing: -0.03em;
      color: var(--ink);
      line-height: 1;
    }

    .pm-l {
      font-size: 11px;
      color: oklch(99% 0.005 88 / .42);
      margin-top: 3px;
    }

    /* 3-card row */
    .proj-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .proj-card {
      position: relative;
      overflow: hidden;
      border-radius: 6px;
      height: 260px;
      cursor: pointer;
    }

    .proj-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .55s cubic-bezier(.16, 1, .3, 1);
    }

    .proj-card:hover img {
      transform: scale(1.06);
    }

    .proj-cover {
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, oklch(13% 0.08 282 / .95) 0%, oklch(13% 0.08 282 / .22) 60%, transparent 100%);
      padding: 22px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .proj-cover .proj-brand {
      font-size: clamp(20px, 2.2vw, 28px);
      margin-bottom: 4px;
    }

    .proj-metric {
      font-size: 11px;
      color: oklch(99% 0.005 88 / .44);
    }

    .proj-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      align-self: flex-start;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: oklch(99% 0.005 88 / .8);
      padding: 8px 14px;
      margin-top: 12px;
      border: 1.5px solid oklch(99% 0.005 88 / .35);
      border-radius: 4px;
      transition: color .2s, gap .2s, border-color .2s;
    }

    .proj-cta:hover {
      color: var(--ink);
      border-color: var(--ink);
      gap: 9px;
    }

    /* ══════════════════════════
       COVERAGE
    ══════════════════════════ */
    .coverage {
      background: oklch(17% 0.085 282);
    }

    .cov-inner {
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      gap: clamp(48px, 6vw, 96px);
      align-items: center;
      padding: clamp(64px, 8vw, 108px) 0;
    }

    .cov-content .lbl {
      color: var(--lime);
      margin-bottom: 18px;
    }

    .cov-content h2 {
      font-family: var(--ff-d);
      font-weight: 700;
      font-size: clamp(24px, 3vw, 40px);
      letter-spacing: -0.02em;
      color: var(--ink);
      line-height: 1.15;
      margin-bottom: 14px;
    }

    .cov-content>p {
      font-size: 14px;
      line-height: 1.75;
      color: oklch(99% 0.005 88 / .55);
      margin-bottom: 32px;
      text-align: justify;
    }

    .cov-venues {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 32px;
    }

    .cov-venue {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 11px 15px;
      border-radius: 6px;
      background: oklch(99% 0.005 88 / .04);
      border: 1px solid oklch(99% 0.005 88 / .08);
      transition: border-color .2s, transform .2s, box-shadow .2s;
    }

    .cov-venue:hover {
      transform: translateX(4px);
      box-shadow: 0 2px 16px oklch(0% 0 0 / .2);
    }

    .cov-venue-ico {
      width: 34px;
      height: 34px;
      border-radius: 6px;
      background: oklch(99% 0.005 88 / .08);
      display: flex;
      align-items: center;
      justify-content: center;
      color: oklch(99% 0.005 88 / .5);
      flex-shrink: 0;
    }

    .cov-venue-ico svg {
      display: block;
    }

    .cov-venue-label {
      flex: 1;
      font-size: 13px;
      font-weight: 600;
      color: var(--ink);
    }

    .cov-venue-count {
      font-family: var(--ff-d);
      font-weight: 900;
      font-size: 20px;
      letter-spacing: -0.03em;
      color: var(--ink);
    }

    .cov-venue-count sup {
      font-size: .5em;
      color: var(--orange);
      vertical-align: .3em;
    }

    /* Leaflet Map */
    .cov-map {
      position: relative;
    }

    .cov-leaflet {
      width: 100%;
      height: clamp(380px, 42vw, 500px);
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid oklch(22% 0.093 282 / .08);
    }

    .leaflet-container {
      background: oklch(94% 0.004 88) !important;
      font-family: var(--ff-b);
    }

    .leaflet-tile-pane {
      filter: grayscale(0.4) saturate(0.7);
    }

    .leaflet-control-zoom {
      border: 1px solid oklch(22% 0.093 282 / .14) !important;
      border-radius: 6px !important;
      overflow: hidden;
      box-shadow: none !important;
    }

    .leaflet-control-zoom a {
      color: oklch(22% 0.093 282) !important;
      border-bottom-color: oklch(22% 0.093 282 / .1) !important;
    }

    .leaflet-control-zoom a:hover {
      background: oklch(22% 0.093 282 / .05) !important;
    }

    .leaflet-popup-content-wrapper {
      border-radius: 6px !important;
      padding: 0 !important;
      box-shadow: 0 4px 20px oklch(22% 0.093 282 / .14) !important;
      border: 1px solid oklch(22% 0.093 282 / .08);
    }

    .leaflet-popup-content {
      margin: 10px 14px !important;
      line-height: 1.5;
    }

    .leaflet-popup-close-button {
      top: 6px !important;
      right: 8px !important;
      color: var(--muted) !important;
      font-size: 16px !important;
    }

    .leaflet-control-attribution {
      font-size: 9px !important;
      opacity: .5;
    }

    .leaflet-attribution-flag {
      display: none !important;
    }

    .cov-venue {
      cursor: pointer;
    }

    .cov-venue--active {
      border-color: var(--lime) !important;
      background: oklch(81.3% 0.173 121 / .06) !important;
    }

    .cov-venue--active .cov-venue-count {
      color: var(--lime);
    }

    .cov-map-caption {
      text-align: center;
      margin-top: 12px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: oklch(99% 0.005 88 / .72);
    }

    /* ══════════════════════════
       PROCESS — NUMBERED ROWS
    ══════════════════════════ */
    .process {
      background: var(--bg);
    }

    .proc-inner {
      padding: clamp(64px, 8vw, 108px) 0;
    }

    .proc-hdr {
      margin-bottom: 52px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: end;
    }

    .proc-hdr .lbl {
      color: var(--orange);
      margin-bottom: 18px;
    }

    .proc-hdr h2 {
      font-family: var(--ff-d);
      font-weight: 700;
      font-size: clamp(24px, 3vw, 40px);
      letter-spacing: -0.02em;
      color: var(--forest);
      line-height: 1.15;
    }

    .proc-hdr p {
      font-size: 14px;
      line-height: 1.75;
      color: var(--muted);
      align-self: end;
    }

    .proc-steps {
      display: flex;
      flex-direction: column;
    }

    .pst {
      display: grid;
      grid-template-columns: clamp(72px, 8.5vw, 108px) 1fr;
      gap: clamp(20px, 3vw, 44px);
      align-items: start;
      padding: clamp(26px, 3.2vw, 40px) 0;
      border-top: 1px solid oklch(22% 0.093 282 / .08);
      transition: background .25s;
      border-radius: 4px;
    }

    .pst:last-child {
      border-bottom: 1px solid oklch(22% 0.093 282 / .08);
    }

    .pst:hover {
      background: oklch(22% 0.093 282 / .025);
    }

    .pst-num {
      font-family: var(--ff-d);
      font-weight: 900;
      font-size: clamp(60px, 8.5vw, 100px);
      letter-spacing: -0.045em;
      line-height: 1;
      color: oklch(22% 0.093 282 / .07);
      user-select: none;
      transition: color .35s;
      align-self: start;
      padding-left: clamp(4px, 1vw, 10px);
    }

    .pst:nth-child(odd):hover .pst-num {
      color: oklch(74.9% 0.166 61 / .4);
    }

    .pst:nth-child(even):hover .pst-num {
      color: oklch(81.3% 0.173 121 / .32);
    }

    .pst-body {
      padding-top: clamp(6px, 0.8vw, 12px);
    }

    .pst h3 {
      font-family: var(--ff-d);
      font-weight: 700;
      font-size: clamp(17px, 2vw, 24px);
      letter-spacing: -0.02em;
      color: var(--forest);
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .pst p {
      font-size: clamp(13px, 1.3vw, 15px);
      color: var(--muted);
      line-height: 1.72;
      max-width: 54ch;
    }

    /* ══════════════════════════
       INSIGHTS
    ══════════════════════════ */
    .insights {
      background: oklch(17% 0.085 282);
    }

    .ins-hdr {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 44px;
    }

    .ins-hdr .lbl {
      color: var(--orange);
      margin-bottom: 14px;
    }

    .ins-hdr h2 {
      font-family: var(--ff-d);
      font-weight: 700;
      font-size: clamp(24px, 3vw, 38px);
      letter-spacing: -0.02em;
      color: var(--ink);
      line-height: 1.15;
    }

    .ins-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .ins-card {
      border-radius: 6px;
      overflow: hidden;
      background: oklch(22% 0.072 282);
      border: 1px solid oklch(99% 0.005 88 / .07);
      display: flex;
      flex-direction: column;
      transition: transform .3s cubic-bezier(.16, 1, .3, 1);
    }

    .ins-card:hover {
      transform: translateY(-3px);
    }

    .ins-ph {
      overflow: hidden;
      flex-shrink: 0;
    }

    .ins-ph img {
      width: 100%;
      height: clamp(180px, 16vw, 220px);
      object-fit: cover;
      display: block;
      transition: transform .5s cubic-bezier(.16, 1, .3, 1);
    }

    .ins-card:hover .ins-ph img {
      transform: scale(1.04);
    }

    .ins-body {
      padding: 22px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .ins-link-wrap {
      margin-top: auto;
      padding-top: 24px;
    }

    .ins-meta {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 11px;
      flex-wrap: wrap;
    }

    .ins-cat {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 3px 9px;
      border-radius: 3px;
    }

    .ins-date {
      font-size: 11px;
      color: oklch(99% 0.005 88 / .38);
    }

    .ins-card h3 {
      font-family: var(--ff-d);
      font-weight: 700;
      letter-spacing: -0.01em;
      color: var(--ink);
      line-height: 1.35;
      margin-bottom: 9px;
    }

    .ins-card h3 {
      font-size: clamp(14px, 1.5vw, 17px);
    }

    .ins-card p {
      font-size: 13px;
      color: oklch(99% 0.005 88 / .5);
      line-height: 1.65;
      text-align: justify;
    }

    .ins-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: oklch(99% 0.005 88 / .8);
      padding: 8px 14px;
      border: 1.5px solid oklch(99% 0.005 88 / .35);
      border-radius: 4px;
      transition: color .2s, gap .2s, border-color .2s;
    }

    .ins-link:hover {
      color: var(--ink);
      border-color: var(--ink);
      gap: 9px;
    }


    /* ══════════════════════════
       CTA + FORM
    ══════════════════════════ */
    .ctasec { background: #F3F2ED; }
    .cta-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: clamp(48px,6vw,96px); align-items: start;
      padding: clamp(64px,8vw,108px) 0;
    }
    .cta-lhs .lbl { color: var(--orange); margin-bottom: 18px; }
    .cta-lhs h2 {
      font-family: var(--ff-d); font-weight: 900;
      font-size: clamp(30px,4.5vw,58px); letter-spacing: -0.03em;
      color: var(--forest); line-height: 1.0; margin-bottom: 18px;
    }
    .cta-lhs h2 em { font-style: normal; color: var(--orange); }
    .cta-lhs > p {
      font-size: 15px; line-height: 1.75; color: var(--muted);
      max-width: 42ch; margin-bottom: 28px; text-align: justify;
    }
    .cta-proof { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
    .cta-proof-item {
      display: flex; align-items: flex-start; gap: 12px;
      padding: 13px 15px; border-radius: 6px;
      background: oklch(99% 0.005 88 / .7);
      border: 1px solid oklch(22% 0.093 282 / .08);
    }
    .cta-proof-ico { font-size: 15px; flex-shrink: 0; line-height: 1.5; }
    .cta-proof-txt { font-size: 13px; color: var(--muted); line-height: 1.55; }
    .cta-proof-txt strong { color: var(--forest); font-weight: 600; }
    .cta-contacts { display: flex; flex-direction: column; gap: 18px; }
    .cc-row { display: flex; align-items: flex-start; gap: 14px; }
    .cc-ico {
      width: 36px; height: 36px; border-radius: 4px; flex-shrink: 0;
      border: 1px solid oklch(74.9% 0.166 61 / .35);
      display: flex; align-items: center; justify-content: center;
      color: var(--orange); margin-top: 2px;
    }
    .cc-ico svg { display: block; }
    .cc-row small {
      display: block; font-size: 10px; font-weight: 600; letter-spacing: .12em;
      text-transform: uppercase; color: var(--muted); margin-bottom: 3px;
    }
    .cc-row span { font-size: 14px; color: var(--forest); }

    .cta-rhs { }
    .cta-form {
      background: oklch(99% 0.005 88 / .8);
      border: 1px solid oklch(22% 0.093 282 / .1);
      border-radius: 8px; padding: 36px 32px;
    }
    .form-ttl {
      font-family: var(--ff-d); font-weight: 700; font-size: 17px; letter-spacing: -0.01em;
      color: var(--forest); margin-bottom: 26px;
    }
    .fg { margin-bottom: 13px; }
    .fgr { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
    .fl { display: block; font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: oklch(22% 0.093 282 / .45); margin-bottom: 6px; }
    .fi {
      width: 100%; padding: 11px 13px;
      background: oklch(99% 0.005 88); border: 1px solid oklch(22% 0.093 282 / .15);
      border-radius: 4px; color: var(--forest); font-size: 14px; font-family: var(--ff-b);
      outline: none; -webkit-appearance: none; transition: border-color .2s;
    }
    .fi::placeholder { color: oklch(22% 0.093 282 / .28); }
    .fi:focus { border-color: oklch(74.9% 0.166 61 / .6); }
    .fi option { background: oklch(99% 0.005 88); }
    textarea.fi { resize: vertical; min-height: 88px; }
    .fsub {
      width: 100%; padding: 14px; margin-top: 6px;
      background: var(--orange); color: var(--ink); border: none; border-radius: 4px;
      font-family: var(--ff-b); font-size: 14px; font-weight: 700;
      cursor: pointer; transition: opacity .2s, transform .2s;
    }
    .fsub:hover { opacity: .88; transform: translateY(-1px); }
