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

/* ===== Palette =====
  Background : #FAF8F5
  Text       : #1F1B16
  Muted text : #6B6459
  Accent     : #B5533C
  Border     : #E4DED4
*/

html {
  scroll-behavior: smooth;
}

body {
  background: #faf8f5;
  color: #1f1b16;
  font-family: "Geist", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 620px;
  margin: 0 auto;
  padding: 100px 24px 60px;
}

/* ===== Hero ===== */
.hero {
  margin-bottom: 110px;
}

.name {
  font-family: "Geist", sans-serif;
  font-weight: 700;
  letter-spacing: -0.05em;
  font-size: clamp(3rem, 7vw, 4.5rem);
  color: #1f1b16;
}

.role {
  font-size: 1.05rem;
  color: #6b6459;
  margin-top: 8px;
  font-weight: 400;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #e4ded4;
  color: #1f1b16;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.icon-btn svg {
  width: 18px;
  height: 18px;
}

.icon-btn:hover {
  border-color: #b5533c;
  color: #b5533c;
  transform: translateY(-2px);
}

.cv-btn {
  display: inline-block;
  margin-top: 28px;
  padding: 11px 22px;
  border-radius: 999px;
  background: #1f1b16;
  color: #faf8f5;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.cv-btn:hover {
  background: #b5533c;
  transform: translateY(-2px);
}

/* ===== Sections ===== */
.section {
  margin-bottom: 84px;
}

.section-title {
  font-family: "Geist", sans-serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #1f1b16;
}

.about-text {
  color: #3a342c;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 60ch;
}

/* ===== Skills ===== */
.skills-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skills-list li {
  padding: 8px 18px;
  border: 1px solid #e4ded4;
  border-radius: 999px;
  font-size: 0.92rem;
  color: #3a342c;
  background: #ffffff;
}

/* ===== Experience ===== */
.exp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.exp-item {
  padding: 20px 0;
  border-bottom: 1px solid #e4ded4;
}

.exp-item:first-child {
  padding-top: 0;
}

.exp-item:last-child {
  border-bottom: none;
}

.exp-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.exp-role {
  font-weight: 600;
  font-size: 1.02rem;
  color: #1f1b16;
}

.exp-period {
  font-size: 0.88rem;
  color: #6b6459;
  white-space: nowrap;
}

.exp-company {
  display: block;
  margin-top: 4px;
  color: #6b6459;
  font-size: 0.95rem;
}

/* ===== Footer ===== */
.footer {
  margin-top: 40px;
  color: #6b6459;
  font-size: 0.85rem;
}

/* ===== Responsive ===== */
@media (max-width: 480px) {
  .wrap {
    padding: 64px 20px 40px;
  }

  .hero {
    margin-bottom: 64px;
  }

  .section {
    margin-bottom: 56px;
  }

  .exp-top {
    flex-direction: column;
    gap: 2px;
  }
}
