 /* ================= ABOUT US SECTION (CSS) ================= */
      .about {
        background: white;
        color: #222;
        padding: 9rem 0 7rem;
        position: relative;
        overflow: hidden;
        /* font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; */
      }

      .about-headline {
        text-align: center;
      }

      .about-headline h2 {
        /* layout */
        margin: 0 auto 4rem;
        display: inline-block; /* center the block, left-align inside */
        max-width: min(1100px, 88vw); /* wider box so it wraps into 3 lines */
        text-align: left;
        color: #111 !important;

        /* typography (from framer snippet) */
        font-family: "Poppins", "Poppins Placeholder", sans-serif !important;
        font-size: 40px; /* keep exact framer size */
        font-weight: 400;
        line-height: 1.4;
        letter-spacing: 0;

        color: #eaeaea;

        /* “first line centered, rest start left under ‘We’ ” */
        /* text-indent: clamp(11rem, 7vw, 10rem);
  padding-left: clamp(1rem, 3vw, 2rem); */

        text-align: center;

        /* avoid weird breaks */
        word-break: normal;
        hyphens: none;
      }

      /* Row spacing */
      .about-row {
        margin-top: 1rem;
      }

      /* Eyebrow (WHAT WE DO) */
      .about-eyebrow {
        display: inline-block;
        white-space: nowrap; /* ✅ prevents line break */
        font-size: 0.95rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: #555;

        margin-top: 0.3rem;
        transform: translateX(15rem); /* ✅ shifts it right without breaking */
      }

      /* Boutique description */
      .about-copy {
        font-family: "Poppins", sans-serif;
        margin: 0;
        font-size: 20px;
        line-height: 1.7;
        color: #333;

        max-width: 36ch; /* keep 3-line wrap */
        margin-left: 7rem; /* ⬅️ push whole block to the right */
      }

      /* ===== Rotating wheel + Play ===== */
      .wheel-svg {
        width: 100%;
        height: 100%;
        display: block;
      }
      .wheel-ring {
        fill: none;
        stroke: rgba(0, 0, 0, 0.2);
        stroke-width: 1;
      }
      .wheel-rotate {
        animation: aboutSpin 14s linear infinite;
        transform-origin: 120px 120px;
      }
      .wheel-text {
        font-size: 24px;
        font-weight: 600;
        letter-spacing: 0.15em; /* थोड़ा कम spacing */
        text-transform: uppercase;
        fill: #111;
      }

      .about-wheel {
        position: relative;
        width: clamp(100px, 14vw, 160px);
        height: clamp(100px, 14vw, 160px);

        margin: 1rem 0 0;
        transform: translate(-3rem, -2rem); /* ⬅️ left + up */
      }

      .wheel-play {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%); /* ✅ proper centering */
        z-index: 3; /* ✅ keep above the wheel */
        width: clamp(28px, 4vw, 40px);
        height: clamp(28px, 4vw, 40px);
        border-radius: 999px;
        border: 2px solid #111;
        color: #111; /* currentColor used by triangle */
        background: transparent;
        display: grid;
        place-items: center;
        cursor: pointer;
        transition: background 0.25s ease, color 0.25s ease,
          border-color 0.25s ease;
      }

      .wheel-play:hover {
        background: #111;
        border-color: #111;
        color: #fff; /* triangle becomes white */
      }
      .wheel-play .triangle {
        display: block;
        width: 0;
        height: 0;
        border-left: 12px solid currentColor; /* ✅ draws the ▶ shape */
        border-top: 7px solid transparent;
        border-bottom: 7px solid transparent;
      }
      .wheel-play:hover .triangle {
        color: #fff;
      } /* turns white when hovered */

      @keyframes aboutSpin {
        to {
          transform: rotate(360deg);
        }
      }

      /* ================= Brand Film Reveal Panel ================= */
      .video-reveal {
        --radiusMin: 8%; /* circle size when it starts */
        --radiusMax: 140%; /* circle size when fully revealed */
        --r: var(--radiusMin); /* current circle radius driven by JS */

        /* Closed: no height so it doesn't occupy space above About */
        max-height: 0;
        opacity: 0;
        transform: translateY(-8px);
        overflow: hidden;
        transition: max-height 0.6s ease, opacity 0.35s ease,
          transform 0.35s ease;
        will-change: max-height, opacity, transform;

        background: transparent; /* ✅ removed black background */
        border-top: none;
        margin-top: 0; /* ✅ removed gap that was creating the line */
      }

      /* OPEN: immediately reserve full viewport height to prevent Achievements flash */
      .video-reveal.open {
        max-height: 200vh;
        min-height: 100vh; /* <— important: blocks Achievements from showing */
        opacity: 1;
        transform: none;
      }

      /* === PIN/STICKY WHILE REVEAL HAPPENS === */
      /* .video-reveal.sticky{
  position: sticky;
  top: 0;
  z-index: 5;                
} */
      /* .video-reveal.sticky .video-shell{
  height: 100vh;            
} */

      /* === FULL-BLEED video, no side gaps, no bottom scrollbar === */
      .video-shell {
        padding: 0;
        max-width: none;
        background: linear-gradient(135deg, #000428, #004e92);
        position: relative;

        /* simpler full-bleed setup */
        left: 0;
        width: 100vw;
        margin: 4;
      }

      .video-frame {
        position: relative;
        border-radius: 0;
        overflow: hidden;
        box-shadow: none;
        background: #000;

        width: 100vw;
        height: 100vh;

        /* CIRCULAR CLIP — grows/shrinks with scroll */
        clip-path: circle(var(--r) at 50% 50%);
        transition: clip-path 0.15s linear;
      }

      /* keep video filling the frame */
      .video-frame > video {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
      }

      /* Minimal overlay controls (optional) */
      .vr-control {
        position: absolute;
        z-index: 5;
        top: 0.75rem;
        width: 36px;
        height: 36px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.45);
        background: rgba(0, 0, 0, 0.35);
        backdrop-filter: blur(6px);
        cursor: pointer;
      }
      .vr-play {
        left: 0.75rem;
      }
      .vr-mute {
        left: 3.3rem;
      }
      .vr-control::before {
        content: "";
        position: absolute;
        inset: 0;
        margin: auto;
        width: 0;
        height: 0;
      }
      .vr-play::before {
        border-left: 10px solid #fff;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        left: 13px;
        top: 10px;
      }
      .vr-mute::before {
        width: 14px;
        height: 14px;
        left: 11px;
        top: 11px;
        border-left: 10px solid #fff;
        clip-path: polygon(
          0 35%,
          55% 35%,
          55% 0,
          100% 45%,
          55% 100%,
          55% 65%,
          0 65%
        );
      }

      /* Responsive tweaks */
      @media (max-width: 991.98px) {
        .about-headline h2 {
          margin-bottom: 2.75rem;
        }
        .about-copy {
          max-width: 65ch;
        }
        .about-wheel {
          margin-top: 2rem;
        }
      }

      /* ================= ABOUT US MOBILE FIX ================= */
      @media (max-width: 768px) {
        .about-headline h2 {
          font-size: 8vw; /* scale down text */
          text-indent: 0; /* remove huge indent */
          padding-left: 0;
          text-align: center; /* center align headline */
        }

        .about-eyebrow {
          transform: none; /* remove forced shift */
          display: block;
          text-align: center;
          margin: 1rem 0; /* add spacing */
        }

        .about-copy {
          margin-left: 0; /* reset the big margin */
          max-width: 100%;
          text-align: center;
          font-size: 16px;
        }

        .about-wheel {
          width: clamp(180px, 45vw, 260px); /* bigger than desktop */
          height: clamp(180px, 45vw, 260px);
          margin: 2rem auto 0; /* keep centered */
          transform: none; /* no left shift */
        }

        /* Move eyebrow + copy upward */
        .about-eyebrow {
          margin-top: -1rem !important; /* was 1rem */
        }

        .about-copy {
          margin-top: -0.5rem; /* pull it closer to eyebrow */
        }

        /* allow the reveal container to size naturally */
        .video-reveal.open {
          min-height: auto;
          max-height: none;
          overflow: visible;
        }

        /* ensure the frame itself uses full height */
        .video-frame {
          height: 70vh; /* not full screen, just 70% of viewport height */
          min-height: 60vh;
          max-height: 90vh;
        }

        /* make the actual video fill the frame (no extra gap) */
        .video-frame > video {
          width: 100% !important;
          height: 100% !important;
          display: block;
          object-fit: cover; /* crop nicely to fill area */
        }

        /* keep the full-bleed video-shell behavior intact */
        .video-shell {
          margin-left: -50vw;
          margin-right: -50vw;
          width: calc(100vw - (100vw - 100%));
        }

        /* Disable circular reveal on mobile */
        #brandFilm.mobile-no-clip .video-frame {
          clip-path: none !important;
          -webkit-clip-path: none !important;
          transition: none !important;
        }

        /* If autoplay is blocked, show a hint overlay */
        #brandFilm.needs-user-play .video-frame::after {
          content: "Tap to play";
          position: absolute;
          inset: 0;
          display: grid;
          place-items: center;
          font-weight: 600;
          font-size: 18px;
          color: rgba(255, 255, 255, 0.95);
          background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.35)
          );
          pointer-events: none;
          z-index: 6; /* ensure overlay sits above video controls */
          text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
        }

        /* Make sure sticky behavior is removed on mobile */
        .video-reveal.mobile-no-clip.sticky {
          position: static !important;
          top: auto !important;
        }

        /* Video frame sizing for mobile (consistent values) */
        .video-shell .ratio.ratio-16x9.video-frame {
          padding-top: 0 !important;
          height: 70vh;
          min-height: 60vh;
          max-height: 90vh;
        }
      }

      /* MacBook/Desktop-only CSS fix */
      @supports (-webkit-overflow-scrolling: touch) {
        @media (min-width: 992px) and (min-resolution: 192dpi) {
          .about-headline h2 {
            text-indent: 0 !important;
            padding-left: clamp(1rem, 3vw, 2rem) !important;
          }

          .about-row {
            display: grid !important;
            grid-template-columns: 1fr minmax(420px, 44ch) minmax(120px, 18vw);
            gap: 1.25rem 2rem; /* row-gap column-gap */
          }

          .about-eyebrow {
            transform: none !important;
            justify-self: start;
          }

          .about-copy {
            margin-left: 0 !important;
          }

          .about-wheel {
            transform: none !important;
            margin: 0 auto !important;
            justify-self: center;
            align-self: start;
          }

          .wheel-play {
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%) !important;
          }
        }
      }

      /* ================= END ABOUT US SECTION (CSS) ================= */