* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #000;
  color: white;
  font-family: 'Inter', sans-serif;
}

/* ---------- HEADER ---------- */

.topbar {
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 28px;
  border-bottom: 1px solid #111;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;

    /* 👉 вот это главное */
    font-family: 'Playfair Display', serif !important;
    font-size: 20px !important;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
}

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

.link { opacity: .7; }

.btn {
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 13px;
  cursor: pointer;
}

.ghost {
  background: transparent;
  border: 1px solid #333;
  color: white;
}

.solid {
  background: white;
  color: black;
  border: none;
}


/* ---------- PAGE LAYOUT ---------- */

.page {
  max-width: 1280px;
  margin: 40px auto 60px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 36px;
}


/* ---------- IMAGE ---------- */

.visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  object-fit: contain;
}


/* ---------- INFO ---------- */

.info h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 8px;
}

.desc {
  opacity: .75;
  line-height: 1.6;
}


/* === Artist / Owner block === */

.meta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin: 24px 0 20px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: #1f1f1f;
  flex-shrink: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* большая картинка аккуратно обрежется по кругу */
  display: block;
}

.meta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.meta-label {
  font-size: 12px;
  color: #888;         /* более тёмный, как у оригинала */
}

.meta-name {
  font-size: 13px;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.meta-divider {
  width: 1px;
  height: 28px;
  background: #262626;
}

.meta-item:first-child {
  justify-self: start;
}

.meta-item.owner {
  justify-self: end;
}

.cta {
  width: 100%;
  padding: 12px 18px;
  margin-top: 18px;

  background: #f5f5f5;
  color: #000;

  border: none;
  border-radius: 999px;           /* "таблетка" */
  font-size: 14px;
  font-weight: 500;

  text-align: center;
  cursor: pointer;

  box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
}
/* ===== FOOTER STYLE ===== */

.footer {
  background: #0a0a0a;
  color: #aaa;
  margin-top: 60px;
  font-size: 13px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 28px;
  border-bottom: 1px solid #111;
}

.footer .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: white;
}

.logo-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: white;
}

.tagline {
  margin: 12px 0;
  opacity: .7;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  color: #aaa;
  text-decoration: none;
}

.center a {
  display: block;
  margin-bottom: 8px;
  color: #aaa;
  text-decoration: none;
}

.right {
  text-align: right;
}

.badge {
  border: 1px dashed #333;
  display: inline-block;
  padding: 8px 12px;
  font-size: 11px;
  opacity: .8;
  margin-bottom: 12px;
}

.actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.lang {
  background: transparent;
  border: 1px solid #333;
  color: #aaa;
  padding: 6px 10px;
  border-radius: 8px;
}

.copy {
  margin-top: 12px;
  font-size: 12px;
  opacity: .5;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 28px;
  font-size: 11px;
  opacity: .5;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .right {
    text-align: center;
  }

  .actions {
    justify-content: center;
  }
}
