@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-300.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/jost-300.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/jost-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/jost-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/jost-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #161b2f;
  --navy: #202844;
  --wine: #5b2030;
  --paper: #f6f0e4;
  --sand: #e7d9bd;
  --gold: #c79d42;
  --copper: #a7653c;
  --text: #252337;
  --muted: #6e6672;
  --white: #fffaf0;
  --shadow: 0 24px 70px rgba(18, 20, 34, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Jost", Arial, sans-serif;
  line-height: 1.65;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  line-height: 1.02;
}

h1 {
  max-width: 900px;
  font-size: clamp(4rem, 10vw, 8.75rem);
}

.hero h1 {
  max-width: 1050px;
  font-size: clamp(3rem, 7.4vw, 7.1rem);
}

h1 span {
  display: block;
}

.hero h1 span:last-child {
  white-space: nowrap;
}

h2 {
  max-width: 760px;
  font-size: clamp(2.4rem, 5vw, 4.75rem);
}

h3 {
  font-size: 1.8rem;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.1rem clamp(1rem, 4vw, 3rem);
  color: var(--white);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.header-inner {
  position: relative;
  display: flex;
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-header.scrolled {
  background: rgba(22, 27, 47, 0.94);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border: 1px solid rgba(199, 157, 66, 0.75);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0.16em;
}

.brand small {
  font-size: 0.65rem;
  opacity: 0.75;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1.15vw, 1.05rem);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.82;
}

.site-nav li,
.footer-links li {
  display: contents;
  list-style: none;
}

.site-nav a:hover {
  color: var(--gold);
  opacity: 1;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  color: var(--white);
}

.hero-slider,
.hero-slide {
  min-height: 94vh;
}

.hero-slide {
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(22, 27, 47, 0.96), rgba(22, 27, 47, 0.48), rgba(22, 27, 47, 0.12)),
    linear-gradient(to right, rgba(22, 27, 47, 0.75), transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 9rem 0 5.5rem;
  animation: fade-up 0.85s ease both;
}

.hero-content p:not(.eyebrow) {
  max-width: 660px;
  font-size: 1.2rem;
  color: rgba(255, 250, 240, 0.82);
}

.hero-actions,
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-nav {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: max(1rem, calc((100vw - 1180px) / 2));
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.24);
  background: rgba(16, 20, 38, 0.28);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: background 0.2s ease, color 0.2s ease;
}

.hero-nav:hover {
  background: var(--gold);
  color: var(--ink);
}

.hero-prev {
  transform: translateY(calc(-50% - 2rem));
}

.hero-next {
  transform: translateY(calc(-50% + 2rem));
}

.filters {
  margin-bottom: 2rem;
}

.button,
.filters button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  border: 1px solid transparent;
  padding: 0.85rem 1.2rem;
  font: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.button .ph,
.icon-link .ph,
.play .ph,
.footer .ph,
.menu-toggle .ph {
  line-height: 1;
}

.button .ph {
  font-size: 1.05rem;
}

.button.primary,
.filters button.active {
  background: var(--gold);
  color: var(--ink);
}

.button.ghost,
.filters button {
  border-color: rgba(199, 157, 66, 0.55);
  background: transparent;
  color: inherit;
}

.section {
  padding: clamp(3.25rem, 5.8vw, 5.75rem) clamp(1rem, 4vw, 3rem);
}

.section > * {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.section-grid,
.album {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.section-heading {
  margin-bottom: 2.25rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.copy p,
.album p,
.press-grid p {
  color: var(--muted);
}

.about-title {
  font-size: clamp(2rem, 3.5vw, 3.6rem);
}

.repertoire-title {
  font-size: clamp(2rem, 3.6vw, 3.8rem);
}

.repertoire-title span {
  display: block;
}

.founders,
.track-list {
  display: grid;
  gap: 0.5rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.founders li,
.track-list li {
  border-bottom: 1px solid rgba(32, 40, 68, 0.12);
  padding-bottom: 0.45rem;
}

.album .button {
  margin-top: 1.5rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 2.75rem;
  background: rgba(32, 40, 68, 0.16);
}

.stats article {
  background: rgba(255, 250, 240, 0.65);
  padding: 1.6rem;
}

.stats strong {
  display: block;
  color: var(--wine);
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  line-height: 1;
}

.dark-band {
  background: linear-gradient(150deg, var(--ink), var(--wine));
  color: var(--white);
}

.dark-band .section-heading h2 {
  color: var(--white);
}

.page-hero {
  position: relative;
  min-height: 48vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(22, 27, 47, 0.96), rgba(22, 27, 47, 0.45)),
    linear-gradient(to right, rgba(22, 27, 47, 0.78), transparent 72%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 8rem 0 4rem;
}

.page-hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.2rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 1.1rem;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.page-card,
.story-card {
  border: 1px solid rgba(32, 40, 68, 0.12);
  background: rgba(255, 250, 240, 0.74);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

a.page-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

a.page-card:hover {
  transform: translateY(-3px);
  border-color: rgba(199, 157, 66, 0.42);
}

.page-card small,
.story-card small {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--copper);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-card p,
.story-card p {
  color: var(--muted);
}

.artist-card {
  display: flex;
  flex-direction: column;
  min-height: 11rem;
}

.artist-card-photo {
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 3;
  place-items: center;
  margin-bottom: 1.25rem;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(32, 40, 68, 0.08), rgba(199, 157, 66, 0.16));
}

.artist-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-card .avatar,
.artist-placeholder {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  border: 1px solid rgba(199, 157, 66, 0.45);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
}

.artist-detail {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.artist-portrait {
  display: grid;
  min-height: 28rem;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(32, 40, 68, 0.12);
  background: linear-gradient(145deg, rgba(32, 40, 68, 0.08), rgba(199, 157, 66, 0.16));
  box-shadow: var(--shadow);
}

.artist-portrait img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.artist-placeholder {
  width: 8rem;
  height: 8rem;
  font-size: 3.25rem;
  background: rgba(255, 250, 240, 0.54);
}

.artist-bio {
  max-width: 760px;
}

.artist-bio .button {
  margin-top: 1.5rem;
}

.story-list {
  display: grid;
  gap: 1rem;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.project-card {
  display: grid;
  align-content: start;
  min-height: 16rem;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.project-card:hover {
  transform: translateY(-3px);
  border-color: rgba(199, 157, 66, 0.42);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  color: var(--copper);
  font-size: 0.85rem;
  font-weight: 500;
}

.project-detail {
  max-width: 860px;
}

.project-detail h3,
.project-detail h4 {
  margin-top: 2rem;
  color: var(--ink);
}

.project-detail a:not(.button) {
  color: var(--copper);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

.project-detail .button {
  margin-top: 1.5rem;
}

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

.gallery-card {
  min-height: 15rem;
  display: grid;
  align-content: end;
  width: 100%;
  text-align: left;
  background:
    linear-gradient(to top, rgba(22, 27, 47, 0.9), rgba(22, 27, 47, 0.18)),
    var(--image) center / cover;
  color: var(--white);
}

.gallery-card:hover {
  border-color: rgba(199, 157, 66, 0.42);
}

.gallery-detail {
  display: grid;
  gap: 1.5rem;
}

.gallery-detail figure {
  margin: 0;
  overflow: hidden;
  background: #101426;
  box-shadow: var(--shadow);
}

.gallery-detail figure img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.gallery-detail .copy {
  max-width: 760px;
}

.gallery-detail .button {
  margin-top: 1.5rem;
}

.gallery-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-photo-grid a,
.gallery-photo-button {
  display: block;
  width: 100%;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #101426;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.gallery-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-photo-grid a:hover img,
.gallery-photo-button:hover img {
  transform: scale(1.04);
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(16, 20, 38, 0.78);
}

.gallery-modal-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  background: var(--paper);
  box-shadow: 0 2rem 5rem rgba(16, 20, 38, 0.34);
}

.gallery-modal-panel img {
  display: block;
  width: 100%;
  max-height: 68vh;
  object-fit: contain;
  background: #101426;
}

.gallery-modal-content {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.gallery-modal-content h2 {
  margin-bottom: 0.5rem;
}

.gallery-modal-content p:not(.eyebrow) {
  color: var(--muted);
}

.gallery-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.28);
  background: rgba(16, 20, 38, 0.76);
  color: var(--white);
  cursor: pointer;
}

.gallery-modal-close .ph {
  font-size: 1.2rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 4rem);
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 1rem;
}

.contact-form {
  display: grid;
  gap: 0.8rem;
  padding: 1.5rem;
  background: linear-gradient(150deg, var(--ink), var(--navy));
}

.contact-form input,
.contact-form textarea {
  color: var(--white);
}

.form-note {
  min-height: 1.5rem;
  margin: 0;
  color: var(--gold);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.repertoire-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.repertoire-card,
.video-grid article,
.press-grid article {
  min-height: 13rem;
  background: rgba(255, 250, 240, 0.78);
  border: 1px solid rgba(32, 40, 68, 0.12);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.dark-band .repertoire-card {
  background: rgba(255, 250, 240, 0.08);
  border-color: rgba(255, 250, 240, 0.16);
  box-shadow: none;
}

.repertoire-card span,
.press-grid small {
  display: block;
  color: var(--copper);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.press-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(32, 40, 68, 0.12);
  background: rgba(255, 250, 240, 0.78);
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.press-card:hover {
  transform: translateY(-3px);
  border-color: rgba(199, 157, 66, 0.42);
}

.press-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(32, 40, 68, 0.12), rgba(199, 157, 66, 0.18));
}

.press-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.press-card:hover .press-card-image img {
  transform: scale(1.04);
}

.press-card-body {
  display: grid;
  flex: 1;
  align-content: start;
  padding: 1.25rem;
}

.press-card-body h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.press-card-body p {
  color: var(--muted);
}

.press-detail {
  max-width: 860px;
}

.press-detail img {
  max-width: 100%;
  height: auto;
}

.press-detail .button {
  margin-top: 1.5rem;
}

.album {
  width: min(1180px, calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  justify-content: stretch;
  align-items: center;
}

.album > * {
  width: auto;
  margin-left: 0;
  margin-right: 0;
}

.album-cover {
  display: flex;
  justify-content: center;
}

.album-cover img {
  width: min(100%, 360px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.spotify-embed {
  display: block;
  width: 100%;
  min-height: 352px;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(18, 20, 34, 0.14);
}

.lead {
  color: var(--copper);
  font-weight: 500;
}

.concert-list {
  display: grid;
  gap: 0.75rem;
}

.concert-list article,
.concert-row {
  display: grid;
  grid-template-columns: 11rem 1fr 1.4fr;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid rgba(32, 40, 68, 0.15);
  padding: 1rem 0;
}

.concert-row {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.concert-row:hover {
  color: var(--copper);
  padding-left: 0.5rem;
}

.concert-list article.is-hidden {
  display: none;
}

.concert-list time,
.concert-meta-card .ph {
  color: var(--copper);
}

.concert-detail {
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.concert-meta-card {
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(32, 40, 68, 0.12);
  background: rgba(255, 250, 240, 0.74);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.concert-poster {
  display: grid;
  min-height: 22rem;
  place-items: center;
  overflow: hidden;
  margin: -1.5rem -1.5rem 0;
  background: linear-gradient(145deg, rgba(32, 40, 68, 0.1), rgba(199, 157, 66, 0.18));
}

.concert-poster img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.concert-poster span {
  display: grid;
  gap: 0.55rem;
  place-items: center;
  color: var(--copper);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
}

.concert-poster .ph {
  margin: 0;
  font-size: 2.4rem;
}

.concert-meta-item {
  display: grid;
  grid-template-columns: 1.4rem 1fr;
  gap: 0.75rem;
  align-items: start;
  color: var(--muted);
}

.concert-meta-card .ph {
  margin-top: 0.15rem;
  font-size: 1.15rem;
}

.concert-copy {
  max-width: 820px;
}

.concert-copy .button {
  margin-top: 1.5rem;
}

.video-grid article {
  display: grid;
  align-content: end;
  min-height: 15rem;
  background: linear-gradient(150deg, rgba(32, 40, 68, 0.92), rgba(91, 32, 48, 0.82));
  color: var(--white);
}

.play {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 250, 240, 0.4);
  border-radius: 50%;
  color: var(--gold);
}

.play .ph {
  font-size: 1.15rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 240, 0.18);
  background: rgba(255, 250, 240, 0.08);
  color: var(--white);
  padding: 1rem;
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 250, 240, 0.55);
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.icon-link .ph {
  color: var(--gold);
  font-size: 1.15rem;
}

.footer {
  background: linear-gradient(150deg, #101426, var(--ink));
  color: var(--white);
}

.footer-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 4rem) 0 1.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: clamp(2rem, 6vw, 4rem);
}

.footer-logo {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.25rem;
  letter-spacing: 0.16em;
}

.footer-kicker,
.footer-block h2 {
  margin: 0;
  color: var(--gold);
  font-family: "Jost", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.footer-brand p:last-of-type {
  max-width: 24rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 250, 240, 0.68);
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.footer-social a {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid rgba(199, 157, 66, 0.32);
  color: var(--gold);
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--ink);
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.5rem;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  color: rgba(255, 250, 240, 0.68);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

.footer-contact .ph {
  color: rgba(199, 157, 66, 0.78);
}

.footer .ph {
  font-size: 1.15rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 250, 240, 0.1);
  padding-top: 1.2rem;
  color: rgba(255, 250, 240, 0.46);
  font-size: 0.8rem;
}

.reveal {
  animation: fade-up 0.85s ease both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero-content {
    padding: 8rem 0 4.5rem;
  }

  .section {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .section-heading {
    margin-bottom: 1.75rem;
  }

  .menu-toggle {
    display: grid;
    width: 2.5rem;
    height: 2.5rem;
    place-content: center;
    border: 1px solid rgba(255, 250, 240, 0.25);
    background: transparent;
    color: var(--white);
  }

  .menu-toggle .ph {
    font-size: 1.45rem;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(22, 27, 47, 0.98);
    padding: 1rem;
  }

  .site-nav.open {
    display: flex;
  }

  .hero-nav {
    display: none;
  }

  .hero h1 span:last-child {
    white-space: normal;
  }

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

  .card-grid,
  .press-grid,
  .repertoire-grid,
  .page-grid,
  .artist-detail,
  .project-list,
  .gallery-list,
  .gallery-photo-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .concert-list article,
  .concert-row,
  .concert-detail {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}
