@font-face {
  font-family: Manrope;
  src: url("assets/manrope.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --background: #1b1b1b;
  --surface: #242424;
  --surface-hover: #2b2b2b;
  --border: #404040;
  --text: #f0f0f0;
  --muted: #cbcbcb;
  --subtle: #999999;
  --yellow: #fbd34e;
  font-family: Manrope, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { min-width: 320px; }
body { margin: 0; background: var(--background); color: var(--text); }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--yellow); outline-offset: 4px; }
::selection { background: var(--yellow); color: var(--background); }

.page { min-height: 100svh; display: flex; flex-direction: column; }
.content { width: min(100% - 40px, 520px); margin: 0 auto; padding: 72px 0 72px; }
.profile { text-align: center; }
.profile__photo {
  display: block;
  width: 110px;
  height: 110px;
  margin: 0 auto 28px;
  border-radius: 50%;
  object-fit: cover;
}
.profile h1 { margin: 0; font-size: clamp(27px, 6vw, 35px); font-weight: 700; letter-spacing: -.055em; line-height: 1.15; }
.destinations { display: grid; gap: 12px; margin-top: 38px; }
.destination {
  min-height: 98px;
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.destination:hover { background: var(--surface-hover); border-color: #676767; transform: translateY(-2px); }
.destination__copy { display: grid; gap: 4px; min-width: 0; }
.destination__title { font-size: 18px; font-weight: 700; letter-spacing: -.035em; line-height: 1.25; }
.destination__description { color: var(--muted); font-size: 13px; line-height: 1.5; }
.destination__arrow { width: 22px; height: 22px; color: var(--muted); }

.footer { margin: auto auto 0; width: min(100% - 40px, 520px); text-align: center; padding: 0 0 30px; }
.socials { display: flex; align-items: center; justify-content: center; gap: 12px; }
.socials a {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}
.socials a:hover { color: var(--yellow); border-color: #716232; background: var(--surface); }
.socials svg { width: 19px; height: 19px; }
.footer__copyright { margin: 34px 0 0; color: var(--subtle); font-size: 12px; }

@media (max-width: 600px) {
  .content { padding: 62px 0 64px; }
  .profile__photo { width: 104px; height: 104px; }
  .destinations { margin-top: 34px; }
  .destination { grid-template-columns: 1fr 22px; gap: 10px; padding: 18px 16px; }
}

@media (max-width: 360px) {
  .destination__description { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .destination, .socials a { transition: none; }
  .destination:hover { transform: none; }
}
