  @font-face {
    font-family: Raleway;
    src: url(../fonts/Raleway/Raleway-Light.ttf);
    font-weight: 300;
    font-style: normal
  }
  @font-face {
    font-family: Raleway;
    src: url(../fonts/Raleway/Raleway-Regular.ttf);
    font-weight: 400;
    font-style: normal
  }
  @font-face {
    font-family: Raleway;
    src: url(../fonts/Raleway/Raleway-Medium.ttf);
    font-weight: 500;
    font-style: normal
  }
  @font-face {
    font-family: Raleway;
    src: url(../fonts/Raleway/Raleway-Bold.ttf);
    font-weight: 700;
    font-style: normal
  }

  :root {
    --bg: #0e0e0e;
    --bg2: #141414;
    --bg3: #1a1a1a;
    --border: #2a2a2a;
    --text: #e8e4dc;
    --muted: #6b6660;
    --accent: #c8a96e;
    --accent2: #7c9e87;
    --tag-bg: #1e1e1e;
    --selection: #fc6;
  }

  ::-moz-selection { background: var(--selection); color: var(--bg); }
  ::selection { background: var(--selection); color: var(--bg); }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: Raleway, "Source Sans Pro", Helvetica, Arial, sans-serif;
    font-weight: 300;
    line-height: 1.5;
    font-size: 1rem;
  }

  /* Scroll to top button */
  #top-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--bg2);
    border: 1px solid var(--border);
    color: var(--accent);
    width: 45px;
    height: 45px;
    border-radius: 4px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
    font-family: 'IBM Plex Mono', monospace;
  }

  #top-button:hover {
    background: var(--bg3);
    border-color: var(--accent);
    transform: translateY(-5px);
  }

  #top-button::after {
    content: '↑';
    font-size: 20px;
  }

  a { color: var(--accent); text-decoration: none; }
  a:hover { text-decoration: underline; }

  ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  /* LAYOUT */
  .site {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4rem;
  }

  /* NAV */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(14,14,14,0.92);
    backdrop-filter: blur(8px);
    padding: 1.5rem 0;
  }
  nav .inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  nav ul a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  nav ul a:hover { color: var(--text); text-decoration: none; }

  /* INTRODUCTION */
  .introduction {
    padding: 10rem 0 7rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 80vh;
  }
  .introduction__label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }
  .introduction__title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
  }
  .introduction__title em {
    font-style: italic;
    color: var(--accent);
  }
  .introduction__description {
    max-width: 600px;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 3rem;
  }
  .introduction__contact {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    color: var(--text);
  }

  .highlight-link {
    transition: all 0.2s ease-in-out;
    color: var(--accent) !important;
    text-decoration: none;
    display: inline-block;
    padding: 2px 4px;
    box-shadow: inset 0 -3px 0 var(--accent);
    font-weight: 500;
  }
  .highlight-link:hover {
    box-shadow: inset 0 -33px 0 0 var(--accent);
    color: var(--bg) !important;
  }




  /* SECTIONS */
  .section {
    display: flex;
    padding: 6rem 0;
  }
  @media (max-width: 768px) {
    .section {
      display: block;
    }
  }

  .section__title {
    flex-shrink: 0;
    width: 250px;
    margin-right: 50px;
    color: #ac3232;
    text-transform: uppercase;
    text-align: left;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
    font-family: 'IBM Plex Mono', monospace;
  }
  @media (max-width: 768px) {
    .section__title {
      text-align: left;
      margin-bottom: 2rem;
    }
  }

  .section__content {
    width: 100%;
    max-width: 800px;
  }

  /* SKILLS */
  .skillz {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 3.5rem;
    overflow-x: auto;
  }
  .skillz__category__label {
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
  }
  .skillz__category__item {
    margin: 5px 0;
    font-size: 14px;
    color: var(--muted);
  }

  /* PROJECTS */
  .projects-list { 
    display: flex; 
    flex-direction: column; 
    gap: 2rem;
  }
  .project-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    padding: 2rem;
    transition: all 0.4s cubic-bezier(.694,0,.335,1);
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .project-card:hover { 
    border-color: #3a3a3a; 
    background: var(--bg3);
    transform: translateY(-5px);
  }
  .project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
  }
  .project-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text);
  }
  .project-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent2);
    background: rgba(124,158,135,0.1);
    padding: 0.2rem 0.6rem;
    border: 1px solid rgba(124,158,135,0.2);
  }
  .project-desc { color: #7a7470; font-size: 14px; line-height: 1.6; }
  .project-tech {
    margin-top: 1.25rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  .project-links {
    margin-top: 2rem;
    display: flex;
    gap: 2rem;
  }
  .project-link {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent) !important;
    font-weight: 500;
  }
  .project-link--secondary {
    color: var(--muted) !important;
  }
  .project-link--secondary:hover {
    color: var(--accent2) !important;
  }

  .tech-chip {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--muted);
    background: var(--bg3);
    border: 1px solid var(--border);
    padding: 0.15rem 0.5rem;
  }

  .underline-link {
    position: relative;
    display: inline-block;
    font-weight: 500;
    
  }
  .underline-link:after {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 1px;
    content: '';
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(-5px);
  }
  .underline-link:focus:after,
  .underline-link:hover:after {
    height: 10px;
    border-radius: 3px;
    opacity: 1;
    transform: translateY(-2px);
  }

  .project-title a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
  }
  .project-title a:hover {
    color: var(--accent);
  }

  /* FOOTER */
  footer {
    padding: 6rem 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-info p {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
  }
  .social-links { display: flex; gap: 2rem; }
  .social-links a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
  }
  .social-links a:hover { 
    color: var(--accent); 
    text-decoration: none;
    transform: translateY(-2px);
  }

  @media (max-width: 620px) {
    footer { flex-direction: column; gap: 1.5rem; text-align: center; }
  }
