:root {
  --bg: #fafafa;
  --text: #1a1a1a;
  --muted: #666666;
  --accent: #1a1a1a;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Work Sans", system-ui, -apple-system, sans-serif;
  line-height: 1.5;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px 32px 60px;
  position: relative;
  overflow: hidden;
}

.site-header {
  display: flex;
  align-items: flex-start;
}

.made-by {
  font-size: 14px;
  color: var(--muted);
}

.hero {
  margin-top: 80px;
  margin-bottom: 100px;
}

.hero h1 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 70px;
  font-weight: 500;
  margin: 0 0 28px 0;
  color: var(--text);
  letter-spacing: -0.5px;
}

.divider {
  color: #bdbdbd;
  font-size: 18px;
  letter-spacing: 6px;
}

.projects {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 120px;
}

.project {
  padding: 28px 0;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.project:hover {
  transform: translateY(-4px);
}

.project-number {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 10px;
}

.project-title {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: var(--text);
}

.project-title--acai {
  font-family: "Cherry Bomb One", "Playfair Display", Georgia, serif;
  font-weight: 400;
  color: #6b2d5c;
  letter-spacing: 0.2px;
}

.project-icon {
  width: 50px;
  height: 40px;
  margin: 6px 0 10px 0;
  opacity: 1;
}

.project-icon svg {
  width: 100%;
  height: 100%;
}

.project-icon path,
.project-icon circle {
  fill: none;
  stroke: #cfcfcf;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-icon--acai .toucan-fill {
  opacity: 0.45;
}

.project-icon--acai {
  width: 50px;
  height: 40px;
  margin-bottom: 6px;
}

.project-icon--acai .acai-bird path,
.project-icon--acai .acai-bird circle {
  fill: none;
  stroke: #6b2d5c;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-icon--acai .acai-bird .eye {
  fill: #6b2d5c;
  stroke: none;
}

.project-icon--trails path {
  stroke: #16a34a;
}

.project-icon--where path,
.project-icon--where circle {
  stroke: #33ff33;
}

.project-title--sometrails {
  font-family: "Montserrat", "Work Sans", system-ui, sans-serif;
  font-weight: 800;
  color: #1f2937;
  letter-spacing: -0.02em;
}

.project-title--where {
  font-family: "IBM Plex Mono", "Work Sans", system-ui, sans-serif;
  font-weight: 700;
  color: #33ff33;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow:
    0 0 6px rgba(51, 255, 51, 0.45),
    0 0 14px rgba(51, 255, 51, 0.3),
    0 0 26px rgba(51, 255, 51, 0.2);
}

.logo-highlight {
  color: #16a34a;
}

.decor {
  position: absolute;
  pointer-events: none;
  opacity: 0.14;
}

.shape {
  display: block;
  position: absolute;
  border: 1.5px solid #e5e5e5;
}

.circle {
  border-radius: 50%;
}

.decor--top-right {
  top: 24px;
  right: 18px;
  width: 140px;
  height: 110px;
}

.decor--top-right .c1 {
  width: 36px;
  height: 36px;
  top: 6px;
  right: 6px;
}

.decor--top-right .c2 {
  width: 24px;
  height: 24px;
  top: 48px;
  right: 42px;
}

.decor--top-right .c3 {
  width: 18px;
  height: 18px;
  top: 16px;
  right: 64px;
}

.decor--hero-arc {
  top: 190px;
  left: 10px;
}

.decor--hero-arc .arc {
  width: 120px;
  height: 60px;
}

.decor--hero-arc path {
  fill: none;
  stroke: #e5e5e5;
  stroke-width: 2;
}

.decor--mid-circle {
  top: 720px;
  right: 120px;
}

.decor--mid-circle .c4 {
  width: 28px;
  height: 28px;
  border-width: 1.5px;
}

.decor--bottom-left {
  bottom: 40px;
  left: 10px;
  width: 120px;
  height: 120px;
}

.decor--bottom-left .square {
  width: 36px;
  height: 36px;
  top: 12px;
  left: 12px;
}

.decor--bottom-left .triangle {
  width: 60px;
  height: 60px;
  position: absolute;
  bottom: 6px;
  left: 28px;
}

.decor--bottom-left .triangle path {
  fill: none;
  stroke: #e5e5e5;
  stroke-width: 2;
}

.project-desc {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 16px 0;
  max-width: 720px;
}

.project-link {
  font-size: 16px;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: border-color 180ms ease, color 180ms ease;
}

.project-link:hover {
  border-color: transparent;
  color: var(--accent);
}

.project-link--disabled {
  border-bottom: none;
  color: var(--muted);
}

.site-footer {
  margin-top: auto;
}

.footer-hint {
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 54px;
  }
}

@media (max-width: 768px) {
  .page {
    padding: 32px 20px 48px;
  }

  .hero {
    margin-top: 60px;
    margin-bottom: 80px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .project-title {
    font-size: 28px;
  }

  .project-desc {
    font-size: 16px;
  }

  .decor--hero-arc,
  .decor--mid-circle,
  .decor--bottom-left {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 34px;
  }
}
