:root {
  --page-bg: #000000;
  --paper: #faf4e4;
  --ink: #2a1d10;
  --wood-mid: #6b4423;
  --wood-light: #a67848;
  --gold: #b8892e;
  --burgundy: #8b2e2e;
  --white-panel: rgba(255, 255, 255, 0.82);
  --button-bg: #000000;
  --button-color: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page-bg);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  background: var(--page-bg);
}

body::before {
  content: none;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: #ffffff;
  color: #000000;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  max-width: 1180px;
  margin: 0 auto;
  background: var(--page-bg);
}

.site-header {
  position: relative;
  padding: 20px 22px 28px;
  text-align: center;
  background: rgba(0, 0, 0, 0.78);
}

.site-title {
  margin: 18px 0 0;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(42px, 6.5vw, 73px);
  line-height: 1.05;
  font-weight: 400;
}

.site-title a {
  color: #ffffff;
  text-decoration: none;
}

.main-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  display: block;
  color: #ffffff;
  font-family: "Alex Brush", cursive;
  font-size: 27px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav li.selected > a,
.main-nav a:hover {
  color: #ffae00;
}

.submenu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  left: 50%;
  min-width: 170px;
  transform: translateX(-50%);
  flex-direction: column;
  gap: 0 !important;
  background: #000000;
  padding: 8px 0 !important;
  opacity: 0;
  pointer-events: none;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
}

.submenu a {
  padding: 8px 18px;
  font-size: 23px;
}

.mobile-menu-button,
.mobile-menu-close,
.mobile-nav {
  display: none;
}

.page-photo {
  background: #000000;
  overflow: hidden;
}

.page-photo img {
  display: block;
  width: 100%;
  height: clamp(230px, 32vw, 390px);
  object-fit: cover;
  object-position: center;
}

body[data-page="home"] .page-photo img {
  height: clamp(380px, 56vw, 680px);
}

.content-section {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 28px 18px;
}

.feature-card,
.wft-calendar-wrap,
.contact-wrap {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top, rgba(184, 137, 46, 0.18), transparent 60%),
    radial-gradient(ellipse at bottom, rgba(139, 46, 46, 0.10), transparent 60%),
    var(--paper);
  border: 1px solid rgba(42, 29, 16, 0.15);
  box-shadow: inset 0 0 80px rgba(42, 29, 16, 0.06);
}

.feature-card::before,
.wft-calendar-wrap::before,
.contact-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(42, 29, 16, 0.012) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(0deg, rgba(42, 29, 16, 0.012) 0 1px, transparent 1px 3px);
  pointer-events: none;
}

.feature-card {
  padding: 48px 24px 40px;
}

.feature-card-inner,
.feature-heading,
.contact-form,
.contact-note,
.social-block,
.wft-events,
.schedule-actions,
.footnote {
  position: relative;
  z-index: 1;
}

.feature-card-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.feature-heading span,
.section-label {
  margin-bottom: 14px;
  color: var(--burgundy);
  font-family: "Lora", Georgia, serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.feature-card h2,
.feature-heading h2,
.wtm-section h3 {
  margin: 0 0 10px;
  color: var(--burgundy);
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.05;
}

.feature-card h2 em,
.feature-heading h2 em,
.wtm-section h3 em {
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
}

.feature-card p,
.lead {
  max-width: 660px;
  margin: 0 auto;
  color: var(--ink);
  font-size: 17px;
  font-style: italic;
  line-height: 1.65;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 320px;
  margin: 20px auto;
}

.divider span,
.wtm-section .ornament::before,
.wtm-section .ornament::after {
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, transparent, var(--wood-mid), transparent);
}

.divider b,
.ornament {
  color: var(--gold);
  font-size: 18px;
  font-weight: 400;
}

.corner {
  position: absolute;
  width: 64px;
  height: 64px;
  border: 2px solid var(--gold);
  opacity: 0.7;
  pointer-events: none;
}

.corner.tl { top: 16px; left: 16px; border-right: 0; border-bottom: 0; }
.corner.tr { top: 16px; right: 16px; border-left: 0; border-bottom: 0; }
.corner.bl { bottom: 16px; left: 16px; border-right: 0; border-top: 0; }
.corner.br { bottom: 16px; right: 16px; border-left: 0; border-top: 0; }

.video-section {
  padding-top: 18px;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

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

.wft-calendar-wrap,
.contact-wrap {
  padding: 46px 24px;
}

.feature-heading {
  margin: 0 auto 28px;
  text-align: center;
}

.feature-heading h2 {
  color: var(--ink);
  font-size: clamp(28px, 4vw, 42px);
}

.wft-events {
  display: grid;
  gap: 18px;
  max-width: 780px;
  margin: 0 auto;
}

.notice {
  margin: 0;
  text-align: center;
  font-size: 18px;
}

.wft-event {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(42, 29, 16, 0.16);
}

.wft-event-date {
  display: grid;
  align-content: center;
  text-align: center;
  border-right: 1px solid rgba(107, 68, 35, 0.35);
  padding-right: 18px;
}

.wft-event-date .month,
.wft-event-date .year {
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wft-event-date .day {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  line-height: 1;
}

.wft-event h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 24px;
}

.wft-event p {
  margin: 0 0 8px;
  line-height: 1.55;
}

.wft-event .meta,
.wft-event .loc {
  color: var(--wood-mid);
  font-weight: 600;
}

.event-link {
  color: var(--burgundy);
  font-weight: 600;
}

.schedule-actions,
.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid #000000;
  background: transparent;
  color: #000000;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  text-transform: uppercase;
}

.button.primary,
.button:hover {
  background: var(--button-bg);
  color: var(--button-color);
}

.button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.footnote {
  margin: 22px 0 0;
  text-align: center;
  font-size: 14px;
}

.contact-wrap {
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 14px;
  width: min(100%, 620px);
  margin: 26px auto 0;
  text-align: left;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(42, 29, 16, 0.35);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  font: inherit;
}

.turnstile-slot {
  min-height: 65px;
  color: var(--wood-mid);
  font-size: 14px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--burgundy);
  font-size: 14px;
}

.contact-note {
  max-width: 620px;
  margin: 24px auto 0;
}

.social-block {
  margin-top: 30px;
  text-align: center;
}

.social-block h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin: 0 0 12px;
}

.social-links a {
  color: var(--burgundy);
  font-weight: 600;
}

.album-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
  padding: 28px;
  background: var(--white-panel);
}

.album-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.album-info h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 36px;
}

.album-info h3 {
  margin: 4px 0 28px;
  color: var(--wood-mid);
  font-size: 20px;
  font-weight: 400;
}

.store-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(42, 29, 16, 0.2);
  border-bottom: 1px solid rgba(42, 29, 16, 0.2);
}

.album-description {
  margin: 28px 0 0;
  line-height: 1.65;
}

.about-section {
  display: grid;
  gap: 28px;
}

.about-block {
  padding: 34px 28px;
  background: var(--white-panel);
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.member-card {
  text-align: center;
}

.member-card img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
}

.member-card h3,
.award-block h3 {
  margin: 14px 0 4px;
  font-family: "Playfair Display", serif;
  font-size: 30px;
}

.member-card .role {
  margin: 0 0 12px;
  color: var(--burgundy);
  font-style: italic;
}

.member-card p,
.recording-block p,
.partner-block p,
.award-block p,
.social-block p {
  line-height: 1.65;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
  margin-top: 22px;
}

.partner-logos a {
  display: grid;
  align-items: center;
  min-height: 82px;
  padding: 12px;
  background: #ffffff;
}

.partner-logos img {
  max-width: 100%;
  max-height: 70px;
  margin: auto;
}

.award-block {
  text-align: center;
}

.wood-tone-section {
  display: grid;
  gap: 0;
}

.wtm-top {
  border-bottom: 0;
}

.tm {
  font-size: 0.45em;
  vertical-align: super;
}

.wtm-middle {
  padding: 48px 28px;
  background:
    radial-gradient(ellipse at center, rgba(250, 244, 228, 0.6), transparent 70%),
    #ffffff;
  border: 1px solid rgba(42, 29, 16, 0.15);
  border-top: 0;
}

.wtm-section {
  max-width: 780px;
  margin: 0 auto 44px;
}

.wtm-section:last-child {
  margin-bottom: 0;
}

.wtm-section h3 {
  color: var(--ink);
  text-align: center;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
}

.wtm-section .ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 240px;
  margin: 0 auto 28px;
}

.wtm-section .ornament::before,
.wtm-section .ornament::after {
  content: "";
}

.wtm-section p {
  font-size: 16px;
  line-height: 1.75;
}

.wtm-contact-card {
  position: relative;
  display: grid;
  justify-items: center;
  max-width: 480px;
  margin: 0 auto;
  padding: 32px 28px;
  text-align: center;
  background: var(--paper);
  border: 2px solid var(--wood-mid);
}

.wtm-contact-card::before,
.wtm-contact-card::after {
  content: "✦";
  position: absolute;
  top: 10px;
  color: var(--gold);
}

.wtm-contact-card::before {
  left: 14px;
}

.wtm-contact-card::after {
  right: 14px;
}

.wtm-contact-card .role {
  margin: 0;
  color: var(--wood-mid);
  font-style: italic;
}

.wtm-contact-card .company {
  margin: 4px 0 18px;
  color: var(--wood-mid);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.card-divider {
  width: 60px;
  height: 1px;
  margin: 0 auto 20px;
  background: var(--wood-light);
}

.wtm-contact-card a {
  margin: 4px 0;
  text-decoration: none;
}

.wtm-logo-section {
  display: grid;
  justify-items: center;
}

.wtm-logo-section img {
  display: block;
  width: min(100%, 620px);
  height: auto;
}

.site-footer {
  position: relative;
  z-index: 2;
  padding: 26px 18px;
  background: rgba(0, 0, 0, 0.78);
  color: rgba(255, 255, 255, 0.86);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  gap: 18px;
  align-items: center;
  width: min(100%, 980px);
  margin: 0 auto;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.6;
}

.footer-brand,
.footer-nav,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}

.footer-brand {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.footer-brand strong {
  color: #ffffff;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
}

.footer-nav {
  justify-content: center;
}

.footer-social {
  justify-content: flex-end;
}

.footer-legal {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 4px 2px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: inline-grid;
    gap: 5px;
    width: 42px;
    height: 36px;
    margin: 0 auto 12px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: #000000;
  }

  .mobile-menu-button span {
    display: block;
    height: 2px;
    background: #ffffff;
  }

  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: block;
    padding: 64px 22px 22px;
    background: #000000;
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav ul {
    flex-direction: column;
    gap: 14px;
  }

  .mobile-nav a {
    font-size: 34px;
  }

  .mobile-menu-close {
    position: absolute;
    top: 16px;
    right: 18px;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: #000000;
    color: #ffffff;
    font-family: Georgia, serif;
    font-size: 34px;
    line-height: 1;
  }

  .mobile-nav .submenu {
    position: static;
    display: flex;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    background: transparent;
    padding-top: 8px !important;
  }

  .site-title {
    margin-top: 4px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .footer-nav,
  .footer-social {
    justify-content: center;
  }

  .footer-brand {
    align-items: center;
  }
}

@media (max-width: 720px) {
  .content-section {
    padding: 18px 10px;
  }

  .corner {
    width: 40px;
    height: 40px;
  }

  .feature-card,
  .wft-calendar-wrap,
  .contact-wrap,
  .about-block,
  .wtm-middle {
    padding: 34px 18px;
  }

  .wft-event,
  .album-card,
  .store-row {
    grid-template-columns: 1fr;
  }

  .wft-event-date {
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    align-items: baseline;
    gap: 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(107, 68, 35, 0.35);
    padding: 0 0 12px;
  }

  .wft-event-date .day {
    font-size: 38px;
  }

  .album-card {
    padding: 18px;
  }

  .member-grid,
  .partner-logos {
    grid-template-columns: 1fr;
  }
}
