.ravi-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding-bottom: 72px;
}

.ravi-name {
  font-size: clamp(3rem, 10vw, 7rem);
  margin: 0;
  letter-spacing: 0.08em;
  font-weight: normal;
}

.rv-availability {
  margin: -32px 0 0;
  font-size: 1.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.75;
}

.rv-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  max-width: 900px;
}

.rv-gallery figure:nth-child(1) {
  grid-column: 1 / -1;
}

.rv-gallery figure:nth-child(1) img {
  aspect-ratio: 4 / 3;
}

.rv-gallery figure:nth-child(n+2) img {
  aspect-ratio: 3 / 4;
}

.rv-gallery figure {
  margin: 0;
}

.rv-gallery img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.rv-gallery figure:hover img {
  transform: translateY(-4px);
}

.rv-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.rv-nav-link {
  font-size: .8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 10px 28px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

.rv-nav-link:hover {
  background: white;
  color: black;
}

.ravi-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.ravi-contact p {
  font-size: 1.5rem;
  opacity: 0.8;
  margin: 0;
  letter-spacing: 0.05em;
}

.ravi-contact-link {
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 10px 28px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

.ravi-contact-link:hover {
  background: white;
  color: black;
}

.rv-song {
  width: 100%;
  max-width: 560px;
}

.rv-song iframe {
  border-radius: 8px;
}