/* ---------------- Our Studios Page Styles ---------------- */

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--royal-50);
}
h1, h2, h3 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: white;
}
/* HERO */
.hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  color: #fff;
  text-align: left;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/img/history.jpg')
    center/cover no-repeat;
  filter: brightness(0.75) saturate(1.1);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11,42,74,.88), rgba(42,157,143,.7));
}

.hero .wrap {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: .8rem;
}

.hero p.lead {
  max-width: 720px;
  opacity: .95;
}

/* STUDIO CARDS */
.studio-card,
#our-studios .card {
  background: #fff;
  border: 1px solid rgba(10,44,79,.08);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(11,42,74,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.studio-card:hover,
#our-studios .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(11,42,74,.12);
}

.icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--royal-50);
  color: var(--royal);
  font-size: 1.1rem;
}

/* GALLERY */
.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
}

/* CTA Section */
#our-studios-cta {
  background: var(--royal);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}

#our-studios-cta h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin-bottom: .5rem;
}

#our-studios-cta p {
  opacity: .92;
  margin-bottom: 1.2rem;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}
