@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --background: #ffffff;
  --text: #111111;
  --muted: #666666;
  --line: #dddddd;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--text);
  font-family: "Space Grotesk", Arial, sans-serif;
  line-height: 1.6;
}

.site-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 28px 8%;
}

.logo {
  color: var(--text);
  font-family: "DM Mono", monospace;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 28px;
}

nav a,
.email {
  color: var(--text);
  text-decoration: none;
}

nav a {
  font-family: "DM Mono", monospace;
  font-size: 0.8rem;
}

nav a:hover,
.email:hover {
  text-decoration: underline;
}

main {
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 8%;
}

.hero {
  min-height: 78vh;
  padding: 140px 0 100px;
}

.eyebrow,
.section-number {
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.hero h1 {
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.95;
  margin: 28px 0;
}

.hero h1 span {
  font-style: italic;
  font-weight: 400;
}

.intro {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 500px;
}

.button {
  border: 1px solid var(--text);
  color: var(--text);
  display: inline-block;
  font-family: "DM Mono", monospace;
  font-size: 0.8rem;
  margin-top: 35px;
  padding: 12px 20px;
  text-decoration: none;
}

.button:hover {
  background: var(--text);
  color: var(--background);
}

.section {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 2fr;
  padding: 90px 0;
}

.section h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.section > p:not(.section-number) {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 570px;
}

.skills-list {
  display: grid;
  gap: 0;
  grid-column: 2;
  list-style: none;
}

.skills-list li {
  border-bottom: 1px solid var(--line);
  font-size: 1.5rem;
  padding: 16px 0;
}

.contact {
  padding-bottom: 140px;
}

.email {
  font-family: "DM Mono", monospace;
  font-size: 1rem;
  grid-column: 2;
  margin-top: 10px;
}

footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: 0.75rem;
  padding: 25px 8%;
}

@media (max-width: 700px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  nav {
    gap: 18px;
  }

  .hero {
    min-height: auto;
    padding: 100px 0;
  }

  .section {
    display: block;
    padding: 70px 0;
  }

  .section h2 {
    margin: 22px 0;
  }

  .skills-list,
  .email {
    margin-top: 25px;
  }
}