@charset "UTF-8";
/* Layer order: content 0, header 10, native dialog top layer. */
:root {
  --paper: #f3f1eb;
  --paper-alt: #eae7df;
  --ink: #252b28;
  --muted: #5d635c;
  --accent: #b72735;
  --accent-hover: #97202b;
  --line: #cccfc5;
  --field: #faf9f5;
  --white: #fffdf9;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  color-scheme: light dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
}
button,
a {
  touch-action: manipulation;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
p,
h1,
h2,
h3 {
  margin: 0;
}
p + p {
  margin-top: 1em;
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.12;
}
h2 {
  font-size: clamp(40px, 4.1vw, 61px);
}
h3 {
  font-weight: 600;
  line-height: 1.35;
}
::selection {
  background: var(--accent);
  color: var(--white);
}
.container {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}
.section {
  padding-block: 105px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  line-height: 1.65;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 17px 23px;
  min-height: 54px;
  background: var(--accent);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  border: 1px solid var(--accent);
  transition:
    background 0.2s,
    transform 0.2s;
  white-space: nowrap;
}
.button:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
}
.button span {
  font-size: 20px;
  line-height: 1;
}
.button-small {
  font-size: 12px;
  padding: 12px 17px;
  min-height: 43px;
  gap: 22px;
}
.underlined-link {
  display: inline-flex;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
  font-size: 13px;
  font-weight: 700;
  width: fit-content;
  transition:
    color 0.2s,
    gap 0.2s;
}
.underlined-link:hover {
  color: var(--accent);
  gap: 28px;
}
.underlined-link > span:last-child {
  font-size: 21px;
}
.small-copy {
  font-size: 12px;
  line-height: 1.75;
  color: var(--muted);
}
.large-copy {
  font-size: clamp(23px, 2.1vw, 30px);
  line-height: 1.5;
  letter-spacing: -0.035em;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  z-index: 20;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--paper);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  height: 88px;
  padding-inline: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--paper);
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: block;
  width: 177px;
  flex-shrink: 0;
}
.brand img {
  width: 100%;
}
.logo-dark-mode {
  display: none;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 33px;
}
.site-header nav > a:not(.button) {
  font-size: 12px;
  font-weight: 600;
  padding-block: 12px;
}
.site-header nav > a:not(.button):hover {
  color: var(--accent);
}
.menu-toggle {
  background: none;
  border: 0;
  color: var(--ink);
  padding: 10px 0;
  font-size: 13px;
  font-weight: 700;
}
.menu-toggle span {
  margin-left: 10px;
  font-size: 18px;
}
.hero {
  display: grid;
  grid-template-columns: 47% 53%;
  min-height: 655px;
  overflow: hidden;
}
.hero-copy {
  padding: 79px 42px 78px max(56px, calc((100vw - 1280px) / 2));
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero .eyebrow {
  color: var(--accent);
  margin-bottom: 23px;
  font-size: 9px;
  letter-spacing: 0.115em;
  max-width: 380px;
}
.hero h1 {
  font-size: clamp(58px, 6.25vw, 94px);
  color: var(--accent);
  line-height: 1.04;
  letter-spacing: -0.064em;
}
.hero-description {
  margin-top: 28px;
  max-width: 348px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 35px;
}
.hero-actions .button {
  padding: 16px 21px;
  gap: 25px;
}
.text-button {
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
}
.text-button:hover {
  color: var(--accent);
}
.play-small {
  width: 29px;
  height: 29px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 9px;
  padding-left: 2px;
}
.hero-photo {
  min-width: 0;
  position: relative;
}
.hero-photo img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 50%;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 1px 0 0 rgb(0 0 0 / 0.06);
  pointer-events: none;
}
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
  border-bottom: 1px solid var(--line);
}
.intro-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.folk-heart {
  width: 60px;
  height: 60px;
  margin-top: 38px;
  object-fit: contain;
}
.intro-copy {
  padding-top: 5px;
  max-width: 526px;
}
.intro-copy > p:not(.large-copy) {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.95;
}
.intro-copy .large-copy {
  margin-bottom: 26px;
}
.intro-copy .underlined-link {
  margin-top: 25px;
}
.section-heading {
  margin-bottom: 43px;
}
.section-heading .eyebrow {
  color: var(--accent);
  margin-bottom: 16px;
}
.section-heading > p:last-child {
  margin-top: 17px;
  font-size: 13px;
  color: var(--muted);
}
.music-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
}
.featured-track {
  min-width: 0;
}
.track-image {
  position: relative;
  overflow: hidden;
  background: var(--paper-alt);
  aspect-ratio: 16/9;
}
.track-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.featured-track:hover .track-image img {
  transform: scale(1.035);
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 253, 249, 0.94);
  color: var(--accent);
  width: 67px;
  height: 67px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 19px;
  padding-left: 4px;
  transition: background 0.2s;
}
.featured-track:hover .play-button {
  background: var(--white);
}
.track-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}
.track-caption p,
.track-row p {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 4px;
}
.track-caption h3 {
  font-size: 23px;
  letter-spacing: -0.035em;
}
.track-caption > span {
  font-size: 29px;
  color: var(--accent);
}
.track-list {
  display: grid;
  align-content: start;
  gap: 23px;
}
.track-row {
  display: grid;
  grid-template-columns: 39% 1fr;
  align-items: center;
  gap: 22px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line);
}
.track-row:last-child {
  border: 0;
  padding-bottom: 0;
}
.track-row img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
  background: var(--paper-alt);
}
.track-row h3 {
  font-size: 17px;
  letter-spacing: -0.025em;
}
.track-action {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  margin-top: 11px;
  color: var(--accent);
}
.track-row:hover h3 {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.music-channel {
  margin-top: 39px;
}
.ornament-band {
  height: 70px;
  background-image: url("/assets/folk-ornament.webp");
  background-size: auto 145px;
  background-position: center;
  background-repeat: repeat-x;
  mix-blend-mode: multiply;
  opacity: 0.9;
}
.concerts {
  display: grid;
  grid-template-columns: 43% 1fr;
  gap: 11%;
  align-items: center;
}
.concert-photo {
  height: 620px;
  overflow: hidden;
}
.concert-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.concert-copy h2 {
  font-size: clamp(36px, 3.6vw, 54px);
}
.concert-copy > p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 25px;
  max-width: 450px;
}
.event-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 31px;
}
.event-options a {
  font-size: 11px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  padding: 15px 13px;
  align-items: center;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}
.event-options a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--field);
}
.event-options span {
  font-size: 16px;
}
.concert-copy .small-copy {
  font-size: 11px;
  margin-block: 23px 30px;
}
.file-label {
  font-size: 9px;
  border: 1px solid var(--line);
  padding: 0 5px;
  letter-spacing: 0.03em;
  color: var(--muted);
}
.live-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper-alt);
  margin-bottom: 100px;
}
.live-image {
  min-height: 365px;
  position: relative;
}
.live-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}
.live-copy {
  padding: 50px 56px;
  align-self: center;
}
.live-copy .large-copy {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1.25;
  letter-spacing: -0.04em;
}
.live-copy > p + p {
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
  margin-block: 23px;
}
.contact-section {
  background: var(--paper-alt);
  padding-block: 98px 104px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 9%;
}
.contact-copy .eyebrow {
  color: var(--accent);
  margin-bottom: 23px;
}
.contact-copy h2 {
  font-size: clamp(45px, 4.1vw, 61px);
}
.contact-copy > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 26px;
  max-width: 335px;
}
.booking-person {
  margin-top: 42px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.booking-person .small-copy {
  font-size: 10px;
}
.booking-person > p {
  font-size: 15px;
  font-weight: 600;
  margin: 2px 0 14px;
}
.phone-link {
  font-size: 24px;
  letter-spacing: -0.04em;
  line-height: 1.4;
}
.email-link {
  font-size: 12px;
  margin-top: 8px;
  border-bottom: 1px solid var(--line);
}
.phone-link:hover,
.email-link:hover {
  color: var(--accent);
}
.contact-socials {
  display: flex;
  gap: 22px;
  margin-top: 40px;
  font-size: 10px;
  font-weight: 600;
}
.contact-socials a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.booking-form {
  padding: 33px 34px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.booking-form h3 {
  font-size: 21px;
  letter-spacing: -0.04em;
}
.form-intro {
  font-size: 10px;
  color: var(--muted);
  margin-top: 9px;
  margin-bottom: 27px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.6;
}
.field label span {
  font-weight: 400;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--field);
  color: var(--ink);
  padding: 12px 11px;
  font-size: 11px;
  line-height: 1.6;
  min-height: 45px;
  transition:
    border-color 0.2s,
    outline 0.2s;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
  opacity: 1;
}
.field select {
  padding-right: 4px;
}
.field textarea {
  resize: vertical;
  min-height: 92px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}
.form-privacy {
  font-size: 9px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 21px;
}
.form-privacy a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.submit-button {
  width: 100%;
  margin-top: 20px;
  padding: 14px 18px;
  font-size: 12px;
  min-height: 49px;
}
.submit-button:disabled {
  opacity: 0.7;
  transform: none;
}
.form-status {
  font-size: 12px;
  line-height: 1.8;
  margin-top: 12px;
  color: var(--accent);
  overflow-wrap: anywhere;
}
.form-status:empty {
  display: none;
}
.form-status a {
  text-decoration: underline;
}
.faq {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 9%;
}
.faq h2 {
  font-size: 49px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  list-style: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 0;
}
summary::-webkit-details-marker {
  display: none;
}
summary > span {
  font-size: 23px;
  color: var(--accent);
  line-height: 1;
  font-weight: 400;
  transition: transform 0.2s;
}
details[open] summary > span {
  transform: rotate(45deg);
}
details > p {
  font-size: 12px;
  line-height: 1.95;
  color: var(--muted);
  padding-bottom: 24px;
  padding-right: 28px;
}
details a {
  text-decoration: underline;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 33px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.footer-brand {
  width: 151px;
}
.site-footer > p {
  font-size: 11px;
  color: var(--muted);
}
.site-footer > div {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 9px;
  color: var(--muted);
}
.site-footer a:hover {
  color: var(--accent);
}
.video-dialog {
  width: min(1020px, calc(100% - 32px));
  max-height: 90dvh;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  padding: 22px;
  overflow: auto;
}
.video-dialog::backdrop {
  background: rgb(12 23 16 / 0.88);
}
.video-dialog-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 17px;
}
.video-dialog-top h2 {
  font-family: var(--sans);
  font-size: 20px;
  letter-spacing: -0.02em;
}
.dialog-close {
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
}
.dialog-close:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.video-content {
  aspect-ratio: 16/9;
  background: #17201b;
}
.video-content iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-note {
  font-size: 10px;
  color: var(--muted);
  margin-top: 15px;
}
.video-note a {
  text-decoration: underline;
  white-space: nowrap;
}
.document-main {
  max-width: 760px;
  margin-inline: auto;
  padding: 90px 28px 110px;
  min-height: 75dvh;
}
.document-main h1 {
  font-size: clamp(40px, 6vw, 68px);
  margin-bottom: 32px;
  color: var(--accent);
}
.document-main h2 {
  font-family: var(--sans);
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-top: 32px;
  margin-bottom: 12px;
}
.document-main p,
.document-main li {
  font-size: 14px;
  color: var(--muted);
}
.document-main a:not(.button) {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.document-main .button {
  margin-top: 30px;
}
.document-main .eyebrow {
  color: var(--accent);
  margin-bottom: 20px;
}
.success-contact {
  margin-top: 30px;
}
.document-header .back-link {
  font-size: 12px;
}
.document-header {
  height: 80px;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: hero-in 0.8s ease-out both;
  }
  .hero-photo {
    animation: photo-in 1.1s ease-out both;
  }
  .reveal.is-pending {
    opacity: 0;
    transform: translateY(24px);
  }
  .reveal {
    transition:
      opacity 0.65s ease,
      transform 0.65s cubic-bezier(0.2, 0.65, 0.3, 1);
  }
}
@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes photo-in {
  from {
    opacity: 0.2;
    transform: scale(1.02);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #1c2520;
    --paper-alt: #232f28;
    --ink: #f1f0e8;
    --muted: #b9c1b6;
    --accent: #f1838c;
    --accent-hover: #f79da4;
    --line: #485449;
    --field: #27332b;
    --white: #222a24;
  }
  .logo-light-mode {
    display: none;
  }
  .logo-dark-mode {
    display: block;
  }
  .ornament-band {
    mix-blend-mode: screen;
    filter: invert(1);
    opacity: 0.16;
  }
  .play-button {
    background: #edece5;
    color: #a42130;
  }
  .featured-track:hover .play-button {
    background: #faf9f4;
  }
  .hero-photo {
    opacity: 0.92;
  }
  .video-dialog::backdrop {
    background: rgb(5 10 6 / 0.9);
  }
}
@media (min-width: 1600px) {
  .hero {
    min-height: 740px;
  }
  .hero h1 {
    font-size: 104px;
  }
  .hero-copy {
    padding-right: 65px;
  }
  .hero-description {
    max-width: 370px;
    font-size: 15px;
  }
  .hero-actions {
    margin-top: 41px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 72px);
  }
  .site-header {
    padding-inline: 36px;
  }
  .hero-copy {
    padding-left: 36px;
    padding-right: 25px;
  }
  .hero {
    min-height: 590px;
    grid-template-columns: 49% 51%;
  }
  .hero h1 {
    font-size: 69px;
  }
  .hero .eyebrow {
    font-size: 8px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-actions {
    gap: 19px;
  }
  .hero-actions .button {
    font-size: 11px;
    padding-inline: 16px;
    gap: 22px;
  }
  .intro {
    gap: 8%;
  }
  .section {
    padding-block: 78px;
  }
  .music-layout {
    gap: 30px;
    grid-template-columns: 1.1fr 1fr;
  }
  .track-list {
    gap: 17px;
  }
  .track-row {
    gap: 15px;
    padding-bottom: 17px;
  }
  .track-row h3 {
    font-size: 14px;
  }
  .track-action {
    font-size: 9px;
  }
  .concerts {
    gap: 7%;
    grid-template-columns: 43% 1fr;
  }
  .concert-photo {
    height: 530px;
  }
  .concert-copy h2 {
    font-size: 43px;
  }
  .live-copy {
    padding: 36px;
  }
  .live-image {
    min-height: 330px;
  }
  .live-section {
    margin-bottom: 78px;
  }
  .contact-layout,
  .faq {
    gap: 6%;
    grid-template-columns: 39% 1fr;
  }
  .contact-copy h2 {
    font-size: 47px;
  }
  .booking-form {
    padding: 28px 24px;
  }
  .contact-socials {
    gap: 14px;
  }
  .event-options {
    gap: 8px;
  }
  .event-options a {
    font-size: 10px;
    padding-inline: 10px;
  }
  .site-header nav {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 25px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .site-header {
    height: auto;
    min-height: 75px;
    padding: 15px 20px;
    flex-wrap: wrap;
    gap: 0;
  }
  .brand {
    width: 148px;
  }
  .site-header nav {
    width: 100%;
    justify-content: space-between;
    gap: 14px;
    margin-top: 16px;
    border-top: 1px solid var(--line);
    padding-top: 13px;
  }
  .site-header nav > a:not(.button) {
    font-size: 10px;
  }
  .site-header nav .button {
    font-size: 10px;
    min-height: 38px;
    padding: 8px 10px;
    gap: 10px;
  }
  .js-menu .menu-toggle {
    display: block;
  }
  .js-menu nav {
    display: none;
  }
  .js-menu nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    padding-bottom: 5px;
  }
  .js-menu nav a {
    padding: 11px 0;
    font-size: 14px !important;
  }
  .js-menu nav .button {
    justify-content: center;
    padding: 12px 16px;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-copy {
    padding: 51px 24px 47px;
    align-items: flex-start;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: clamp(62px, 11.2vw, 84px);
    letter-spacing: -0.058em;
    line-height: 1.07;
  }
  .hero-description {
    font-size: 13px;
    max-width: 350px;
    line-height: 1.85;
    margin-top: 20px;
  }
  .hero-actions {
    margin-top: 27px;
    gap: 29px;
  }
  .hero-actions .button {
    font-size: 11px;
    padding: 14px 17px;
    min-height: 49px;
    gap: 23px;
  }
  .hero-photo {
    height: 420px;
  }
  .hero-photo img {
    object-position: 59% 42%;
  }
  .section {
    padding-block: 65px;
  }
  h2 {
    font-size: 42px;
  }
  .intro {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .intro-title {
    position: relative;
  }
  .intro-title h2 {
    font-size: 44px;
  }
  .folk-heart {
    position: absolute;
    right: 8px;
    top: 0;
    width: 60px;
    height: 60px;
    margin-top: 0;
  }
  .intro-copy {
    padding: 0;
  }
  .intro-copy .large-copy {
    font-size: 23px;
    line-height: 1.5;
    margin-bottom: 23px;
  }
  .intro-copy > p:not(.large-copy) {
    font-size: 13px;
  }
  .intro-copy .underlined-link {
    margin-top: 24px;
  }
  .section-heading {
    margin-bottom: 30px;
  }
  .section-heading > p:last-child {
    font-size: 12px;
  }
  .section-heading .eyebrow {
    font-size: 9px;
  }
  .music-layout {
    grid-template-columns: 1fr;
    gap: 31px;
  }
  .track-caption {
    padding-top: 14px;
  }
  .track-caption h3 {
    font-size: 22px;
  }
  .track-list {
    gap: 17px;
  }
  .track-row {
    grid-template-columns: 36% 1fr;
    gap: 20px;
  }
  .track-row h3 {
    font-size: 16px;
  }
  .track-action {
    font-size: 10px;
    margin-top: 8px;
  }
  .music-channel {
    margin-top: 30px;
    font-size: 12px;
  }
  .ornament-band {
    height: 54px;
    background-size: auto 116px;
  }
  .concerts {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .concert-photo {
    height: 440px;
    max-width: 100%;
  }
  .concert-photo img {
    object-position: center 34%;
  }
  .concert-copy h2 {
    font-size: 39px;
    line-height: 1.14;
  }
  .concert-copy > p {
    font-size: 13px;
    margin-top: 21px;
  }
  .event-options a {
    font-size: 11px;
    padding: 15px 13px;
  }
  .concert-copy .small-copy {
    font-size: 11px;
  }
  .live-section {
    grid-template-columns: 1fr;
    margin-bottom: 64px;
  }
  .live-image {
    min-height: 260px;
  }
  .live-copy {
    padding: 31px 27px 36px;
  }
  .live-copy .large-copy {
    font-size: 33px;
  }
  .contact-section {
    padding-block: 60px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-copy h2 {
    font-size: 49px;
  }
  .contact-copy > p:not(.eyebrow) {
    max-width: 420px;
  }
  .booking-person {
    margin-top: 28px;
  }
  .phone-link {
    font-size: 25px;
  }
  .contact-socials {
    margin-top: 25px;
    gap: 25px;
    font-size: 11px;
  }
  .booking-form {
    padding: 26px 20px;
  }
  .booking-form h3 {
    font-size: 20px;
  }
  .form-grid {
    gap: 16px 12px;
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
    padding: 10px;
    min-height: 49px;
  }
  .field label {
    font-size: 11px;
  }
  .field label span {
    font-size: 9px;
  }
  .field input::placeholder,
  .field textarea::placeholder {
    font-size: 12px;
  }
  .field select {
    font-size: 12px;
  }
  .form-privacy {
    font-size: 10px;
  }
  .form-intro {
    font-size: 10px;
  }
  .form-status {
    font-size: 12px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq h2 {
    font-size: 44px;
  }
  summary {
    font-size: 12px;
    padding-block: 21px;
  }
  details > p {
    font-size: 12px;
    padding-right: 12px;
  }
  .site-footer {
    flex-wrap: wrap;
    padding-block: 28px;
    gap: 20px;
  }
  .footer-brand {
    width: 132px;
  }
  .site-footer > p {
    font-size: 10px;
  }
  .site-footer > div {
    width: 100%;
    justify-content: space-between;
    font-size: 10px;
  }
  .video-dialog {
    padding: 14px;
  }
  .video-dialog-top h2 {
    font-size: 15px;
  }
  .video-note {
    font-size: 10px;
  }
  .document-header {
    flex-wrap: nowrap;
  }
  .document-header .back-link {
    font-size: 11px;
  }
  .document-main {
    padding: 55px 24px 75px;
  }
}
@media (max-width: 380px) {
  .hero-copy {
    padding-inline: 20px;
  }
  .hero h1 {
    font-size: 59px;
  }
  .hero .eyebrow {
    font-size: 7.5px;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero-photo {
    height: 350px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .concert-copy h2 {
    font-size: 35px;
  }
  .event-options a {
    font-size: 10px;
  }
  .contact-copy h2 {
    font-size: 44px;
  }
  .hero-actions .button {
    gap: 15px;
  }
  .track-row h3 {
    font-size: 14px;
  }
}
.menu-toggle {
  display: none;
}
@media (max-width: 480px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .field label {
    font-size: 12px;
  }
  .field label span {
    font-size: 10px;
  }
  .field select {
    font-size: 16px;
  }
}
.theme-toggle {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 10px;
  padding: 9px 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
:root[data-theme="light"] {
  --paper: #f3f1eb;
  --paper-alt: #eae7df;
  --ink: #252b28;
  --muted: #5d635c;
  --accent: #b72735;
  --accent-hover: #97202b;
  --line: #cccfc5;
  --field: #faf9f5;
  --white: #fffdf9;
  color-scheme: light;
}
:root[data-theme="dark"] {
  --paper: #1c2520;
  --paper-alt: #232f28;
  --ink: #f1f0e8;
  --muted: #b9c1b6;
  --accent: #f1838c;
  --accent-hover: #f79da4;
  --line: #485449;
  --field: #27332b;
  --white: #222a24;
  color-scheme: dark;
}
[data-theme="light"] .logo-light-mode,
[data-theme="dark"] .logo-dark-mode {
  display: block;
}
[data-theme="light"] .logo-dark-mode,
[data-theme="dark"] .logo-light-mode {
  display: none;
}
[data-theme="light"] .ornament-band {
  mix-blend-mode: multiply;
  filter: none;
  opacity: 0.9;
}
[data-theme="dark"] .ornament-band {
  mix-blend-mode: screen;
  filter: invert(1);
  opacity: 0.16;
}
[data-theme="light"] .hero-photo {
  opacity: 1;
}
[data-theme="dark"] .play-button {
  background: #edece5;
  color: #a42130;
}
@media (max-width: 767px) {
  .js-menu .menu-toggle {
    display: block;
  }
  .site-header nav {
    flex-wrap: wrap;
  }
  .site-footer > div {
    flex-wrap: wrap;
    gap: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
