:root {
  --cream: #fbf3dc;
  --purple: #8a49f7;
  --card: #dec5bd;
  --ink: #050505;
  --white: #fffaf0;
  --border: #2f2928;
  --panel-width: 52%;
  --left-width: 40%;
  --right-width: 8%;
  --shadow: 0 2px 0 rgb(0 0 0 / 10%);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--cream);
}

body {
  margin: 0;
  min-height: 100svh;
  background: var(--cream);
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.landing {
  position: relative;
  width: min(100%, 1514px);
  min-height: 100svh;
  margin-inline: auto;
  display: grid;
  grid-template-columns: var(--left-width) var(--panel-width) var(--right-width);
  overflow: hidden;
  isolation: isolate;
}

.artwork {
  position: relative;
  z-index: 2;
  grid-column: 1;
  display: grid;
  place-items: center;
  padding: 2rem 1.5rem;
}

.artwork__circle {
  position: relative;
  width: min(72%, 348px);
  aspect-ratio: 1;
  border: 2px solid rgb(255 255 255 / 92%);
  border-radius: 50%;
  background: rgb(255 255 255 / 10%);
  overflow: hidden;
}

.artwork__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.panel {
  grid-column: 2;
  min-height: 100svh;
  padding: clamp(1.55rem, 2.4vw, 2rem) clamp(2.1rem, 6vw, 7.4rem) clamp(1.35rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--purple);
}

.hero {
  text-align: center;
  color: var(--white);
}

.hero h1 {
  margin: 0;
  font-family: "Merienda", "Brush Script MT", cursive;
  font-size: clamp(2.55rem, 4.05vw, 4.15rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-shadow: 0 4px 0 rgb(0 0 0 / 12%);
}

.hero p {
  margin: 0.35rem auto 0;
  font-family: "Kalam", "Comic Sans MS", cursive;
  font-size: clamp(1rem, 1.55vw, 1.42rem);
  line-height: 1.16;
}

.separator {
  display: block;
  width: 3.9rem;
  height: 2px;
  margin: 0.68rem auto 0;
  background: var(--white);
}

.actions {
  width: min(100%, 336px);
  margin: 0.75rem auto 0;
  display: grid;
  gap: 1.17rem;
}

.action-card {
  min-height: 77px;
  padding: 0.35rem 0.65rem;
  display: grid;
  grid-template-columns: 58px 1fr 58px;
  align-items: center;
  border: 1.5px solid var(--border);
  background: var(--card);
  color: var(--ink);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.action-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 0 rgb(0 0 0 / 12%);
  filter: saturate(1.03);
}

.action-card:active {
  transform: translateY(0);
  box-shadow: var(--shadow);
}

.action-card:focus-visible,
.live:focus-visible,
.contact a:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
}

.action-card__label {
  justify-self: center;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  font-weight: 700;
  line-height: 1.12;
  text-align: center;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.action-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  justify-self: end;
}

.action-card__icon--left {
  justify-self: start;
}

.action-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.action-card__icon--facebook {
  justify-self: start;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  background: #087cf0;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  padding-top: 0.27rem;
}

.live {
  width: min(100%, 312px);
  margin: 1.05rem auto 0;
  display: grid;
  grid-template-columns: 73px 1fr;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink);
  text-decoration: none;
}

.live__avatar {
  position: relative;
  width: 66px;
  aspect-ratio: 1;
  border: 3px solid #ff2b7f;
  border-radius: 50%;
  background: #fff;
}

.live__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.live__badge {
  position: absolute;
  right: -2px;
  bottom: -3px;
  padding: 0.08rem 0.23rem;
  border: 1px solid #fff;
  border-radius: 0.3rem;
  background: #ff1744;
  color: #fff;
  font: 700 0.66rem/1 Arial, sans-serif;
}

.live__text {
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 700;
  line-height: 1.28;
  text-align: center;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.separator--footer {
  margin-top: 0.55rem;
}

.contact {
  margin: 1rem 0 0;
  display: grid;
  gap: 0.25rem;
  color: var(--white);
  font-style: normal;
  text-align: center;
}

.contact a {
  font-size: clamp(1.35rem, 2.1vw, 1.95rem);
  font-weight: 500;
  line-height: 1.15;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.image-placeholder {
  position: relative;
  display: grid !important;
  place-items: center;
  border: 1px dashed rgb(255 255 255 / 75%);
  background:
    linear-gradient(45deg, transparent 49.5%, rgb(255 255 255 / 25%) 50%, transparent 50.5%),
    linear-gradient(-45deg, transparent 49.5%, rgb(255 255 255 / 25%) 50%, transparent 50.5%),
    rgb(255 255 255 / 8%);
  color: rgb(255 255 255 / 88%);
  font: 700 0.68rem/1.25 "Montserrat", sans-serif;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.artwork .image-placeholder {
  border: 0;
  color: #886e69;
  background:
    linear-gradient(45deg, transparent 49.7%, rgb(118 94 85 / 18%) 50%, transparent 50.3%),
    linear-gradient(-45deg, transparent 49.7%, rgb(118 94 85 / 18%) 50%, transparent 50.3%);
}

.action-card .image-placeholder {
  border-color: rgb(47 41 40 / 45%);
  color: rgb(47 41 40 / 72%);
  background:
    linear-gradient(45deg, transparent 49.5%, rgb(47 41 40 / 18%) 50%, transparent 50.5%),
    linear-gradient(-45deg, transparent 49.5%, rgb(47 41 40 / 18%) 50%, transparent 50.5%);
  font-size: 0.48rem;
}

.live__avatar .image-placeholder {
  border: 0;
  border-radius: 50%;
  font-size: 0.5rem;
}

@media (max-width: 950px) {
  .landing {
    grid-template-columns: 34% 66%;
  }

  .artwork {
    grid-column: 1;
  }

  .panel {
    grid-column: 2;
    padding-inline: clamp(1.3rem, 5vw, 4rem);
  }

  .artwork__circle {
    width: min(88%, 320px);
  }
}

@media (max-width: 720px) {
  .landing {
    display: block;
    width: 100%;
    overflow: visible;
  }

  .artwork {
    min-height: 46svh;
    padding: 2.5rem 1.5rem;
  }

  .artwork__circle {
    width: min(72vw, 340px);
  }

  .panel {
    min-height: auto;
    padding: 2rem clamp(1rem, 7vw, 3.4rem) 2.1rem;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 12vw, 4.2rem);
  }

  .hero p {
    font-size: clamp(1.02rem, 5vw, 1.45rem);
  }

  .actions {
    width: min(100%, 390px);
    gap: 1rem;
  }

  .action-card {
    min-height: 78px;
  }

  .action-card__label,
  .live__text {
    font-size: clamp(0.98rem, 4.2vw, 1.18rem);
  }

  .contact a {
    font-size: clamp(1.35rem, 6vw, 1.8rem);
  }
}

@media (max-width: 430px) {
  .panel {
    padding-inline: 0.78rem;
  }

  .desktop-only {
    display: none;
  }

  .action-card {
    grid-template-columns: 48px 1fr 48px;
    padding-inline: 0.4rem;
  }

  .action-card__icon {
    width: 44px;
    height: 44px;
  }

  .action-card__icon--facebook {
    width: 39px;
    height: 39px;
  }

  .live {
    grid-template-columns: 65px 1fr;
    gap: 0.55rem;
  }

  .live__avatar {
    width: 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
