*, *::before, *::after { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      background: #0A0A0A;
      color: #ffffff;
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
    }

    /* ── Cursor ── */
    #cursor {
      position: fixed;
      width: 10px; height: 10px;
      background: #E8E048;
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: width .2s, height .2s, background .2s;
      mix-blend-mode: difference;
    }
    #cursor-ring {
      position: fixed;
      width: 36px; height: 36px;
      border: 1.5px solid rgba(232,224,72,0.5);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: all .12s ease-out;
    }
    body:hover #cursor { opacity: 1; }

    /* ── Navbar ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 1.5rem 4%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      backdrop-filter: blur(0px);
      transition: backdrop-filter .4s, background .4s;
    }
    nav.scrolled {
      backdrop-filter: blur(12px);
      background: rgba(10,10,10,0.7);
    }
    .nav-logo {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.1rem;
      letter-spacing: .02em;
      color: #fff;
      text-decoration: none;
    }
    .nav-center {
      font-size: .78rem;
      color: rgba(255,255,255,.5);
      letter-spacing: .04em;
      text-align: center;
      line-height: 1.5;
    }
    .nav-links { display: flex; gap: 2.2rem; }
    .nav-links a {
      font-size: .82rem;
      color: rgba(255,255,255,.65);
      text-decoration: none;
      letter-spacing: .06em;
      transition: color .2s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute; left: 0; bottom: -3px;
      width: 0; height: 1px;
      background: #E8E048;
      transition: width .3s;
    }
    .nav-links a:hover { color: #fff; }
    .nav-links a:hover::after { width: 100%; }

    /* ── Hero ── */
    #hero {
      position: relative;
      min-height: 100svh;
      background: #0A0A0A;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      overflow: hidden;
    }
    .hero-bg-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -48%);
      width: 100%;
      text-align: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(7rem, 18vw, 18rem);
      line-height: .88;
      color: rgba(255,255,255,.07);
      pointer-events: none;
      user-select: none;
      white-space: nowrap;
      overflow: hidden;
    }

    /* Photo placeholder (gradient avatar) */
    .hero-photo {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: clamp(280px, 38vw, 540px);
      height: clamp(360px, 56vw, 720px);
      z-index: 2;
    }
    .hero-photo-inner {
      width:100%;
      height:100%;
      object-fit:cover;
      object-position:top;
      border-radius:50% 50% 0 0 / 60% 60% 0 0;
    }
    /* head shape */
    .hero-photo-inner::before {
      content: '';
      position: absolute;
      top: 6%;
      left: 50%;
      transform: translateX(-50%);
      width: 48%;
      height: 38%;
      background: radial-gradient(ellipse at 50% 40%, #c8a46a 0%, #8b6540 55%, transparent 80%);
      border-radius: 50%;
    }
    /* neck + body */
    .hero-photo-inner::after {
      content: '';
      position: absolute;
      bottom: 0; left: 50%;
      transform: translateX(-50%);
      width: 60%;
      height: 52%;
      background: linear-gradient(180deg, #5a7a5a 0%, #3d5c3d 40%, #1f3020 100%);
      border-radius: 40% 40% 0 0;
    }

    /* Foreground giant type that overlays photo */
    .hero-title-wrap {
      position: relative;
      z-index: 10;
      padding: 0 4%;
      padding-bottom: 2.5rem;
      pointer-events: none;
      bottom: 140px;
    }
    .hero-row1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.4rem, 8vw, 7rem);
      color: rgba(255,255,255,.22);
      letter-spacing: .04em;
      line-height: 1;
    }
    .hero-row2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(4.5rem, 15vw, 13rem);
      line-height: .9;
      letter-spacing: .01em;
      display: flex;
      align-items: baseline;
      flex-wrap: nowrap;
    }
    .w { color: #ffffff; }
    .y { color: #E8E048; }

    /* Bottom bar inside hero */
    .hero-bottom {
      position: relative;
      z-index: 10;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      padding: 0 4% 2.8rem;
    }
    .hero-desc {
      font-size: clamp(.7rem, 1.1vw, .9rem);
      color: rgba(255,255,255,.45);
      max-width: 200px;
      line-height: 1.65;
      letter-spacing: .01em;
    }

    /* ── CTA Button ── */
    .cta-btn {
      display: flex; align-items: center; gap: .6rem;
      background: #f5f0e8; color: #0A0A0A;
      border: none; border-radius: 999px;
      padding: .75rem 1.4rem;
      font-family: 'Inter', sans-serif;
      font-size: .85rem; font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: transform .2s, box-shadow .2s;
    }
    .cta-btn:hover { transform: scale(1.04); box-shadow: 0 0 0 4px rgba(232,224,72,.25); }
    .cta-icon {
      width: 32px; height: 32px;
      background: #E8E048;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .cta-icon svg { width: 14px; height: 14px; }

    /* ── Section divider ── */
    .section-eyebrow {
      display: flex; align-items: center; gap: .8rem;
      font-size: .72rem; letter-spacing: .14em; color: rgba(255,255,255,.4); font-weight: 600;
      text-transform: uppercase; margin-bottom: 2.2rem;
    }
    .section-eyebrow::after {
      content: '';
      display: block; height: 1px; width: 60px;
      background: linear-gradient(to right, rgba(255,255,255,.4), transparent);
    }

    /* ── About section ── */
    #about {
      background: #F5F0E8;
      color: #0A0A0A;
      padding: 7rem 4%;
    }
    #about .section-eyebrow { color: rgba(10,10,10,.4); }
    #about .section-eyebrow::after { background: linear-gradient(to right, rgba(10,10,10,.3), transparent); }
    .about-headline {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2rem, 4.5vw, 3.5rem);
      font-weight: 700;
      line-height: 1.05;
      max-width: 520px;
    }
    .about-body {
      font-size: clamp(.9rem, 1.2vw, 1.05rem);
      line-height: 1.75;
      color: #2e2e2e;
      max-width: 520px;
    }

    /* ── Stats strip ── */
    .stats-strip {
      display: flex;
      border-top: 1px solid rgba(10,10,10,.15);
      margin-top: 4rem;
      padding-top: 2.8rem;
      gap: 0;
    }
    .stat { flex: 1; padding-right: 2rem; }
    .stat + .stat { border-left: 1px solid rgba(10,10,10,.1); padding-left: 2rem; }
    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.8rem, 5vw, 4.4rem);
      line-height: 1;
    }
    .stat-label { font-size: .78rem; color: rgba(10,10,10,.5); letter-spacing: .05em; margin-top: .3rem; }

    /* ── Work section ── */
    #works {
      padding: 7rem 4%;
      background: #0A0A0A;
    }
    .works-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(min(100%, 380px), 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
    }
    .work-card {
      /* position: relative; */
      border-radius: 1.2rem;
      overflow: hidden;
      background: #1A1A1A;
      aspect-ratio: 4/3;
      cursor: pointer;
      transition: transform .4s cubic-bezier(.22,1,.36,1);
    }
    .work-card:hover { transform: scale(1.025); }
    .work-card-inner {
      position: absolute; inset: 0;
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 1.8rem;
      background: linear-gradient(to top, rgba(10,10,10,.9) 0%, transparent 55%);
      opacity: 0;
      transition: opacity .3s;
    }
    .work-card:hover .work-card-inner { opacity: 1; }
    .work-card-bg {
      position: absolute; inset: 0;
      transition: transform .5s cubic-bezier(.22,1,.36,1);
    }
    .work-card:hover .work-card-bg { transform: scale(1.08); }

    /* coloured work card BGs */
    .wc-1 .work-card-bg { background: url("/assets/bsf.png"); background-position: center; background-size: cover;}
    .wc-2 .work-card-bg { background: url("/assets/tgk.png"); background-position: center; background-size: cover; }
    .wc-3 .work-card-bg { background: linear-gradient(135deg, #1a3a1a 0%, #0d2010 100%); background-position: center; background-size: cover; }

    /* Decorative shapes inside cards */
    
    /* .wc-2 .work-card-bg::after {
      content: '';
      position: absolute; top: 10%; left: 15%;
      width: 40%; height: 40%;
      background: linear-gradient(45deg, rgba(200,80,80,.35), rgba(220,130,50,.25));
      border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    .wc-3 .work-card-bg::after {
      content: '';
      position: absolute; bottom: 15%; right: 8%;
      width: 50%; height: 50%;
      background: radial-gradient(ellipse, rgba(80,200,120,.3) 0%, transparent 70%);
    } */
    .work-card-title {
      font-family: 'Syne', sans-serif;
      font-size: 1.25rem; font-weight: 800;
      color: #fff;
    }
    .work-card-tag {
      font-size: .72rem; color: rgba(255,255,255,.5);
      letter-spacing: .08em; margin-top: .3rem;
    }

    /* ── Services section ── */
    #services {
      padding: 7rem 4%;
      background: #F5F0E8;
      color: #0A0A0A;
    }
    #services .section-eyebrow { color: rgba(10,10,10,.4); }
    #services .section-eyebrow::after { background: linear-gradient(to right, rgba(10,10,10,.3), transparent); }
    .services-list { margin-top: 3rem; border-top: 1px solid rgba(10,10,10,.12); }
    .service-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 2rem 0;
      border-bottom: 1px solid rgba(10,10,10,.12);
      cursor: default;
      transition: background .25s;
    }
    .service-item:hover { background: rgba(232,224,72,.08); }
    .service-item:hover { margin: 0 -1.5rem; padding-left: 1.5rem; padding-right: 1.5rem; border-radius: .5rem; }
    .service-name {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.3rem, 2.8vw, 2rem);
      font-weight: 700;
    }
    .service-tag {
      font-size: .72rem; color: rgba(10,10,10,.4);
      letter-spacing: .1em; text-transform: uppercase;
    }
    .service-arrow {
      width: 40px; height: 40px;
      border: 1.5px solid rgba(10,10,10,.2);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s, border-color .2s;
      flex-shrink: 0;
    }
    .service-item:hover .service-arrow {
      background: #E8E048;
      border-color: #E8E048;
    }

    /* ── Contact / Footer ── */
    #contact {
      padding: 8rem 4% 5rem;
      background: #0A0A0A;
      position: relative;
      overflow: hidden;
    }
    .contact-bg-text {
      position: absolute;
      bottom: -2%;
      left: 50%;
      transform: translateX(-50%);
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(5rem, 16vw, 14rem);
      color: rgba(255,255,255,.04);
      white-space: nowrap;
      pointer-events: none;
      user-select: none;
    }
    .contact-headline {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 9vw, 8rem);
      line-height: .95;
      max-width: 780px;
    }
    .contact-headline span { color: #E8E048; }
    .contact-sub {
      font-size: .9rem;
      color: rgba(255,255,255,.4);
      margin-top: 1.5rem;
      max-width: 400px;
      line-height: 1.7;
    }
    .social-links {
      display: flex; gap: 1.2rem; margin-top: 3rem;
    }
    .social-link {
      display: inline-flex; align-items: center; gap: .5rem;
      font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
      color: rgba(255,255,255,.5);
      text-decoration: none;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 999px;
      padding: .5rem 1.1rem;
      transition: color .2s, border-color .2s;
    }
    .social-link:hover { color: #E8E048; border-color: #E8E048; }

    footer {
      border-top: 1px solid rgba(255,255,255,.08);
      padding: 1.8rem 4%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: .72rem;
      color: rgba(255,255,255,.25);
    }

    /* ── Mobile nav toggle ── */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { display: block; width: 22px; height: 1.5px; background: #fff; transition: all .3s; }

    /* ── Responsive ── */
    @media (max-width: 768px) {
      .nav-center { display: none; }
      .nav-links { display: none; position: fixed; top: 0; right: 0; bottom: 0; left: 0; background: #0A0A0A; flex-direction: column; justify-content: center; align-items: center; gap: 2.5rem; z-index: 90; }
      .nav-links.open { display: flex; }
      .nav-links a { font-size: 1.4rem; }
      .hamburger { display: flex; z-index: 101; position: relative; }
      .hero-row2 { font-size: clamp(3.5rem, 18vw, 7rem); }
      .stats-strip { flex-direction: column; gap: 2rem; }
      .stat + .stat { border-left: none; border-top: 1px solid rgba(10,10,10,.1); padding-left: 0; padding-top: 2rem; }
      #cursor, #cursor-ring { display: none; }
      .service-item:hover { margin: 0; padding-left: 0; padding-right: 0; }
      .social-links { flex-wrap: wrap; }
        #hero { min-height: 60svh;}
        .hero-title-wrap{bottom: 250px;}
    }
    @media(min-width: 769px) and (max-width: 1024px) {
      .hero-bg-text {
        top: 20%;
        left: 80%;
      }
      #hero { min-height: 80svh; }
    }
     

    /* ── Loader ── */
    #loader {
      position: fixed; inset: 0; background: #0A0A0A;
      z-index: 9000;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.2rem; letter-spacing: .2em; color: rgba(255,255,255,.2);
    }
    #loader-bar {
      position: absolute; bottom: 0; left: 0;
      height: 2px; background: #E8E048; width: 0%;
    }
    #loader-num {
      position: absolute; bottom: 1.8rem; right: 4%;
      font-size: 4rem; color: rgba(255,255,255,.06);
    }

    /* Clip animate */
    .clip-reveal { overflow: hidden; }
    .clip-inner { display: block; transform: translateY(100%); opacity: 0; }

    /* Marquee */
    .marquee-wrap { overflow: hidden; padding: 1.2rem 0; border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
    .marquee-track { display: flex; gap: 0; white-space: nowrap; will-change: transform; }
    .marquee-item {
      display: inline-flex; align-items: center; gap: 2rem;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(1.1rem, 2.5vw, 1.6rem);
      color: rgba(255, 255, 255, 0.398);
      padding-right: 3rem;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .marquee-dot { width: 6px; height: 6px; background: #E8E048; border-radius: 50%; flex-shrink: 0; }



    .underline{
        text-decoration: underline;
    }