﻿  :root {
    --ink: #08090B;
    --ink-2: #121418;
    --ink-3: #191C22;
    --sand: #EFE6D3;
    --sand-2: #D9CDAE;
    --sand-bg: #F3ECDD;
    --gold: #C9A227;
    --gold-bright: #E8C34A;
    --bronze: #A9793E;
    --bronze-bright: #C89753;
    --muted: #7A7568;
    --muted-lt: rgba(246, 241, 231, 0.55);
    --mono: 'Space Mono', monospace;
    --amber: #C97B2E;
    --muted: #8B90A0;
    --muted-2: #5A5F49;
    --line: rgba(239, 230, 211, 0.10);
    --line-dark: rgba(11, 13, 16, 0.14);
    --radius: 14px;
    --display: 'Clash Display', 'Fraunces', serif;
    --body: 'General Sans', 'Inter', sans-serif;
    --ease: cubic-bezier(.16, .8, .24, 1);
  }


  /* Chrome, Edge, Safari */
  .my-scrollbar::-webkit-scrollbar {
    height: 7px;
  }

  .my-scrollbar::-webkit-scrollbar-track {
    background: #151515;
    border-radius: 20px;
  }

  .my-scrollbar::-webkit-scrollbar-thumb {
    background: #d6a91f;
    border-radius: 20px;
  }

  .my-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #f0c43c;
  }

  /* Firefox */
  .my-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: #d6a91f #151515;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    background: var(--ink);
    color: var(--sand);
    font-family: var(--body);
    line-height: 1.5;
    overflow-x: hidden;
  }

  img,
  svg {
    display: block;
    max-width: 100%;
  }

  a {
    text-decoration: none;
  }

  ul {
    list-style: none;
  }

  button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
  }

  /* film grain overlay, whole page */
  .grain {
    position: fixed;
    inset: 0;
    z-index: 300;
    pointer-events: none;
    opacity: 0.05;
    mix-blend-mode: overlay;
  }

  .wrap {
    max-width: 1200px;
    margin: 0 auto;
  }

  @media (max-width:640px) {
    .wrap {
      padding: 0 20px;
    }
  }

  .eyebrow {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
  }

  .eyebrow::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--amber);
    box-shadow: 0 0 0 3px rgba(201, 123, 46, 0.18);
  }

  h1,
  h2,
  h3 {
    font-family: var(--display);
    font-weight: 600;
    letter-spacing: -0.01em;
  }

  /* ---------- Playhead progress bar ---------- */
  .playhead {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: var(--line);
    z-index: 200;
  }

  .playhead-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--amber), var(--gold-bright));
  }

  /* ---------- NAV ---------- */
  header {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 150;
    background: rgba(8, 9, 11, 0.6);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transition: background .3s;
  }

  nav.wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
  }

  nav.wrap-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
  }

  .logo {
    font-family: var(--display);
    font-size: 23px;
    font-weight: 600;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .logo-mark {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--amber);
    box-shadow: 0 0 10px rgba(201, 123, 46, 0.7);
    animation: pulse 2.4s ease-in-out infinite;
  }

  @keyframes pulse {

    0%,
    100% {
      opacity: 1;
      transform: scale(1);
    }

    50% {
      opacity: 0.45;
      transform: scale(0.8);
    }
  }

  .nav-links {
    display: flex;
    gap: 34px;
    align-items: center;
  }

  .nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    transition: color .2s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: var(--gold-bright);
    transition: width .3s var(--ease);
  }

  .nav-links a:hover {
    color: var(--sand);
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 22px;
  }


  .hamburger {
    display: none;
    background: none;
    border: 0;
    width: 22px;
    height: 42px;
    padding: 0;
  }

  .hamburger span {
    display: block;
    width: 20px;
    height: 1px;
    background: #fff;
    margin: 5px auto;
    border-radius: 10px;
    transition: .3s;
  }

  .mobile-call {

    display: none;

    width: 42px;

    height: 42px;


    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #D4AF37;

  }

  .mobile-contact {

    display: none;

    align-items: center;

    justify-content: space-between;

  }

  .contact-box {

    display: flex;

    align-items: center;

    gap: 8px;

    color: #fff;

    font-size: 13px;

  }

  .contact-box img {

    width: 24px;

    height: 24px;

  }

  .call-box {
    text-align: right;
  }

  .call-box-3 {
    text-align: right;
    color: #000;
    background: linear-gradient(120deg, var(--gold-bright), var(--amber));
  }

  .call-box span {
    color: #D4AF37;
    font-size: 10px;
  }

  .call-box a {

    color: #fff;

    font-size: 13px;

    font-weight: 600;

  }

  @media(max-width:991px) {

    .nav-right {

      display: none;

    }

    .hamburger {

      display: block;

    }

    .mobile-call {

      display: flex;

    }

    .mobile-contact {

      display: flex;

    }



  }







  /* ================================
   MOBILE DRAWER
================================ */

  .mobile-drawer {

    position: fixed;

    top: 0;

    left: -100%;

    width: 88%;

    max-width: 360px;

    height: 100vh;

    background: #0B0B0D;

    z-index: 9999;

    transition: .45s cubic-bezier(.22, .61, .36, 1);

    display: flex;

    flex-direction: column;

    padding: 22px;

    border-right: 1px solid rgba(212, 175, 55, .18);

  }

  .mobile-drawer.active {

    left: 0;

  }

  .menu-overlay {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .65);

    backdrop-filter: blur(4px);

    opacity: 0;

    visibility: hidden;

    transition: .35s;

    z-index: 9998;

  }

  .menu-overlay.active {

    opacity: 1;

    visibility: visible;

  }

  .drawer-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

  }

  .drawer-logo {

    height: 38px;

  }

  .drawer-close {

    width: 40px;

    height: 40px;

    background: none;

    border: none;

    color: white;

    font-size: 34px;

    cursor: pointer;

  }

  .drawer-divider {

    height: 2px;

    background: linear-gradient(90deg, #D4AF37, transparent);

    margin: 22px 0;

  }

  .drawer-nav {

    display: flex;

    flex-direction: column;

    gap: 8px;

  }

  .drawer-nav a {

    color: #D9D9D9;

    text-decoration: none;

    font-size: 17px;

    padding: 14px 0;

    transition: .3s;

    border-bottom: 1px solid rgba(255, 255, 255, .05);

  }

  .drawer-nav a.active {

    color: #D4AF37;

  }

  .drawer-nav a:hover {

    color: #D4AF37;

    padding-left: 10px;

  }

  .drawer-bottom {

    margin-top: auto;

  }

  .contact-card {

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 18px;

    padding: 18px;

    background: #111114;

  }

  .contact-item {

    display: flex;

    gap: 14px;

    align-items: flex-start;

  }

  .contact-item+.contact-item {

    margin-top: 18px;

    padding-top: 18px;

    border-top: 1px solid rgba(255, 255, 255, .08);

  }

  .contact-item img {

    width: 42px;

    height: 42px;

  }

  .contact-item small {

    display: block;

    color: #D4AF37;

    font-size: 10px;

    letter-spacing: 2px;

    margin-bottom: 4px;

  }

  .contact-item strong {

    display: block;

    color: white;

    font-size: 16px;

  }

  .contact-item span {

    color: #8f8f8f;

    font-size: 13px;

  }

  .call-strip {

    margin-top: 18px;

    display: flex;

    align-items: center;

    gap: 14px;

    border: 1px solid rgba(212, 175, 55, .2);

    border-radius: 50px;

    padding: 14px 18px;

    text-decoration: none;

  }

  .call-icon {

    width: 46px;

    height: 46px;

    border-radius: 50%;

    background: #1A1A1D;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #D4AF37;

  }

  .call-strip small {

    display: block;

    color: #D4AF37;

    font-size: 10px;

    letter-spacing: 2px;

  }

  .call-strip strong {

    color: white;

    font-size: 17px;

  }

  .rec-clock {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .rec-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #D9503A;
    animation: pulse 1.4s ease-in-out infinite;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
  }

  .btn-whatsapp {
    background: linear-gradient(120deg, var(--gold-bright), var(--amber));
    color: #171008;
  }

  .btn-botim {
    background: linear-gradient(120deg, var(--gold-bright), var(--amber));
    color: #171008;
  }

  .btn-botim:hover {
    background: #1FA6FF;
    /* Botim blue */
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(31, 166, 255, 0.35);
  }

  .btn-whatsapp:hover {
    background: #25D366;
    /* WhatsApp official green */
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  }

  .btn-ghost {
    border: 1px solid rgba(239, 230, 211, 0.25);
    backdrop-filter: blur(6px);
  }

  .btn-ghost:hover {
    border-color: var(--gold);
  }

  @media (max-width:900px) {
    .nav-links {
      display: none;
    }

    .rec-clock {
      display: none;
    }
  }

  /* ---------- HERO (VIDEO BACKGROUND) ---------- */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #000;
  }

  .hero-bg video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
  }

  /* animated cinematic fallback layer — always present beneath/behind video for richness */
  .hero-bg .fallback {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 20% 20%, rgba(201, 123, 46, 0.30), transparent 60%),
      radial-gradient(ellipse 55% 45% at 80% 75%, rgba(201, 162, 39, 0.22), transparent 60%),
      radial-gradient(ellipse 40% 40% at 50% 50%, rgba(90, 60, 20, 0.35), transparent 65%),
      linear-gradient(160deg, #100b06, #0a0a0c 60%, #08090B);
    animation: driftBg 22s ease-in-out infinite alternate;
  }

  @keyframes driftBg {
    0% {
      transform: scale(1) translate(0, 0);
    }

    100% {
      transform: scale(1.12) translate(-2%, -2%);
    }
  }

  .hero-bg .sweep {
    position: absolute;
    inset: -20%;
    background: linear-gradient(100deg, transparent 40%, rgba(232, 195, 74, 0.06) 48%, rgba(232, 195, 74, 0.13) 50%, rgba(232, 195, 74, 0.06) 52%, transparent 60%);
    animation: sweepMove 9s linear infinite;
  }

  @keyframes sweepMove {
    0% {
      transform: translateX(-30%);
    }

    100% {
      transform: translateX(30%);
    }
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(8, 9, 11, 0.55) 0%, rgba(8, 9, 11, 0.35) 35%, rgba(8, 9, 11, 0.75) 100%),
      radial-gradient(ellipse 70% 60% at 50% 45%, transparent 30%, rgba(8, 9, 11, 0.55) 100%);
  }

  .hero-vignette-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: repeating-linear-gradient(180deg, rgba(239, 230, 211, 0.025) 0px, rgba(239, 230, 211, 0.025) 1px, transparent 1px, transparent 3px);
    opacity: 0.4;
  }

  /* corner frame brackets — camera viewfinder detail */
  .frame-brackets span {
    position: absolute;
    width: 26px;
    height: 26px;
    border-color: rgba(239, 230, 211, 0.55);
    z-index: 3;
  }

  .frame-brackets .tl {
    top: 28px;
    left: 28px;
    border-top: 2px solid;
    border-left: 2px solid;
  }

  .frame-brackets .tr {
    top: 28px;
    right: 28px;
    border-top: 2px solid;
    border-right: 2px solid;
  }

  .frame-brackets .bl {
    bottom: 28px;
    left: 28px;
    border-bottom: 2px solid;
    border-left: 2px solid;
  }

  .frame-brackets .br {
    bottom: 28px;
    right: 28px;
    border-bottom: 2px solid;
    border-right: 2px solid;
  }

  @media (max-width:640px) {
    .frame-brackets span {
      width: 18px;
      height: 18px;
    }

    .frame-brackets .tl,
    .frame-brackets .tr {
      top: 16px;
    }

    .frame-brackets .tl,
    .frame-brackets .bl {
      left: 16px;
    }

    .frame-brackets .tr,
    .frame-brackets .br {
      right: 16px;
    }

    .frame-brackets .bl,
    .frame-brackets .br {
      bottom: 16px;
    }
  }

  .hero-rec-tag {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    color: rgba(239, 230, 211, 0.85);
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(239, 230, 211, 0.15);
    opacity: 0;
    animation: fadeUp .8s var(--ease) forwards;
    animation-delay: .1s;
  }

  .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 24px;
  }

  .hero-content .eyebrow {
    justify-content: center;
    opacity: 0;
    animation: fadeUp .8s var(--ease) forwards;
    animation-delay: .25s;
  }

  .hero h1 {
    font-size: clamp(40px, 7vw, 84px);
    line-height: 1.02;
    color: var(--sand);
    margin-bottom: 26px;
    opacity: 0;
    animation: fadeUp .9s var(--ease) forwards;
    animation-delay: .4s;
  }

  .hero h1 em {
    font-style: normal;
    background: linear-gradient(120deg, var(--gold-bright), var(--amber) 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .hero p.lead {
    font-size: 18px;
    color: var(--sand-2);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.65;
    opacity: 0;
    animation: fadeUp .9s var(--ease) forwards;
    animation-delay: .55s;
  }

  .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 70px;
    opacity: 0;
    animation: fadeUp .9s var(--ease) forwards;
    animation-delay: .7s;
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(22px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .stat-strip {
    display: flex;
    gap: 0;
    justify-content: center;
    padding-top: 0;
    margin: 0 auto;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .9s var(--ease) forwards;
    animation-delay: .85s;
  }

  .stat {
    padding: 0 28px;
    border-right: 1px solid rgba(239, 230, 211, 0.15);
    text-align: center;
  }

  .stat:last-child {
    border-right: none;
  }

  .stat-num {
    font-family: var(--display);
    font-size: 30px;
    color: var(--gold-bright);
    font-weight: 600;
  }

  .stat-label {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.05em;
    color: var(--muted);
    margin-top: 6px;
    text-transform: uppercase;
  }

  .scroll-cue {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(239, 230, 211, 0.55);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    opacity: 0;
    animation: fadeUp .9s var(--ease) forwards;
    animation-delay: 1.05s;
  }

  .scroll-line {
    width: 1px;
    height: 34px;
    background: linear-gradient(180deg, rgba(239, 230, 211, 0.6), transparent);
    position: relative;
    overflow: hidden;
  }

  .scroll-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: -100%;
    width: 100%;
    height: 60%;
    background: linear-gradient(180deg, transparent, var(--gold-bright));
    animation: scrollDrop 1.8s ease-in-out infinite;
  }

  @keyframes scrollDrop {
    0% {
      top: -60%;
    }

    100% {
      top: 100%;
    }
  }

  /* ---------- LOGO MARQUEE (WORK WITH DUBAI BRANDS) ---------- */
  .marquee-section {
    background: var(--ink-2);
    border-bottom: 1px solid var(--line);
    padding: 52px 0;
    position: relative;
  }

  .marquee-label {
    text-align: center;
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: 0.14em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 34px;
  }

  .marquee-track-wrap {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  }

  .marquee-track {
    display: flex;
    gap: 64px;
    width: max-content;
    animation: marquee 26s linear infinite;
  }

  .marquee-track-wrap:hover .marquee-track {
    animation-play-state: paused;
  }

  @keyframes marquee {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  .client-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--display);
    font-weight: 600;
    font-size: 22px;
    color: rgba(239, 230, 211, 0.42);
    white-space: nowrap;
    letter-spacing: 0.01em;
    transition: color .3s;
  }

  .client-logo:hover {
    color: rgba(239, 230, 211, 0.85);
  }

  .client-logo .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.6;
  }

  .nav-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 6px;
  }

  .nav-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(246, 241, 231, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s var(--ease);
    flex-shrink: 0;
  }

  .nav-icon:hover {
    border-color: var(--bronze-bright);
    background: rgba(200, 151, 83, 0.1);
    transform: translateY(-2px);
  }

  .nav-icon svg {
    width: 16px;
    height: 16px;
    fill: var(--muted-lt);
    transition: fill .2s;
  }

  .nav-icon:hover svg {
    fill: var(--bronze-bright);
  }

  @media (max-width:560px) {
    .nav-icons {
      gap: 6px;
    }

    .nav-icon {
      width: 32px;
      height: 32px;
    }

    .nav-icon svg {
      width: 14px;
      height: 14px;
    }
  }

  /* ---------- Section shared ---------- */
  section {
    position: relative;
  }

  @media (max-width:640px) {
    section {
      padding: 84px 0;
    }
  }

  .section-head {
    margin-bottom: 64px;
  }

  .section-head h2 {
    font-size: clamp(30px, 3.6vw, 46px);
    color: var(--sand);
    line-height: 1.1;
  }

  .section-head p {
    color: var(--muted);
    font-size: 16px;
    margin-top: 16px;
  }

  /* ---------- ABOUT ---------- */
  .about {
    background: var(--ink);
    border-bottom: 1px solid var(--line);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
  }

  @media (max-width:900px) {
    .about-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  }

  .about-lead p {
    font-size: 19px;
    color: var(--sand-2);
    line-height: 1.75;
    font-family: var(--display);
    font-weight: 500;
  }

  .about-lead p+p {
    margin-top: 20px;
    color: var(--muted);
    font-size: 16px;
    font-family: var(--body);
    font-weight: 400;
  }

  .pillars {
    display: grid;
    gap: 0;
  }

  .pillar {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 22px;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    transition: padding-left .35s var(--ease);
  }

  .pillar:hover {
    padding-left: 8px;
  }

  .pillar:last-child {
    border-bottom: 1px solid var(--line);
  }

  .pillar-code {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--gold);
    padding-top: 3px;
  }

  .pillar h3 {
    font-size: 19px;
    color: var(--sand);
    margin-bottom: 8px;
    font-weight: 600;
  }

  .pillar p {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.6;
  }

  /* ---------- TESTIMONIALS ---------- */
  .testimonials {
    background: var(--ink-2);
    border-bottom: 1px solid var(--line);
  }

  .t-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .t-scroll::-webkit-scrollbar {
    display: none;
  }

  .t-card {
    scroll-snap-align: start;
    flex: 0 0 340px;
    background: var(--ink-3);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    transition: transform .35s var(--ease), border-color .35s var(--ease);
  }

  .t-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 162, 39, 0.4);
  }

  @media (max-width:640px) {
    .t-card {
      flex-basis: 280px;
    }
  }

  .stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: var(--gold-bright);
    letter-spacing: 2px;
  }

  .t-quote {
    font-size: 15px;
    color: var(--sand-2);
    line-height: 1.65;
    margin-bottom: 24px;
    min-height: 120px;
  }

  .t-person {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .t-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-weight: 700;
    font-size: 13px;
    color: #171008;
    flex-shrink: 0;
  }

  .t-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--sand);
  }

  .t-role {
    font-size: 12.5px;
    color: var(--muted);
  }

  /* ---------- PORTFOLIO / FILMSTRIP ---------- */
  .portfolio {
    background: var(--ink);
  }

  .filters {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }

  .filter-chip {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.04em;
    padding: 9px 16px;
    border-radius: 100px;
    border: 1px solid var(--line);
    color: var(--muted);
    transition: all .25s var(--ease);
  }

  .filter-chip.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #171008;
    font-weight: 700;
  }

  .filmstrip {
    position: relative;
    border-top: 14px solid var(--ink-3);
    border-bottom: 14px solid var(--ink-3);
    background: var(--ink-2);
  }

  .filmstrip::before,
  .filmstrip::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 14px;
    background-image: radial-gradient(circle, var(--ink) 3px, transparent 3.2px);
    background-size: 26px 14px;
    background-repeat: repeat-x;
  }

  .filmstrip::before {
    top: -14px;
  }

  .filmstrip::after {
    bottom: -14px;
  }

  .reel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
  }

  @media (max-width:980px) {
    .reel-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width:520px) {
    .reel-grid {
      grid-template-columns: 1fr;
    }
  }

  .frame {
    position: relative;
    aspect-ratio: 9/14;
    background: var(--ink-2);
    overflow: hidden;
    cursor: pointer;
  }

  .frame-bg {
    position: absolute;
    inset: 0;
    transition: transform .5s var(--ease), filter .5s var(--ease);
  }

  .frame-1 .frame-bg {
    background: linear-gradient(155deg, #C97B2E, #5a2f10);
  }

  .frame-2 .frame-bg {
    background: linear-gradient(155deg, #3a4a3a, #0f1410);
  }

  .frame-3 .frame-bg {
    background: linear-gradient(155deg, #8a6d2e, #241c08);
  }

  .frame-4 .frame-bg {
    background: linear-gradient(155deg, #5a4a6e, #150f1e);
  }

  .frame-5 .frame-bg {
    background: linear-gradient(155deg, #2e5a6d, #0a1418);
  }

  .frame-6 .frame-bg {
    background: linear-gradient(155deg, #6e2e3a, #1c0a0d);
  }

  .frame-7 .frame-bg {
    background: linear-gradient(155deg, #4a3a1e, #0f0b04);
  }

  .frame-8 .frame-bg {
    background: linear-gradient(155deg, #2e4a6e, #0a1220);
  }

  .frame-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(239, 230, 211, 0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(239, 230, 211, 0.08) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0;
    transition: opacity .3s;
  }

  .frame:hover .frame-grid-lines {
    opacity: 1;
  }

  .frame:hover .frame-bg {
    transform: scale(1.06);
    filter: brightness(1.12) saturate(1.1);
  }

  .frame-top {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .frame-tag {
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.05em;
    background: rgba(11, 13, 16, 0.55);
    color: var(--gold-bright);
    padding: 4px 8px;
    border-radius: 5px;
    backdrop-filter: blur(3px);
  }

  .frame-dur {
    font-family: var(--mono);
    font-size: 9.5px;
    color: rgba(239, 230, 211, 0.85);
  }

  .frame-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(239, 230, 211, 0.15);
    border: 1px solid rgba(239, 230, 211, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s var(--ease), background .25s var(--ease);
  }

  .frame:hover .frame-play {
    transform: translate(-50%, -50%) scale(1.14);
    background: rgba(228, 188, 62, 0.9);
  }

  .frame-play::after {
    content: '';
    border-style: solid;
    border-width: 7px 0 7px 11px;
    border-color: transparent transparent transparent var(--sand);
    margin-left: 2px;
  }

  .frame:hover .frame-play::after {
    border-color: transparent transparent transparent #171008;
  }

  .frame-bottom {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
  }

  .frame-title {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--sand);
  }

  .frame-sub {
    font-family: var(--mono);
    font-size: 9.5px;
    color: rgba(239, 230, 211, 0.6);
    margin-top: 2px;
  }

  .portfolio-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 36px;
    flex-wrap: wrap;
    gap: 16px;
  }

  .portfolio-note {
    font-size: 13px;
    color: var(--muted);
  }

  /* ---------- PRICING ---------- */
  .pricing {
    background: var(--sand-bg);
    color: var(--ink);
    border-bottom: 1px solid var(--line-dark);
  }

  .pricing .eyebrow {
    color: var(--amber);
  }

  .pricing .eyebrow::before {
    background: var(--amber);
  }

  .pricing .section-head h2 {
    color: var(--ink);
  }

  .pricing .section-head p {
    color: var(--muted-2);
  }

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

  @media (max-width:940px) {
    .price-grid {
      grid-template-columns: 1fr;
      max-width: 420px;
      margin: 0 auto;
    }
  }

  .price-card {
    background: #ffffff;
    border: 1px solid rgba(11, 13, 16, 0.1);
    border-radius: 18px;
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  }

  .price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(11, 13, 16, 0.1);
  }

  .price-card.popular {
    border: 2px solid var(--gold);
    box-shadow: 0 20px 50px rgba(201, 162, 39, 0.18);
    transform: translateY(-10px);
  }

  .price-card.popular:hover {
    transform: translateY(-16px);
  }

  @media (max-width:940px) {
    .price-card.popular {
      transform: none;
    }

    .price-card.popular:hover {
      transform: translateY(-6px);
    }
  }

  .popular-badge {
    position: absolute;
    top: -13px;
    left: 30px;
    background: linear-gradient(120deg, var(--gold-bright), var(--amber));
    color: #171008;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 5px 12px;
    border-radius: 100px;
  }

  .plan-name {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .plan-desc {
    font-size: 13.5px;
    color: var(--muted-2);
    margin-bottom: 24px;
    min-height: 36px;
  }

  .plan-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 4px;
  }

  .plan-price .amount {
    font-family: var(--display);
    font-size: 40px;
    font-weight: 600;
  }

  .plan-price .curr {
    font-family: var(--mono);
    font-size: 14px;
    color: var(--muted-2);
  }

  .plan-per {
    font-size: 13px;
    color: var(--muted-2);
    margin-bottom: 26px;
  }

  .plan-features {
    list-style: none;
    margin-bottom: 30px;
    flex: 1;
  }

  .plan-features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    padding: 9px 0;
    border-top: 1px solid rgba(11, 13, 16, 0.08);
    color: #2b2b26;
  }

  .plan-features li:first-child {
    border-top: none;
  }

  .check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .check svg {
    width: 9px;
    height: 9px;
    fill: none;
    stroke: #171008;
    stroke-width: 2.6;
  }

  .plan-btn {
    text-align: center;
    padding: 13px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    background: var(--ink);
    color: var(--sand);
    transition: transform .25s var(--ease);
    display: block;
  }

  .plan-btn:hover {
    transform: translateY(-2px);
  }

  .price-card.popular .plan-btn {
    background: linear-gradient(120deg, var(--gold-bright), var(--amber));
    color: #171008;
  }

  .price-note {
    text-align: center;
    margin-top: 34px;
    font-size: 13px;
    color: var(--muted-2);
  }

  /* ---------- CTA / FOOTER ---------- */
  .final-cta {
    background: var(--ink);
    padding: 100px 0 0 0px;
    position: relative;
    overflow: hidden;
  }

  .final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 700px 400px at 50% 0%, rgba(201, 162, 39, 0.14), transparent 65%);
  }

  .final-cta h2 {
    position: relative;
    font-size: clamp(30px, 5vw, 52px);
    color: var(--sand);

    margin: 0 auto 22px;
    line-height: 1.1;
  }

  .final-cta p {
    position: relative;
    color: var(--muted);
    font-size: 16px;
  }

  .final-ctas {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 90px;
  }

  footer {
    border-top: 1px solid var(--line);
    padding: 40px 0;
  }

  footer {
    padding: 34px 0;
  }

  .footer-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .footer-brand .logo {
    font-size: 18px;
  }

  .footer-tagline {
    font-size: 12px;
    color: var(--muted-lt);
    line-height: 1.5;
  }

  .footer-social {
    display: flex;
    gap: 9px;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(246, 241, 231, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s var(--ease);
  }

  .footer-social a:hover {
    border-color: var(--bronze-bright);
    background: rgba(200, 151, 83, 0.1);
  }

  .footer-social svg {
    width: 15px;
    height: 15px;
    fill: var(--muted-lt);
    transition: fill .2s;
  }

  .footer-social a:hover svg {
    fill: var(--bronze-bright);
  }

  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 20px;
  }

  .footer-address {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: 0.03em;
    color: var(--muted-lt);
  }

  .footer-address svg {
    width: 14px;
    height: 14px;
    stroke: var(--bronze-bright);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
  }

  .footer-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .footer-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.03em;
    color: var(--muted-lt);
    border: 1px solid rgba(246, 241, 231, 0.12);
    padding: 6px 10px;
    border-radius: 100px;
    white-space: nowrap;
  }

  .footer-badge svg {
    width: 10px;
    height: 10px;
    stroke: var(--bronze-bright);
    fill: none;
    stroke-width: 2.5;
    flex-shrink: 0;
  }

  @media (max-width:640px) {

    .footer-top,
    .footer-bottom {
      flex-direction: column;
      align-items: start;
      gap: 14px;
    }

    .footer-brand {}
  }


  [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
  }

  [data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
  }

  [data-reveal-delay="1"].visible {
    transition-delay: .08s;
  }

  [data-reveal-delay="2"].visible {
    transition-delay: .16s;
  }

  [data-reveal-delay="3"].visible {
    transition-delay: .24s;
  }

  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important;
    }
  }


  .page3 {
    padding: 120px 0;
    overflow: hidden;
    background: #0f0d0d;
  }

  .page3-heading {
    padding: 0 5vw;
    margin-bottom: 60px;
  }

  .page3-heading span {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    gap: 10px;
  }

  .page3-heading h2 {
    position: relative;
    font-size: clamp(30px, 5vw, 52px);
    color: var(--sand);
    max-width: 720px;
    margin: 0 auto 22px;
    line-height: 1.1;
  }

  .reelSwiper {
    padding: 0 5vw;
  }

  .reelSwiper .swiper-slide {
    width: 240px;
    flex-shrink: 0;
  }

  .reel-card {
    width: 100%;
    height: 420px;
    border-radius: 32px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255, 255, 255, .08);
  }

  .reel-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

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

    .reelSwiper {
      padding: 0 20px;
    }

    .reelSwiper .swiper-slide {
      width: 160px;
      flex-shrink: 0;
    }

    .reel-card {
      width: 180px;
      height: 320px;
      border-radius: 24px;
    }
  }



  .footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .footer-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }

  .footer-content {
    text-align: center;
    min-width: 520px;
  }

  .footer-content h3 {
    color: #D9A441;
    font-size: 15px;
    letter-spacing: .35em;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .footer-content p {
    line-height: 1.5;
  }

  .footer-line {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(to right,
        transparent,
        rgba(217, 164, 65, .85),
        transparent);
    position: relative;
  }

  .footer-line::after {
    content: "";
    position: absolute;
    right: -5px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D9A441;
    transform: translateY(-50%);
    box-shadow: 0 0 12px rgba(217, 164, 65, .6);
  }

  .footer-line:last-child::after {
    left: -5px;
    right: auto;
  }


  @media(max-width:768px) {

    .footer-top {

      flex-direction: column;

      justify-content: center;

      align-items: flex-start;

      gap: 18px;

      text-align: left;

    }

    .footer-brand {

      width: 100%;

    }

    .footer-brand img {

      height: 42px;

    }

    .footer-center {

      width: 100%;

      justify-content: flex-start;

    }

    .footer-content {

      text-align: left;
      min-width: 0;

    }

    .footer-content h3 {

      font-size: 12px;

      letter-spacing: .22em;

    }

    .footer-content p {
      font-size: 13px;
      line-height: 1.6;
    }

    .footer-social {

      width: 100%;

      justify-content: flex-start;

      display: flex;

      gap: 14px;

    }

    .footer-social img {

      width: 34px;

    }

  }