:root {
  color-scheme: light;
  --bg: #f6efe7;
  --bg-dark: #efe3d7;
  --ink: #2c2017;
  --accent: #c07a4a;
  --accent-soft: rgba(192, 122, 74, 0.2);
  --card: rgba(255, 255, 255, 0.7);
  --shadow: 0 18px 45px rgba(44, 32, 23, 0.18);
}

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

body {
  min-height: 100vh;
  background: radial-gradient(circle at top, #fff8f1 0%, var(--bg) 45%, var(--bg-dark) 100%);
  color: var(--ink);
  font-family: "SN Pro", sans-serif;
  display: flex;
  justify-content: center;
}

.page {
  width: min(1100px, 90vw);
  padding: 3.5rem 0 5rem;
  position: relative;
  z-index: 1;
}

.hero {
  text-align: center;
  margin-bottom: 3rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.75rem;
  color: rgba(44, 32, 23, 0.6);
}

h1 {
  font-family: "SN Pro", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  margin: 0.8rem 0;
  font-weight: 700;
}

.subhead {
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  color: rgba(44, 32, 23, 0.7);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.card {
  background: var(--card);
  border-radius: 28px;
  padding: 1.6rem;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 1.4rem;
  border: 1px solid rgba(192, 122, 74, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(44, 32, 23, 0.25);
}

.avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 20px rgba(44, 32, 23, 0.2);
  object-fit: cover;
}

.card__content {
  flex: 1;
}

.card__name {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.card__note {
  font-size: 0.95rem;
  color: rgba(44, 32, 23, 0.7);
  line-height: 1.4;
}

.card__button {
  margin-top: 0.9rem;
  background: var(--accent);
  border: none;
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.card__button:hover {
  background: #a4643f;
}

.footer {
  margin-top: 3.2rem;
  text-align: center;
  color: rgba(44, 32, 23, 0.65);
}

.player {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(520px, 90vw);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
}

.player.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.player__meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.player__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.player__name {
  font-weight: 600;
  font-size: 0.95rem;
}

.player__note {
  font-size: 0.85rem;
  color: rgba(44, 32, 23, 0.6);
}

.player__stop {
  border: 1px solid rgba(44, 32, 23, 0.2);
  background: transparent;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
}

.background-text {
  position: fixed;
  inset: 0;
  font-family: "SN Pro", sans-serif;
  font-size: clamp(5rem, 15vw, 12rem);
  color: rgba(44, 32, 23, 0.06);
  display: grid;
  place-items: center;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 0;
}

.background-text::after {
  content: "Alooo Alooo Alooo";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: clamp(3.5rem, 10vw, 8rem);
  transform: rotate(-10deg);
  opacity: 0.7;
}

.phone {
  position: fixed;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.7), rgba(192, 122, 74, 0.25));
  border-radius: 40% 60% 45% 55% / 50% 45% 55% 50%;
  border: 2px dashed rgba(192, 122, 74, 0.4);
  box-shadow: 0 15px 40px rgba(44, 32, 23, 0.15);
  opacity: 0.6;
  z-index: 0;
}

.phone::after {
  content: "☎";
  font-size: 4rem;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(44, 32, 23, 0.6);
}

.phone--left {
  top: 12%;
  left: 5%;
  transform: rotate(-8deg);
}

.phone--right {
  bottom: 12%;
  right: 6%;
  transform: rotate(10deg);
}

.phone--top {
  top: 3%;
  right: 30%;
  transform: rotate(-18deg) scale(0.9);
}

@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .page {
    padding: 3rem 0 7rem;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .card {
    flex-direction: column;
    text-align: center;
  }

  .card__button {
    width: 100%;
    justify-content: center;
  }
}
