:root {
  --mint:        #1a2740;   /* hero/footer bg — deep navy */
  --mint-soft:   #2c3a55;   /* dotted dividers, borders */
  --cream:       #0f1830;   /* page bg — darker navy */
  --teal:        #5b8def;   /* primary accent — bright blue */
  --teal-dark:   #3a6fd0;   /* hover */
  --text:        #c0cde0;   /* body text */
  --text-soft:   #7a8aa8;   /* muted */
  --rose:        #e57373;
  --yellow:      #f4d35e;
  --max:         960px;
}

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

html, body { height: 100%; }

body {
  font-family: "Quicksand", system-ui, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: var(--mint);
  padding-bottom: 0;
  overflow: hidden;
}

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

.nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
  font-size: 14px;
}

.nav__links a {
  color: var(--text-soft);
  transition: color .2s;
}
.nav__links a:hover,
.nav__links a.is-active { color: var(--teal); }

.hero__content {
  position: relative;
  text-align: center;
  padding: 40px 16px 60px;
}

.hero__name {
  font-family: "Dancing Script", cursive;
  font-weight: 600;
  font-size: clamp(48px, 8vw, 84px);
  color: var(--teal);
  line-height: 1;
}
.hero__dot { color: var(--teal); }

.hero__role {
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 15px;
}

.cloud {
  position: absolute;
  width: 110px;
  opacity: .9;
}
.cloud--left  { left: 8%;  top: 70%;  transform: scale(.9); }
.cloud--right { right: 10%; top: 12%;  transform: scale(1); }

.hills {
  display: block;
  width: 100%;
  height: 260px;
  margin-top: 10px;
  margin-bottom: -1px; /* prevents hairline gap above About */
}

/* wide screens (2K+): grow proportionally so hill tops aren't cropped */
@media (min-width: 1200px) {
  .hills {
    height: auto;
    aspect-ratio: 1200 / 280;
    max-height: 460px;
  }
}

/* vehicles animate across the road */
.vehicle { will-change: transform; }

.vehicle--car {
  animation: drive-right 14s linear infinite;
}
.vehicle--bike {
  animation: drive-left 10s linear infinite;
}

@keyframes drive-right {
  0%   { transform: translate(-120px, 0); }
  100% { transform: translate(1280px, 0); }
}
@keyframes drive-left {
  0%   { transform: translate(1280px, 0); }
  100% { transform: translate(-80px, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .vehicle--car  { animation: none; transform: translate(180px, 0); }
  .vehicle--bike { animation: none; transform: translate(820px, 0); }
}

/* ---------- AVATAR ---------- */
.avatar {
  display: inline-block;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--mint-soft);
  box-shadow: 0 2px 0 rgba(0,0,0,.2);
  position: relative;
  overflow: hidden;
}
.avatar--sm { width: 44px; height: 44px; }
.avatar--md { width: 76px; height: 76px; }
.avatar--lg { width: 96px; height: 96px; }

.avatar__face {
  position: absolute;
  inset: 0;
  background: #fff url("images/avatar.png") center / cover no-repeat;
}

/* ---------- SECTIONS ---------- */
.section {
  max-width: 620px;
  margin: 0 auto;
  padding: 70px 24px 30px;
  text-align: center;
}

.section--about    { padding-top: 56px; }
.section--skills   { max-width: 760px; }
.section--cta      { padding-bottom: 70px; }

.section__title {
  font-family: "Dancing Script", cursive;
  font-weight: 600;
  color: var(--teal);
  font-size: 32px;
  margin: 18px 0 14px;
}
.section__title--lg { font-size: 40px; margin-bottom: 40px; }

.section__text {
  font-size: 14.5px;
  color: var(--text);
  max-width: 460px;
  margin: 0 auto;
}

.divider {
  margin: 40px auto 0;
  width: 60px;
  height: 6px;
  background-image: radial-gradient(circle, var(--mint-soft) 1.5px, transparent 2px);
  background-size: 10px 6px;
  background-repeat: repeat-x;
}

/* ---------- SKILLS ---------- */
.skill {
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 32px 0;
  text-align: left;
}
.skill--right { flex-direction: row; }
.skill--right .skill__body { text-align: right; }

.skill__art {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.skill__connector {
  width: 30px;
  height: 0;
  border-top: 2px dotted var(--mint-soft);
}

.skill__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--mint-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.skill__image {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.skill__body { flex: 1; }
.skill__title {
  font-family: "Dancing Script", cursive;
  color: var(--teal);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}
.skill__body p { font-size: 14px; }

/* ---------- CTA ---------- */
.cta__lead {
  color: var(--teal);
  font-size: 15px;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 12px 22px;
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  letter-spacing: 1.5px;
  border-radius: 4px;
  transition: background .2s, transform .15s;
}
.btn:hover { background: var(--teal-dark); transform: translateY(-1px); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--mint);
  padding: 32px 20px 24px;
  text-align: center;
  margin-top: 30px;
}
.footer__links {
  display: flex;
  justify-content: center;
  gap: 36px;
  list-style: none;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--text-soft);
}
.footer__links a:hover { color: var(--teal); }
.footer__copy {
  font-size: 11px;
  color: var(--text-soft);
}
.footer__copy a { color: var(--teal); }

/* ---------- COMING SOON ---------- */
.hero--compact {
  padding-bottom: 0;
  border-bottom: 1px solid var(--mint-soft);
}
.hero--compact .nav { padding-bottom: 24px; }

.coming-soon {
  max-width: 520px;
  margin: 0 auto;
  padding: 100px 24px 120px;
  text-align: center;
}
.coming-soon__icon {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  opacity: .9;
}
.coming-soon__title {
  font-family: "Dancing Script", cursive;
  font-weight: 600;
  color: var(--teal);
  font-size: 56px;
  line-height: 1;
  margin-bottom: 12px;
}
.coming-soon__lead {
  color: var(--teal);
  font-size: 16px;
  margin-bottom: 18px;
  letter-spacing: .5px;
}
.coming-soon__text {
  font-size: 14.5px;
  color: var(--text);
  margin-bottom: 36px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .nav { padding: 18px 20px; }
  .nav__links { gap: 20px; font-size: 13px; }

  .hero__content { padding: 28px 16px 40px; }
  .hero__role { font-size: 14px; padding: 0 20px; }

  .cloud--left  { left: 4%;  top: 78%; width: 80px; }
  .cloud--right { right: 4%; top: 10%; width: 80px; }
  .hills { height: 200px; }

  .section { padding: 56px 20px 24px; }
  .section--cta { padding-bottom: 56px; }
  .section__title--lg { font-size: 34px; margin-bottom: 32px; }

  .skill,
  .skill--right { flex-direction: column; text-align: center; gap: 14px; margin: 24px 0; }
  .skill--right .skill__body { text-align: center; }
  .skill__connector { display: none; }
  .skill__body p { font-size: 14px; padding: 0 8px; }

  .coming-soon { padding: 72px 20px 80px; }
  .coming-soon__title { font-size: 46px; }

  .footer__links { gap: 24px; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .nav { padding: 14px 16px; }
  .nav__links { gap: 14px; font-size: 12px; }
  .avatar--sm { width: 38px; height: 38px; }

  .hero__name { font-size: clamp(40px, 12vw, 60px); }
  .hero__role { font-size: 13px; margin-top: 14px; }

  .cloud--left,
  .cloud--right { width: 60px; }
  .hills { height: 160px; }

  /* shorten vehicle distance so they still feel lively on narrow screens */
  @keyframes drive-right { 0% { transform: translate(-110px, 0); } 100% { transform: translate(600px, 0); } }
  @keyframes drive-left  { 0% { transform: translate(600px, 0);  } 100% { transform: translate(-70px, 0); } }

  .section { padding: 48px 18px 20px; }
  .section__title { font-size: 28px; }
  .section__title--lg { font-size: 30px; margin-bottom: 26px; }
  .section__text { font-size: 14px; }

  .avatar--lg { width: 84px; height: 84px; }
  .avatar--md { width: 68px; height: 68px; }

  .btn { font-size: 10px; padding: 11px 18px; letter-spacing: 1.2px; }

  .coming-soon { padding: 56px 18px 64px; }
  .coming-soon__icon { width: 60px; height: 60px; margin-bottom: 18px; }
  .coming-soon__title { font-size: 40px; }
  .coming-soon__lead { font-size: 15px; }

  .footer { padding: 26px 16px 20px; }
  .footer__links { gap: 18px; font-size: 12px; }
}
