:root {
  --blue: #0259DE;
  --blue-light: #84B0FB;
  --orange: #FF6647;
  --text-gray: #55606D;
  --border-light: #E7ECF3;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: #1A1A1A;
  background: #FFFFFF;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---------- Navbar ---------- */

.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--blue);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--blue);
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 0.7;
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
  }
}

.btn-get-in-touch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 155px;
  height: 40px;
  background: var(--blue-light);
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 18px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(132, 176, 251, 0.45);
  transition: background 0.2s ease;
  cursor: pointer;
}

.btn-get-in-touch:hover {
  background: var(--blue);
}

/* ---------- Hero ---------- */

.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 40px 100px;
}

.hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

.meta-item {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--blue-light);
}

.meta-divider {
  width: 40px;
  height: 1px;
  background: var(--border-light);
}

.pill {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--orange);
  background: #FFF5F3;
  border: 1px solid var(--orange);
  border-radius: 999px;
  padding: 8px 20px;
}

.hero-main {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 176px;
}

.hero-copy {
  max-width: 620px;
}

.hero-name {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 1.1;
  color: var(--blue);
}

.dot-i {
  position: relative;
  display: inline-block;
}

.dot-i::before {
  content: "";
  position: absolute;
  top: -0.0175em;
  left: 50%;
  transform: translateX(-50%);
  width: 0.192em;
  height: 0.192em;
  border-radius: 50%;
  background: var(--orange);
}

.hero-location {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  color: var(--blue-light);
  margin-top: 20px;
}

.hero-description {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-gray);
  margin-top: 28px;
}

.hero-description strong {
  font-weight: 700;
  color: #1A1A1A;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
}

.btn-view-work-frame {
  position: relative;
  display: inline-block;
  padding: 10px;
}

.btn-view-work-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px dashed var(--orange);
  border-radius: 14px;
  pointer-events: none;
}

.btn-view-work-frame::after {
  content: "+";
  position: absolute;
  top: -9px;
  left: -9px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  color: var(--orange);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
}

.corner-tick {
  position: absolute;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  color: var(--orange);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  pointer-events: none;
}

.corner-tick.tr { top: -9px; right: -9px; }
.corner-tick.bl { bottom: -9px; left: -9px; }
.corner-tick.br { bottom: -9px; right: -9px; }

.btn-view-work {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 32px;
  background: var(--blue);
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 18px;
  border-radius: 10px;
  transition: opacity 0.2s ease;
}

.btn-view-work:hover {
  opacity: 0.9;
}

.btn-download-resume {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--orange);
}

.download-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* ---------- Photo ---------- */

.hero-photo-wrap {
  position: relative;
  flex-shrink: 0;
  width: 308px;
  height: 308px;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.hero-tape {
  position: absolute;
  top: -50px;
  left: 50%;
  width: 100px;
  transform: translateX(-50%);
  pointer-events: none;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .hero-main {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 40px;
  }

  .hero-photo-wrap {
    width: 220px;
    height: 220px;
    align-self: center;
  }

  .hero-name {
    font-size: 48px;
  }
}

@media (max-width: 600px) {
  .nav-inner,
  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-meta {
    gap: 10px;
  }

  .meta-divider {
    display: none;
  }
}
