@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Raleway:wght@300;400;500;600&display=swap');

:root {
  --background: hsl(40, 20%, 96%);
  --foreground: hsl(0, 0%, 12%);
  --border: hsl(40, 15%, 85%);
  --secondary: hsl(40, 15%, 90%);
  --muted-foreground: hsl(0, 0%, 40%);
  --section-dark: hsl(0, 0%, 8%);
  --section-dark-foreground: hsl(40, 20%, 92%);
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Raleway', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  line-height: 1.5;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin: 0;
}

.heading-display {
  font-family: var(--font-heading);
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}



/* HEADER */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 252, 245, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.site-header .inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 42px;
}

.nav-desktop {
  display: none;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    gap: 2rem;
  }
}

.nav-desktop a,
.nav-mobile a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted-foreground);
}

.nav-desktop a:hover {
  color: var(--foreground);
}

.nav-mobile-details {
  display: block;
}

@media (min-width: 768px) {
  .nav-mobile-details {
    display: none;
  }
}

/* SECTIONS */

.section-padding {
  padding: 4rem 1.5rem;
  scroll-margin-top: 90px;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 6rem 3rem;
  }
}

.section-inner {
  max-width: 64rem;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 3rem;
}

.section-title.center {
  text-align: center;
}

/* HERO */

.hero {
  padding-top: 6.5rem;
  padding-bottom: 3rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  margin-bottom: 1rem;
  line-height: 1.05;
}

.hero .subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.hero .portrait-wrap {
  width: min(100%, 480px);
  margin: 0 auto 2rem;
}

.heading-display {
  font-family: var(--font-heading);
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  margin-bottom: 1rem;
  line-height: 1.05;
}


/* HERO VIDEO */

.hero .video-wrap {
  width: 100%;
  max-width: 1024px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .video-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.hero .video-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.video-caption {
  width: 100%;
  max-width: 700px;
  margin: 1rem auto 0;
  text-align: center;
  color: var(--muted-foreground);
}

.video-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
  color: var(--foreground);
}

.video-description {
  font-size: 0.85rem;
  margin: 0 0 0.4rem;
}

.video-orchestra {
  font-size: 0.8rem;
  opacity: 0.9;
  margin: 0;
}

/* ABOUT */

.about .grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .about .grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.about .images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about .images img {
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* STORY */

.story {
  background: var(--secondary);
}

.story .top {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .story .top {
    grid-template-columns: 1fr 1fr;
  }
}

.story .top img {
  aspect-ratio: 1;
  object-fit: cover;
}

.story .timeline {
  display: grid;
  gap: 2rem;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}

@media (min-width: 768px) {
  .story .timeline {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* ACHIEVEMENTS */

.achievements {
  border-top: 1px solid var(--border);
}

.achievements .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .achievements .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.achievements .stat {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
}

/* SHOWS */

.shows {
  background: var(--secondary);
}

.shows-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}

.shows-controls {
  display: flex;
  gap: 0.75rem;
}

.shows-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,252,245,.9);
  cursor: pointer;
}

.shows-slider {
  overflow: hidden;
}

.shows-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .4s ease;
}

.shows-track > .card {
  flex: 0 0 100%;
}

@media (min-width: 640px) {
  .shows-track > .card {
    flex-basis: calc((100% - 1.5rem) / 2);
  }
}

@media (min-width: 1024px) {
  .shows-track > .card {
    flex-basis: calc((100% - 3rem) / 3);
  }
}

.shows .card {
  background: rgb(233,231,226);
}

.shows .card img {
  height: 340px;
  object-fit: contain;
  padding: 16px;
}

/* VIDEO ARCHIVE */

.video-frame {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* FOOTER */

.footer {
  background: var(--section-dark);
  color: var(--section-dark-foreground);
  text-align: center;
}

.footer .section-title {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

.footer .lead {
  font-size: 0.875rem;
  color: rgba(236,233,224,.6);
  margin-bottom: 2rem;
}

.footer .contact-btn {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(236,233,224,.3);
  padding: 0.75rem 2rem;
  text-decoration: none;
}

.footer .bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(236,233,224,.1);
}

.footer .copyright {
  font-size: 0.75rem;
  color: rgba(236,233,224,.4);
}

/* MOBILE MENU VISIBILITY FIX */
.nav-mobile-details {
  display: block !important;
}

.nav-mobile-toggle {
  display: block !important;
}

@media (min-width: 768px) {
  .nav-mobile-details {
    display: none !important;
  }

  .nav-mobile-toggle {
    display: none !important;
  }

  .nav-mobile {
    display: none !important;
  }
}