:root {
  --paper: #EFE6D2;
  --paper-deep: #E4D8BA;
  --paper-card: #F6F0DE;
  --ink: #2B241C;
  --ink-soft: #5A5142;
  --wine: #7A1F2B;
  --wine-deep: #5C1620;
  --gold: #B8934B;
  --gold-soft: #CBA96A;
  --navy: #1F3350;
  --navy-deep: #152136;
  --line: #D2C3A0;
  --shadow: 0 12px 30px -14px rgba(43, 36, 28, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'EB Garamond', serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}

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

.rubric {
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12.5px;
  color: var(--wine);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.rubric::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--wine);
  display: inline-block;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== NAV ===== */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(239, 230, 212, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Fraunces', serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.logo svg {
  flex-shrink: 0;
}

.logo span em {
  font-style: italic;
  font-weight: 400;
  color: var(--wine);
}

nav.links {
  display: flex;
  gap: 34px;
  font-family: 'Jost', sans-serif;
  font-size: 14.5px;
  letter-spacing: 0.02em;
}

nav.links a {
  position: relative;
  padding: 4px 0;
  color: var(--ink-soft);
  transition: color .2s ease;
}

nav.links a:hover {
  color: var(--wine);
}

nav.links a.active {
  color: var(--wine);
}

nav.links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

nav.links a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.staff svg {
  width: 100%;
  height: auto;
  aspect-ratio: 1120 / 68;
  display: block;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.cap-heading {
  font-size: clamp(42px, 5.2vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.01em;
}

.cap-heading .cap {
  font-size: 1.5em;
  font-style: italic;
  color: var(--wine);
  font-weight: 500;
  padding-right: 2px;
}

.hero p.rubric {
  margin-bottom: 22px;
}

.hero .lede {
  margin-top: 22px;
  font-size: 19px;
  color: var(--ink-soft);
}

.cta-row {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: 'Jost', sans-serif;
  font-size: 14.5px;
  letter-spacing: 0.03em;
  background: var(--wine);
  color: var(--paper-card);
  padding: 14px 26px;
  border-radius: 2px;
  transition: background .2s ease, transform .2s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--wine-deep);
  transform: translateY(-1px);
}

.btn-ghost {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color .2s ease;
}

.btn-ghost:hover {
  color: var(--wine);
}

/* duotone helper for real photos */
.photo-duotone {
  position: relative;
  overflow: hidden;
}

/* ===== PILLARS ===== */
.pillars {
  padding: 76px 0 84px;
}

.pillars-head {
  margin-bottom: 52px;
}

.pillars-head h2 {
  font-size: clamp(28px, 3vw, 36px);
  margin-top: 14px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.pillar {
  padding: 34px 30px 0 0;
  border-right: 1px solid var(--line);
}

.pillar:last-child {
  border-right: none;
  padding-right: 0;
}

.pillar:not(:first-child) {
  padding-left: 30px;
}

.pillar-icon {
  width: 34px;
  height: 34px;
  color: var(--wine);
  margin-bottom: 20px;
}

.pillar h3 {
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 12px;
}

.pillar p {
  color: var(--ink-soft);
  font-size: 16.5px;
}

/* ===== PHOTO BAND (full-bleed) ===== */
.photo-band {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.photo-band .band-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 36px 32px;
  max-width: 1120px;
  margin: 0 auto;
}

.photo-band .band-content .rubric {
  color: var(--gold-soft);
}

.photo-band .band-content .rubric::before {
  background: var(--gold-soft);
}

.quote-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  border-left: 2px solid var(--wine);
  padding-left: 34px;
  align-items: start;
}

.quote-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--gold-soft);
  padding: 4px;
}

.quote-photo .photo-duotone {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.quote-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.quote-attr {
  margin-top: 18px;
  font-family: 'Jost', sans-serif;
  font-size: 13.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.composers-head {
  margin-bottom: 48px;
  max-width: 60ch;
}

.composers-head h2 {
  font-size: clamp(28px, 3vw, 36px);
  margin-top: 14px;
}

.composers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.composer-card {
  background: var(--paper-card);
  border: 1px solid var(--line);
  padding: 0;
  transition: transform .25s ease, box-shadow .25s ease;
}

.composer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.composer-photo {
  aspect-ratio: 4/3.4;
}

.composer-body {
  padding: 22px 24px 26px;
}

.composer-body h3 {
  font-size: 19px;
  margin-bottom: 4px;
}

.composer-role {
  font-family: 'Jost', sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 12px;
  display: block;
}

.composer-body p {
  font-size: 15.5px;
  color: var(--ink-soft);
}

/* ===== SCHOLA CANTORUM ===== */
.schola-note {
  padding: 12px 0 56px;
}

.schola-box {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 20px;
}

.schola-text {
  font-size: 16.5px;
  color: var(--ink-soft);
  margin-top: 12px;
  line-height: 1.6;
}

.schola-link {
  margin-top: 16px;
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: var(--wine);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
}

/* ===== FEATURED SCORES ===== */
.scores {
  padding: 20px 0 60px;
}

.scores-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 46px;
  gap: 20px;
  flex-wrap: wrap;
}

.scores-top h2 {
  font-size: clamp(28px, 3vw, 36px);
  margin-top: 14px;
  max-width: 44ch;
}

.scores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}

.score-card {
  background: var(--paper-card);
  padding: 26px 24px;
  transition: background .2s ease;
  display: flex;
  flex-direction: column;
  min-height: 172px;
  text-decoration: none;
  color: inherit;
}

.score-card:hover {
  background: var(--paper);
}

.score-tag {
  font-family: 'Jost', sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
  background: var(--navy);
  color: #EFE6D2;
  display: inline-block;
  padding: 4px 9px;
  align-self: flex-start;
  margin-bottom: 16px;
}

.score-card h4 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 19px;
  margin-bottom: 6px;
  line-height: 1.25;
}

.score-composer {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: auto;
}

.score-link {
  margin-top: 18px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.see-all {
  margin-top: 44px;
  text-align: center;
}

.see-all a {
  font-family: 'Jost', sans-serif;
  font-size: 14.5px;
  letter-spacing: 0.03em;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
}

/* ===== FOOTER ===== */
footer.site-footer {
  background: var(--navy);
  color: #EFE6D2;
  padding: 60px 0 28px;
  margin-top: 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 0.8fr;
  gap: 32px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(239, 230, 212, 0.15);
}

.footer-brand .logo {
  color: #EFE6D2;
}

.footer-brand p {
  margin-top: 14px;
  max-width: 34ch;
  color: rgba(239, 230, 212, 0.65);
  font-size: 15.5px;
}

.footer-col h5 {
  font-family: 'Jost', sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 16px;
  font-weight: 500;
}

.footer-col a {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 14.5px;
  color: rgba(239, 230, 212, 0.8);
  margin-bottom: 11px;
  transition: color .2s ease;
}

.footer-col a:hover {
  color: var(--gold-soft);
}

a.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Jost', sans-serif;
  font-size: 14.5px;
  color: rgba(239, 230, 212, 0.8);
  margin-bottom: 11px;
  transition: color .2s ease;
}

a.footer-whatsapp:hover {
  color: var(--gold-soft);
}

.footer-whatsapp svg {
  flex-shrink: 0;
  opacity: 0.9;
  display: block;
  margin-top: 1px;
}

a.footer-social {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Jost', sans-serif;
  font-size: 14.5px;
  color: rgba(239, 230, 212, 0.8);
  margin-bottom: 11px;
  transition: color .2s ease;
}

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

.footer-social svg {
  flex-shrink: 0;
  opacity: 0.9;
  display: block;
}

.footer-col address {
  font-style: normal;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(239, 230, 212, 0.7);
  margin-bottom: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: rgba(239, 230, 212, 0.5);
  flex-wrap: wrap;
  gap: 12px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}

[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}