:root {
  --bg: #d5d5d5;
  --card: #ffffff;
  --text: #3a200f;
  --muted: #6e4e3b;
  --button: #a7836f;
  --button-shadow: #8a6a58;
  --button-light: #c1a694;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  background: radial-gradient(
      circle at 50% 0%,
      rgba(0, 0, 0, 0.08),
      transparent 40%
    ),
    var(--bg);
  color: var(--text);
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: start center;
  padding: 32px 16px;
}

.header,
.links,
.footer {
  width: min(720px, 92vw);
}

.header {
  position: relative;
  background: var(--card);
  border-radius: 20px 20px 0 0;
  padding: 24px 24px 8px;
  text-align: center;
}

.profile {
  margin: 10px 0 8px;
}
.profile img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  filter: saturate(0.8) contrast(1.05);
}

.brand {
  margin: 8px 0 4px;
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 800;
}
.subtitle {
  margin: 0 auto 12px;
  max-width: 42ch;
  font-size: 16px;
}

.socials {
  margin-top: 8px;
}
.social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 18px;
  justify-content: center;
}
.social-list a {
  color: var(--text);
  font-size: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.links {
  background: var(--card);
  border-radius: 0 0 24px 24px;
  padding: 16px 16px 24px;
}

.link-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  background: var(--button);
  border-radius: 26px;
  padding: 18px 18px;
  margin: 14px auto;
  box-shadow: 0 4px 0 var(--button-shadow);
}
.link-card .label {
  font-weight: 700;
}
.link-card:hover {
  filter: brightness(1.02);
}
.link-card:active {
  transform: translateY(1px);
  box-shadow: 0 3px 0 var(--button-shadow);
}

.footer {
  text-align: center;
  color: var(--muted);
  padding-top: 8px;
}

@media (min-width: 768px) {
  .link-card {
    padding: 20px 22px;
    border-radius: 30px;
  }
}

body {
  background-color: rgb(56, 45, 33);
}

.profile img {
  width: 120px;
  height: auto;
  border-radius: 50%;
  max-width: 100%;
}
.social-list i {
  font-size: 28px;
  line-height: 1;
}

.social-list a:focus-visible,
.social-list a:hover {
  outline: none;
  filter: brightness(1.1);
}

.section {
  margin-top: 30px;
}

.section-title {
  font-size: 18px;
  font-weight: 800;
  margin: 8px 12px;
}

.brands {
  list-style: none;
  padding: 0 12px;
  margin: 6px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.brand-item {
  display: grid;
  place-items: center;
  background: var(--card);
  color: var(--muted);
  border: 2px solid var(--button-light);
  border-radius: 50%;
  height: 72px;
  width: 72px;
  margin: 0 auto;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
}

.collab-note {
  margin: 14px 12px 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

@media (min-width: 768px) {
  .videos {
    grid-template-columns: repeat(4, 1fr);
  }
  .brand-item {
    height: 84px;
    width: 84px;
    font-size: 13px;
  }
}
