:root {
  --brown: #231C16;
  --warm-gray: #616057;
  --cream: #F7F5EE;
  --text-warm: #F1EBDD;
  --muted: #BEBEBE;
  --white: #FFFFFF;
  --gray-text: #898989;
  --line: rgba(241,235,221,.72);
  --wrap: 860px;
  --wide: 1140px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--brown);
  color: var(--text-warm);
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
a, button { color: inherit; font: inherit; }
a { text-decoration: none; }
button { background: transparent; border: 0; padding: 0; cursor: pointer; }
.site { min-height: 100vh; overflow: hidden; }
.content-wrap { margin-inline: auto; }
.text-wrap { width: min(var(--wrap), calc(100vw - 52px)); }
.wide-wrap { width: min(var(--wide), calc(100vw - 110px)); }

.hero {
  position: relative;
  min-height: 250px;
  padding: 28px 24px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: var(--brown);
  text-align: center;
}
.language-switch {
  position: absolute;
  top: 48px;
  right: max(7.2vw, 60px);
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text-warm);
  font-size: 18px;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.lang-btn { opacity: .62; }
.lang-btn.is-active { opacity: 1; }
.lang-btn:hover { opacity: 1; }
.logo {
  display: block;
  width: min(360px, 42vw);
  height: auto;
  margin: 8px auto 18px;
}
.tagline {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: .29em;
  text-indent: .29em;
  color: var(--text-warm);
  text-transform: uppercase;
}

.videos-section {
  background: var(--brown);
  padding: 0 0 36px;
}
.small-heading {
  margin: 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: .015em;
  text-transform: uppercase;
  color: var(--muted);
}
.line-heading {
  display: block;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
}
.video-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}
.video-card {
  position: relative;
  display: block;
  aspect-ratio: 16 / 8.6;
  background: #111 center / cover no-repeat;
  overflow: hidden;
}
.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.34);
  transition: background .2s ease;
}
.video-card:hover::before { background: rgba(0,0,0,.22); }
.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,.75);
}
.play-icon {
  width: 41px;
  height: 41px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
}
.play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translate(-40%, -50%);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid currentColor;
}

.dark-section {
  background: var(--brown);
  padding: 20px 0 39px;
}
.gray-section {
  background: var(--warm-gray);
  padding: 31px 0 58px;
  color: var(--white);
}
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.body-copy,
.musicians-list p {
  margin: 14px 0 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
  color: var(--white);
  text-align: justify;
}
.emphasis,
.musicians-list p {
  font-style: italic;
}
.stacked-info .body-copy { margin-bottom: 23px; }
.subhead {
  margin-top: 18px;
  margin-bottom: 0;
  border: 0;
  padding: 0;
}
.short { margin-top: 9px; }
.musicians-list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}
.musicians-list p {
  margin: 0;
  text-align: left;
}
.musicians-list strong { font-weight: 600; }

.contact-section {
  background: var(--cream);
  color: var(--gray-text);
  padding: 45px 0 39px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 120px;
  align-items: start;
}
.contact-copy h2 {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: .015em;
  text-transform: uppercase;
  color: var(--gray-text);
}
.contact-copy p {
  margin: 0 0 23px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 600;
  font-style: italic;
  color: #77736d;
}
.email-link {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .055em;
  font-weight: 500;
  color: var(--gray-text);
}
.email-link:hover { color: var(--brown); }
.contact-links {
  display: grid;
  gap: 22px;
}
.contact-action {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--gray-text);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
}
.contact-action:hover { color: var(--brown); }
.icon-circle {
  width: 61px;
  height: 61px;
  border: 1px solid #8c8980;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.icon-circle svg { width: 25px; height: 25px; fill: currentColor; }

@media (max-width: 980px) {
  .hero { min-height: 220px; padding-top: 28px; padding-bottom: 12px; }
  .language-switch { top: 28px; right: 26px; font-size: 16px; }
  .logo { width: min(340px, 70vw); margin-bottom: 18px; }
  .tagline { font-size: 14px; letter-spacing: .18em; text-indent: .18em; }
  .wide-wrap, .text-wrap { width: min(100% - 42px, 680px); }
  .video-grid { grid-template-columns: 1fr; gap: 12px; }
  .video-card { aspect-ratio: 16 / 9; }
  .two-column { grid-template-columns: 1fr; gap: 32px; }
  .body-copy { font-size: 18px; text-align: justify; }
  .musicians-list p { font-size: 18px; text-align: left; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-links { gap: 14px; }
}
@media (max-width: 520px) {
  .hero { min-height: 200px; }
  .logo { width: 76vw; margin-bottom: 16px; }
  .tagline { font-size: 12px; letter-spacing: .11em; text-indent: .11em; }
  .small-heading { font-size: 12px; }
  .body-copy, .musicians-list p { font-size: 17px; }
  .contact-copy p { font-size: 31px; }
  .contact-section { padding: 40px 0; }
  .icon-circle { width: 55px; height: 55px; }
}
