:root {
  --black: #080808;
  --ink: #111111;
  --soft-black: #171717;
  --white: #ffffff;
  --pearl: #f7f6f2;
  --silver: #d8d8d2;
  --muted: #77736b;
  --line: rgba(255, 255, 255, 0.22);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--pearl);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3.5rem);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--white);
  border-radius: 999px;
  font-size: 0.84rem;
  letter-spacing: 0.1em;
}

.brand-text {
  font-size: 0.78rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav a,
.contact a {
  border-bottom: 1px solid currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.54)),
    url("assets/images/ballet-renaissance-hero.jpg");
  background-size: cover;
  background-position: center 32%;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35vh;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0));
}

.hero-panel {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 2rem));
  margin-top: 4rem;
  padding: clamp(2rem, 6vw, 4.5rem);
  text-align: center;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(5px);
  box-shadow: var(--shadow);
}

.eyebrow,
.section-label,
.status {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow,
.status {
  color: var(--silver);
}

h1,
h2 {
  margin: 0;
  font-weight: 400;
  line-height: 1.05;
}

h1 {
  margin-top: 1rem;
  font-size: clamp(3rem, 9vw, 7.4rem);
  letter-spacing: -0.06em;
}

h2 {
  margin-top: 0.65rem;
  font-size: clamp(2rem, 5vw, 4.4rem);
  letter-spacing: -0.045em;
}

.rule {
  width: min(240px, 52vw);
  height: 1px;
  margin: 1.55rem auto;
  background: var(--white);
  opacity: 0.8;
}

.hero-copy {
  max-width: 520px;
  margin: 0 auto 1.5rem;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: rgba(255, 255, 255, 0.88);
}

.status {
  display: inline-block;
  padding: 0.62rem 0.9rem;
  border: 1px solid var(--line);
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1rem, 4vw, 3.5rem);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.narrow {
  width: min(900px, 100%);
}

.section-label {
  color: var(--muted);
}

.mission {
  text-align: center;
  background: var(--white);
}

.mission-text {
  margin: 1.65rem auto 0;
  max-width: 760px;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  color: #2d2d2d;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 2rem);
  background: var(--black);
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--soft-black);
}

.gallery img {
  width: 100%;
  height: min(72vw, 780px);
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  transition: filter 260ms ease, transform 260ms ease;
}

.gallery figure:hover img {
  filter: grayscale(0%) contrast(1.02);
  transform: scale(1.018);
}

.contact {
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(0, 0, 0, 0.05), transparent 30rem),
    var(--pearl);
}

.contact-card {
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.72);
}

.contact p:last-child {
  margin: 1.35rem 0 0;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.site-footer {
  padding: 2rem 1rem;
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
  background: var(--black);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
  }

  .brand-text {
    max-width: 9rem;
    line-height: 1.3;
  }

  .site-nav {
    padding-top: 0.7rem;
  }

  .hero-panel {
    padding-top: 5.5rem;
  }

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

  .gallery img {
    height: auto;
  }
}
