:root{
      --bg:#0B0F14;
      --bg2:#070A0F;
      --panel:rgba(255,255,255,0.035);
      --text:#EAEAEA;
      --muted:rgba(234,234,234,0.78);
      --gold:#C9A24D;
      --line:rgba(255,255,255,0.09);
      --shadow:0 22px 70px rgba(0,0,0,0.45);
      --shadow2:0 16px 40px rgba(0,0,0,0.35);
      --radius:20px;
      --radius2:16px;

      --easeOut:cubic-bezier(.2,.9,.2,1);
      --easeSoft:cubic-bezier(.2,.8,.2,1);
    }

    *{ box-sizing:border-box; }
    body{
      margin:0;
      background: radial-gradient(1200px 700px at 50% -10%, rgba(201,162,77,0.08), transparent 55%),
                  radial-gradient(900px 520px at 10% 10%, rgba(255,255,255,0.04), transparent 60%),
                  linear-gradient(180deg, var(--bg2), var(--bg));
      color:var(--text);
      font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      letter-spacing:0.2px;
      overflow-x:hidden;

        opacity: 0;
  
  transition: opacity 700ms var(--easeOut), transform 700ms var(--easeOut);

    }

body.page-ready{
  opacity: 1;
  transform: none; /* IMPORTANT: not translateY(0) */
}
    
    html { scroll-behavior:smooth; }
    @media (prefers-reduced-motion: reduce){
      *{ animation:none !important; transition:none !important; }
      html{ scroll-behavior:auto; }
    }

    /* subtle film grain */
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
      mix-blend-mode: overlay;
      opacity:.10;
      z-index:2;
    }

    .container{ width:min(1100px, 92vw); margin:0 auto; }

    /* NAV */
    nav{
      position:fixed;
      top:0; left:0; right:0;
      height:72px;
      display:flex;
      align-items:center;
      justify-content:center;
      z-index:999;
      background:linear-gradient(to bottom, rgba(11,15,20,0.78), rgba(11,15,20,0.30));
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom:1px solid rgba(255,255,255,0.08);
    }
    .nav-inner{
      width:min(1100px, 92vw);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      position:relative;
    }
    .brand{
      font-family:Cinzel, serif;
      font-weight:700;
      letter-spacing:2px;
      text-transform:uppercase;
      font-size:14px;
      opacity:0.96;
      user-select:none;
      white-space:nowrap;
    }

    .nav-right{
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .nav-links{
      display:flex;
      gap:6px;
      align-items:center;
      position:relative;
      padding:6px;
      border-radius:16px;
      background:rgba(255,255,255,0.02);
      border:1px solid rgba(255,255,255,0.06);
    }

    .navlink, .navlink:visited{
      color:rgba(234,234,234,0.9);
      text-decoration:none;
      padding:10px 12px;
      border-radius:12px;
      font-size:13px;
      opacity:0.82;
      position:relative;
      transition: transform 180ms var(--easeSoft), background 180ms var(--easeSoft), opacity 180ms var(--easeSoft);
      will-change: transform;
      outline:none;
    }
    .navlink:hover{
      opacity:1;
      background:rgba(255,255,255,0.075);
      transform:translateY(-2px);
    }
    .navlink:focus-visible{
      box-shadow:0 0 0 3px rgba(201,162,77,0.25);
    }

    .navlink::after{
      content:"";
      position:absolute;
      left:12px; right:12px;
      bottom:6px;
      height:2px;
      background:linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity:0;
      transform:scaleX(0.6);
      transition: opacity 180ms var(--easeSoft), transform 180ms var(--easeSoft), filter 220ms var(--easeSoft);
    }
    .navlink:hover::after{ opacity:1; transform:scaleX(1); }

    .navlink::before{
      content:"";
      position:absolute;
      left:0; right:0; top:0; bottom:0;
      background:linear-gradient(90deg, rgba(255,255,255,0.03), rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.03));
      transform:translateY(-8px) skewX(-6deg) scaleX(0.9);
      opacity:0;
      pointer-events:none;
      transition: opacity 260ms var(--easeSoft), transform 260ms var(--easeSoft);
      border-radius:12px;
      mix-blend-mode:overlay;
    }
    .navlink:hover::before{ opacity:1; transform:translateY(0) skewX(0) scaleX(1); }

    .navlink.active{
      opacity:1;
      background:rgba(255,255,255,0.06);
      color:rgba(234,234,234,0.98);
    }
    .navlink.active::after{
      opacity:1;
      transform:scaleX(1);
    }

    .navlink .dot{
      display:inline-block;
      width:6px;
      height:6px;
      border-radius:999px;
      background:var(--gold);
      margin-right:8px;
      opacity:0;
      transform:scale(0.6);
      transition: opacity 180ms var(--easeSoft), transform 180ms var(--easeSoft);
      box-shadow:0 0 0 6px rgba(201,162,77,0.10);
      vertical-align:middle;
    }
    .navlink.active .dot{
      opacity:1;
      transform:scale(1);
    }

    /* SOCIAL ICONS (navbar) */
    .socials{
      display:flex;
      align-items:center;
      gap:10px;
      padding-left:10px;
      border-left:1px solid rgba(255,255,255,0.10);
    }
    .icon-btn, .icon-btn:visited{
      width:36px;
      height:36px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:12px;
      background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
      border:1px solid rgba(255,255,255,0.06);
      transition: transform 200ms var(--easeSoft), box-shadow 200ms var(--easeSoft), background 200ms var(--easeSoft);
      text-decoration:none;
      will-change: transform;
      position:relative;
      overflow:hidden;
    }
    .icon-btn::after{
      content:"";
      position:absolute;
      inset:0;
      border-radius:inherit;
      box-shadow: inset 0 0 0 1px rgba(212,175,55,0.06);
      opacity:0;
      transition: opacity 200ms var(--easeSoft), transform 300ms var(--easeSoft);
      pointer-events:none;
    }
    .icon-btn:hover{
      transform:translateY(-4px) scale(1.06);
      box-shadow: 0 12px 36px rgba(212,175,55,0.06);
    }
    .icon-btn:hover::after{ opacity:1; transform: scale(1.01); }
    .icon{
      width:18px;
      height:18px;
      fill:rgba(234,234,234,0.92);
      position:relative;
      z-index:1;
    }

    /* MOBILE MENU */
    .burger{
      display:none;
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,0.10);
      background:rgba(255,255,255,0.04);
      cursor:pointer;
      transition: transform 180ms var(--easeSoft), background 180ms var(--easeSoft), border 180ms var(--easeSoft), box-shadow 180ms var(--easeSoft);
      position:relative;
      overflow:hidden;
      align-items:center;
      justify-content:center;
    }
    .burger:hover{
      transform: translateY(-2px);
      background:rgba(255,255,255,0.06);
      border:1px solid rgba(201,162,77,0.20);
      box-shadow: 0 16px 44px rgba(0,0,0,0.35);
    }
    .burger-lines{
      width:18px;
      height:12px;
      position:relative;
    }
    .burger-lines span{
      position:absolute;
      left:0; right:0;
      height:2px;
      border-radius:999px;
      background:rgba(234,234,234,0.92);
      transition: transform 220ms var(--easeSoft), top 220ms var(--easeSoft), opacity 220ms var(--easeSoft);
    }
    .burger-lines span:nth-child(1){ top:0; }
    .burger-lines span:nth-child(2){ top:5px; }
    .burger-lines span:nth-child(3){ top:10px; }

    .menu-overlay{
      position:fixed;
      inset:0;
      background:rgba(0,0,0,0.55);
      z-index:2500;
      display:none;
      opacity:0;
      transition: opacity 220ms var(--easeSoft);
    }
    .menu-overlay.show{
      display:block;
      opacity:1;
    }
    .menu-drawer{
      position:fixed;
      top:0;
      right:0;
      height:100%;
      width:min(360px, 88vw);
      background:linear-gradient(180deg, rgba(11,15,20,0.96), rgba(11,15,20,0.90));
      border-left:1px solid rgba(255,255,255,0.08);
      z-index:2600;
      transform: translateX(100%);
      transition: transform 260ms var(--easeOut);
      padding:18px;
      display:flex;
      flex-direction:column;
      gap:14px;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }
    .menu-drawer.show{ transform: translateX(0); }
    .drawer-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding-bottom:10px;
      border-bottom:1px solid rgba(255,255,255,0.08);
    }
    .drawer-brand{
      font-family:Cinzel, serif;
      letter-spacing:2px;
      text-transform:uppercase;
      font-weight:700;
      font-size:14px;
      opacity:.96;
    }
    .drawer-close{
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,0.10);
      background:rgba(255,255,255,0.04);
      color:rgba(234,234,234,0.92);
      cursor:pointer;
      transition: transform 180ms var(--easeSoft), background 180ms var(--easeSoft), border 180ms var(--easeSoft);
    }
    .drawer-close:hover{
      transform: translateY(-2px);
      background:rgba(255,255,255,0.06);
      border:1px solid rgba(201,162,77,0.20);
    }

    .drawer-links{
      display:grid;
      gap:10px;
      padding-top:6px;
    }
    .drawer-links a{
      display:flex;
      align-items:center;
      gap:10px;
      padding:12px 12px;
      border-radius:16px;
      text-decoration:none;
      color:rgba(234,234,234,0.92);
      background:rgba(255,255,255,0.03);
      border:1px solid rgba(255,255,255,0.08);
      transition: transform 180ms var(--easeSoft), background 180ms var(--easeSoft), border 180ms var(--easeSoft);
    }
    .drawer-links a:hover{
      transform: translateY(-2px);
      background:rgba(255,255,255,0.05);
      border:1px solid rgba(201,162,77,0.18);
    }
    .drawer-links .badge{
      margin-left:auto;
      font-size:11px;
      padding:4px 8px;
      border-radius:999px;
      border:1px solid rgba(201,162,77,0.26);
      color:rgba(234,234,234,0.84);
      background:rgba(201,162,77,0.08);
    }

    /* HERO */
    #home{
      min-height:100vh;
      display:flex;
      align-items:center;
      padding:120px 0 70px;
      position:relative;
      overflow:hidden;
      background:url('../images/hero.jpg') center var(--heroY, 50%) / cover no-repeat;
      isolation:isolate;
    }
    #home::before{
      content:"";
      position:absolute; inset:0;
      background:
        radial-gradient(1000px 560px at 50% 60%, rgba(11,15,20,0.14), rgba(11,15,20,0.88)),
        linear-gradient(to bottom, rgba(0,0,0,0.56), rgba(0,0,0,0.22) 45%, rgba(0,0,0,0.86));
      pointer-events:none;
      z-index:0;
    }
    #home::after{ content:none; }

    .hero-grid{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap:22px;
      align-items:center;
    }

    .hero-kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      font-size:12px;
      letter-spacing:2px;
      text-transform:uppercase;
      color:rgba(234,234,234,0.72);
      margin-bottom:10px;
    }
    .hero-kicker i{display:none}

    .hero-title{
      font-family:Cinzel, serif;
      font-weight:700;
      text-transform:uppercase;
      letter-spacing:2.6px;
      font-size:58px;
      line-height:1.03;
      margin:0 0 12px 0;
      text-shadow: 0 18px 46px rgba(0,0,0,0.45);
    }
    .hero-sub{
      margin:0;
      max-width:620px;
      color:rgba(234,234,234,0.82);
      line-height:1.75;
      font-size:15px;
    }
    .hero-actions{
      margin-top:22px;
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
    }

    /* buttons */
    .btn-ghost, .btn-ghost:visited{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:12px 16px;
      border-radius:14px;
      text-decoration:none;
      font-weight:700;
      letter-spacing:0.2px;
      color:rgba(234,234,234,0.92);
      background:rgba(255,255,255,0.045);
      border:1px solid rgba(255,255,255,0.10);
      transition: transform 180ms var(--easeSoft), background 180ms var(--easeSoft), border 180ms var(--easeSoft), box-shadow 180ms var(--easeSoft);
      white-space:nowrap;
      will-change: transform;
      position:relative;
      overflow:hidden;
    }
    .btn-ghost:hover{
      transform: translateY(-4px);
      background:linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
      border:1px solid rgba(212,175,55,0.12);
      box-shadow: 0 20px 56px rgba(2,6,10,0.5), 0 6px 24px rgba(212,175,55,0.04);
    }

    .btn-gold, .btn-gold:visited{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      position:relative;
      overflow:hidden;
      background:linear-gradient(180deg, #D7B561, #B78E33);
      color:#0B0F14;
      text-decoration:none;
      padding:14px 18px;
      border-radius:14px;
      font-weight:900;
      letter-spacing:0.2px;
      box-shadow: 0 18px 52px rgba(201,162,77,0.22);
      transition: transform 180ms var(--easeSoft), box-shadow 180ms var(--easeSoft), filter 180ms var(--easeSoft);
      white-space:nowrap;
      will-change: transform;
      border:none;
      cursor:pointer;
    }
    .btn-gold::before{
      content:"";
      position:absolute;
      top:-40%;
      left:-30%;
      width:40%;
      height:180%;
      transform: rotate(20deg);
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
      opacity:0;
      transition: opacity 200ms var(--easeSoft);
    }
    .btn-gold:hover{
      transform: translateY(-3px);
      box-shadow: 0 30px 78px rgba(201,162,77,0.30);
      filter: brightness(1.03);
    }
    .btn-gold:hover::before{
      opacity:1;
      animation: sweep 850ms var(--easeOut);
    }
    @keyframes sweep{
      from{ left:-30%; }
      to{ left:120%; }
    }

    /* hero card */
    .hero-card{
      position:relative;
      overflow:hidden;
      background:linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
      border:1px solid rgba(255,255,255,0.10);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding:18px;
      transform-style:preserve-3d;
      transition: transform 420ms var(--easeOut), box-shadow 420ms var(--easeOut);
    }
    .hero-card::before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        radial-gradient(450px 220px at 20% 10%, rgba(201,162,77,0.16), transparent 55%),
        radial-gradient(420px 240px at 90% 80%, rgba(255,255,255,0.08), transparent 60%);
      opacity:0;
      transition: opacity 220ms var(--easeSoft);
      pointer-events:none;
    }
    .hero-card:hover::before{ opacity:1; }
    .hero-card:hover{
      transform: perspective(1200px) translateY(-8px) rotateX(3deg) translateZ(8px);
      box-shadow: 0 48px 120px rgba(2,6,10,0.72), var(--glow);
    }
    .hero-card::after{
      content:"";
      position:absolute;
      top:-20%; left:-40%;
      width:40%; height:140%;
      background: linear-gradient(120deg, transparent, rgba(255,255,255,0.06), transparent);
      transform: rotate(18deg);
      opacity:0;
      transition: opacity 420ms var(--easeSoft), left 620ms var(--easeOut);
      pointer-events:none;
    }
    .hero-card:hover::after{ opacity:1; left:120%; }

    .mini{
      font-size:12px;
      color:rgba(234,234,234,0.72);
      letter-spacing:0.4px;
      margin:0 0 10px 0;
      text-transform:uppercase;
    }
    .stats{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:10px;
      margin-top:10px;
    }
    .stat{
      background:rgba(255,255,255,0.03);
      border:1px solid rgba(255,255,255,0.08);
      border-radius:14px;
      padding:12px;
      transition: transform 220ms var(--easeSoft), border 220ms var(--easeSoft), background 220ms var(--easeSoft), box-shadow 220ms var(--easeSoft);
      will-change: transform;
      transform-style:preserve-3d;
    }
    .stat:hover{
      transform: translateY(-6px);
      border:1px solid rgba(201,162,77,0.24);
      background:rgba(255,255,255,0.04);
      box-shadow: 0 18px 46px rgba(0,0,0,0.35);
    }
    .stat b{ display:block; font-size:18px; margin-bottom:4px; }
    .stat span{ font-size:12px; color:rgba(234,234,234,0.72); }

    /* SECTIONS */
    .section{
      padding:92px 0;
      border-top:1px solid rgba(255,255,255,0.06);
      background: radial-gradient(1200px 500px at 50% 0%, rgba(255,255,255,0.03), rgba(255,255,255,0) 55%);
      position:relative;
      z-index:1;
    }
    .section.alt{
      background:
        radial-gradient(1000px 480px at 50% 0%, rgba(201,162,77,0.08), rgba(201,162,77,0) 55%),
        linear-gradient(180deg, rgba(28,31,38,0.75), rgba(11,15,20,1));
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:18px;
      margin-bottom:18px;
    }
    .section h2{
      margin:0;
      font-family:Cinzel, serif;
      letter-spacing:1.4px;
      text-transform:uppercase;
      font-size:26px;
    }
    .section .hint{
      margin:0;
      color:rgba(234,234,234,0.70);
      font-size:13px;
      line-height:1.6;
      max-width:520px;
    }

    .grid-2{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:16px;
      margin-top:16px;
    }
    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:16px;
      margin-top:16px;
    }

    /* premium card */
    .card{
      position:relative;
      overflow:hidden;
      background:var(--panel);
      border:1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius);
      padding:18px;
      box-shadow: var(--shadow2);
      transition: transform 260ms var(--easeOut), border 260ms var(--easeOut), background 260ms var(--easeOut), box-shadow 260ms var(--easeOut);
      will-change: transform;
      transform-style:preserve-3d;
    }
    .card::before{
      content:"";
      position:absolute;
      inset:-1px;
      border-radius:inherit;
      background:
        radial-gradient(420px 220px at var(--mx, 20%) var(--my, 10%), rgba(201,162,77,0.16), transparent 55%),
        radial-gradient(520px 260px at 110% 120%, rgba(255,255,255,0.06), transparent 60%);
      opacity:0;
      transition: opacity 220ms var(--easeSoft);
      pointer-events:none;
    }
    .card::after{
      content:"";
      position:absolute;
      top:-40%;
      left:-60%;
      width:60%;
      height:220%;
      transform: rotate(22deg);
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.13), transparent);
      opacity:0;
      pointer-events:none;
    }
    .card:hover{
      border:1px solid rgba(201,162,77,0.22);
      background:rgba(255,255,255,0.045);
      box-shadow: 0 28px 90px rgba(0,0,0,0.50);
    }
    .card:hover::before{ opacity:1; }
    .card:hover::after{
      opacity:1;
      animation: sweep2 950ms var(--easeOut);
    }
    @keyframes sweep2{
      from{ left:-60%; }
      to{ left:140%; }
    }
    .card h3{ margin:0 0 10px 0; font-size:16px; }
    .card p{ margin:0; color:rgba(234,234,234,0.72); line-height:1.7; font-size:14px; }

    /* Ride logs */
    .ride-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin:10px 0 12px;
    }
    .pill{
      font-size:12px;
      padding:6px 10px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,0.10);
      background:rgba(255,255,255,0.04);
      color:rgba(234,234,234,0.86);
    }
    .pill.gold{
      border:1px solid rgba(201,162,77,0.24);
      background:rgba(201,162,77,0.10);
    }
    .ride-actions{
      margin-top:14px;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }
    .btn-small, .btn-small:visited{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:10px 12px;
      border-radius:14px;
      text-decoration:none;
      font-weight:700;
      letter-spacing:0.2px;
      color:rgba(234,234,234,0.92);
      background:rgba(255,255,255,0.045);
      border:1px solid rgba(255,255,255,0.10);
      transition: transform 180ms var(--easeSoft), background 180ms var(--easeSoft), border 180ms var(--easeSoft);
      white-space:nowrap;
    }
    .btn-small:hover{
      transform: translateY(-3px);
      background:rgba(255,255,255,0.06);
      border:1px solid rgba(201,162,77,0.18);
    }

    /* YouTube embed */
    .video-wrap{
      border-radius:22px;
      overflow:hidden;
      border:1px solid rgba(255,255,255,0.10);
      background:rgba(0,0,0,0.25);
      box-shadow: 0 30px 110px rgba(0,0,0,0.55);
    }
    .video-16x9{
      position:relative;
      width:100%;
      padding-top:56.25%;
    }
    .video-16x9 iframe{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      border:0;
    }
    .video-note{
      margin-top:14px;
      color:rgba(234,234,234,0.72);
      font-size:13px;
      line-height:1.6;
    }

    /* CONTACT FORM inputs */
    .f-input, .f-textarea{
      width:100%;
      padding:12px 14px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,0.10);
      background:rgba(255,255,255,0.04);
      color:rgba(234,234,234,0.92);
      outline:none;
      transition: border 180ms var(--easeSoft), box-shadow 180ms var(--easeSoft), background 180ms var(--easeSoft);
      font-family: inherit;
      font-size:14px;
    }
    .f-textarea{ resize:vertical; min-height:120px; }
    .f-input:focus, .f-textarea:focus{
      border:1px solid rgba(201,162,77,0.28);
      box-shadow: 0 0 0 3px rgba(201,162,77,0.16);
      background:rgba(255,255,255,0.05);
    }

    /* GALLERY */
    .gallery{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
      margin-top:16px;
    }
    .g-item{
      border-radius: var(--radius2);
      overflow:hidden;
      border:1px solid rgba(255,255,255,0.08);
      background:rgba(255,255,255,0.02);
      position:relative;
      min-height:220px;
      box-shadow: var(--shadow2);
      transition: transform 260ms var(--easeOut), border 260ms var(--easeOut), box-shadow 260ms var(--easeOut);
      will-change: transform;
      cursor:pointer;
      transform-style:preserve-3d;
    }
    .g-item::before{
      content:"";
      position:absolute;
      inset:-1px;
      background: radial-gradient(420px 220px at var(--mx, 30%) var(--my, 30%), rgba(201,162,77,0.16), transparent 55%);
      opacity:0;
      transition: opacity 220ms var(--easeSoft);
      pointer-events:none;
      z-index:1;
    }
    .g-item:hover::before{ opacity:1; }
    .g-item img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
      transform: scale(1.03);
      transition: transform 420ms var(--easeOut), filter 420ms var(--easeOut);
      filter: saturate(1.04) contrast(1.02);
    }
    .g-item:hover{
      border:1px solid rgba(201,162,77,0.24);
      box-shadow: 0 32px 110px rgba(0,0,0,0.55);
    }
    .g-item:hover img{
      transform: scale(1.12);
      filter: saturate(1.12) contrast(1.06);
    }
    .g-cap{
      position:absolute;
      left:12px; right:12px; bottom:12px;
      padding:10px 12px;
      border-radius:14px;
      background:rgba(11,15,20,0.55);
      border:1px solid rgba(255,255,255,0.10);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      font-size:13px;
      color:rgba(234,234,234,0.90);
      z-index:2;
      transform: translateY(6px);
      opacity:.92;
      transition: transform 220ms var(--easeSoft), opacity 220ms var(--easeSoft);
    }
    .g-item:hover .g-cap{
      transform: translateY(0);
      opacity:1;
    }

    footer{
      border-top:1px solid rgba(255,255,255,0.08);
      padding:26px 0 36px;
      color:rgba(234,234,234,0.72);
      font-size:13px;
      position:relative;
      z-index:1;
    }


   /* reveal (upgraded) */
.reveal{
  opacity:0;
  transform: translateY(18px) scale(0.98);
  filter: blur(7px);
  transition: opacity 700ms var(--easeOut), transform 700ms var(--easeOut), filter 700ms var(--easeOut);
  transition-delay: var(--d, 0ms);
}

.reveal.show{
  opacity:1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}


    /* LIGHTBOX */
    /* LIGHTBOX (fixed + zoom) */
.lightbox{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,0.84);
  z-index:99999;
  padding:22px;
  opacity:0;
  transition: opacity 240ms var(--easeOut);
}

.lightbox.show{
  display:flex;
  opacity:1;
}

.lightbox-panel{
  width:min(1000px, 92vw);
  max-height:92vh;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(11,15,20,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 36px 130px rgba(0,0,0,0.70);
  position:relative;
}

.lightbox-img{
  width:100%;
  max-height:78vh;
  height:auto;
  object-fit:contain;
  display:block;
  background:rgba(0,0,0,0.35);
  user-select:none;
  -webkit-user-drag:none;

  /* Zoom */
  cursor: zoom-in;
  transition: transform 220ms var(--easeSoft);
  transform-origin: center center;
}

.lightbox.zoom .lightbox-img{
  transform: scale(1.8);
  cursor: zoom-out;
}

.lightbox-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 14px;
  border-top:1px solid rgba(255,255,255,0.08);
  color:rgba(234,234,234,0.9);
  font-size:13px;
}

    .lb-btn{
      width:40px;
      height:40px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,0.10);
      background:rgba(255,255,255,0.05);
      color:rgba(234,234,234,0.92);
      cursor:pointer;
      transition: transform 180ms var(--easeSoft), background 180ms var(--easeSoft), border 180ms var(--easeSoft), box-shadow 180ms var(--easeSoft);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      user-select:none;
      position:relative;
      overflow:hidden;
    }
    .lb-btn:hover{
      transform:translateY(-2px);
      background:rgba(255,255,255,0.07);
      border:1px solid rgba(201,162,77,0.22);
      box-shadow: 0 16px 50px rgba(0,0,0,0.35);
    }
    .lb-controls{
      display:flex;
      gap:10px;
      align-items:center;
    }

    /* Social icons in contact card */
    .social-icons{
      margin-top:14px;
      display:flex;
      gap:12px;
      align-items:center;
      flex-wrap:wrap;
    }
    .social-icon, .social-icon:visited{
      width:46px;
      height:46px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:14px;
      text-decoration:none;
      border:1px solid rgba(255,255,255,0.10);
      background:rgba(255,255,255,0.04);
      transition: transform 180ms var(--easeSoft), filter 180ms var(--easeSoft), border 180ms var(--easeSoft), box-shadow 180ms var(--easeSoft);
      will-change: transform;
      position:relative;
      overflow:hidden;
    }
    .social-icon::after{
      content:"";
      position:absolute;
      inset:-2px;
      background: radial-gradient(260px 160px at 20% 10%, rgba(255,255,255,0.22), transparent 55%);
      opacity:0;
      transition: opacity 180ms var(--easeSoft);
      pointer-events:none;
    }
    .social-icon:hover{
      transform: translateY(-3px) scale(1.03);
      border:1px solid rgba(255,255,255,0.16);
      box-shadow: 0 18px 55px rgba(0,0,0,0.35);
    }
    .social-icon:hover::after{ opacity:1; }

    .social-icon svg{ width:20px; height:20px; fill:#0B0F14; position:relative; z-index:1; }
    .social-icon.fb{ background:#1877F2; }
    .social-icon.yt{ background:#FF0000; }
    .social-icon.tt{ background:#111111; border:1px solid rgba(255,255,255,0.12); }
    .social-icon.tt svg{ fill:#EAEAEA; }

    /* ✅ PRO CONTACT LINES (Phone + Email) */
    .contact-lines{
      margin-top:16px;
      display:grid;
      gap:10px;
    }
    .contact-line{
      display:flex;
      align-items:center;
      gap:12px;
      padding:12px 14px;
      border-radius:14px;
      text-decoration:none;
      color:rgba(234,234,234,0.92);
      background:rgba(255,255,255,0.04);
      border:1px solid rgba(255,255,255,0.10);
      transition: transform 180ms var(--easeSoft),
                  background 180ms var(--easeSoft),
                  border 180ms var(--easeSoft),
                  box-shadow 180ms var(--easeSoft);
    }
    .contact-line:hover{
      transform: translateY(-2px);
      background:rgba(255,255,255,0.06);
      border:1px solid rgba(201,162,77,0.22);
      box-shadow: 0 16px 44px rgba(0,0,0,0.35);
    }
    .contact-icon{
      width:40px;
      height:40px;
      border-radius:12px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:rgba(255,255,255,0.08);
      border:1px solid rgba(255,255,255,0.10);
      flex:0 0 40px;
    }
    .contact-icon svg{
      width:18px;
      height:18px;
      fill:#0B0F14;
    }
    .contact-icon.phone{
      background:#1DB954;
      border:1px solid rgba(29,185,84,0.35);
    }
    .contact-icon.mail{
      background:#EA4335;
      border:1px solid rgba(234,67,53,0.35);
    }
    .contact-text{
      font-size:14px;
      letter-spacing:0.2px;
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
    }

    /* responsive */
    @media (max-width: 1060px){
      .grid-3{ grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 980px){
      .hero-grid{ grid-template-columns: 1fr; }
      .hero-title{ font-size:44px; }
      .gallery{ grid-template-columns: 1fr 1fr; }
      .socials{ border-left:none; padding-left:0; }
    }
    @media (max-width: 760px){
      .section-head{ flex-direction:column; align-items:flex-start; }
    }
    @media (max-width: 640px){
      nav{ height:72px; }
      .nav-inner{ flex-direction:row; gap:10px; }
      .nav-right{ justify-content:flex-end; }
      .nav-links{ display:none; }
      .socials{ display:none; }
      .burger{ display:inline-flex; }
      #home{ padding:120px 0 60px; }
      .hero-title{ font-size:36px; }
      .grid-2{ grid-template-columns: 1fr; }
      .grid-3{ grid-template-columns: 1fr; }
      .gallery{ grid-template-columns: 1fr; }
      .contact-text{ font-size:13px; }
    }

    /* Floating Contact Button */
.contact-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.2px;
  border: 1px solid rgba(201,162,77,0.22);
  background: rgba(201,162,77,0.12);
  color: rgba(234,234,234,0.95);
  z-index: 99999;
  box-shadow: 0 18px 55px rgba(0,0,0,0.35);
  transition: transform 180ms var(--easeSoft), background 180ms var(--easeSoft);
}

.contact-float:hover{
  transform: translateY(-2px) scale(1.03);
  background: rgba(201,162,77,0.18);
}


/* Back to Top Button */
.to-top{
  position: fixed;
  left: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(234,234,234,0.95);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  z-index: 99999;

  opacity: 0;
  transform: translateY(10px) scale(0.98);
  pointer-events: none;

  transition: opacity 180ms var(--easeSoft), transform 180ms var(--easeSoft), background 180ms var(--easeSoft);
}

.to-top.show{
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.to-top:hover{
  background: rgba(255,255,255,0.09);
  transform: translateY(-2px) scale(1.03);
}
