:root {
  --navy: #16324f;
  --blue: #2f6f9f;
  --gold: #f2b84b;
  --light: #f6f8fb;
  --white: #ffffff;
  --text: #1f2933;
  --muted: #5d6b78;
  --border: #dde5ee;

  --shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
  --shadow-hover: 0 12px 26px rgba(0, 0, 0, 0.11);

  --radius: 14px;
}


/* ========================================
   GLOBAL
======================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  background: var(--light);
  color: var(--text);
}

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

a {
  color: var(--blue);
}

p {
  margin-bottom: 11px;
}

.container {
  width: 92%;
  max-width: 1150px;
  margin: 0 auto;
}

section[id] {
  scroll-margin-top: 90px;
}


/* ========================================
   HEADER
======================================== */

header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 13px 0;
}

.site-title {
  color: var(--white);
  text-decoration: none;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

nav {
  margin-left: auto;
}

nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  gap: 2px;
}

nav a {
  display: block;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 8px;
  border-radius: 999px;
  white-space: nowrap;
}

nav a.active {
  background: rgba(255, 255, 255, 0.18);
}

.menu-toggle {
  display: none;
  background: var(--white);
  color: var(--navy);
  border: none;
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}


/* ========================================
   HERO
======================================== */

.hero {
  background: linear-gradient(
    135deg,
    #16324f,
    #234f76
  );
  color: var(--white);
  padding: 68px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 38px;
  align-items: center;
}

.hero-text {
  min-width: 0;
}

.eyebrow {
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 9px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(40px, 5.5vw, 62px);
  line-height: 1.04;
  margin-bottom: 16px;
}

.hero-subtitle {
  max-width: 700px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.94);
  margin-bottom: 23px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}


/* ========================================
   HOME HERO PHOTO
======================================== */

.home-hero-photo {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.home-hero-photo img {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: center;
}


/* ========================================
   HERO CARD
======================================== */

.hero-card {
  background: rgba(255, 255, 255, 0.97);
  color: var(--text);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  border-top: 5px solid var(--gold);
}

.hero-card h2 {
  color: var(--navy);
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 11px;
}

.hero-card p {
  color: var(--text);
}

.hero-card .card-label {
  color: var(--blue);
}

.hero-card .small-text {
  color: var(--muted);
}


/* ========================================
   BUTTONS
======================================== */

.button,
form button {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 11px 20px;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 800;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: var(--white);
  color: var(--navy);
}


/* ========================================
   PAGE BANNERS
======================================== */

.page-banner {
  background: linear-gradient(
    135deg,
    var(--navy),
    var(--blue)
  );
  color: var(--white);
  padding: 44px 0;
  text-align: center;
}

.page-banner .container {
  max-width: 900px;
}

.page-banner h1,
.page-banner h2 {
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.1;
  margin-bottom: 10px;
}

.page-banner p {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0;
}

.page-banner .eyebrow {
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 8px;
}


/* ========================================
   CONTENT
======================================== */

.content {
  padding: 44px 0;
}

.alt-bg {
  background: #eaf0f6;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.section-heading h2,
.content h2 {
  color: var(--navy);
  font-size: 31px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.section-heading p {
  color: var(--muted);
  font-size: 16px;
}

.split-section {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 30px;
  align-items: start;
}

.content ul {
  margin-top: 8px;
  margin-bottom: 13px;
  padding-left: 22px;
}

.content li {
  margin-bottom: 5px;
}


/* ========================================
   CARDS
======================================== */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 18px;
}

.card,
.info-box {
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.card h3,
.info-box h3 {
  color: var(--navy);
  margin-bottom: 9px;
  font-size: 21px;
  line-height: 1.3;
}

.card p,
.info-box p {
  margin-bottom: 10px;
}

.card a:not(.button) {
  font-weight: 700;
}

.card-label {
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.9px;
  margin-bottom: 5px;
}

.card ul,
.info-box ul {
  padding-left: 20px;
}

.card li,
.info-box li {
  margin-bottom: 6px;
}

.info-box {
  border-top: 5px solid var(--gold);
}

.small-text {
  color: var(--muted);
  font-size: 14px;
}


/* ========================================
   DESKTOP HOVER EFFECTS
======================================== */

@media (hover: hover) and (pointer: fine) {

  nav a {
    transition:
      background 0.2s ease,
      transform 0.2s ease;
  }

  nav a:hover {
    background: rgba(255, 255, 255, 0.11);
  }

  .button,
  form button {
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease,
      background 0.2s ease;
  }

  .button:hover,
  form button:hover {
    transform: translateY(-2px);
    background: #ffd06b;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.12);
  }

  .button.secondary:hover {
    background: #f5f7fa;
  }

  .card {
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease,
      border-color 0.2s ease;
  }

  .card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: #cad7e3;
  }

  .quick-box {
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease,
      border-color 0.2s ease;
  }

  .quick-box:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--blue);
  }

  .event-card {
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

  .event-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
  }

  .gallery-item {
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

  .gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
  }

}


/* ========================================
   LEADERSHIP LIST
======================================== */

.leadership-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 30px;
}

.leadership-list p {
  margin-bottom: 0;
}

.leadership-list strong {
  color: var(--navy);
}


/* ========================================
   QUICK LINKS
======================================== */

.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.quick-box {
  background: var(--white);
  color: var(--navy);
  text-decoration: none;
  padding: 19px;
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.quick-box span {
  display: block;
  font-size: 18px;
  margin-bottom: 3px;
}

.quick-box small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}


/* ========================================
   CALENDAR
======================================== */

.event-list {
  display: grid;
  gap: 14px;
}

.event-card {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 18px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.event-date-box {
  width: 84px;
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  text-align: center;
  overflow: hidden;
  align-self: start;
}

.event-date-box .month {
  display: block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  padding: 4px;
  text-transform: uppercase;
}

.event-date-box .day {
  display: block;
  font-size: 33px;
  font-weight: 900;
  padding: 7px 9px;
}

.event-details h3 {
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 6px;
}

.event-details p {
  margin-bottom: 5px;
}


/* ========================================
   GALLERY
======================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 26px;
}

.gallery-item {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}

.gallery-item figcaption {
  padding: 14px 16px;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
}


/* ========================================
   FORMS
======================================== */

form {
  display: flex;
  flex-direction: column;
}

form label {
  margin-top: 12px;
  margin-bottom: 5px;
  font-weight: 800;
  color: var(--navy);
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 9px;
  font-size: 16px;
  font-family: inherit;
  background: var(--white);
}

form input:focus,
form textarea:focus,
form select:focus {
  outline: 3px solid rgba(47, 111, 159, 0.18);
  border-color: var(--blue);
}

form textarea {
  resize: vertical;
  min-height: 150px;
}

form button {
  margin-top: 18px;
  font-size: 16px;
  align-self: flex-start;
}


/* ========================================
   ORCHESTRAS PAGE
======================================== */

.director-section {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 40px;
}

.director-photo {
  display: block;
  width: 180px;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.director-info h2 {
  margin-top: 5px;
  margin-bottom: 8px;
}

.director-info p {
  margin-top: 6px;
  margin-bottom: 8px;
}

.director-title {
  font-weight: 700;
}

.program-intro {
  max-width: 850px;
  margin-bottom: 30px;
}

.program-intro h2 {
  margin-bottom: 12px;
}

.section-action {
  margin-top: 30px;
}


/* ========================================
   FOOTER
======================================== */

footer {
  background: var(--navy);
  color: var(--white);
  padding: 22px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-container p {
  margin-bottom: 0;
  font-size: 14px;
}

footer a {
  color: var(--white);
  font-weight: 800;
}


/* ========================================
   TABLET / MOBILE NAVIGATION
======================================== */

@media (max-width: 1200px) {

  .header-container {
    flex-wrap: wrap;
  }

  .site-title {
    font-size: 19px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  nav {
    display: none;
    width: 100%;
    margin-left: 0;
  }

  nav.show {
    display: block;
  }

  nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 8px;
  }

  nav li {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  nav a {
    display: block;
    padding: 11px 2px;
    border-radius: 0;
    font-size: 15px;
  }

  .hero {
    padding: 52px 0;
  }

  .hero-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 25px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .home-hero-photo {
    max-width: 700px;
  }

  .home-hero-photo img {
    height: auto;
    max-height: 500px;
    object-fit: contain;
  }

  .hero-card {
    max-width: 650px;
  }

  .content {
    padding: 36px 0;
  }

  .section-heading h2,
  .content h2 {
    font-size: 28px;
  }

  .leadership-list {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* ========================================
   ORCHESTRAS PAGE MOBILE
======================================== */

@media (max-width: 650px) {

  #wbhs,
  #jolliff {
    scroll-margin-top: 75px;
  }

  .director-section {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
    margin-bottom: 30px;
  }

  .director-photo {
    width: 150px;
    height: 185px;
  }

  .director-info h2 {
    font-size: 1.6rem;
  }

}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 600px) {

  body {
    line-height: 1.45;
  }

  p {
    margin-bottom: 8px;
  }

  .container {
    width: 90%;
  }


  /* HEADER */

  .header-container {
    padding: 9px 0;
  }

  .site-title {
    font-size: 17px;
    max-width: 66%;
    white-space: normal;
  }

  .menu-toggle {
    font-size: 13px;
    padding: 7px 11px;
  }

  nav ul {
    padding-top: 7px;
  }

  nav a {
    padding: 9px 2px;
    font-size: 14px;
  }


  /* HERO */

  .hero {
    padding: 30px 0;
  }

  .hero-grid {
    gap: 18px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.7px;
    margin-bottom: 6px;
  }

  .hero h1 {
    font-size: 33px;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 8px;
  }

  .button {
    width: 100%;
    text-align: center;
    padding: 10px 17px;
  }

  .home-hero-photo {
    margin-top: 0;
  }

  .home-hero-photo img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
  }

  .hero-card {
    padding: 17px;
  }


  /* PAGE BANNER */

  .page-banner {
    padding: 24px 0;
  }

  .page-banner .eyebrow {
    font-size: 10px;
    margin-bottom: 5px;
  }

  .page-banner h1,
  .page-banner h2 {
    font-size: 29px;
    margin-bottom: 6px;
  }

  .page-banner p {
    font-size: 14px;
    line-height: 1.4;
  }


  /* CONTENT */

  .content {
    padding: 24px 0;
  }

  .section-heading {
    margin-bottom: 14px;
  }

  .section-heading h2,
  .content h2 {
    font-size: 24px;
    margin-bottom: 5px;
  }

  .section-heading p {
    font-size: 14px;
  }

  .split-section {
    gap: 16px;
  }


  /* CARDS */

  .cards,
  .quick-links {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .card,
  .info-box {
    padding: 16px;
  }

  .card h3,
  .info-box h3 {
    font-size: 19px;
    margin-bottom: 6px;
  }

  .card p,
  .info-box p {
    margin-bottom: 7px;
  }

  .card-label {
    font-size: 10px;
    margin-bottom: 3px;
  }


  /* QUICK LINKS */

  .quick-box {
    padding: 14px 16px;
  }

  .quick-box span {
    font-size: 17px;
    margin-bottom: 1px;
  }

  .quick-box small {
    font-size: 12px;
    line-height: 1.25;
  }


  /* LEADERSHIP */

  .leadership-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 18px;
  }

  .leadership-list p {
    font-size: 14px;
  }


  /* CALENDAR */

  .event-list {
    gap: 10px;
  }

  .event-card {
    grid-template-columns: 66px 1fr;
    gap: 12px;
    padding: 13px;
  }

  .event-date-box {
    width: 66px;
  }

  .event-date-box .month {
    font-size: 11px;
    padding: 3px;
  }

  .event-date-box .day {
    font-size: 26px;
    padding: 5px;
  }

  .event-details h3 {
    font-size: 18px;
    margin-bottom: 3px;
  }

  .event-details p {
    font-size: 13px;
    margin-bottom: 3px;
  }


  /* GALLERY */

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-top: 16px;
  }

  .gallery-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .gallery-item figcaption {
    padding: 10px 13px;
    font-size: 14px;
  }


  /* FORMS */

  form button {
    width: 100%;
  }


  /* FOOTER */

  footer {
    padding: 16px 0;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }

  .footer-container p {
    font-size: 12px;
    line-height: 1.35;
  }

}


/* ========================================
   VERY SMALL MOBILE
======================================== */

@media (max-width: 380px) {

  .hero h1 {
    font-size: 29px;
  }

  .page-banner h1,
  .page-banner h2 {
    font-size: 27px;
  }

  .site-title {
    font-size: 16px;
  }

  .leadership-list {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .event-card {
    grid-template-columns: 60px 1fr;
    gap: 10px;
  }

  .event-date-box {
    width: 60px;
  }

  .event-date-box .day {
    font-size: 24px;
  }

}
