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

html {
  scroll-behavior: smooth;
}

body {
  background: #111111;
  color: #f2ece6;
  font-family: Helvetica, Arial, sans-serif;
}

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

/* HERO */

.site-hero {
  min-height: 100vh;
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-content h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 9.8vw, 8.8rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1;
}

.hero-content p {
  margin-top: 3rem;
  font-size: clamp(0.75rem, 1.4vw, 1rem);
  letter-spacing: 0.48em;
  text-transform: uppercase;
}

/* NAV */

.main-nav {
  position: absolute;
  top: 48px;
  right: 42px;
  z-index: 3;
  display: flex;
  gap: 28px;
}

.main-nav a,
.main-nav a:visited {
  color: rgba(242, 236, 230, 0.92);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.main-nav a:hover {
  color: #ffffff;
}

/* SHARED */

.section-label,
.section-heading {
  font-size: 0.9rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(242, 236, 230, 0.75);
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

/* ABOUT */

.about-section {
  padding: 120px 10vw 70px;
  display: grid;
  grid-template-columns: 260px minmax(0, 850px);
  gap: 8vw;
  align-items: start;
}

.about-text p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2.05rem);
  line-height: 1.48;
  font-weight: 300;
  margin-bottom: 2.2rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* PROJECTS */

.programming-section {
  padding: 70px 10vw 40px;
}

.programming-section .section-label {
  margin-bottom: 45px;
}

.programming-intro {
  max-width: 850px;
  margin-left: calc(260px + 8vw);
  margin-bottom: 70px;
}

.programming-intro p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2.05rem);
  line-height: 1.48;
  text-align: left;
  font-weight: 300;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px;
}

.project-card {
  overflow: hidden;
}

.project-card img {
  width: 100%;
  height: 720px;
  object-fit: contain;
  object-position: top center;
  background: #111111;
  margin-bottom: 24px;
  transition: transform 0.4s ease;
}

.project-card:hover img {
  transform: scale(1.02);
}

.project-card h3,
.leader-bio h3 {
  margin-bottom: 0.9rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.project-card p,
.leader-bio p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(242, 236, 230, 0.76);
}

/* LEADERSHIP */

.leadership-section {
  padding: 60px 10vw 120px;
}

.leadership-photo {
  max-width: 1200px;
  margin: 0 auto 80px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px;
  max-width: 1200px;
  margin: 0 auto;
}

/* HOMEPAGE REEL */

.homepage-reel-section {
  padding: 80px 10vw 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.homepage-video-container {
  width: 100%;
  max-width: 1250px;
  aspect-ratio: 16 / 9;
  background: #000;
}

.homepage-video-container iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* CONTACT */

.contact-section {
  padding: 120px 10vw 150px;
  text-align: center;
}

.contact-content {
  max-width: 700px;
  margin: 0 auto;
}

.contact-content p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-content a {
  color: #f2ece6;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-content a:hover {
  opacity: 0.7;
}

/* REEL PAGE */

.reel-hero {
  min-height: 100vh;
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reel-page {
  min-height: 100vh;
  padding: 120px 40px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #111111;
}

.intro {
  max-width: 700px;
  text-align: center;
  margin: 0 auto 80px;
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  line-height: 1.8;
  color: rgba(242, 236, 230, 0.85);
}

.video-container {
  width: 100%;
  max-width: 1250px;
  aspect-ratio: 16 / 9;
  background: #000;
  margin-bottom: 80px;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.footer-link {
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(242, 236, 230, 0.75);
}

/* MOBILE */

@media (max-width: 900px) {
  .main-nav {
    left: 24px;
    right: 24px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
  }

  .hero-content h1 {
    font-size: clamp(3rem, 18vw, 5rem);
  }

  .hero-content p {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    padding: 0 20px;
  }

  .about-section {
    grid-template-columns: 1fr;
    padding: 100px 28px 60px;
    gap: 45px;
  }

  .programming-section,
  .leadership-section,
  .homepage-reel-section,
  .contact-section {
    padding-left: 28px;
    padding-right: 28px;
  }

  .programming-intro {
    margin-left: 0;
  }

  .project-grid,
  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .project-card img {
    height: auto;
  }
}