/* ===================== RESET & TOKENS ===================== */
    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --white: #FFFFFF;
      --paper: #FFFDFD;
      /* base page background */
      --blush: #FFF1F1;
      /* soft alternating section bg */
      --blush-deep: #FFE3E4;
      /* deeper accent panels/badges */
      --red: #E31E24;
      --red-dark: #B01519;
      --red-soft: #FF7A7E;
      --ink: #1C1214;
      /* warm near-black for text */
      --ink-mute: #8C7677;
      /* muted secondary text */
      --line: rgba(227, 30, 36, 0.14);
      --line-soft: rgba(28, 18, 20, 0.09);
      --font-display: 'Bebas Neue', sans-serif;
      --font-heading: 'Syne', sans-serif;
      --font-body: 'DM Sans', sans-serif;
      --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      font-family: var(--font-body);
      background: var(--paper);
      color: var(--ink);
      overflow-x: hidden;
      cursor: none;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    ul {
      list-style: none;
    }

    /* ===================== CUSTOM CURSOR ===================== */
    .cursor {
      position: fixed;
      width: 10px;
      height: 10px;
      background: var(--red);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: width .2s, height .2s, background .2s;
    }

    .cursor-follower {
      position: fixed;
      width: 34px;
      height: 34px;
      border: 2px solid var(--red);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: transform .15s ease, width .3s, height .3s, opacity .3s;
      opacity: .5;
    }

    body:hover .cursor {
      opacity: 1;
    }

    @media(max-width:900px) {

      .cursor,
      .cursor-follower {
        display: none;
      }

      body {
        cursor: auto;
      }
    }

    /* ===================== SCROLLBAR ===================== */
    ::-webkit-scrollbar {
      width: 4px;
    }

    ::-webkit-scrollbar-track {
      background: var(--blush);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--red);
      border-radius: 2px;
    }

    /* ===================== NAV ===================== */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      padding: 20px 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background .4s, box-shadow .4s, padding .4s;
    }

    nav.scrolled {
      background: rgba(255, 255, 255, 0.85);
      box-shadow: 0 2px 30px rgba(227, 30, 36, 0.08);
      backdrop-filter: blur(14px);
      padding: 14px 5%;
      border-bottom: 1px solid var(--line-soft);
    }

   .nav-logo {
    width: 100px;
}

    .nav-logo span {
      color: var(--red);
    }

   .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 71px;
}

    .nav-links a {
      font-family: var(--font-heading);
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--ink-mute);
      transition: color .3s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--red);
      transition: width .3s;
    }

    .nav-links a:hover {
      color: var(--ink);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      background: var(--red);
      color: var(--white) !important;
      padding: 11px 26px;
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
      font-size: .75rem !important;
      transition: background .3s, transform .3s !important;
      box-shadow: 0 8px 24px rgba(227, 30, 36, .25);
    }

    .nav-cta:hover {
      background: var(--red-dark);
      transform: scale(1.05) !important;
    }

    .nav-cta::after {
      display: none !important;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--ink);
      transition: .3s;
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: var(--white);
      z-index: 1001;
      padding: 80px 40px 40px;
      flex-direction: column;
      gap: 28px;
      display: flex;
      transition: right .4s;
      border-left: 1px solid var(--line-soft);
      box-shadow: -10px 0 40px rgba(0, 0, 0, .06);
    }

    .mobile-menu.open {
      right: 0;
    }

    .mobile-menu a {
      font-family: var(--font-heading);
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--ink);
      padding: 12px 0;
      border-bottom: 1px solid var(--line-soft);
    }

    .menu-close {
      position: absolute;
      top: 24px;
      right: 24px;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--ink-mute);
    }

    /* ===================== HERO ===================== */
   h1 .main-head {
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
    #hero {
      position: relative;
      width: 100%;
      min-height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      background: linear-gradient(180deg, var(--blush) 0%, var(--paper) 55%);
    }

    #three-canvas {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 50px 5% 80px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .hero-left {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-heading);
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--red);
      background: var(--white);
      border: 1px solid var(--red);
      padding: 8px 20px;
      clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
      animation: fadeSlideUp .8s both;
      width: fit-content;
    }

    .hero-tag::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--red);
      border-radius: 50%;
      animation: pulse 1.5s infinite;
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(4.6rem, 40px, 8.4rem);
      line-height: 72px;
      letter-spacing: 2px;
      color: var(--ink);
      animation: fadeSlideUp .8s .15s both;
    }

    .hero-title .line2 {
      color: var(--red);
      display: block;
    }

    .hero-title .line1 {
      display: block;
    }

    .hero-subtitle {
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 400;
      color: var(--ink-mute);
      line-height: 1.8;
      max-width: 480px;
      animation: fadeSlideUp .8s .3s both;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      animation: fadeSlideUp .8s .45s both;
    }

    .btn-primary {
      background: var(--red);
      color: var(--white);
      padding: 14px 34px;
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: .8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
      transition: background .3s, transform .3s, box-shadow .3s;
      box-shadow: 0 12px 30px rgba(227, 30, 36, 0.28);
    }

    .btn-primary:hover {
      background: var(--red-dark);
      transform: translateY(-3px);
      box-shadow: 0 16px 40px rgba(227, 30, 36, 0.38);
    }

    .btn-outline {
      color: var(--ink);
      padding: 12px 28px;
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: .8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      border: 1.5px solid var(--ink);
      transition: border-color .3s, color .3s, background .3s, transform .3s;
    }

    .btn-outline:hover {
      background: var(--ink);
      color: var(--white);
      transform: translateY(-3px);
    }

    .hero-stats {
      display: flex;
      gap: 36px;
      margin-top: 12px;
      animation: fadeSlideUp .8s .6s both;
    }

    .stat-item {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .stat-num {
      font-family: var(--font-display);
      font-size: 2.2rem;
      color: var(--red);
    }

    .stat-label {
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: bold;
      color: var(--ink-mute);
    }

    .hero-right {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: fadeSlideRight .8s .3s both;
    }

    .hero-3d-card {
      position: relative;
      width: 100%;
      max-width: 460px;
      aspect-ratio: 4/5;
      transform-style: preserve-3d;
      animation: float3d 6s ease-in-out infinite;
    }

    .card-face {
      position: absolute;
      inset: 0;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 30px 70px rgba(227, 30, 36, .14);
    }

    .card-face img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(1.05) contrast(1.05);
    }

    .card-badge {
      position: absolute;
      bottom: 24px;
      left: 24px;
      right: 24px;
      background: rgba(227, 30, 36, 0.92);
      padding: 16px 20px;
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
      backdrop-filter: blur(4px);
    }

    .card-badge h3 {
      font-family: var(--font-display);
      font-size: 1.4rem;
      letter-spacing: 2px;
      color: var(--white);
    }

    .card-badge p {
      font-size: .75rem;
      color: rgba(255, 255, 255, .85);
      margin-top: 4px;
    }

    .hero-badge-float {
      position: absolute;
      top: -20px;
      right: -20px;
      background: var(--white);
      border: 2px solid var(--red);
      border-radius: 50%;
      width: 100px;
      height: 100px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      animation: spin-slow 8s linear infinite;
      box-shadow: 0 10px 30px rgba(227, 30, 36, .2);
    }

    .hero-badge-float strong {
      font-family: var(--font-display);
      font-size: 1.8rem;
      color: var(--red);
    }

    .hero-badge-float span {
      font-size: .55rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--ink-mute);
    }

    .scroll-indicator {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      animation: fadeSlideUp 1s 1s both;
    }

    .scroll-line {
      width: 2px;
      height: 50px;
      background: linear-gradient(to bottom, var(--red), transparent);
      animation: scroll-anim 1.5s ease-in-out infinite;
    }

    .scroll-text {
      font-size: .6rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--ink-mute);
    }

    /* ===================== SECTION COMMON ===================== */
    section {
      padding: 120px 5%;
      position: relative;
    }

    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-heading);
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 16px;
    }

    .section-tag::before {
      content: '';
      width: 16px;
      height: 2px;
      background: var(--red);
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 4vw, 4.5rem);
      letter-spacing: 1px;
      line-height: 1.05;
      color: var(--ink);
    }

    .section-title span {
      color: var(--red);
    }

    /* ===================== TICKER ===================== */
    .ticker {
      background: var(--red);
      padding: 14px 0;
      overflow: hidden;
      position: relative;
      z-index: 5;
    }

    .ticker-inner {
      display: flex;
      animation: ticker-run 20s linear infinite;
      white-space: nowrap;
    }

    .ticker-item {
      font-family: var(--font-display);
      font-size: 1rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 0 48px;
      color: var(--white);
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .ticker-item::after {
      content: '�Q���t';
      font-size: .8rem;
    }

    /* ===================== ABOUT ===================== */
    #about {
      background: var(--blush);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      margin-top: 60px;
    }

    .about-visual {
      position: relative;
    }

    .about-img-stack {
      position: relative;
      height: 550px;
    }

    .about-img-main {
      position: absolute;
      top: 0;
      left: 0;
      width: 75%;
      height: 85%;
      object-fit: cover;
      border: 4px solid var(--white);
      box-shadow: 0 20px 60px rgba(227, 30, 36, .15);
      transform-style: preserve-3d;
      animation: img-float 5s ease-in-out infinite;
    }

    .about-img-accent {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 52%;
      height: 55%;
      object-fit: cover;
      border: 4px solid var(--white);
      box-shadow: 0 20px 50px rgba(227, 30, 36, .15);
      animation: img-float 5s ease-in-out 1s infinite;
    }

    .about-exp-badge {
      position: absolute;
      top: 50%;
      left: 55%;
      transform: translate(-50%, -50%);
      background: var(--red);
      padding: 24px 28px;
      clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
      z-index: 3;
      text-align: center;
      box-shadow: 0 20px 50px rgba(227, 30, 36, 0.35);
    }

    .about-exp-badge strong {
      font-family: var(--font-display);
      font-size: 3rem;
      display: block;
      line-height: 1;
      color: var(--white);
    }

    .about-exp-badge span {
      font-size: .65rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .85);
    }

    .about-corner {
      position: absolute;
      width: 80px;
      height: 80px;
      border-top: 3px solid var(--red);
      border-left: 3px solid var(--red);
      top: -12px;
      left: -12px;
    }

    .about-text {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .about-text p {
      color: var(--ink-mute);
      line-height: 1.9;
      font-size: .95rem;
    }

    .about-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 8px;
    }

    .astat {
      background: var(--white);
      border: 1px solid var(--line);
      padding: 24px;
      position: relative;
      overflow: hidden;
      transition: transform .4s, box-shadow .4s;
    }

    .astat:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(227, 30, 36, 0.14);
    }

    .astat-num {
      font-family: var(--font-display);
      font-size: 2.8rem;
      color: var(--red);
      line-height: 1;
    }

    .astat-label {
      font-size: .7rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--ink-mute);
      margin-top: 6px;
    }

    /* ===================== SERVICES ===================== */
    #services {
      background: var(--paper);
    }

    .services-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 60px;
      flex-wrap: wrap;
      gap: 24px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .service-card {
      background: var(--white);
      border: 1px solid var(--line-soft);
      padding: 40px 32px;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      transition: transform .5s, box-shadow .5s, border-color .3s;
      transform-style: preserve-3d;
    }

    .service-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: var(--red);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s;
    }

    .service-card:hover {
      transform: translateY(-12px) rotateX(5deg) rotateY(-3deg);
      box-shadow: 0 30px 60px rgba(227, 30, 36, 0.14);
      border-color: var(--line);
    }

    .service-card:hover::after {
      transform: scaleX(1);
    }

    .service-icon {
      width: 54px;
      height: 54px;
      background: var(--blush-deep);
      border: 1px solid var(--red);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 28px;
      font-size: 1.4rem;
      transition: background .3s, transform .3s;
    }

    .service-card:hover .service-icon {
      background: var(--red);
      transform: rotateY(180deg);
    }

    .service-card h3 {
      font-family: var(--font-heading);
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 14px;
      letter-spacing: .5px;
      color: var(--ink);
    }

    .service-card p {
      color: var(--ink-mute);
      font-size: .88rem;
      line-height: 1.8;
    }

    .service-num {
      position: absolute;
      top: 28px;
      right: 28px;
      font-family: var(--font-display);
      font-size: 3.5rem;
      color: var(--blush-deep);
      line-height: 1;
    }

    /* ===================== SHOWCASE (redesigned) ===================== */
    #showcase {
      background: var(--blush);
      overflow: hidden;
    }

    #showcase::before {
      content: '';
      position: absolute;
      top: -180px;
      right: -180px;
      width: 520px;
      height: 520px;
      background: radial-gradient(circle, rgba(227, 30, 36, 0.10) 0%, rgba(227, 30, 36, 0) 70%);
      pointer-events: none;
      z-index: 0;
    }

    .showcase-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 44px;
      flex-wrap: wrap;
      gap: 24px;
      position: relative;
      z-index: 1;
    }

    .sc-filters {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 48px;
      background: var(--white);
      border-radius: 999px;
      padding: 6px;
      width: fit-content;
      z-index: 1;
      box-shadow: 0 1px 0 var(--line-soft) inset;
    }

    @media(max-width:991px) {
      .sc-filters {
        max-width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-snap-type: x proximity;
      }

      .sc-filters::-webkit-scrollbar {
        display: none;
      }

      .sc-filter-btn {
        scroll-snap-align: start;
      }
    }

    /* .sc-filter-pill {
      position: absolute;
      top: 6px;
      left: 6px;
      height: calc(100% - 12px);
      background: var(--red);
      border-radius: 999px;
      transition: transform .45s cubic-bezier(.65, 0, .35, 1), width .45s cubic-bezier(.65, 0, .35, 1);
      z-index: 0;
      box-shadow: 0 8px 20px rgba(227, 30, 36, .3);
    } */

    .sc-filter-btn {
      position: relative;
      z-index: 1;
      border: none;
      background: transparent;
      font-family: var(--font-heading);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--ink-mute);
      padding: 11px 22px;
      border-radius: 999px;
      cursor: pointer;
      transition: color .35s;
      white-space: nowrap;
    }

    .sc-filter-btn.active {
      color: #e31a1a;
    }

    .showcase-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 22px;
      position: relative;
      z-index: 1;
    }

    .sc-item {
      grid-column: span 3;
    }

    .sc-item[data-size="lg"] {
      grid-column: span 4;
    }

    .sc-item[data-size="sm"] {
      grid-column: span 2;
    }

    .sc-item.sc-hide {
      display: none;
    }

    .sc-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      background: var(--white);
      clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
      box-shadow: 0 1px 0 var(--line);
      opacity: 0;
      transform: translateY(36px);
      transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
    }

    .sc-card.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    .sc-frame {
      position: relative;
      width: 100%;
      aspect-ratio: 4/3;
      min-height: 220px;
      overflow: hidden;
      background: var(--blush-deep);
    }

    .showcase-swipe-hint {
      display: none;
      align-items: center;
      gap: 8px;
      font-family: var(--font-heading);
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--ink-mute);
      margin-bottom: 20px;
    }

    .showcase-swipe-hint svg {
      width: 16px;
      height: 16px;
      stroke: var(--red);
      animation: swipe-nudge 1.6s ease-in-out infinite;
    }

    @keyframes swipe-nudge {

      0%,
      100% {
        transform: translateX(0);
      }

      50% {
        transform: translateX(6px);
      }
    }

    .sc-item[data-size="lg"] .sc-frame {
      aspect-ratio: 16/10;
    }

    .sc-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.08);
      transition: filter .6s ease, transform 1s cubic-bezier(.16, 1, .3, 1);
    }

    @media(hover:hover) {
      .sc-frame img {
        filter: grayscale(85%) sepia(18%) hue-rotate(-30deg) saturate(2.4) brightness(1.02);
      }

      .sc-card:hover .sc-frame img {
        filter: grayscale(0%) sepia(0%) saturate(1);
        transform: scale(1.16);
      }
    }

    .sc-curtain {
      position: absolute;
      inset: 0;
      background: var(--red);
      z-index: 2;
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
      transition: clip-path 1s cubic-bezier(.76, 0, .24, 1);
      transition-delay: .05s;
    }

    .sc-card.in-view .sc-curtain {
      clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    }

    .sc-index {
      position: absolute;
      top: 18px;
      right: 20px;
      z-index: 3;
      font-family: var(--font-display);
      font-size: .85rem;
      letter-spacing: 1px;
      color: rgba(255, 255, 255, .85);
      transition: opacity .4s, transform .4s;
    }

    @media(hover:hover) {
      .sc-index {
        opacity: 0;
        transform: translateY(-8px);
      }

      .sc-card:hover .sc-index {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .sc-chip {
      position: absolute;
      top: 18px;
      left: 18px;
      z-index: 3;
      font-family: var(--font-heading);
      font-size: .62rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--white);
      background: rgba(20, 10, 10, .55);
      backdrop-filter: blur(6px);
      padding: 7px 14px;
      border-radius: 999px;
      transition: opacity .4s .05s, transform .4s .05s;
    }

    @media(hover:hover) {
      .sc-chip {
        transform: translateY(-6px);
        opacity: 0;
      }

      .sc-card:hover .sc-chip {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .sc-caption {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 20px 22px;
      border-top: 1px solid var(--line);
    }

    .sc-caption-text h3 {
      font-family: var(--font-heading);
      font-size: 1.02rem;
      font-weight: 700;
      color: var(--ink);
      letter-spacing: .2px;
    }

    .sc-caption-text p {
      font-size: .72rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--red);
      margin-top: 4px;
      font-weight: 600;
    }

    .sc-go {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1.5px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background .35s, border-color .35s, transform .35s;
    }

    .sc-card:hover .sc-go {
      background: var(--red);
      border-color: var(--red);
      transform: rotate(45deg);
    }

    .sc-go svg {
      width: 16px;
      height: 16px;
      stroke: var(--ink);
      transition: stroke .3s;
    }

    .sc-card:hover .sc-go svg {
      stroke: var(--white);
    }

    .sc-go-line {
      stroke-dasharray: 24;
      stroke-dashoffset: 24;
      transition: stroke-dashoffset .5s ease .05s;
    }

    .sc-card:hover .sc-go-line {
      stroke-dashoffset: 0;
    }

    /* ===================== WORKFLOW ===================== */
    #workflow {
      background: var(--paper);
    }

    .workflow-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      margin-top: 60px;
      position: relative;
    }

    .workflow-steps::before {
      content: '';
      position: absolute;
      top: 40px;
      left: 16.6%;
      right: 16.6%;
      height: 2px;
      background: linear-gradient(90deg, var(--red), rgba(227, 30, 36, .15), var(--red));
      z-index: 0;
    }

    .wf-step {
      background: var(--white);
      border: 1px solid var(--line-soft);
      padding: 40px 32px;
      position: relative;
      z-index: 1;
      transition: transform .5s, border-color .3s, box-shadow .5s;
    }

    .wf-step:hover {
      transform: translateY(-10px) rotateX(8deg);
      border-color: var(--red);
      box-shadow: 0 20px 50px rgba(227, 30, 36, 0.14);
    }

    .wf-num {
      font-family: var(--font-display);
      font-size: 4rem;
      color: var(--red);
      line-height: 1;
      margin-bottom: 20px;
    }

    .wf-step h3 {
      font-family: var(--font-heading);
      font-size: 1.05rem;
      font-weight: 700;
      letter-spacing: .5px;
      margin-bottom: 12px;
      color: var(--ink);
    }

    .wf-step p {
      color: var(--ink-mute);
      font-size: .88rem;
      line-height: 1.8;
    }

    /* ===================== TEAM ===================== */
    #team {
      background: var(--blush);
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 60px;
    }

    .team-card {
      position: relative;
      overflow: hidden;
      transform-style: preserve-3d;
      transition: transform .6s;
      background: var(--white);
      border: 1px solid var(--line-soft);
    }

    .team-card:hover {
      transform: translateY(-12px) rotateX(6deg);
      box-shadow: 0 24px 50px rgba(227, 30, 36, .14);
    }

    .team-img {
      aspect-ratio: 3/4;
      overflow: hidden;
      position: relative;
    }

    .team-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(35%) contrast(1.02);
      transition: filter .5s, transform .6s;
    }

    .team-card:hover .team-img img {
      filter: grayscale(0%);
      transform: scale(1.05);
    }

    .team-info {
      padding: 20px 16px 16px;
      border-top: 3px solid var(--red);
    }

    .team-info h3 {
      font-family: var(--font-heading);
      font-size: .95rem;
      font-weight: 700;
      letter-spacing: .5px;
      color: var(--ink);
    }

    .team-info p {
      font-size: .75rem;
      color: var(--ink-mute);
      margin-top: 4px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .team-socials {
      display: flex;
      gap: 12px;
      margin-top: 12px;
    }

    .team-socials a {
      width: 30px;
      height: 30px;
      border: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .75rem;
      transition: background .3s, color .3s;
      color: var(--ink-mute);
    }

    .team-socials a:hover {
      background: var(--red);
      color: var(--white);
      border-color: var(--red);
    }

    /* ===================== TESTIMONIALS ===================== */
    #testimonials {
      background: var(--paper);
      overflow: hidden;
    }

    .testi-slider {
      margin-top: 60px;
      position: relative;
      overflow: hidden;
    }

    .testi-track {
      display: flex;
      gap: 24px;
      transition: transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .testi-card {
      min-width: calc(33.333% - 16px);
      background: var(--white);
      border: 1px solid var(--line-soft);
      padding: 40px;
      flex-shrink: 0;
      transition: transform .4s, border-color .3s, box-shadow .4s;
      transform-style: preserve-3d;
    }

    .testi-card:hover {
      transform: translateY(-8px) rotateX(4deg);
      border-color: var(--line);
      box-shadow: 0 20px 40px rgba(227, 30, 36, .12);
    }

    .testi-stars {
      display: flex;
      gap: 4px;
      color: var(--red);
      font-size: .9rem;
      margin-bottom: 20px;
    }

    .testi-text {
      color: var(--ink-mute);
      font-size: .92rem;
      line-height: 1.9;
      margin-bottom: 28px;
      font-style: italic;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .testi-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--red), var(--red-dark));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 1.4rem;
      flex-shrink: 0;
      color: var(--white);
    }

    .testi-author-info h4 {
      font-family: var(--font-heading);
      font-size: .9rem;
      font-weight: 700;
      color: var(--ink);
    }

    .testi-author-info p {
      font-size: .75rem;
      color: var(--ink-mute);
      margin-top: 2px;
    }

    .testi-controls {
      display: flex;
      gap: 12px;
      justify-content: center;
      margin-top: 40px;
    }

    .testi-btn {
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      background: var(--white);
      color: var(--ink);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background .3s, border-color .3s, color .3s;
      font-size: 1rem;
    }

    .testi-btn:hover {
      background: var(--red);
      border-color: var(--red);
      color: var(--white);
    }

    /* ===================== CTA ===================== */
    #cta {
      background: var(--red);
      padding: 100px 5%;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    #cta::before {
      content: '';
      position: absolute;
      inset: -50%;
      background: radial-gradient(ellipse at center, rgba(255, 255, 255, .15) 0%, transparent 70%);
      animation: cta-pulse 4s ease-in-out infinite;
    }

    .cta-title {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 6vw, 6.5rem);
      letter-spacing: 2px;
      position: relative;
      z-index: 1;
      line-height: 1;
      color: var(--white);
    }

    .cta-sub {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, .85);
      margin: 20px 0 40px;
      position: relative;
      z-index: 1;
    }

    .cta-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      position: relative;
      z-index: 1;
      flex-wrap: wrap;
    }

    .btn-white {
      background: var(--white);
      color: var(--red);
      padding: 14px 34px;
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: .8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
      transition: transform .3s, box-shadow .3s;
    }

    .btn-white:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, .2);
    }

    .btn-ghost {
      color: var(--white);
      padding: 14px 34px;
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: .8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      border: 2px solid rgba(255, 255, 255, .6);
      transition: border-color .3s, transform .3s;
    }

    .btn-ghost:hover {
      border-color: var(--white);
      transform: translateY(-4px);
    }

    /* ===================== CONTACT ===================== */
    #contact {
      background: var(--blush);
      padding: 120px 5%;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 80px;
      align-items: start;
      margin-top: 60px;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .contact-info h3 {
      font-family: var(--font-display);
      font-size: 2.2rem;
      letter-spacing: 1px;
      line-height: 1.2;
      color: var(--ink);
    }

    .contact-info p {
      color: var(--ink-mute);
      font-size: .95rem;
      line-height: 1.9;
    }

    .contact-items {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .c-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .c-icon {
      width: 44px;
      height: 44px;
      background: var(--blush-deep);
      border: 1px solid var(--red);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1rem;
    }

    .c-text {
      display: flex;
      flex-direction: column;
    }

    .c-text strong {
      font-family: var(--font-heading);
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 4px;
    }

    .c-text span {
      color: var(--ink-mute);
      font-size: .9rem;
    }

    .contact-form {
      background: var(--white);
      border: 1px solid var(--line-soft);
      padding: 48px 40px;
      box-shadow: 0 20px 50px rgba(227, 30, 36, .06);
    }

    .form-title {
      font-family: var(--font-display);
      font-size: 1.8rem;
      letter-spacing: 1px;
      margin-bottom: 32px;
      color: var(--ink);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 20px;
    }

    .form-group label {
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--ink-mute);
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      background: var(--blush);
      border: 1px solid var(--line-soft);
      border-top: 2px solid transparent;
      color: var(--ink);
      padding: 14px 18px;
      font-family: var(--font-body);
      font-size: .9rem;
      outline: none;
      transition: border-color .3s, background .3s;
      resize: none;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: rgba(227, 30, 36, 0.4);
      border-top-color: var(--red);
      background: var(--white);
    }

    .form-group select option {
      background: var(--white);
      color: var(--ink);
    }

    .form-group textarea {
      min-height: 120px;
    }

    .btn-submit {
      width: 100%;
      background: var(--red);
      color: var(--white);
      padding: 16px;
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: .85rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
      transition: background .3s, transform .3s, box-shadow .3s;
      box-shadow: 0 12px 30px rgba(227, 30, 36, .28);
    }

    .btn-submit:hover {
      background: var(--red-dark);
      transform: translateY(-3px);
      box-shadow: 0 16px 40px rgba(227, 30, 36, .38);
    }

    .form-success {
      display: none;
      background: var(--blush-deep);
      border: 1px solid var(--red);
      padding: 20px;
      text-align: center;
      margin-top: 16px;
      color: var(--ink);
    }

    .form-success.visible {
      display: block;
    }

    /* ===================== FOOTER ===================== */
    footer {
      background: var(--white);
      padding: 80px 5% 40px;
      border-top: 1px solid var(--line-soft);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 60px;
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .footer-logo {
      width:100px;
    }

    .footer-logo span {
      color: var(--red);
    }

    .footer-brand p {
      color: var(--ink-mute);
      font-size: .88rem;
      line-height: 1.9;
      max-width: 280px;
    }

    .footer-socials {
      display: flex;
      gap: 12px;
    }

    .footer-social {
      width: 36px;
      height: 36px;
      border: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .85rem;
      transition: background .3s, border-color .3s, color .3s;
      color: var(--ink-mute);
    }

    .footer-social:hover {
      background: var(--red);
      border-color: var(--red);
      color: var(--white);
    }

    .footer-col h4 {
      font-family: var(--font-heading);
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 20px;
    }

    .footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-col ul li a {
      color: var(--ink-mute);
      font-size: .88rem;
      transition: color .3s, padding-left .3s;
    }

    .footer-col ul li a:hover {
      color: var(--ink);
      padding-left: 8px;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 32px;
      border-top: 1px solid var(--line-soft);
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom p {
      font-size: .8rem;
      color: var(--ink-mute);
    }

    /* ===================== ANIMATIONS ===================== */
    @keyframes fadeSlideUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeSlideRight {
      from {
        opacity: 0;
        transform: translateX(60px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes float3d {

      0%,
      100% {
        transform: perspective(800px) rotateX(4deg) rotateY(-6deg) translateY(0px);
      }

      50% {
        transform: perspective(800px) rotateX(-2deg) rotateY(6deg) translateY(-20px);
      }
    }

    @keyframes img-float {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-12px);
      }
    }

    @keyframes ticker-run {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    @keyframes scroll-anim {

      0%,
      100% {
        opacity: 1;
        transform: scaleY(1) translateY(0);
      }

      50% {
        opacity: .3;
        transform: scaleY(0.5) translateY(20px);
      }
    }

    @keyframes pulse {

      0%,
      100% {
        transform: scale(1);
        opacity: 1;
      }

      50% {
        transform: scale(1.6);
        opacity: .5;
      }
    }

    @keyframes spin-slow {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    @keyframes cta-pulse {

      0%,
      100% {
        transform: scale(1);
        opacity: .3;
      }

      50% {
        transform: scale(1.1);
        opacity: .6;
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(50px);
      transition: opacity .8s, transform .8s;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-left {
      opacity: 0;
      transform: translateX(-60px);
      transition: opacity .8s, transform .8s;
    }

    .reveal-left.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .reveal-right {
      opacity: 0;
      transform: translateX(60px);
      transition: opacity .8s, transform .8s;
    }

    .reveal-right.visible {
      opacity: 1;
      transform: translateX(0);
    }

    /* ===================== RESPONSIVE ===================== */
    @media(max-width:1100px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .team-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .testi-card {
        min-width: calc(50% - 12px);
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }
    }

    @media(max-width:900px) {
      .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .hero-right {
        display: none;
      }

      .about-grid {
        grid-template-columns: 1fr;
      }

      .workflow-steps {
        grid-template-columns: 1fr;
      }

      .workflow-steps::before {
        display: none;
      }

      .contact-grid {
        grid-template-columns: 1fr;
      }

      .sc-item,
      .sc-item[data-size="lg"],
      .sc-item[data-size="sm"] {
        grid-column: span 6;
      }
    }

    @media(max-width:700px) {
      nav {
        padding: 14px 5%;
      }

      .nav-links {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .hero-stats {
        gap: 20px;
      }

      .hero-actions {
        flex-direction: column;
        align-items: flex-start;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .team-grid {
        grid-template-columns: 1fr 1fr;
      }

      .testi-card {
        min-width: 90%;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      section {
        padding: 80px 5%;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .contact-form {
        padding: 32px 24px;
      }

      .sc-item,
      .sc-item[data-size="lg"],
      .sc-item[data-size="sm"] {
        grid-column: span 6;
      }

      .about-img-stack {
        height: 380px;
      }

      .services-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .showcase-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .sc-filters {
        margin-bottom: 8px;
      }

      .showcase-grid {
        display: flex;
        grid-template-columns: unset;
        overflow-x: auto;
        gap: 16px;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 5%;
        margin: 0 -5%;
        padding: 4px 5% 20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
      }

      .showcase-grid::-webkit-scrollbar {
        display: none;
      }

      .sc-item,
      .sc-item[data-size="lg"],
      .sc-item[data-size="sm"] {
        grid-column: unset;
        flex: 0 0 84%;
        scroll-snap-align: start;
      }

      .sc-item[data-size="lg"] .sc-frame,
      .sc-frame {
        aspect-ratio: 4/3;
      }

      .showcase-swipe-hint {
        display: flex;
      }
    }

    @media(max-width:420px) {
      .team-grid {
        grid-template-columns: 1fr;
      }

      .hero-title {
        font-size: 3.2rem;
      }
    }

    @media(prefers-reduced-motion:reduce) {

      .sc-card,
      .sc-curtain,
      .sc-frame img,
      .sc-filter-pill,
      .sc-index,
      .sc-chip,
      .reveal,
      .reveal-left,
      .reveal-right {
        transition: none !important;
        animation: none !important;
      }

      .sc-card {
        opacity: 1;
        transform: none;
      }

      .sc-curtain {
        display: none;
      }

      .reveal,
      .reveal-left,
      .reveal-right {
        opacity: 1;
        transform: none;
      }
    }