    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --pink:        #e30044;
      --pink-hover:  #c20b42;
      --pink-soft:   rgba(210,34,93,0.06);
      --pink-mid:    rgba(210,34,93,0.12);
      --pink-light:  rgba(210,34,93,0.04);
      --white:       #ffffff;
      --off-white:   #faf9f8;
      --warm-gray:   #f5f3f0;
      --dark:        #1a1919;
      --dark-mid:    #2c2b2b;
      --gray-light:  #f7f5f2;
      --gray-mid:    #e8e4df;
      --gray-text:   #7a7674;
      --gray-subtle: #c4bfba;

    }

    html { scroll-behavior: smooth; }

  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--bg-3); }
  ::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 2px; }
    body {
      font-family: 'Open Sans', sans-serif;
      background: var(--white);
      color: var(--dark);
      overflow-x: hidden;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    /* ===================== HEADER ===================== */
    header {
      background: var(--white);
      border-bottom: 1px solid rgba(0,0,0,0.08);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .header-inner {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 2rem;
      height: 104px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
    .logo img { height: 90px; }

    nav.desktop-nav { display: flex; align-items: center; gap: 2px; }

    .nav-link {
      position: relative;
      font-family: 'Poppins', sans-serif;
      font-size: 13.5px;
      font-weight: 500;
      letter-spacing: 0.01em;
      color: var(--dark);
      text-decoration: none;
      padding: 8px 13px;
      border-radius: 6px;
      transition: color 0.2s ease, background 0.2s ease;
      display: flex;
      align-items: center;
      gap: 4px;
      cursor: pointer;
      user-select: none;
      white-space: nowrap;
    }

    .nav-link:hover, .nav-link.active { color: var(--pink); background: var(--pink-soft); }
    .nav-link .ti-chevron-down { font-size: 11px; transition: transform 0.22s ease; margin-top: 1px; }
    .nav-item { position: relative; }
    .nav-item:hover > .nav-link .ti-chevron-down,
    .nav-item:focus-within > .nav-link .ti-chevron-down { transform: rotate(180deg); }

    .dropdown {
      position: absolute;
      top: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%) translateY(-6px);
      background: var(--white);
      border: 1px solid rgba(0,0,0,0.09);
      border-radius: 10px;
      padding: 6px;
      min-width: 190px;
      box-shadow: 0 10px 36px rgba(0,0,0,0.13);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.18s ease, transform 0.18s ease;
    }

    .nav-item:hover .dropdown, .nav-item:focus-within .dropdown {
      opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
    }

    .dropdown a {
      display: block; padding: 9px 14px; font-size: 13px;
      font-family: 'Open Sans', sans-serif; color: var(--dark);
      text-decoration: none; border-radius: 6px; transition: color 0.15s, background 0.15s;
    }
    .dropdown a:hover { color: var(--pink); background: var(--pink-soft); }

    .nav-cta {
      background: var(--pink); color: var(--white) !important;
      padding: 9px 22px !important; border-radius: 6px !important; margin-left: 8px;
      transition: background 0.2s ease, transform 0.15s ease !important;
    }
    .nav-cta:hover { background: var(--pink-hover) !important; color: var(--white) !important; transform: translateY(-1px); }

    .hamburger {
      display: none; flex-direction: column; justify-content: center;
      gap: 5px; cursor: pointer; background: none; border: none; padding: 6px;
    }
    .hamburger span { display: block; width: 23px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.25s ease; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-nav { display: none; background: var(--white); border-top: 1px solid rgba(0,0,0,0.07); padding: 10px 1.5rem 24px; }
    .mobile-nav.open { display: block; }
    .mobile-nav a { display: block; padding: 13px 0; font-size: 15px; font-weight: 500; font-family: 'Poppins', sans-serif; color: var(--dark); text-decoration: none; border-bottom: 1px solid rgba(0,0,0,0.06); transition: color 0.15s; }
    .mobile-nav a:hover { color: var(--pink); }
    .mobile-nav .mob-cta { display: inline-block; margin-top: 18px; background: var(--pink); color: var(--white) !important; padding: 11px 28px; border-radius: 6px; border-bottom: none; font-size: 14px; }
    .mobile-nav .mob-cta:hover { background: var(--pink-hover) !important; }

    /* ===================== ENQUIRY MODAL ===================== */
#enquiryOverlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1rem;
}
#enquiryOverlay.active { opacity: 1; visibility: visible; }

.enquiry-form-box {
  width: 100%; max-width: 480px; padding: 40px;
  background: #fff; border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  text-align: center; position: relative; margin: auto;
}
.enquiry-form-box h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.2rem,4vw,1.6rem);
  color: var(--dark); margin-bottom: 10px;
}
.form-subtitle { font-size: 14px; color: #777; margin-bottom: 25px; }

#enquiryForm input, #enquiryForm textarea {
  width: 100%; padding: 12px 14px; margin-bottom: 12px;
  border: 1px solid #ddd; border-radius: 6px;
  font-family: 'Open Sans', sans-serif; font-size: 14px; color: var(--dark);
  outline: none; transition: border-color 0.2s ease, box-shadow 0.2s ease; display: block;
}
#enquiryForm input:focus, #enquiryForm textarea:focus {
  border-color: var(--pink); box-shadow: 0 0 0 3px rgba(227,0,68,0.08);
}
#enquiryForm input.field-error, #enquiryForm textarea.field-error {
  border-color: #e53e3e; box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
}
#enquiryForm textarea { min-height: 90px; resize: vertical; }

.field-error-msg {
  display: block; font-size: 12px; color: #e53e3e;
  text-align: left; margin-top: -8px; margin-bottom: 10px;
  padding-left: 2px; opacity: 0; transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.field-error-msg.show { opacity: 1; transform: translateY(0); }

#submitEnquiryBtn {
  width: 100%; padding: 13px; border: none;
  background: var(--pink); color: #fff; border-radius: 6px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15px;
  cursor: pointer; transition: background 0.2s ease, transform 0.15s ease;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  position: relative; overflow: hidden;
}
#submitEnquiryBtn:hover:not(:disabled) { background: var(--pink-hover); transform: translateY(-1px); }
#submitEnquiryBtn:disabled { opacity: 0.75; cursor: not-allowed; transform: none; }
#submitEnquiryBtn.loading::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  animation: btnShimmer 1.2s ease-in-out infinite;
}
@keyframes btnShimmer { from { transform: translateX(-100%); } to { transform: translateX(100%); } }

.btn-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.35); border-top-color: #fff;
  border-radius: 50%; animation: spin 0.7s linear infinite; flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

#formErrorBanner {
  display: none; background: #fff5f5; border: 1px solid #fed7d7;
  border-radius: 6px; padding: 10px 14px; font-size: 13px; color: #c53030;
  text-align: left; margin-bottom: 14px; line-height: 1.5;
}
#formErrorBanner.show { display: flex; align-items: flex-start; gap: 8px; }

#formSuccessState {
  display: none; flex-direction: column; align-items: center;
  justify-content: center; padding: 10px 0 20px;
  animation: successFadeIn 0.5s ease forwards;
}
#formSuccessState.show { display: flex; }
@keyframes successFadeIn {
  from { opacity: 0; transform: scale(0.94) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.success-icon-wrap {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, #e30044, #ff3068);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; box-shadow: 0 8px 28px rgba(227,0,68,0.3);
  animation: successPop 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.15s both;
}
@keyframes successPop { from { transform: scale(0); } to { transform: scale(1); } }
.success-icon-wrap i { font-size: 32px; color: #fff; }
.success-title { font-family: 'Poppins', sans-serif; font-size: 1.35rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.success-msg { font-size: 14px; color: var(--gray-text); line-height: 1.65; max-width: 320px; text-align: center; margin-bottom: 24px; }
.success-close-btn {
  background: var(--pink); color: #fff; border: none; border-radius: 6px;
  padding: 11px 32px; font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.success-close-btn:hover { background: var(--pink-hover); transform: translateY(-1px); }
.close-form {
  position: absolute; top: 14px; right: 16px; background: none; border: none;
  font-size: 28px; line-height: 1; cursor: pointer; color: #888;
  padding: 4px 8px; border-radius: 4px; transition: color 0.15s, background 0.15s;
}
.close-form:hover { color: var(--pink); background: var(--pink-soft); }
.confetti-dot {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  animation: confettiFall 0.9s ease forwards; pointer-events: none;
}
@keyframes confettiFall {
  from { opacity: 1; transform: translateY(0) rotate(0deg); }
  to   { opacity: 0; transform: translateY(60px) rotate(360deg); }
}
    /* ══ SIDE ENQUIRE ══ */
    .side-enquire {
      position: fixed; right: -2px; top: 50%;
      transform: translateY(-50%) rotate(180deg);
      writing-mode: vertical-rl;
      background: var(--pink); color: #fff;
      font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
      padding: 18px 13px; border-radius: 8px 0 0 8px;
      cursor: pointer; border: none; display: flex; align-items: center; gap: 10px;
      box-shadow: -3px 0 18px rgba(199,8,65,0.28);
      transition: padding 0.25s ease, background 0.2s ease, box-shadow 0.2s ease;
      z-index: 998; animation: side-bob 3s ease-in-out infinite;
    }
    .side-enquire:hover { background: var(--pink-hover); padding: 18px 17px; box-shadow: -5px 0 26px rgba(199,8,65,0.45); animation: none; }
    .side-enquire .dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.5); flex-shrink: 0; }

    .pulse-ring-side {
      position: fixed; right: 0; top: 50%; transform: translateY(-50%);
      width: 46px; height: 86px; border-radius: 8px 0 0 8px;
      border: 2px solid rgba(199,8,65,0.4);
      animation: pulse-side 2.2s ease-out infinite;
      pointer-events: none; z-index: 997;
    }

    @keyframes side-bob {
      0%, 100% { transform: translateY(-50%) rotate(180deg) translateX(0); }
      50%       { transform: translateY(-50%) rotate(180deg) translateX(-5px); }
    }
    @keyframes pulse-side {
      0%   { opacity: 0.7; transform: translateY(-50%) scale(1); }
      100% { opacity: 0;   transform: translateY(-50%) scale(1.3); }
    }

    /* ===================== HERO ===================== */
    .hero {
      position: relative; background: #ffffff;
      min-height: 100svh; display: flex; align-items: center; justify-content: center;
      overflow: hidden; padding: 0;
    }

    .hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

    .hero-grid {
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(0,0,0,0.055) 1px, transparent 1px);
      background-size: 36px 36px; opacity: 0.7;
    }

    .hero-orb { position: absolute; border-radius: 50%; filter: blur(72px); will-change: transform; }
    .hero-orb-1 { width: 480px; height: 480px; background: radial-gradient(circle, rgba(199,8,65,0.09) 0%, transparent 70%); top: -140px; right: -60px; animation: orbDrift1 18s ease-in-out infinite; }
    .hero-orb-2 { width: 360px; height: 360px; background: radial-gradient(circle, rgba(199,8,65,0.07) 0%, transparent 70%); bottom: -100px; left: -40px; animation: orbDrift2 22s ease-in-out infinite; }
    .hero-orb-3 { width: 240px; height: 240px; background: radial-gradient(circle, rgba(199,8,65,0.05) 0%, transparent 70%); top: 40%; left: 48%; transform: translate(-50%, -50%); animation: orbDrift3 14s ease-in-out infinite; }

    @keyframes orbDrift1 { 0%, 100% { transform: translate(0px, 0px) scale(1); } 33% { transform: translate(-30px, 20px) scale(1.04); } 66% { transform: translate(18px, -25px) scale(0.97); } }
    @keyframes orbDrift2 { 0%, 100% { transform: translate(0px, 0px); } 50% { transform: translate(24px, -18px); } }
    @keyframes orbDrift3 { 0%, 100% { transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-50%, -50%) scale(1.15); } }

    .hero-arc-svg {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
      width: min(820px, 90vw); height: min(820px, 90vw);
      opacity: 0;
      animation: arcReveal 2.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.6s, arcRotate 90s linear 2.8s infinite;
      pointer-events: none;
    }
    @keyframes arcReveal { from { opacity: 0; } to { opacity: 1; } }
    @keyframes arcRotate { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }

    .hero-inner {
      position: relative; z-index: 2; display: flex; flex-direction: column;
      align-items: center; text-align: center; max-width: 860px; padding: 10rem 2.5rem 8rem; width: 100%;
    }

    .hero-eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 2.6rem; opacity: 0; animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.3s; }
    .eyebrow-text { font-family: 'Poppins', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--pink); }
    .eyebrow-line { display: block; width: 40px; height: 1px; background: linear-gradient(90deg, transparent, var(--pink), transparent); }

    .hero-title { font-family: 'Poppins', sans-serif; font-size: clamp(2.8rem, 6.5vw, 5.2rem); font-weight: 700; line-height: 1.08; color: var(--dark); letter-spacing: -0.025em; margin-bottom: 0; display: flex; flex-direction: column; gap: 0.08em; }
    .title-line { display: block; opacity: 0; }
    .title-line-1 { animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s; }
    .title-line-2 { animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.65s; color: #2c2b2b; }
    .hero-title em { font-style: normal; color: var(--pink); position: relative; display: inline-block; }
    .hero-title em::after { content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--pink) 0%, rgba(199,8,65,0.2) 100%); border-radius: 1px; opacity: 0; animation: underlineSlide 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 1.1s; transform-origin: left; transform: scaleX(0); }
    @keyframes underlineSlide { from { opacity: 1; transform: scaleX(0); } to { opacity: 1; transform: scaleX(1); } }

    .hero-rule { display: flex; align-items: center; justify-content: center; width: 100%; margin: 2.8rem 0; opacity: 0; animation: fadeIn 0.8s ease forwards 0.9s; position: relative; }
    .hero-rule::before, .hero-rule::after { content: ''; display: block; height: 1px; width: 80px; background: linear-gradient(90deg, transparent, rgba(0,0,0,0.13)); }
    .hero-rule::after { background: linear-gradient(90deg, rgba(0,0,0,0.13), transparent); }
    .rule-dot { display: block; width: 5px; height: 5px; border-radius: 50%; background: var(--pink); margin: 0 18px; opacity: 0.6; }

    .hero-subtitle { font-family: 'Open Sans', sans-serif; font-size: clamp(14px, 1.8vw, 17px); line-height: 1.9; color: #6b6866; max-width: 520px; letter-spacing: 0.01em; opacity: 0; animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 1s; }

    .hero-scroll-cue { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: 4.5rem; opacity: 0; animation: fadeIn 1s ease forwards 1.4s; }
    .scroll-line { display: block; width: 1px; height: 48px; background: linear-gradient(to bottom, var(--pink), transparent); animation: scrollPulse 2.4s ease-in-out infinite; }
    .scroll-label { font-family: 'Poppins', sans-serif; font-size: 9px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(26,25,25,0.35); }
    @keyframes scrollPulse { 0%, 100% { opacity: 0.5; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.12); } }

    @keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

    @media (max-width: 900px) {
      .hero { min-height: 90svh; }
      .hero-inner { padding: 8rem 2rem 6rem; }
      .hero-arc-svg { width: min(600px, 95vw); height: min(600px, 95vw); }
      .hero-orb-1 { width: 320px; height: 320px; }
      .hero-orb-2 { width: 240px; height: 240px; }
    }
    @media (max-width: 560px) {
      .hero { min-height: 85svh; }
      .hero-inner { padding: 7rem 1.5rem 5rem; }
      .hero-title { letter-spacing: -0.02em; }
      .eyebrow-line { width: 24px; }
      .hero-rule::before, .hero-rule::after { width: 48px; }
      .hero-scroll-cue { margin-top: 3.5rem; }
      .hero-arc-svg { width: 95vw; height: 95vw; opacity: 0.6 !important; }
    }

    /* ===================== ABOUT ===================== */
    .intro-strip { background: var(--pink); padding: 2rem 2rem; }
    .intro-strip-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 2rem; }
    .intro-strip-quote { font-family: 'Poppins', sans-serif; font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 600; color: var(--white); line-height: 1.5; flex: 1; }
    .intro-strip-tag { font-size: 12px; color: rgba(255,255,255,0.75); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; font-family: 'Open Sans', sans-serif; }

    .about-body { max-width: 1200px; margin: 0 auto; padding: 5rem 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

    .section-label { display: inline-flex; align-items: center; gap: 8px; font-family: 'Poppins', sans-serif; font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink); margin-bottom: 1.2rem; }
    .section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--pink); }

    .section-title { font-family: 'Poppins', sans-serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--dark); line-height: 1.25; margin-bottom: 1.4rem; }
    .section-title span { color: var(--pink); }

    .about-para { font-size: 14.5px; line-height: 1.85; color: var(--gray-text); margin-bottom: 1.2rem; }

    .vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2.5rem; }
    .vm-card { background: var(--gray-light); border-radius: 14px; padding: 1.5rem 1.4rem; border-left: 4px solid var(--pink); transition: transform 0.25s ease, box-shadow 0.25s ease; }
    .vm-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(199,8,65,0.12); }
    .vm-card-icon { font-size: 22px; color: var(--pink); margin-bottom: 10px; }
    .vm-card-label { font-family: 'Poppins', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink); margin-bottom: 6px; }
    .vm-card-text { font-size: 13px; line-height: 1.7; color: var(--dark); }

    /* =====================================================================
       IMAGE TILES — Premium Cinematic System
       ===================================================================== */
    .tiles-wrap { position: relative; height: 520px; z-index: 2; }

    .img-tile {
      position: absolute;
      overflow: hidden;
      border-radius: 24px;
      cursor: pointer;
      isolation: isolate;
      border: 1px solid rgba(255,255,255,0.55);
      transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.65s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
      will-change: transform, box-shadow, opacity;
    }

    .img-tile-1 { z-index: 3; }
    .img-tile-2 { z-index: 2; }
    .img-tile-3 { z-index: 1; }

    .img-tile-1 {
      width: 260px; height: 360px; top: 20px; left: 10px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.10), 0 0 0 1px rgba(255,255,255,0.06) inset;
      opacity: 0;
      animation: tileIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.5s, floatA 7s ease-in-out 1.5s infinite;
    }
    .img-tile-2 {
      width: 230px; height: 310px; top: 100px; left: 195px;
      box-shadow: 0 16px 48px rgba(0,0,0,0.15), 0 3px 12px rgba(0,0,0,0.08), 0 0 0 1px rgba(255,255,255,0.06) inset;
      opacity: 0;
      animation: tileIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.75s, floatB 8.5s ease-in-out 1.7s infinite;
    }
    .img-tile-3 {
      width: 215px; height: 280px; top: 180px; left: 360px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.07), 0 0 0 1px rgba(255,255,255,0.06) inset;
      opacity: 0;
      animation: tileIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards 1.0s, floatC 9s ease-in-out 1.9s infinite;
    }

    .tiles-wrap:has(.img-tile:hover) .img-tile { opacity: 0.5; transform: scale(0.96); }
    .img-tile:hover {
      opacity: 1 !important;
      transform: translateY(-16px) scale(1.05) !important;
      box-shadow: 0 40px 90px rgba(199,8,65,0.20), 0 16px 40px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.10) inset !important;
      z-index: 10 !important;
      animation-play-state: paused !important;
    }

    /* ── Image background fill ── */
    .img-tile-bg {
      position: absolute; inset: 0;
      width: 300px; height: 300px;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      transform-origin: center center;
      transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      will-change: transform;
    }
    .img-tile:hover .img-tile-bg { transform: scale(1.09); }

    /*
     * ── TILE BACKGROUND IMAGES ──
     * Replace the URLs below with your actual image paths.
     * Tile 1 = Branding, Tile 2 = Digital Marketing, Tile 3 = Growth Marketing
     */
    .img-tile-1 .img-tile-bg {
      background-image: url('/assets/images/Work/Mockups/RSB/RSB\ RSB\ 1.webp');
      background-color: #1a1010;
    }
    .img-tile-2 .img-tile-bg {
      background-image: url('/assets/images/Work/Creatives/Swagram/Swagram\ c1.webp');
      background-color: #0d0d1a;
    }
    .img-tile-3 .img-tile-bg {
      background-image: url('/assets/images/who-we-are/growth.webp');
      background-color: #0d1a10;
      width: 250px;
    }

    /* ── Cinematic overlay ── */
    .img-tile-overlay {
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.22) 40%, rgba(0,0,0,0.70) 78%, rgba(0,0,0,0.88) 100%);
      pointer-events: none;
    }
    .img-tile-overlay::after {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.28) 100%);
      pointer-events: none;
    }

    /* ── Pink top accent line ── */
    .img-tile::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 2.5px;
      background: linear-gradient(90deg, var(--pink) 0%, rgba(199,8,65,0.25) 100%);
      z-index: 4; transform-origin: left; transform: scaleX(0.6); opacity: 0.8;
      transition: transform 0.5s ease, opacity 0.5s ease;
    }
    .img-tile:hover::before { transform: scaleX(1); opacity: 1; }

    /* ── Caption area ── */
    .img-tile-content {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 1.6rem 1.4rem 1.5rem; z-index: 2;
      transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .img-tile:hover .img-tile-content { transform: translateY(-4px); }

    .img-tile-title { font-family: 'Poppins', sans-serif; font-size: 15.5px; font-weight: 700; color: #ffffff; line-height: 1.2; margin-bottom: 5px; letter-spacing: -0.01em; text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
    .img-tile-sub { font-family: 'Open Sans', sans-serif; font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.62); line-height: 1.5; letter-spacing: 0.02em; }

    /*
     * ══════════════════════════════════════════════════
     *  IMG-TILE-BADGE — glassmorphism corner badge
     *  Supports both <img> icon files and <i> Tabler icons
     * ══════════════════════════════════════════════════
     */
    .img-tile-badge {
      overflow: hidden;
      position: absolute;
      top: 16px;
      right: 16px;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(255,255,255,0.13);
      backdrop-filter: blur(10px) saturate(1.4);
      -webkit-backdrop-filter: blur(10px) saturate(1.4);
      border: 1px solid rgba(255,255,255,0.22);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: rgba(255,255,255,0.90);
      z-index: 5;
      transition:
        background   0.4s ease,
        transform    0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        border-color 0.4s ease,
        box-shadow   0.4s ease;
      box-shadow: 0 4px 16px rgba(0,0,0,0.20);
    }

    /* Tabler icon inside badge */
    .img-tile-badge i {
      font-size: 18px;
      line-height: 1;
      display: block;
      flex-shrink: 0;
      pointer-events: none;
    }

    /*
     * <img> inside badge
     * ─────────────────────────────────────────────────
     * Size: 22×22 px inside the 44×44 badge shell
     * If your icons are dark on transparent background,
     * add:  filter: brightness(0) invert(1);
     * to make them white on the dark tile background.
     */
    .img-tile-badge img {
      width: 42px;
      height: 42px;
      object-fit: contain;
      display: block;
      flex-shrink: 0;
      pointer-events: none;
    }

    .img-tile:hover .img-tile-badge {
      background:white;
      border-color: rgba(199,8,65,0.55);
      transform: scale(1.14) rotate(6deg);
      box-shadow: 0 6px 22px rgba(199,8,65,0.40);
    }

    /* ── Float & entrance keyframes ── */
    @keyframes floatA { 0%, 100% { transform: translateY(0px)   rotate(-1deg);   } 50% { transform: translateY(-11px) rotate(-1deg);   } }
    @keyframes floatB { 0%, 100% { transform: translateY(-4px)  rotate(1.5deg);  } 50% { transform: translateY(9px)   rotate(1.5deg);  } }
    @keyframes floatC { 0%, 100% { transform: translateY(5px)   rotate(-0.5deg); } 50% { transform: translateY(-9px)  rotate(-0.5deg); } }
    @keyframes tileIn { from { opacity: 0; transform: translateY(32px) scale(0.92); } to { opacity: 1; transform: translateY(0) scale(1); } }

    /* ===================== STATS ===================== */
    .stats-band { background: var(--pink); padding: 3rem 2rem; }
    .stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
    .stat-num { font-family: 'Poppins', sans-serif; font-size: 2.6rem; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 6px; }
    .stat-label { font-family: 'Open Sans', sans-serif; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.1em; }

    /* ===================== PHILOSOPHY ===================== */
    .philosophy { background: var(--gray-light); padding: 5rem 2rem; }
    .philosophy-inner { max-width: 1200px; margin: 0 auto; }
    .philosophy-header { text-align: center; margin-bottom: 3.5rem; }
    .three-c { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .c-card { background: var(--white); border-radius: 16px; padding: 2.5rem 2rem; text-align: center; position: relative; overflow: hidden; cursor: default; transition: transform 0.3s ease, box-shadow 0.3s ease; }
    .c-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--pink); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; }
    .c-card:hover::before { transform: scaleX(1); }
    .c-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.09); }
    .c-card-num { font-family: 'Poppins', sans-serif; font-size: 3.5rem; font-weight: 700; color: var(--gray-mid); line-height: 1; margin-bottom: 0.5rem; transition: color 0.3s; }
    .c-card:hover .c-card-num { color: var(--pink-mid); }
    .c-card-title { font-family: 'Poppins', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--dark); margin-bottom: 0.8rem; }
    .c-card-title span { color: var(--pink); }
    .c-card-text { font-family: 'Open Sans', sans-serif; font-size: 13.5px; line-height: 1.75; color: var(--gray-text); }

    /* ===================== VALUES ===================== */
    .values-section { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; }
    .values-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; gap: 2rem; flex-wrap: wrap; }
    .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
    .value-item { display: flex; align-items: flex-start; gap: 14px; padding: 1.5rem; border-radius: 12px; border: 1px solid var(--gray-mid); transition: border-color 0.25s, background 0.25s, transform 0.25s; cursor: default; }
    .value-item:hover { border-color: var(--pink); background: var(--pink-soft); transform: translateY(-2px); }
    .value-icon img { width: 38px; height: 38px; background: var(--pink-soft); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--pink); flex-shrink: 0; transition: background 0.25s; }
    .value-item:hover .value-icon { color: var(--white); }
    .value-name { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
    .value-desc { font-family: 'Open Sans', sans-serif; font-size: 12.5px; color: var(--gray-text); line-height: 1.6; }

    /* ===================== TEAM ===================== */
    .team-section { background: var(--dark); padding: 5rem 2rem; }
    .team-inner { max-width: 1200px; margin: 0 auto; }
    .team-header { text-align: center; margin-bottom: 1rem; }
    .team-header .section-label { justify-content: center; }
    .team-header .section-title { color: var(--white); }
    .team-intro { font-family: 'Open Sans', sans-serif; text-align: center; font-size: 14.5px; line-height: 1.8; color: rgba(255,255,255,0.55); max-width: 620px; margin: 0 auto 3.5rem; }

    .founder-card { display: grid; grid-template-columns: 320px 1fr; gap: 3.5rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 20px; overflow: hidden; align-items: center; }
    .founder-img-wrap { position: relative; background: rgba(199,8,65,0.08); display: flex; align-items: center; justify-content: center; min-height: 360px; padding: 2.5rem; }
    .founder-img-wrap::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--pink); }
    .founder-img { width: 210px; height: 210px; border-radius: 50%; object-fit: cover; border: 4px solid rgba(199,8,65,0.4); display: block; }
    .founder-avatar-placeholder { width: 210px; height: 210px; border-radius: 50%; background: rgba(199,8,65,0.2); border: 4px solid rgba(199,8,65,0.4); display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-size: 4rem; font-weight: 700; color: var(--pink); }
    .founder-info { padding: 2.5rem 2.5rem 2.5rem 0; }
    .founder-name { font-family: 'Poppins', sans-serif; font-size: 1.9rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
    .founder-role { font-family: 'Open Sans', sans-serif; font-size: 13px; font-weight: 600; color: var(--pink); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.5rem; }
    .founder-bio { font-family: 'Open Sans', sans-serif; font-size: 14.5px; line-height: 1.85; color: rgba(255,255,255,0.6); margin-bottom: 2rem; }
    .founder-tags { display: flex; flex-wrap: wrap; gap: 8px; }
    .tag { background: var(--pink); color: var(--white); border: 1px solid rgba(199,8,65,0.25); font-family: 'Poppins', sans-serif; font-size: 11.5px; font-weight: 600; padding: 5px 14px; border-radius: 20px; }

    /* ===================== SCROLL REVEAL ===================== */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ===================== FOOTER ===================== */
    footer { background: #000000; color: var(--white); }
    .footer-top { max-width: 1240px; margin: 0 auto; padding: 3.5rem 2rem 2.5rem; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 3rem; }
    .footer-brand { display: block; margin-bottom: 18px; }
    .foot-logo img { height: 120px; width: 190px; object-fit: contain; }
    .footer-tagline { font-family: 'Open Sans', sans-serif; font-size: 13.5px; line-height: 1.75; color: rgba(255,255,255,0.55); max-width: 230px; margin-bottom: 22px; }
    .footer-socials { display: flex; gap: 10px; margin-top: 16px; }
    .social-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); text-decoration: none; font-size: 16px; transition: background 0.2s, color 0.2s; }
    .social-btn:hover { background: var(--pink); color: var(--white); }
    .footer-col-title { font-family: 'Poppins', sans-serif; font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink); font-weight: 600; margin-bottom: 20px; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
    .footer-links a { font-family: 'Open Sans', sans-serif; font-size: 13.5px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.15s; }
    .footer-links a:hover { color: var(--white); }
    .contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
    .contact-icon-wrap { width: 36px; height: 36px; border-radius: 50%; background: rgba(199,8,65,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--pink); font-size: 16px; }
    .contact-icon-wrap img { width: 20px; height: 20px; }
    .contact-label { font-family: 'Open Sans', sans-serif; font-size: 10.5px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
    .contact-value { font-family: 'Open Sans', sans-serif; font-size: 14px; font-weight: 600; color: var(--white); }
    .contact-value a { color: var(--white); text-decoration: none; transition: color 0.15s; }
    .contact-value a:hover { color: var(--pink); }
    .footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); max-width: 1240px; margin: 0 auto; }
    .footer-bottom { max-width: 1240px; margin: 0 auto; padding: 1.25rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
    .footer-copy { font-family: 'Open Sans', sans-serif; font-size: 12.5px; color: rgba(255,255,255,0.38); }
    .footer-copy span { color: var(--pink); }
    .footer-legal { display: flex; gap: 22px; }
    .footer-legal a { font-family: 'Open Sans', sans-serif; font-size: 12px; color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.15s; }
    .footer-legal a:hover { color: rgba(255,255,255,0.75); }

    /* ===================== RESPONSIVE ===================== */
    @media (max-width: 900px) {
      nav.desktop-nav { display: none; }
      .hamburger { display: flex; }
      .about-body { grid-template-columns: 1fr; }
      .about-visual { display: none; }
      .vm-grid { grid-template-columns: 1fr; }
      .three-c { grid-template-columns: 1fr; gap: 1rem; }
      .values-grid { grid-template-columns: 1fr 1fr; }
      .founder-card { grid-template-columns: 1fr; }
      .founder-img-wrap { min-height: 260px; }
      .founder-info { padding: 0 1.5rem 2rem; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    }
    @media (max-width: 560px) {
      .values-grid { grid-template-columns: 1fr; }
      .intro-strip-inner { flex-direction: column; gap: 0.8rem; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .footer-top { grid-template-columns: 1fr; gap: 2rem; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }
