@font-face {
  font-family: sans-pro;
  src: url(/fonts/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.ttf);
}

:root {
  --bg: #1c1c1c;
  --text: #f3f3f3;
  --muted: #9a9a9a;
  --accent: #b18969;
  --border: #2a2a2a;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: sans-pro;
  line-height: 1.65;
}

/* LAYOUT */
.wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

section {
  padding: 4rem 0;
}

/* DIVIDER */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* HERO */
.hero-split {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero-image {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent);
  flex-shrink: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  flex: 1;
}

/* TYPOGRAPHY */
h1 {
  font-size: 3.5rem; /* ~56px */
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

h2 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

p {
  font-size: 1.4rem;
  margin-bottom: 1.6rem;
}

.subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
}

.intro {
  color: #e6e6e6;
}

/* LINKS */
.hero-links {
  display: flex;
  gap: 0.6rem;
  font-size: 1rem;
  margin-top: 2.5rem;
}

.hero-links a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

/* LISTS */
ul {
  list-style: none;
  margin-top: 2rem;
}

ul li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.9rem;
  color: var(--muted);
}

ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.15rem;
  font-size: 0.75rem;
  color: var(--accent);
}

.btn-primary {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  background: rgba(177, 137, 105, 0.15);
  color: var(--accent);
  border-radius: 999px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background: rgba(177, 137, 105, 0.25);
  transform: translateY(-1px);
}

/* CONTACT ACTIONS */
.contact-actions {
  display: flex;

  gap: 2rem;
  margin: 2.5rem 0;
}

.contact-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 3.5rem 3rem;
}

.contact-actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  font-size: 1rem;
  transition: all 0.25s ease;
}

.contact-actions a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.contact-actions i {
  margin-right: 0.4rem;
  color: var(--accent);
}

/* SOCIALS */
.socials {
  display: flex;
  gap: 1.8rem;
  margin-top: 4rem;
}

.socials a {
  font-size: 1.5rem;
  color: var(--muted);
}

.socials a:hover {
  color: var(--accent);
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-split {
    flex-direction: column;
    text-align: center;
  }

  .hero-links,
  .contact-actions,
  .socials {
    justify-content: center;
  }

  h1 {
    font-size: 3rem;
  }

  .contact-card {
    padding: 2.5rem 1.8rem;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .contact-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-actions {
    width: fit-content;
  }
}
