<style>
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --black: #0d0d0d;
    --dark: #111111;
    --card: #1a1a1a;
    --gold: #f5a623;
    --gold-dark: #d4901e;
    --white: #ffffff;
    --gray: #888888;
    --light-gray: #cccccc;
    --border: rgba(255,255,255,0.07);
    --teal: #3a8a7e;
    --nav-height: 72px;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
  }

  /* ================================
     NAV
  ================================ */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    height: var(--nav-height);
    background: rgba(13,13,13,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
  }

  .logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 1px;
    color: var(--white);
    text-decoration: none;
    flex-shrink: 0;
  }
  .logo span { color: var(--gold); }

  /* Desktop nav links */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
  }

  .nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }

  .btn-hire {
    background: var(--gold);
    color: var(--black);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
  }
  .btn-hire:hover { background: var(--gold-dark); transform: translateY(-1px); }

  /* Hamburger button — hidden on desktop */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.2s;
    flex-shrink: 0;
  }
  .nav-hamburger:hover { border-color: rgba(255,255,255,0.35); }
  .nav-hamburger span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
  }

  /* Hamburger → X animation */
  .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* Mobile drawer */
  .mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    z-index: 190;
    background: rgba(13,13,13,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    transform: translateY(-8px);
    opacity: 0;
    transition: transform 0.28s cubic-bezier(0.4,0,0.2,1), opacity 0.28s ease;
    pointer-events: none;
  }
  .mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
  }
  .mobile-menu ul li a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 8px;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s, padding-left 0.2s;
  }
  .mobile-menu ul li:last-child a { border-bottom: none; }
  .mobile-menu ul li a:hover { color: var(--gold); padding-left: 14px; }
  .mobile-menu .btn-hire-mobile {
    display: block;
    background: var(--gold);
    color: var(--black);
    font-weight: 700;
    font-size: 16px;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s;
    margin-top: 8px;
  }
  .mobile-menu .btn-hire-mobile:hover { background: var(--gold-dark); }

  /* Overlay behind mobile menu */
  .mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    top: var(--nav-height);
    background: rgba(0,0,0,0.5);
    z-index: 185;
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
  }
  .mobile-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }

  /* ================================
     HERO
  ================================ */
  #hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 60px 80px;
    gap: 40px;
  }

  .hero-left { max-width: 600px; }

  .available-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 99px;
    padding: 7px 16px;
    font-size: 13px;
    color: var(--light-gray);
    margin-bottom: 32px;
  }
  .available-badge .dot {
    width: 8px; height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  .hero-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 8vw, 100px);
    line-height: 0.95;
    letter-spacing: 1px;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s 0.1s forwards;
  }

  .hero-title {
    color: var(--gold);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s 0.25s forwards;
  }

  .hero-desc {
    color: var(--light-gray);
    font-size: 16px;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s 0.4s forwards;
  }

  .hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s 0.55s forwards;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--black);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }
  .btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.2);
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s;
  }
  .btn-secondary:hover { border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }

  .hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
    flex-wrap: wrap;
  }

  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: var(--white);
    line-height: 1;
  }
  .stat-num span { color: var(--gold); }

  .stat-label {
    font-size: 13px;
    color: var(--gray);
    margin-top: 4px;
    letter-spacing: 0.5px;
  }

  /* ================================
     HERO RIGHT — SLIDER
  ================================ */
  .hero-right {
    position: relative;
    height: 600px;
    opacity: 0;
    animation: fadeIn 1s 0.6s forwards;
  }

  .slider-wrap { position: absolute; inset: 0; }

  .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
  }
  .slide.active { opacity: 1; pointer-events: auto; }

  .slide-main {
    position: absolute;
    width: 260px; height: 340px;
    top: 80px; left: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    z-index: 2;
  }
  .slide-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .slide-main.teal-bg {
    background: var(--teal);
    display: flex; align-items: center; justify-content: center;
  }
  .slide-main.teal-bg img {
    width: 65%; height: auto; object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.4));
  }

  .slide-tr {
    position: absolute;
    width: 260px; height: 200px;
    top: 20px; right: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    z-index: 1;
  }
  .slide-tr img { width: 100%; height: 100%; object-fit: cover; display: block; }

  .slide-br {
    position: absolute;
    width: 200px; height: 200px;
    bottom: 20px; right: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    z-index: 3;
  }
  .slide-br img { width: 100%; height: 100%; object-fit: cover; display: block; }

  .img-card-label {
    position: absolute;
    bottom: 12px; left: 12px;
    background: rgba(0,0,0,0.75);
    color: var(--white);
    font-size: 12px; font-weight: 600;
    padding: 5px 12px;
    border-radius: 4px;
    letter-spacing: 0.5px;
  }

  .dots {
    position: absolute;
    top: 48px; left: 160px;
    display: flex;
    gap: 8px;
    z-index: 10;
  }
  .dot-item {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.35;
    cursor: pointer;
    border: none; padding: 0;
    transition: opacity 0.3s, transform 0.3s;
  }
  .dot-item.active { opacity: 1; transform: scale(1.2); }

  .scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .scroll-arrow {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--gray), transparent);
    animation: scrollDrop 1.5s infinite;
  }
  @keyframes scrollDrop {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
    100% { opacity: 0; }
  }

  /* Hero portrait watermark */
  .hero-portrait {
    position: absolute;
    right: -40px;
    top: 0;
    bottom: 0;
    width: 55%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
  }
  .hero-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 0.13;
    filter: grayscale(100%) contrast(1.2);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 25%, rgba(0,0,0,0.85) 55%, rgba(0,0,0,0.85) 80%, transparent 100%),
                linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 25%, rgba(0,0,0,0.85) 55%, rgba(0,0,0,0.85) 80%, transparent 100%),
                linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
  }
  .hero-left { position: relative; z-index: 1; }

  @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeIn { to { opacity: 1; } }

  /* ================================
     SECTION SHARED
  ================================ */
  section {
    position: relative;
    z-index: 1;
    padding: 100px 60px;
  }

  .section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 12px; font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1;
    margin-bottom: 16px;
  }

  .section-sub {
    color: var(--light-gray);
    font-size: 16px; font-weight: 300;
    max-width: 520px;
    line-height: 1.7;
  }

  /* ================================
     ABOUT
  ================================ */
  #about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    border-top: 1px solid var(--border);
  }

  .about-image-wrap { position: relative; }

  .about-img-main {
    width: 100%; height: 500px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
  }

  .about-accent {
    position: absolute;
    bottom: -20px; right: -20px;
    width: 160px; height: 160px;
    background: var(--gold);
    border-radius: 12px;
    z-index: -1;
  }

  .about-exp-badge {
    position: absolute;
    top: 24px; right: -24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 24px;
    text-align: center;
  }

  .about-exp-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px; color: var(--gold); line-height: 1;
  }

  .about-exp-label { font-size: 12px; color: var(--gray); margin-top: 4px; }

  .about-right p {
    color: var(--light-gray);
    font-size: 15px; line-height: 1.8; font-weight: 300;
    margin-bottom: 20px;
  }

  .about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }

  .tag {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--light-gray);
    font-size: 13px;
    padding: 7px 16px;
    border-radius: 99px;
    transition: border-color 0.2s, color 0.2s;
  }
  .tag:hover { border-color: var(--gold); color: var(--gold); }

  /* ================================
     WORK
  ================================ */
  #work { border-top: 1px solid var(--border); }

  .work-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
  }

  .work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .work-card {
    background: var(--card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s, border-color 0.3s;
    cursor: pointer;
  }
  .work-card:hover { transform: translateY(-6px); border-color: rgba(245,166,35,0.3); }

  .work-card-img-wrap { overflow: hidden; position: relative; }

  .work-card-img {
    width: 100%; height: 220px;
    object-fit: cover; display: block;
    transition: transform 0.4s;
  }
  .work-card:hover .work-card-img { transform: scale(1.04); }

  .work-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s;
  }
  .work-card:hover .work-card-overlay { background: rgba(0,0,0,0.45); }

  .work-card-overlay-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.3s, transform 0.3s;
    color: var(--black);
    font-size: 20px;
  }
  .work-card:hover .work-card-overlay-icon { opacity: 1; transform: scale(1); }

  .work-card-body { padding: 20px 24px; }

  .work-card-cat {
    font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 8px;
  }

  .work-card-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--white); }
  .work-card-desc { font-size: 13px; color: var(--gray); line-height: 1.6; }

  /* ================================
     SKILLS
  ================================ */
  #skills {
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .skill-bars { margin-top: 40px; display: flex; flex-direction: column; gap: 28px; }
  .skill-meta { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 14px; }
  .skill-name { font-weight: 500; }
  .skill-pct { color: var(--gold); font-weight: 700; }
  .skill-track { background: var(--card); border-radius: 99px; height: 6px; overflow: hidden; }
  .skill-fill {
    height: 100%; border-radius: 99px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    width: 0;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .tools-grid { margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

  .tool-card { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 20px 8px; text-align: center; transition: border-color 0.2s, transform 0.2s; }
  .tool-card:hover { border-color: rgba(245,166,35,0.4); transform: translateY(-3px); }
  .tool-icon { display: flex; align-items: center; justify-content: center; height: 40px; margin-bottom: 10px; }
  .tool-icon svg { display: block; border-radius: 6px; overflow: hidden; }
  .tool-name { font-size: 12px; font-weight: 600; color: var(--light-gray); }

  /* ================================
     CONTACT
  ================================ */
  #contact {
    border-top: 1px solid var(--border);
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(245,166,35,0.04));
  }

  .contact-inner { max-width: 600px; margin: 0 auto; }
  .contact-inner .section-sub { margin: 0 auto 48px; }
  .contact-form { display: flex; flex-direction: column; gap: 16px; text-align: left; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 8px; }
  .form-group label { font-size: 13px; font-weight: 500; color: var(--light-gray); }

  .form-group input,
  .form-group textarea,
  .form-group select {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    transition: border-color 0.2s;
    outline: none; resize: none;
    -webkit-appearance: none;
    appearance: none;
  }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus { border-color: var(--gold); }
  .form-group select option { background: var(--dark); }

  .btn-submit {
    background: var(--gold);
    color: var(--black);
    font-weight: 700; font-size: 15px;
    padding: 14px 40px;
    border-radius: 6px; border: none;
    cursor: pointer; width: 100%;
    margin-top: 8px;
    transition: background 0.2s, transform 0.2s;
    font-family: 'DM Sans', sans-serif;
  }
  .btn-submit:hover { background: var(--gold-dark); transform: translateY(-2px); }

  .contact-links { display: flex; justify-content: center; gap: 20px; margin-top: 48px; flex-wrap: wrap; }

  .contact-link {
    display: flex; align-items: center; gap: 8px;
    color: var(--gray); text-decoration: none; font-size: 14px;
    transition: color 0.2s;
  }
  .contact-link:hover { color: var(--gold); }

  /* ================================
     FOOTER
  ================================ */
  footer {
    position: relative; z-index: 1;
    padding: 30px 60px;
    border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
    color: var(--gray); font-size: 13px;
  }

  /* ================================
     LIGHTBOX
  ================================ */
  .lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .lightbox-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }

  .lightbox-box {
    position: relative;
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
    max-width: 860px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transform: scale(0.93) translateY(16px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 88vh;
    margin: auto;
  }
  .lightbox-overlay.open .lightbox-box {
    transform: scale(1) translateY(0);
  }

  .lightbox-img-wrap {
    position: relative;
    overflow: hidden;
    min-height: 380px;
  }
  .lightbox-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
  }
  .lightbox-cat-badge {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--gold);
    color: var(--black);
    font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 5px 12px; border-radius: 4px;
  }

  .lightbox-content {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
  }

  .lightbox-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
    z-index: 10;
  }
  .lightbox-close:hover { background: rgba(255,255,255,0.15); }

  .lightbox-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px; line-height: 1;
    margin-bottom: 14px;
  }

  .lightbox-desc {
    color: var(--light-gray);
    font-size: 14px; line-height: 1.8; font-weight: 300;
    margin-bottom: 22px;
  }

  .lightbox-meta {
    display: flex; flex-direction: column; gap: 8px;
    margin-bottom: 22px;
    padding: 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border: 1px solid var(--border);
  }

  .lightbox-meta-row {
    display: flex; gap: 12px; align-items: baseline;
    font-size: 13px;
  }
  .lightbox-meta-label { color: var(--gray); min-width: 52px; font-size: 12px; }
  .lightbox-meta-value { color: var(--light-gray); font-weight: 500; }

  .lightbox-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 28px; }

  .lightbox-tag {
    background: rgba(245,166,35,0.1);
    border: 1px solid rgba(245,166,35,0.25);
    color: var(--gold);
    font-size: 11px; font-weight: 600;
    padding: 4px 10px; border-radius: 99px;
  }

  .lightbox-nav { display: flex; gap: 10px; }

  .lightbox-nav-btn {
    flex: 1;
    padding: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--light-gray);
    font-size: 13px; font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    font-family: 'DM Sans', sans-serif;
  }
  .lightbox-nav-btn:hover:not(:disabled) { background: var(--gold); border-color: var(--gold); color: var(--black); }
  .lightbox-nav-btn:disabled { opacity: 0.25; cursor: default; }

  /* ================================
     MOBILE STYLES
  ================================ */
  @media (max-width: 900px) {
    :root { --nav-height: 64px; }
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .mobile-menu { display: block; }
    .mobile-overlay { display: block; }
    #hero { grid-template-columns: 1fr; padding: 100px 24px 60px; min-height: auto; padding-bottom: 70px; }
    .hero-left { max-width: 100%; }
    .hero-right { display: none; }
    .hero-name { font-size: clamp(56px, 14vw, 80px); }
    .hero-stats { gap: 28px; }
    .hero-btns { flex-direction: column; gap: 12px; }
    .btn-primary, .btn-secondary { justify-content: center; }
    .scroll-hint { display: none; }
    #about { grid-template-columns: 1fr; gap: 40px; padding: 70px 24px; }
    .about-image-wrap { margin-bottom: 20px; }
    .about-img-main { height: 300px; }
    .about-accent { display: none; }
    .about-exp-badge { display: none; }
    #work { padding: 70px 24px; }
    .work-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 36px; }
    .work-grid { grid-template-columns: 1fr; gap: 20px; }
    .work-card-img { height: 200px; }
    #skills { grid-template-columns: 1fr; gap: 48px; padding: 70px 24px; }
    .tools-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .tool-card { padding: 14px 4px; }
    .tool-icon { height: 34px; margin-bottom: 6px; }
    .tool-name { font-size: 10px; }
    #contact { padding: 70px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-links { flex-direction: column; align-items: center; gap: 12px; }
    footer { padding: 24px; flex-direction: column; gap: 8px; text-align: center; }
    .lightbox-overlay { padding: 0; align-items: flex-end; }
    .lightbox-box { grid-template-columns: 1fr; border-radius: 16px 16px 0 0; max-height: 92vh; transform: translateY(40px) scale(0.98); width: 100%; overflow-y: auto; }
    .lightbox-overlay.open .lightbox-box { transform: translateY(0) scale(1); }
    .lightbox-img-wrap { min-height: 220px; max-height: 260px; }
    .lightbox-content { padding: 28px 24px 32px; overflow-y: visible; }
    .lightbox-title { font-size: 28px; }
    .lightbox-close { top: 12px; right: 12px; background: rgba(0,0,0,0.7); }
    .lightbox-nav-btn { padding: 12px 8px; font-size: 13px; }
  }
  @media (max-width: 480px) {
    .tools-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-name { font-size: clamp(50px, 13vw, 72px); }
  }
</style>