/* ── HERO ── */
.hero {
  margin-bottom: 3rem;
  text-align: left;
  max-width: 35rem;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero h1 span {
  color: var(--green);
}

.hero p {
  color: var(--muted);
  line-height: 1.75;
  max-width: 38rem;
  margin-bottom: 1.5rem;
}

.hero-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ── TWO COLUMN LAYOUT ── */
.two-col-layout {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.col-left {
  flex: 1;
}

.col-right {
  flex: 1;
}

/* ── ABOUT ── */
.about-section {
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid transparent;
  margin-bottom: 0.5rem;
  transition:
    background 0.3s,
    border-color 0.3s;
}

.about-section:hover {
  background: var(--glass);
  border-color: var(--border);
}

.about-section h2 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 0.85rem;
}

.about-section p,
.about-section li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.about-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.about-section li::before {
  content: "▸ ";
  color: var(--green);
}

dl.info-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 2rem;
}

.info-label {
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.info-value {
  font-size: 0.9rem;
  color: var(--muted);
}

.info-value a {
  color: var(--green);
  text-decoration: none;
}

.info-value a:hover {
  text-decoration: underline;
}

/* ── SKILLS ── */
.about-section ul.skills-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
  list-style: none;
  padding: 0;
}

.skills-row li {
  display: flex;
}

.skills-row li::before {
  content: none;
}

.skill-tag {
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.8rem;
}

.skill-tag.highlight {
  border-color: var(--green);
  color: var(--green);
}

/* ── TABLET ── */
@media (max-width: 1000px) {
  .hero {
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 2rem;
  }

  .two-col-layout {
    flex-direction: column;
  }

  .col-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .col-left .about-section:last-child {
    grid-column: 1 / -1;
  }

  .col-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

/* ── 900px ── */
@media (max-width: 900px) {
  .col-right {
    grid-template-columns: 1fr;
  }

  .col-right .about-section:first-child {
    order: 2;
  }

  .col-right .about-section:last-child {
    order: 1;
  }
}

/* ── MOBILE ── */
@media (max-width: 600px) {
  .hero {
    text-align: left;
  }

  .hero h1 {
    font-size: 1.8rem;
  }
  .hero h1 span {
    display: block;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .two-col-layout {
    flex-direction: column;
    align-items: center;
    max-width: 80vw;
    margin: 0 auto;
  }

  .col-left,
  .col-right {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .about-section {
    text-align: left;
  }

  .about-section p,
  .about-section li {
    font-size: 0.95rem;
  }

  .about-section li::before {
    content: "▸ ";
    color: var(--green);
  }

  .about-section ul.skills-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .skills-row li::before {
    content: none;
  }
  dl.info-grid {
    grid-template-columns: auto 1fr;
    gap: 0.4rem 1rem;
  }

  .col-right .about-section {
    padding-left: 0rem;
  }
  .info-label {
    margin-top: 0.6rem;
    font-size: 0.8rem;
  }
  .info-value {
    font-size: 0.8rem;
  }
  .about-section:hover {
    background: none;
    border-color: transparent;
  }
}
