/* Steel Sparrows — brand tokens pulled from the original site */
:root {
  --lavender: #b9b9d5;
  --lavender-deep: #7d76ad;
  --teal: #41908f;
  --teal-dark: #2f6e6d;
  --red: #b02729;
  --red-dark: #8c1f21;
  --ink: #1e1e24;
  --paper: #f7f7f5;
  --white: #ffffff;
  --heading: "Black Han Sans", sans-serif;
  --body: "Cabin", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body { font-family: var(--body); color: var(--ink); background: var(--paper); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: var(--teal-dark); }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 24px;
  background: rgba(30, 28, 44, 0.92);
  backdrop-filter: blur(8px);
}
.nav__brand img { height: 48px; width: auto; }
.nav__links { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.nav__links a {
  color: var(--white); text-decoration: none; font-weight: 600;
  font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase;
}
.nav__links a:hover { color: var(--lavender); }
.nav__cta {
  background: var(--red); padding: 8px 18px; border-radius: 999px;
}
.nav__cta:hover { background: var(--red-dark); color: var(--white) !important; }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  min-height: 88vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 64px 24px;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(255,255,255,0.28), transparent 55%),
    linear-gradient(160deg, var(--lavender-deep) 0%, var(--lavender) 55%, #d4d2e6 100%);
}
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(24,20,44,0.45) 0%, rgba(24,20,44,0.25) 55%, rgba(24,20,44,0.55) 100%);
}
.hero > *:not(.hero__video):not(.hero__scrim) { position: relative; z-index: 2; }
.hero__logo { width: min(420px, 78vw); height: auto; filter: drop-shadow(0 4px 24px rgba(50,40,90,0.35)); }
.hero__tagline {
  font-family: var(--heading); font-size: clamp(22px, 4vw, 34px);
  color: var(--white); text-transform: uppercase; letter-spacing: 0.06em;
  margin-top: 18px; text-shadow: 0 2px 12px rgba(50,40,90,0.4);
}
.hero__sub { color: #ffffff; max-width: 560px; margin-top: 10px; font-size: 17px; text-shadow: 0 1px 8px rgba(50,40,90,0.45); }
.hero__actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; justify-content: center; }
.hero__socials { margin-top: 34px; display: flex; gap: 12px; font-weight: 600; }
.hero__socials a { color: var(--white); text-decoration: none; }
.hero__socials a:hover { text-decoration: underline; }
.hero__socials span { color: rgba(255,255,255,0.7); }

/* Buttons */
.btn {
  display: inline-block; padding: 13px 28px; border-radius: 999px;
  font-family: var(--body); font-weight: 700; font-size: 16px;
  text-decoration: none; text-transform: uppercase; letter-spacing: 0.05em;
  border: 2px solid transparent; cursor: pointer; transition: all .15s ease;
}
.btn--red { background: var(--red); color: var(--white); }
.btn--red:hover { background: var(--red-dark); }
.btn--outline { border-color: var(--white); color: var(--white); }
.btn--outline:hover { background: rgba(255,255,255,0.18); }
.btn--outline-light { border-color: var(--white); color: var(--white); }
.btn--outline-light:hover { background: rgba(255,255,255,0.15); }

/* Sections */
.section { padding: 72px 24px; max-width: 1120px; margin: 0 auto; }
.section--tint { max-width: none; background: #ececf2; }
.section--tint > * { max-width: 1120px; margin-left: auto; margin-right: auto; }
.section--teal { max-width: none; background: var(--teal); }
.section--teal > * { max-width: 1120px; margin-left: auto; margin-right: auto; }
.section__title {
  font-family: var(--heading); font-size: clamp(34px, 5vw, 48px);
  color: var(--teal); text-transform: uppercase; letter-spacing: 0.02em;
  margin-bottom: 36px;
}
.section__title--light { color: var(--white); }

/* About */
.about { display: grid; grid-template-columns: 1fr 1.1fr; gap: 0; align-items: stretch; }
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__panel { background: var(--red); color: var(--white); padding: 44px 40px; }
.about__panel a { color: var(--white); }
.about__panel h3 {
  font-family: var(--heading); font-size: 34px; text-transform: uppercase; letter-spacing: 0.03em;
}
.about__kicker { font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin: 4px 0 18px; }
.about__panel h4 { font-style: italic; font-size: 17px; margin: 22px 0 8px; font-weight: 700; }
.about__panel p { margin-bottom: 12px; }
.about__members { list-style: none; margin-bottom: 14px; }
.about__meta { font-size: 14px; opacity: 0.85; margin-top: 20px; }

/* Shows */
.shows { list-style: none; display: grid; gap: 14px; }
.show {
  display: grid; grid-template-columns: 86px 1fr auto; gap: 20px; align-items: center;
  background: var(--white); border-radius: 12px; padding: 18px 22px;
  box-shadow: 0 2px 10px rgba(30,30,50,0.07);
}
.show__date {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--teal); color: var(--white); border-radius: 10px; padding: 10px 6px; line-height: 1.15;
}
.show__dow { font-size: 13px; text-transform: uppercase; font-weight: 700; opacity: .9; }
.show__day { font-family: var(--heading); font-size: 28px; }
.show__mon { font-size: 13px; text-transform: uppercase; font-weight: 700; opacity: .9; }
.show__info h3 { font-size: 19px; margin-bottom: 2px; }
.show__info p { color: #55555f; font-size: 15px; }
.show__time { font-weight: 700; color: var(--red); white-space: nowrap; }
.shows__note { margin-top: 26px; font-size: 17px; }

/* Awards strip */
.awards {
  display: flex; align-items: center; justify-content: center; gap: 34px;
  background: var(--lavender); padding: 44px 24px; flex-wrap: wrap;
}
.awards img { width: 190px; border-radius: 12px; }
.awards h2 { font-family: var(--heading); font-size: clamp(24px, 3.4vw, 32px); color: var(--ink); text-transform: uppercase; }
.awards p { font-size: 17px; font-weight: 600; color: #3c3752; }

/* Videos */
.videos { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.video { position: relative; aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden; box-shadow: 0 3px 14px rgba(0,0,0,0.25); }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.videos__more { text-align: center; margin-top: 30px; }

/* Gallery */
.gallery { columns: 3 280px; column-gap: 16px; }
.gallery img { border-radius: 10px; margin-bottom: 16px; box-shadow: 0 2px 10px rgba(30,30,50,0.12); }

/* Press kit */
.press__intro { font-size: 17px; margin-bottom: 30px; }
.press__sub { font-family: var(--heading); font-size: 24px; color: var(--ink); text-transform: uppercase; margin-bottom: 20px; }
.press__photo { margin-bottom: 30px; }
.press__photo img { border-radius: 10px; }
.press__photo figcaption { font-size: 14px; color: #66666f; margin-top: 8px; }

/* Contact */
.contact { max-width: 620px; display: grid; gap: 18px; }
.contact label { display: grid; gap: 6px; font-weight: 700; font-size: 15px; }
.contact input, .contact textarea {
  font-family: var(--body); font-size: 16px; padding: 12px 14px;
  border: 2px solid #d9d9e2; border-radius: 8px; background: var(--white);
}
.contact input:focus, .contact textarea:focus { outline: none; border-color: var(--teal); }
.contact button { justify-self: start; }
.contact__status { font-weight: 600; min-height: 1.4em; }
.contact__status.ok { color: var(--teal-dark); }
.contact__status.err { color: var(--red); }

/* Footer */
.footer { background: #1e1c2c; color: #c9c7d6; text-align: center; padding: 40px 24px; }
.footer__socials { display: flex; gap: 22px; justify-content: center; margin-bottom: 14px; }
.footer__socials a { color: var(--white); text-decoration: none; font-weight: 600; }
.footer__socials a:hover { color: var(--lavender); }
.footer p { font-size: 14px; }

/* Responsive */
@media (max-width: 860px) {
  .about { grid-template-columns: 1fr; }
  .about__photo img { max-height: 420px; }
  .show { grid-template-columns: 72px 1fr; }
  .show__time { grid-column: 2; }
  .nav { flex-direction: column; gap: 8px; }
}
