
  :root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-pale: #F5E6B8;
    --black: #0A0A0A;
    --deep: #111111;
    --charcoal: #1E1E1E;
    --ivory: #F8F3E8;
    --bronze: #8B6914;
    --cream: #EDE0C4;
    --smoke: #2A2A2A;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--ivory);
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  .cursor {
    position: fixed;
    width: 12px; height: 12px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
  }
  .cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.25s ease;
    opacity: 0.6;
  }

  /* NOISE OVERLAY */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.35;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 28px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-weight: 300;
    font-style: italic;
  }
  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
  }
  .nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { width: 100%; }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 60%);
  }
  .hero-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.12;
  }
  .hero-lines::before, .hero-lines::after {
    content: '';
    position: absolute;
    border: 1px solid var(--gold);
    border-radius: 50%;
  }
  .hero-lines::before {
    width: 600px; height: 600px;
    right: -100px; top: -100px;
    animation: rotate-slow 30s linear infinite;
  }
  .hero-lines::after {
    width: 400px; height: 400px;
    right: 50px; top: 50px;
    animation: rotate-slow 20s linear infinite reverse;
  }

  @keyframes rotate-slow { to { transform: rotate(360deg); } }

  .hero-left {
    padding: 120px 60px 80px 80px;
    position: relative;
    z-index: 2;
  }
  .hero-tag {
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    opacity: 0;
    animation: fade-up 0.8s ease 0.3s forwards;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .hero-tag::before {
    content: '';
    width: 40px; height: 1px;
    background: var(--gold);
  }
  .hero-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 300;
    line-height: 1.0;
    color: var(--ivory);
    opacity: 0;
    animation: fade-up 0.8s ease 0.5s forwards;
    margin-bottom: 8px;
  }
  .hero-name span {
    color: var(--gold);
    font-style: italic;
  }
  .hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 300;
    color: var(--cream);
    opacity: 0;
    animation: fade-up 0.8s ease 0.7s forwards;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
  }
  .hero-desc {
    font-size: 0.8rem;
    line-height: 2;
    color: rgba(248,243,232,0.6);
    max-width: 400px;
    opacity: 0;
    animation: fade-up 0.8s ease 0.9s forwards;
    margin-bottom: 48px;
    letter-spacing: 0.08em;
  }
  .hero-cta {
    opacity: 0;
    animation: fade-up 0.8s ease 1.1s forwards;
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .btn-primary {
    background: var(--gold);
    color: var(--black);
    padding: 14px 36px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--black);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .btn-primary:hover { color: var(--gold); }
  .btn-primary:hover::before { transform: translateX(0); }
  .btn-primary span { position: relative; z-index: 1; }
  .btn-outline {
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
    padding-bottom: 2px;
  }
  .btn-outline:hover { border-color: var(--gold); }

  /* HERO RIGHT - Visual */
  .hero-right {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }
  .hero-frame {
    width: 320px; height: 420px;
    border: 1px solid rgba(201,168,76,0.3);
    position: relative;
    opacity: 0;
    animation: fade-in 1.2s ease 1s forwards;
  }
  .hero-frame::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(201,168,76,0.15);
  }
  .hero-frame-inner {
    position: absolute;
    inset: 24px;
    background: var(--charcoal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .hero-avatar {
    width: 100px; height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--bronze) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 0 40px rgba(201,168,76,0.3);
  }
  .hero-frame-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-align: center;
  }
  .hero-frame-role {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(248,243,232,0.4);
    margin-top: 6px;
    text-align: center;
  }
  .frame-corner {
    position: absolute;
    width: 20px; height: 20px;
    border-color: var(--gold);
    border-style: solid;
    opacity: 0.8;
  }
  .frame-corner.tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
  .frame-corner.tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
  .frame-corner.bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }
  .frame-corner.br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

  /* DIVIDER */
  .divider {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 80px;
    margin: 20px 0;
  }
  .divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.4), transparent);
  }
  .divider-icon {
    color: var(--gold);
    font-size: 1rem;
    opacity: 0.6;
  }

  /* SECTIONS */
  section { padding: 100px 80px; position: relative; }

  .section-label {
    font-size: 0.6rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .section-label::before {
    content: '';
    width: 30px; height: 1px;
    background: var(--gold);
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300;
    color: var(--ivory);
    line-height: 1.1;
    margin-bottom: 60px;
  }
  .section-title em {
    font-style: italic;
    color: var(--gold);
  }

  /* SKILLS */
  .skills-section { background: var(--deep); }
  .skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    max-width: 900px;
  }
  .skill-card {
    background: var(--charcoal);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, background 0.3s ease;
  }
  .skill-card.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .skill-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(to right, var(--gold), var(--bronze));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .skill-card:hover { background: var(--smoke); }
  .skill-card:hover::before { transform: scaleX(1); }
  .skill-icon {
    font-size: 1.8rem;
    margin-bottom: 16px;
    display: block;
  }
  .skill-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 400;
  }
  .skill-desc {
    font-size: 0.7rem;
    color: rgba(248,243,232,0.5);
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
  .skill-level {
    margin-top: 20px;
    height: 2px;
    background: rgba(201,168,76,0.15);
    position: relative;
    overflow: hidden;
  }
  .skill-level-fill {
    height: 100%;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s ease 0.3s;
  }
  .skill-card.visible .skill-level-fill {
    transform: scaleX(1);
  }

  /* ABOUT */
  .about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .about-text p {
    font-size: 0.8rem;
    line-height: 2.2;
    color: rgba(248,243,232,0.6);
    margin-bottom: 24px;
    letter-spacing: 0.05em;
  }
  .about-text p strong { color: var(--gold); font-weight: 400; }
  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .stat-box {
    padding: 32px 24px;
    border: 1px solid rgba(201,168,76,0.2);
    position: relative;
    text-align: center;
    transition: border-color 0.3s;
  }
  .stat-box:hover { border-color: rgba(201,168,76,0.5); }
  .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--gold);
    font-weight: 300;
    display: block;
    line-height: 1;
  }
  .stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(248,243,232,0.4);
    margin-top: 8px;
    display: block;
  }

  /* PROJECTS */
  .projects-section { background: var(--deep); }
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }
  .project-card {
    background: var(--charcoal);
    padding: 48px 44px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .project-card.visible { opacity: 1; transform: translateY(0); }
  .project-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
  }
  .project-card:hover::after { opacity: 1; }
  .project-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: rgba(201,168,76,0.1);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 24px;
  }
  .project-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--ivory);
    margin-bottom: 12px;
    font-weight: 400;
  }
  .project-desc {
    font-size: 0.72rem;
    color: rgba(248,243,232,0.5);
    line-height: 1.9;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
  }
  .project-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .tag {
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 5px 12px;
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold);
  }

  /* PROJECT LINK */
  .project-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
  }
  .project-link:hover {
    transform: scale(1.02);
  }
  .project-link-icon {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 1.2rem;
    color: var(--gold);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .project-link:hover .project-link-icon {
    opacity: 1;
    transform: translate(4px, -4px);
  }

  /* CONTACT */
  .contact-section {
    text-align: center;
    padding: 120px 80px;
    position: relative;
    overflow: hidden;
  }
  .contact-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,168,76,0.05) 0%, transparent 70%);
    pointer-events: none;
  }
  .contact-section .section-label { justify-content: center; }
  .contact-section .section-label::before { display: none; }
  .contact-email {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--gold);
    font-style: italic;
    font-weight: 300;
    margin: 40px 0;
    display: block;
    transition: color 0.3s;
  }
  .contact-email:hover { color: var(--gold-light); }
  .social-links {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-top: 48px;
  }
  .social-link {
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(248,243,232,0.4);
    text-decoration: none;
    transition: color 0.3s;
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
  }
  .social-link:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
  }

  /* FOOTER */
  footer {
    padding: 32px 80px;
    border-top: 1px solid rgba(201,168,76,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  footer p {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: rgba(248,243,232,0.25);
    text-transform: uppercase;
  }
  footer span { color: var(--gold); }

  /* SCROLL INDICATOR */
  .scroll-indicator {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 50;
  }
  .scroll-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(201,168,76,0.3);
    cursor: pointer;
    transition: all 0.3s;
  }
  .scroll-dot.active {
    background: var(--gold);
    transform: scale(1.4);
  }

  /* ANIMATIONS */
  @keyframes fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* SCROLLBAR */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: var(--gold); }

  /* GOLD LINE progress */
  .progress-bar {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    background: linear-gradient(to right, var(--bronze), var(--gold), var(--gold-light));
    z-index: 9999;
    transition: width 0.1s ease;
  }

  /* Floating particles */
  .particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
  }
  .particle {
    position: absolute;
    width: 1px; height: 1px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle linear infinite;
  }

  @keyframes float-particle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.2; }
    100% { transform: translateY(-100px) scale(1); opacity: 0; }
  }
