/* Adán Alejándro Fernández — organist, harpsichordist, conductor.
   A concert-programme palette: night blue for the loft, warm brass for the
   pipework, bone paper for the printed page. */

:root {
  --night: #101a26;
  --night-2: #16222f;
  --night-3: #1d2c3b;
  --bone: #f6f2e9;
  --bone-2: #ece5d7;
  --ink: #16202b;
  --ink-2: #5b6773;
  --brass: #c08a3e;
  --brass-soft: #ddb173;
  --brass-deep: #97682a;
  --rule-dark: rgba(221, 177, 115, .18);
  --rule-light: #ddd4c1;
  --dim: #a9b6c2;
  --maxw: 1120px;
  --pad: clamp(20px, 5vw, 40px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: "EB Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -.005em;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
p { margin: 0 0 1.1rem; }
a { color: inherit; text-decoration: none; }
/* height:auto matters: every <img> carries width/height attributes so the page
   does not reflow as photos land, and without this the attribute height wins
   against a CSS width and the picture is stretched. */
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 12px; top: 12px; z-index: 200; background: var(--brass); color: #12100c; padding: 10px 16px; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 18px var(--pad);
  transition: background .35s, padding .35s, border-color .35s, backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { padding: 11px var(--pad); background: rgba(16, 26, 38, .94); backdrop-filter: blur(12px); border-bottom-color: var(--rule-dark); }
body.on-paper .nav { background: rgba(246, 242, 233, .92); backdrop-filter: blur(12px); border-bottom-color: var(--rule-light); }
body.on-paper .nav.scrolled { background: rgba(246, 242, 233, .97); }

.brand { display: flex; align-items: center; gap: 12px; line-height: 1.05; color: var(--bone); }
.brand-text { display: flex; flex-direction: column; }
.brand-mark { width: 30px; height: 30px; color: var(--brass); flex: none; }
.foot-mark { width: 40px; height: 40px; color: var(--brass); display: block; margin-bottom: .9rem; }
body.on-paper .brand { color: var(--ink); }
.brand-name { font-family: "EB Garamond", Georgia, serif; font-size: 1.45rem; letter-spacing: .01em; }
.brand-tag { font-size: .52rem; letter-spacing: .26em; text-transform: uppercase; color: var(--brass); font-weight: 600; margin-top: 5px; }

.links { display: flex; align-items: center; gap: 26px; }
.links a { font-size: .74rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 500; color: var(--dim); position: relative; padding: 4px 0; transition: color .2s; }
body.on-paper .links a { color: var(--ink-2); }
.links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--brass); transition: width .28s; }
.links a:hover { color: var(--bone); }
body.on-paper .links a:hover { color: var(--ink); }
.links a:hover::after, .links a.active::after { width: 100%; }
.links a.active { color: var(--bone); }
body.on-paper .links a.active { color: var(--ink); }
.links a.nav-cta { border: 1px solid rgba(221, 177, 115, .5); color: var(--brass-soft); padding: 9px 18px; }
.links a.nav-cta::after { display: none; }
.links a.nav-cta:hover { background: var(--brass); border-color: var(--brass); color: #12100c; }
body.on-paper .links a.nav-cta { border-color: rgba(151, 104, 42, .45); color: var(--brass-deep); }
body.on-paper .links a.nav-cta:hover { color: #12100c; }

.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: currentColor; transition: transform .25s, opacity .2s; }
.nav-toggle { color: var(--bone); }
body.on-paper .nav-toggle { color: var(--ink); }

@media (max-width: 1200px) {
  .nav-toggle { display: block; }
  .links {
    position: fixed; inset: 0; flex-direction: column; justify-content: center;
    gap: 22px; background: rgba(16, 26, 38, .985); backdrop-filter: blur(14px);
    transform: translateX(100%); transition: transform .34s cubic-bezier(.22,.61,.36,1);
  }
  .links.open { transform: none; }
  .links a { font-size: .95rem; letter-spacing: .18em; color: var(--dim); }
  body.on-paper .links a { color: var(--dim); }
  body.on-paper .links a.active, .links a.active { color: var(--bone); }
  .nav.menu-open, body.on-paper .nav.menu-open { background: transparent; backdrop-filter: none; border-color: transparent; }
  .nav.menu-open .nav-toggle, .nav.menu-open .brand { color: var(--bone); position: relative; z-index: 2; }
  .nav.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- shared bits ---------- */
.eyebrow { font-size: .74rem; letter-spacing: .26em; text-transform: uppercase; font-weight: 600; color: var(--brass-deep); margin: 0 0 1rem; }
.hero-eyebrow { color: var(--bone); background: rgba(16,26,38,.72); padding: .5rem .9rem; display: inline-block; backdrop-filter: blur(4px); letter-spacing: .3em; }
.dark .eyebrow, .hero .eyebrow { color: var(--brass-soft); }
.lede { font-size: clamp(1.06rem, 1.7vw, 1.25rem); color: var(--ink-2); max-width: 62ch; }
.dark .lede { color: var(--dim); }

.rule-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 26px; }
.rule-head .lbl { font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; font-weight: 600; color: var(--brass-deep); white-space: nowrap; }
.rule-head .rule { flex: 1; height: 1px; background: linear-gradient(90deg, var(--rule-light), transparent); }
.dark .rule-head .lbl { color: var(--brass-soft); }
.dark .rule-head .rule { background: linear-gradient(90deg, var(--rule-dark), transparent); }

.section { padding: clamp(56px, 7.5vw, 92px) 0; }
.section.tint { background: var(--bone-2); }
.section.dark { background: var(--night); color: var(--bone); }
.section.dark h1, .section.dark h2, .section.dark h3 { color: var(--bone); }

.btn { display: inline-block; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; padding: 15px 30px; border: 1px solid transparent; cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .2s; }
@media (max-width: 640px) { .btn { font-size: .7rem; padding: 13px 24px; } }
.btn-brass { background: var(--brass); color: #12100c; }
.btn-brass:hover { background: var(--brass-soft); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(221, 177, 115, .5); color: var(--brass-soft); }
.btn-ghost:hover { border-color: var(--brass); background: rgba(221, 177, 115, .1); transform: translateY(-2px); }
.btn-outline { border-color: rgba(151, 104, 42, .5); color: var(--brass-deep); }
.btn-outline:hover { border-color: var(--brass-deep); background: rgba(151, 104, 42, .07); transform: translateY(-2px); }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
@media (max-width: 640px) { .cta-row { gap: 11px; margin-top: 24px; } }

/* ---------- page head ---------- */
.page-head { position: relative; overflow: hidden; padding: clamp(130px, 17vw, 190px) 0 clamp(40px, 6vw, 64px); background: var(--night); color: var(--bone); isolation: isolate; }
.page-head .wrap { position: relative; z-index: 2; }
.page-head::after { content: ""; position: absolute; right: max(2vw, calc((100% - var(--maxw)) / 2 - 40px)); bottom: -6%; width: clamp(180px, 22vw, 300px); aspect-ratio: 1; background: url("/assets/img/mark.svg") no-repeat center / contain; opacity: .07; pointer-events: none; }
.page-head.has-photo::after { display: none; }
.page-head .head-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 45%; z-index: 0; }
.page-head.has-photo::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to right, rgba(16,26,38,.94) 0%, rgba(16,26,38,.8) 50%, rgba(16,26,38,.45) 100%), linear-gradient(to top, rgba(16,26,38,.9), rgba(16,26,38,.3)); }
.page-head h1 { color: var(--bone); }
.page-head .lede { color: var(--dim); margin-top: 1.2rem; }

/* ---------- home hero ---------- */
.hero { position: relative; min-height: min(94vh, 900px); display: flex; align-items: flex-end; color: var(--bone); }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 55%; }
.hero-shade { position: absolute; inset: 0; background:
  linear-gradient(to top, rgba(16,26,38,.96) 4%, rgba(16,26,38,.72) 36%, rgba(16,26,38,.3) 66%, rgba(16,26,38,.5) 100%),
  linear-gradient(to right, rgba(16,26,38,.55) 0%, rgba(16,26,38,.25) 45%, rgba(16,26,38,0) 70%); }
.hero-content { position: relative; width: 100%; padding-bottom: clamp(48px, 8vw, 92px); padding-top: 150px; }
.hero h1 { color: var(--bone); text-shadow: 0 2px 30px rgba(0,0,0,.5); }
.hero-sub { margin-top: 1.4rem; max-width: 62ch; color: #e2dccf; font-size: clamp(1rem, 1.6vw, 1.15rem); line-height: 1.5; }
.hero-sub strong { font-weight: 600; color: var(--bone); }
.hero-sub .line { display: block; }
.hero-sub .line + .line { margin-top: 0.5rem; }

/* ---------- home strips ---------- */
.roles-strip { background: var(--night-2); color: var(--bone); padding: 30px 0; border-top: 1px solid var(--rule-dark); }
.roles-strip .wrap { display: flex; justify-content: center; align-items: center; gap: 12px clamp(2rem, 4.5vw, 4.5rem); text-align: center; }
.roles-strip span { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--dim); white-space: nowrap; }
.roles-strip b { color: var(--brass-soft); font-weight: 600; }

.two-col { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.beyond-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 860px) { .two-col > .portrait-frame, .two-col .beyond-photos { max-width: 420px; margin-top: 1rem; } }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .beyond-photos { grid-template-columns: 1fr; max-width: 320px; margin: 1rem auto 0; } }

/* A brass rule offset behind the photograph. The border sits in an ::before at
   z-index 0 with the image lifted above it, rather than a negative z-index,
   which would drop it behind the section background and out of sight. */
.portrait-frame { position: relative; isolation: isolate; }

.portrait-frame::before { content: ""; position: absolute; inset: 16px -16px -16px 16px; border: 1px solid var(--brass-deep); z-index: 0; }
.dark .portrait-frame::before { border-color: var(--brass); }
.portrait-frame img { position: relative; z-index: 1; width: 100%; display: block; border: 1px solid var(--rule-light); background: var(--bone-2); }
.portrait-frame.round img { border-radius: 50%; border: none; }
.portrait-frame.round::before { display: none; }
.dark .portrait-frame img { border-color: var(--rule-dark); }

/* ---------- video ---------- */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: clamp(1.4rem, 3vw, 2.2rem); }
.video-grid.two { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.vid { margin: 0; }
.vid .frame { position: relative; aspect-ratio: 16 / 9; background: #000; overflow: hidden; border: 1px solid var(--rule-light); }
.dark .vid .frame { border-color: var(--rule-dark); }
.vid iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
/* Each embed starts as its own YouTube poster and only becomes an iframe on
   click — thirty live iframes on one page is a minute of loading and a lot of
   third-party script for a visitor who wants to watch one thing. */
.vid .frame[data-yt] { cursor: pointer; display: grid; place-items: center; width: 100%; padding: 0; margin: 0; color: inherit; font: inherit; -webkit-appearance: none; appearance: none; touch-action: manipulation; }
.vid .frame[data-yt] img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vid .frame[data-yt] .play { position: relative; width: 64px; height: 64px; border-radius: 50%; background: rgba(16, 26, 38, .68); display: grid; place-items: center; transition: background .18s, transform .18s; }
.vid .frame[data-yt]:hover .play { background: var(--brass); transform: scale(1.07); }
.vid .frame[data-yt] .play svg { width: 24px; height: 24px; margin-left: 3px; fill: #fff; }
.vid .frame[data-yt]:hover .play svg { fill: #12100c; }

.vid figcaption { padding-top: .8rem; }
.vid .piece { display: block; font-family: "EB Garamond", Georgia, serif; font-size: 1.24rem; line-height: 1.25; }
.vid .composer { display: block; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); margin-top: .3rem; }
.dark .vid .composer { color: var(--dim); }
.vid .note { display: block; font-size: .9rem; color: var(--brass-deep); margin-top: .35rem; font-style: italic; }
.dark .vid .note { color: var(--brass-soft); }

/* ---------- lists ---------- */
.roles { display: grid; gap: 1px; background: var(--rule-dark); border-block: 1px solid var(--rule-dark); }
.roles li { background: var(--night); padding: clamp(1.2rem, 2.6vw, 1.9rem) 0; display: grid; grid-template-columns: 1.1fr 1fr; gap: 1rem 2rem; align-items: baseline; }
.roles .r-title { font-family: "EB Garamond", Georgia, serif; font-size: clamp(1.2rem, 2.2vw, 1.5rem); color: var(--bone); }
.roles .r-place { color: var(--dim); }
.roles .r-place em { display: block; font-style: normal; font-size: .9rem; color: #8496a5; margin-top: .3rem; }
@media (max-width: 1000px) { .roles-strip .wrap { display: grid; grid-template-columns: 1fr 1fr; row-gap: 14px; } }
@media (max-width: 720px) { .roles li { grid-template-columns: 1fr; gap: .4rem; } }
@media (max-width: 600px) { .roles-strip .wrap { grid-template-columns: 1fr; row-gap: 12px; } .roles-strip span { white-space: normal; } }

.stack { display: grid; gap: 1.1rem; }
.entry { display: grid; grid-template-columns: 76px 1fr; gap: 1.4rem; align-items: baseline; padding-bottom: 1.1rem; border-bottom: 1px solid var(--rule-light); }
.glance .entry { grid-template-columns: 148px 1fr; }
@media (max-width: 560px) { .glance .entry { grid-template-columns: 1fr; } }
.dark .entry { border-bottom-color: var(--rule-dark); }
.entry .yr { font-size: .8rem; letter-spacing: .14em; font-weight: 600; color: var(--brass-deep); }
.dark .entry .yr { color: var(--brass-soft); }
.entry strong { font-weight: 600; }
.entry .sub { display: block; color: var(--ink-2); font-size: .95rem; margin-top: .2rem; }
.dark .entry .sub { color: var(--dim); }
@media (max-width: 560px) { .entry { grid-template-columns: 1fr; gap: .3rem; } }

/* ---------- calendar ---------- */
.events { display: grid; gap: 0; }
.event { display: grid; grid-template-columns: 92px 1fr; gap: 1.6rem; padding: 1.7rem 0; border-bottom: 1px solid var(--rule-light); align-items: start; }
.dark .event { border-bottom-color: var(--rule-dark); }
.event .date { text-align: center; border: 1px solid var(--rule-light); padding: .6rem .2rem; }
.dark .event .date { border-color: var(--rule-dark); }
.event .date .m { display: block; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--brass-deep); font-weight: 600; }
.dark .event .date .m { color: var(--brass-soft); }
.event .date .d { display: block; font-family: "EB Garamond", Georgia, serif; font-size: 1.9rem; line-height: 1.05; }
.event .date .y { display: block; font-size: .68rem; letter-spacing: .12em; color: var(--ink-2); }
.dark .event .date .y { color: var(--dim); }
.event h3 { margin-bottom: .3rem; }
.event p { margin: 0; color: var(--ink-2); }
.dark .event p { color: var(--dim); }
.tag { display: inline-block; font-family: Inter, sans-serif; font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; color: var(--brass-deep); border: 1px solid rgba(151,104,42,.4); padding: 4px 9px; margin-left: .6rem; vertical-align: middle; white-space: nowrap; }
.dark .tag { color: var(--brass-soft); border-color: rgba(221,177,115,.35); }
@media (max-width: 560px) { .event { grid-template-columns: 68px 1fr; gap: 1rem; } .tag { margin: .5rem 0 0; display: block; width: max-content; } }

/* ---------- cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.5rem; }
.card { border: 1px solid var(--rule-light); padding: clamp(1.25rem, 2.4vw, 1.7rem); background: var(--bone); display: flex; flex-direction: column; transition: border-color .2s, transform .2s; }
.dark .card { border-color: var(--rule-dark); background: var(--night-2); }
a.card:hover { border-color: var(--brass); transform: translateY(-3px); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--ink-2); font-size: .97rem; }
.card .go { margin-top: auto; padding-top: 1rem; }
.dark .card p { color: var(--dim); }
.card .go { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--brass-deep); }
.dark .card .go { color: var(--brass-soft); }

.prose { max-width: 68ch; }
.prose p { font-size: 1.06rem; }
.prose .first::first-letter {
  font-family: "EB Garamond", Georgia, serif; float: left; font-size: 3.9rem;
  line-height: .82; padding: .06em .1em 0 0; color: var(--brass-deep);
}
.fine { font-size: .9rem; color: var(--ink-2); }
.dark .fine { color: var(--dim); }

/* ---------- footer ---------- */
.foot { background: var(--night); color: var(--dim); padding: clamp(48px, 7vw, 76px) 0 30px; border-top: 1px solid var(--rule-dark); }
.foot-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 2rem; }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-home { display: block; color: var(--bone); text-decoration: none; }
.foot-home:hover .foot-name { color: var(--brass-soft); }
.foot-home:hover .foot-mark { color: var(--brass-soft); }
.foot-name { display: block; font-family: "EB Garamond", Georgia, serif; font-size: 1.5rem; color: var(--bone); margin: 0; transition: color .2s; }
.foot-roles { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--brass); margin-top: .5rem; white-space: nowrap; }
.social { list-style: none; margin: 1.4rem 0 0; padding: 0; display: flex; gap: .6rem; }
.social a { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--rule-dark); border-radius: 50%; color: var(--dim); transition: color .2s, border-color .2s, background .2s; }
.social a:hover { color: #12100c; background: var(--brass); border-color: var(--brass); }
.social svg { width: 18px; height: 18px; }
.foot-h { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--brass-soft); margin: 0 0 .7rem; font-weight: 600; }
.foot-col a { display: block; font-size: .95rem; padding: .22rem 0; transition: color .2s; }
.foot-col a:hover { color: var(--bone); }
.foot-rule a { color: var(--brass-soft); transition: color .2s; }
.foot-rule a:hover { color: var(--bone); }
.foot-rule { margin-top: clamp(36px, 5vw, 56px); padding-top: 22px; border-top: 1px solid var(--rule-dark); display: flex; flex-wrap: wrap; gap: .5rem 2rem; justify-content: space-between; font-size: .82rem; }
.foot-rule p { margin: 0; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Phones: keep his face and hands in the hero crop, and hide the roles line under the mark to save the row */
@media (max-width: 640px) {
  /* Photo becomes a band under the nav; text sits below it, never over his face */
  .hero { display: block; min-height: 0; padding-bottom: 0; background: var(--night); }
  .hero-img { position: relative; inset: auto; height: min(58vh, 440px); object-position: 66% 30%;
    -webkit-mask-image: linear-gradient(to bottom, #000 72%, transparent); mask-image: linear-gradient(to bottom, #000 72%, transparent); }
  .hero-shade { background: linear-gradient(to bottom, rgba(16,26,38,.55) 0%, rgba(16,26,38,0) 22%); bottom: auto; height: min(58vh, 440px); }
  .hero-content { padding-top: 8px; padding-bottom: 40px; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 0.95rem; margin-top: 1rem; }
  .hero-eyebrow { font-size: .6rem; letter-spacing: .18em; padding: .45rem .7rem; }
  .brand-tag { display: none; }
  .brand-mark { width: 26px; height: 26px; }
  .page-head::after { width: 140px; right: -20px; bottom: -10px; opacity: .06; }
}

/* press photographs */
.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem 1.2rem; }
@media (max-width: 1000px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 600px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }
.photo { margin: 0; }
.photo > a { display: block; position: relative; aspect-ratio: 4 / 3; overflow: hidden; border: 1px solid var(--rule-light); background: var(--bone-2); }
.photo .dl-hint { position: absolute; left: 0; right: 0; bottom: 0; padding: .6rem .9rem; background: rgba(16,26,38,.82); color: var(--bone); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; transform: translateY(100%); transition: transform .2s; }
.photo > a:hover .dl-hint, .photo > a:focus-visible .dl-hint { transform: none; }
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.photo > a:hover img { transform: scale(1.03); }
.photo figcaption { padding-top: .6rem; font-size: .92rem; color: var(--ink-2); }
/* a dark section with a photograph behind it */
.section.has-photo { position: relative; overflow: hidden; isolation: isolate; }
.section.has-photo .head-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.section.has-photo::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to right, rgba(16,26,38,.96) 0%, rgba(16,26,38,.86) 55%, rgba(16,26,38,.55) 100%); }
.section.has-photo .wrap { position: relative; z-index: 2; }

/* video player over the page */
.vmodal { position: fixed; inset: 0; z-index: 300; background: rgba(8, 13, 20, .92); display: none; align-items: center; justify-content: center; padding: clamp(16px, 4vw, 48px); }
.vmodal.open { display: flex; }
.vmodal-box { position: relative; width: min(100%, 1100px); }
.vmodal-frame { position: relative; aspect-ratio: 16 / 9; background: #000; border: 1px solid var(--rule-dark); }
.vmodal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vmodal-cap { color: var(--dim); font-size: .95rem; margin: .8rem 0 0; text-align: center; }
.vmodal-close { position: absolute; right: -8px; top: -46px; background: none; border: 0; color: var(--bone); font-size: 2rem; line-height: 1; cursor: pointer; padding: 6px 10px; }
.vmodal-close:hover { color: var(--brass-soft); }
@media (max-width: 640px) { .vmodal-close { top: -40px; right: 0; } }

/* affiliations band */
.affil { background: var(--bone-2); border-top: 1px solid var(--rule-light); border-bottom: 1px solid var(--rule-light); padding: clamp(36px, 5vw, 56px) 0; }
.affil .eyebrow { color: var(--brass-deep); margin-bottom: 1.6rem; }
.affil-row { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1.6rem clamp(2rem, 4vw, 3.4rem); }
.affil-row li { display: flex; align-items: center; }
.affil-row a { display: flex; align-items: center; opacity: .55; transition: opacity .2s; text-decoration: none; }
.affil-row a:hover { opacity: 1; }
.affil-row img { height: 46px; width: auto; display: block; }
.wordmark { font-family: "EB Garamond", Georgia, serif; font-size: 1.28rem; color: var(--ink); line-height: 1.05; display: flex; flex-direction: column; text-align: center; }
.wordmark small { font-family: Inter, system-ui, sans-serif; font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; color: var(--brass-deep); margin-top: .25rem; }
@media (max-width: 640px) { .affil-row img { height: 36px; } .wordmark { font-size: 1.1rem; } .affil-row { gap: 1.2rem 1.6rem; } }

/* featured work cards on the writing page */
.feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
@media (max-width: 720px) { .feat-grid { grid-template-columns: 1fr; } }
.feat { border: 1px solid var(--rule-light); border-top: 3px solid var(--brass); background: var(--bone); padding: clamp(1.5rem, 3vw, 2.2rem); display: flex; flex-direction: column; }
.feat-kicker { font-family: "EB Garamond", Georgia, serif; font-style: italic; font-size: 1.05rem; color: var(--brass-deep); margin: 0 0 .7rem; }
.feat h3 { font-size: 1.5rem; line-height: 1.2; margin: 0 0 .8rem; }
.feat h3 a { color: var(--ink); }
.feat h3 a:hover { color: var(--brass-deep); }
.feat p { color: var(--ink-2); font-size: .97rem; margin: 0; }
.feat .go { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--brass-deep); margin-top: auto; padding-top: 1.2rem; }

/* talavera tile, a nod to Puebla: eight-point stars locked in a lattice, kept faint */
.page-head:not(.has-photo), .foot { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'><g fill='none' stroke='%23ddb173' stroke-opacity='0.13' stroke-width='1'><path d='M62.00 36.00 L50.89 42.17 L54.38 54.38 L42.17 50.89 L36.00 62.00 L29.83 50.89 L17.62 54.38 L21.11 42.17 L10.00 36.00 L21.11 29.83 L17.62 17.62 L29.83 21.11 L36.00 10.00 L42.17 21.11 L54.38 17.62 L50.89 29.83Z'/><path d='M26.00 0.00 L14.89 6.17 L18.38 18.38 L6.17 14.89 L0.00 26.00 L-6.17 14.89 L-18.38 18.38 L-14.89 6.17 L-26.00 0.00 L-14.89 -6.17 L-18.38 -18.38 L-6.17 -14.89 L-0.00 -26.00 L6.17 -14.89 L18.38 -18.38 L14.89 -6.17Z'/><path d='M98.00 0.00 L86.89 6.17 L90.38 18.38 L78.17 14.89 L72.00 26.00 L65.83 14.89 L53.62 18.38 L57.11 6.17 L46.00 0.00 L57.11 -6.17 L53.62 -18.38 L65.83 -14.89 L72.00 -26.00 L78.17 -14.89 L90.38 -18.38 L86.89 -6.17Z'/><path d='M26.00 72.00 L14.89 78.17 L18.38 90.38 L6.17 86.89 L0.00 98.00 L-6.17 86.89 L-18.38 90.38 L-14.89 78.17 L-26.00 72.00 L-14.89 65.83 L-18.38 53.62 L-6.17 57.11 L-0.00 46.00 L6.17 57.11 L18.38 53.62 L14.89 65.83Z'/><path d='M98.00 72.00 L86.89 78.17 L90.38 90.38 L78.17 86.89 L72.00 98.00 L65.83 86.89 L53.62 90.38 L57.11 78.17 L46.00 72.00 L57.11 65.83 L53.62 53.62 L65.83 57.11 L72.00 46.00 L78.17 57.11 L90.38 53.62 L86.89 65.83Z'/></g><circle cx='36' cy='36' r='3' fill='%23ddb173' fill-opacity='0.16'/></svg>"); background-size: 72px 72px; }
.page-head:not(.has-photo)::after { display: none; }
.affil { position: relative; isolation: isolate; }
.affil::before { content: ""; position: absolute; inset: 0; z-index: -1; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'><g fill='none' stroke='%2397682a' stroke-opacity='0.16' stroke-width='1'><path d='M62.00 36.00 L50.89 42.17 L54.38 54.38 L42.17 50.89 L36.00 62.00 L29.83 50.89 L17.62 54.38 L21.11 42.17 L10.00 36.00 L21.11 29.83 L17.62 17.62 L29.83 21.11 L36.00 10.00 L42.17 21.11 L54.38 17.62 L50.89 29.83Z'/><path d='M26.00 0.00 L14.89 6.17 L18.38 18.38 L6.17 14.89 L0.00 26.00 L-6.17 14.89 L-18.38 18.38 L-14.89 6.17 L-26.00 0.00 L-14.89 -6.17 L-18.38 -18.38 L-6.17 -14.89 L-0.00 -26.00 L6.17 -14.89 L18.38 -18.38 L14.89 -6.17Z'/><path d='M98.00 0.00 L86.89 6.17 L90.38 18.38 L78.17 14.89 L72.00 26.00 L65.83 14.89 L53.62 18.38 L57.11 6.17 L46.00 0.00 L57.11 -6.17 L53.62 -18.38 L65.83 -14.89 L72.00 -26.00 L78.17 -14.89 L90.38 -18.38 L86.89 -6.17Z'/><path d='M26.00 72.00 L14.89 78.17 L18.38 90.38 L6.17 86.89 L0.00 98.00 L-6.17 86.89 L-18.38 90.38 L-14.89 78.17 L-26.00 72.00 L-14.89 65.83 L-18.38 53.62 L-6.17 57.11 L-0.00 46.00 L6.17 57.11 L18.38 53.62 L14.89 65.83Z'/><path d='M98.00 72.00 L86.89 78.17 L90.38 90.38 L78.17 86.89 L72.00 98.00 L65.83 86.89 L53.62 90.38 L57.11 78.17 L46.00 72.00 L57.11 65.83 L53.62 53.62 L65.83 57.11 L72.00 46.00 L78.17 57.11 L90.38 53.62 L86.89 65.83Z'/></g><circle cx='36' cy='36' r='3' fill='%2397682a' fill-opacity='0.2'/></svg>"); background-size: 72px 72px; opacity: .42; }
.hero-shade { background-image:
  linear-gradient(to top, rgba(16,26,38,.96) 4%, rgba(16,26,38,.72) 36%, rgba(16,26,38,.3) 66%, rgba(16,26,38,.5) 100%),
  linear-gradient(to right, rgba(16,26,38,.55) 0%, rgba(16,26,38,.25) 45%, rgba(16,26,38,0) 70%); }

/* cards with a photograph on top */
.card-photo { padding: 0; overflow: hidden; }
.card-photo > img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; border-bottom: 1px solid var(--rule-light); }
.card-photo > h3 { padding: 1.3rem clamp(1.3rem, 3vw, 1.8rem) 0; }
.card-photo > p { padding: 0 clamp(1.3rem, 3vw, 1.8rem); }
.card-photo > .go { padding: 1rem clamp(1.3rem, 3vw, 1.8rem) 1.5rem; margin-top: auto; }

/* link list: icon, title, one line, kind */
.linklist { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--rule-dark); }
.linklist li { border-bottom: 1px solid var(--rule-dark); }
.linklist a { display: grid; grid-template-columns: 28px 1fr auto; grid-template-areas: "i t k" "i d k"; column-gap: 1.1rem; align-items: center; padding: .95rem 0; color: var(--bone); text-decoration: none; transition: color .2s; }
.linklist svg { grid-area: i; width: 24px; height: 24px; color: var(--brass-soft); }
.linklist .lk-t { grid-area: t; font-family: "EB Garamond", Georgia, serif; font-size: 1.22rem; line-height: 1.2; }
.linklist .lk-d { grid-area: d; font-size: .9rem; color: var(--dim); margin-top: .1rem; }
.linklist .lk-k { grid-area: k; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; color: var(--brass-soft); border: 1px solid var(--rule-dark); padding: .35rem .6rem; margin-left: 1rem; }
.linklist a:hover .lk-t { color: var(--brass-soft); }
.linklist a:hover .lk-k { border-color: var(--brass); }
@media (max-width: 560px) { .linklist a { grid-template-columns: 24px 1fr; grid-template-areas: "i t" "i d" "i k"; } .linklist .lk-k { justify-self: start; margin: .5rem 0 0; } }

/* ---------- list treatments ---------- */
/* timeline: the year once, large, in brass; entries under it */
.timeline { border-top: 1px solid var(--rule-light); }
.dark .timeline { border-top-color: var(--rule-dark); }
.tl-year { display: grid; grid-template-columns: 96px 1fr; gap: 1.2rem 1.6rem; padding: 1.2rem 0; border-bottom: 1px solid var(--rule-light); }
.dark .tl-year { border-bottom-color: var(--rule-dark); }
.tl-y { font-family: "EB Garamond", Georgia, serif; font-size: 2rem; line-height: 1; color: var(--brass-deep); font-variant-numeric: tabular-nums; }
.dark .tl-y { color: var(--brass-soft); }
.tl-year ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.tl-year li { line-height: 1.5; }
.tl-year li a { color: inherit; border-bottom: 0; }
.tl-year li a .lk { display: inline-block; margin-left: .35em; font-size: .78em; color: var(--brass-deep); transition: transform .2s; }
.dark .tl-year li a .lk { color: var(--brass-soft); }
.tl-year li a:hover { color: var(--brass-deep); }
.tl-year li a:hover .lk { transform: translate(2px, -2px); }
.tl-sub { display: block; font-size: .88rem; color: var(--ink-2); margin-top: .1rem; }
.dark .tl-sub { color: var(--dim); }
.tl-sub em { font-style: italic; }
@media (max-width: 560px) { .tl-year { grid-template-columns: 1fr; gap: .4rem; } .tl-y { font-size: 1.4rem; } }
/* pills: short offerings that don't need a rule each */
.pills { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .6rem; }
.pills li { border: 1px solid var(--rule-light); padding: .55rem .95rem; font-size: .92rem; border-radius: 999px; }
.dark .pills li { border-color: var(--rule-dark); color: var(--bone); }
/* plain: a short list with brass markers */
.plain { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.plain li { position: relative; padding-left: 1.3rem; }
.plain li::before { content: ""; position: absolute; left: 0; top: .62em; width: .55rem; height: 1px; background: var(--brass); }
/* positions on About: institution first, in a grid */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.2rem 2.4rem; }
.post { border-top: 1px solid var(--rule-dark); padding-top: 1.1rem; }
.post-title { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; color: var(--brass-soft); margin: 0 0 .5rem; }
.post h3 { font-size: 1.45rem; margin: 0 0 .25rem; line-height: 1.15; }
.post-city { color: var(--dim); margin: 0; font-size: .92rem; }
.post-note { color: #8496a5; font-size: .9rem; margin: .6rem 0 0; }
@media (max-width: 860px) { .posts { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .posts { grid-template-columns: 1fr; } }
/* degrees on About: the school leads */
.degrees { display: grid; gap: 1.2rem; border-top: 1px solid var(--rule-light); }
.degree { display: grid; grid-template-columns: 64px 1fr; gap: 1.2rem; padding: 1.1rem 0 1.2rem; border-bottom: 1px solid var(--rule-light); }
.deg-year { font-family: "EB Garamond", Georgia, serif; font-size: 1.5rem; color: var(--brass-deep); line-height: 1.1; }
.degree h3 { font-size: 1.25rem; margin: 0 0 .2rem; }
.deg-award { margin: 0; }
.deg-note { margin: .3rem 0 0; font-size: .88rem; color: var(--ink-2); }

/* split page head: text on the tile, the photograph whole in its own panel */
.page-head.split { padding: 0; }
.page-head.split::after { display: none; }
.page-head.split > .wrap { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; padding-top: clamp(110px, 13vw, 150px); padding-bottom: clamp(44px, 6vw, 68px); }
.page-head.split .head-photo { margin: 0; align-self: stretch; }
.page-head.split .head-photo img { display: block; width: 100%; height: 100%; min-height: 380px; max-height: 500px; object-fit: cover; border: 1px solid var(--rule-dark); }
.page-head.split .head-text { padding-bottom: 0; }
.page-head.split h1, .page-head.split .eyebrow, .page-head.split .lede { max-width: none; }
@media (max-width: 860px) {
  .page-head.split > .wrap { grid-template-columns: 1fr; gap: 1.6rem; padding-top: 110px; padding-bottom: 36px; }
  .page-head.split .head-photo img { min-height: 0; max-height: none; aspect-ratio: 4 / 5; border-right: 1px solid var(--rule-dark); }
}
.section.dark.tiled { background-image: inherit; }

/* contact form */
.cform { display: grid; gap: 1.1rem; }
.cform .f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .cform .f2 { grid-template-columns: 1fr; } }
.cform label { display: grid; gap: .4rem; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; color: var(--ink-2); }
.cform input, .cform select, .cform textarea { font: inherit; font-size: 1rem; letter-spacing: 0; text-transform: none; font-weight: 400; color: var(--ink); background: #fff; border: 1px solid var(--rule-light); padding: .75rem .9rem; border-radius: 0; width: 100%; }
.cform input:focus, .cform select:focus, .cform textarea:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(192,138,62,.18); }
.cform textarea { resize: vertical; min-height: 140px; }
.cform button { justify-self: start; cursor: pointer; }
.cform .fine { margin: 0; color: var(--ink-2); }

/* ---------- editorial pass ---------- */
/* italic accents in display type */
h1 em, h2 em { font-style: italic; font-weight: 400; color: var(--brass-soft); }
.on-paper .section:not(.dark) h2 em { color: var(--brass-deep); }
.page-head h1 em { color: var(--brass-soft); }
/* the home statement, in place of the roles strip */
.statement { background: var(--night-2); color: var(--bone); padding: clamp(40px, 6vw, 72px) 0; border-top: 1px solid var(--rule-dark); text-align: center; }
.statement p { font-family: "EB Garamond", Georgia, serif; font-size: clamp(1.45rem, 2.6vw, 2.1rem); line-height: 1.3; max-width: 34ch; margin: 0 auto; }
.statement em { color: var(--brass-soft); }
/* cards without boxes: a brass rule on top, a numeral, air on the sides */
.cards .card { border: 0; border-top: 2px solid var(--brass); background: transparent; padding-left: 0; padding-right: 0; padding-top: 1.3rem; }
.dark .cards .card { background: transparent; border-top-color: var(--brass); }
.cards.numbered { counter-reset: card; }
.cards.numbered .card { counter-increment: card; }
.cards.numbered .card > h3::before { content: counter(card, decimal-leading-zero); display: block; font-family: "EB Garamond", Georgia, serif; font-style: italic; font-size: 1.05rem; color: var(--brass-deep); letter-spacing: .04em; margin-bottom: .55rem; }
.dark .cards.numbered .card > h3::before { color: var(--brass-soft); }
.card-photo { border: 0; }
.card-photo > img { border: 1px solid var(--rule-light); border-bottom: 0; }
.card-photo > h3 { padding-left: 0; padding-right: 0; }
.card-photo > p { padding-left: 0; padding-right: 0; }
.card-photo > .go { padding-left: 0; padding-right: 0; }
.cards .card-photo { border-top: 0; padding-top: 0; }
.cards.numbered .card-photo > h3::before { margin-top: .2rem; }
/* featured work: journal name large, no box */
.feat { border: 0; border-top: 2px solid var(--brass); background: transparent; padding-left: 0; padding-right: 0; padding-top: 1.2rem; }
.feat-kicker { font-size: 1.35rem; }
/* event dates: no box, big numeral */
.event .date { border: 0; padding: 0; text-align: left; }
.event .date .d { font-size: 2.6rem; color: var(--brass-deep); }
.dark .event .date .d { color: var(--brass-soft); }
.event { grid-template-columns: 84px 1fr; }
/* the Published by row: plain type, not boxes */
.section.tint .cards .card { border-top-color: var(--brass-deep); }

.cards.four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .cards.four { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cards.four { grid-template-columns: 1fr; } }

.feat .feat-kicker { font-size: 1.7rem; margin: 0 0 .1rem; color: var(--brass-deep); }
.feat .feat-cite { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: var(--ink-2); margin: 0 0 .8rem; }
.feat .feat-doi { display: block; margin-top: .5rem; font-size: .74rem; color: var(--ink-2); letter-spacing: .04em; }

/* a page of the offprint beside the citation */
.feat.has-page { display: grid; grid-template-columns: 132px 1fr; gap: 1.4rem; align-items: start; }
.feat-page { display: block; }
.feat-page img { width: 100%; height: auto; display: block; border: 1px solid var(--rule-light); box-shadow: 6px 8px 0 -2px var(--bone-2), 6px 8px 0 -1px var(--rule-light); transition: transform .25s; }
.feat.has-page:hover .feat-page img { transform: translate(-2px, -2px); }
.feat-body { display: flex; flex-direction: column; min-width: 0; }
.feat.has-page .go { margin-top: auto; }
@media (max-width: 560px) { .feat.has-page { grid-template-columns: 96px 1fr; gap: 1rem; } }

/* a landscape photograph in the split head shows whole */
.page-head.split .head-photo.wide img { aspect-ratio: 3 / 2; height: auto; min-height: 0; max-height: none; object-fit: cover; }

/* publishers: logo, name, one line, all linked */
.pubs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
@media (max-width: 900px) { .pubs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pubs { grid-template-columns: 1fr; } }
.pub { display: block; border-top: 2px solid var(--brass-deep); padding-top: 1.2rem; color: var(--ink); text-decoration: none; }
.pub-logo { display: flex; align-items: center; height: 44px; margin-bottom: .9rem; opacity: .6; transition: opacity .2s; }
.pub:hover .pub-logo { opacity: 1; }
.pub-logo img { height: 38px; width: auto; }
.pub-logo .wordmark { font-size: 1.5rem; }
.pub-name { display: block; font-family: "EB Garamond", Georgia, serif; font-size: 1.3rem; margin-bottom: .25rem; }
.pub:hover .pub-name { color: var(--brass-deep); }
.pub-note { display: block; font-size: .92rem; color: var(--ink-2); }

/* bibliography: one line per work, no year groups */
.biblio { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--rule-light); }
.biblio li { padding: 1rem 0; border-bottom: 1px solid var(--rule-light); }
.bib-title { display: block; font-family: "EB Garamond", Georgia, serif; font-size: 1.22rem; line-height: 1.3; }
.bib-title a { color: inherit; }
.bib-title a:hover { color: var(--brass-deep); }
.bib-title .lk { display: inline-block; margin-left: .35em; font-size: .75em; color: var(--brass-deep); }
.bib-sub { display: block; font-size: .88rem; color: var(--ink-2); margin-top: .2rem; }

.biblio .bib-sub:empty { display: none; }
.dark .biblio, .dark .biblio li { border-color: var(--rule-dark); }
.dark .bib-sub { color: var(--dim); }

/* a dark call-to-action with the photograph whole beside it */
.split-cta { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.cta-photo { margin: 0; }
.cta-photo img { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; border: 1px solid var(--rule-dark); }
@media (max-width: 860px) { .split-cta { grid-template-columns: 1fr; } .cta-photo { max-width: 460px; } }
.split-cta h2 { margin-bottom: .9rem; }

/* ── press strip: outlets he writes for, under the statement ── */
.press-strip { background: var(--night); border-top: 1px solid var(--rule-dark); padding: clamp(28px, 4vw, 42px) 0; }
.press-label { font-size: .66rem; letter-spacing: .3em; text-transform: uppercase; font-weight: 600; color: var(--brass-soft); text-align: center; margin: 0 0 1.3rem; }
.press-row { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: .9rem clamp(1.6rem, 3.4vw, 2.8rem); }
.press-row li { font-family: "EB Garamond", Georgia, serif; font-size: clamp(1rem, 1.5vw, 1.2rem); color: var(--dim); line-height: 1; }
.press-row a { color: var(--dim); text-decoration: none; transition: color .2s; }
.press-row a:hover { color: var(--brass-soft); }

/* ── endorsement band ── */
.band-quote { background: var(--bone-2); border-top: 1px solid var(--rule-light); border-bottom: 1px solid var(--rule-light); padding: clamp(52px, 7vw, 86px) 0; }
.big-q { margin: 0 auto; max-width: 30ch; text-align: center; position: relative; }
.big-q .qmark { display: block; font-family: "EB Garamond", Georgia, serif; font-size: 3.4rem; line-height: 1; color: var(--brass); opacity: .55; margin-bottom: .2rem; }
.big-q p { font-family: "EB Garamond", Georgia, serif; font-style: italic; font-size: clamp(1.4rem, 2.5vw, 2rem); line-height: 1.32; color: var(--ink); margin: 0; }
.big-q cite, .q-small cite { display: block; font-style: normal; margin-top: 1.3rem; }
.q-name { display: block; font-size: .92rem; font-weight: 600; color: var(--ink); }
.q-role { display: block; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brass-deep); margin-top: .3rem; line-height: 1.5; }
.q-two { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.6rem, 4vw, 3rem); max-width: 860px; margin: clamp(2.4rem, 5vw, 3.6rem) auto 0; }
.q-small { margin: 0; padding-left: 1.2rem; border-left: 2px solid var(--brass); }
.q-small p { font-family: "EB Garamond", Georgia, serif; font-style: italic; font-size: 1.02rem; line-height: 1.5; color: var(--ink-2); margin: 0; }
.q-small cite { margin-top: .9rem; }
@media (max-width: 720px) { .q-two { grid-template-columns: 1fr; } }

/* ── full-bleed feature band ── */
.feature { position: relative; isolation: isolate; display: flex; align-items: flex-end; min-height: clamp(420px, 56vw, 620px); padding: clamp(40px, 6vw, 72px) 0 clamp(52px, 7vw, 88px); overflow: hidden; }
.feature-img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: 50% 65%; }
.feature::before { content: none; }
.feature-copy { max-width: 38ch; color: var(--bone); background: rgba(16,26,38,.88); padding: clamp(24px, 3vw, 36px); border-left: 3px solid var(--brass); }
.feature > .wrap { width: 100%; display: flex; justify-content: flex-end; }
.feature .kicker { font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; font-weight: 600; color: var(--brass-soft); margin: 0 0 1rem; }
.feature h2 { font-family: "EB Garamond", Georgia, serif; font-size: clamp(1.7rem, 3.4vw, 2.7rem); line-height: 1.16; color: var(--bone); margin: 0 0 1.1rem; }
.feature-body { font-size: 1rem; line-height: 1.68; color: rgba(246,242,233,.82); margin: 0; }
.feature-credit { position: absolute; right: var(--pad); bottom: 1rem; margin: 0; font-size: .66rem; letter-spacing: .04em; color: rgba(246,242,233,.78); text-align: right; max-width: 40ch; background: rgba(16,26,38,.55); padding: .4rem .7rem; backdrop-filter: blur(2px); }
@media (max-width: 720px) {
  .feature { display: block; min-height: 0; padding: 0 0 clamp(40px, 7vw, 56px); background: var(--night); }
  .feature-img { position: static; inset: auto; z-index: auto; height: auto; display: block; }
  .feature::before { display: none; }
  .feature > .wrap { display: block; padding-top: clamp(28px, 6vw, 40px); }
  .feature-copy { max-width: none; }
  .feature-credit { position: static; width: 100%; text-align: left; margin: 1.2rem 0 0; padding: .5rem var(--pad); max-width: none; background: none; backdrop-filter: none; }
}

/* ── mailing list strip ── */
.mailing { background: var(--night-2); border-top: 1px solid var(--rule-dark); padding: clamp(36px, 5vw, 56px) 0; }
.ml-inner { display: flex; align-items: center; justify-content: space-between; gap: clamp(1.4rem, 4vw, 3rem); flex-wrap: wrap; }
.ml-text h3 { font-family: "EB Garamond", Georgia, serif; font-size: clamp(1.3rem, 2.2vw, 1.7rem); color: var(--bone); margin: 0 0 .35rem; }
.ml-text p { font-size: .92rem; color: var(--dim); margin: 0; }
.ml-form { display: flex; gap: 10px; flex-wrap: wrap; }
.ml-form input[type="email"] { background: rgba(246,242,233,.06); border: 1px solid var(--rule-dark); color: var(--bone); padding: 12px 16px; font-family: inherit; font-size: .95rem; min-width: 250px; border-radius: 0; }
.ml-form input[type="email"]::placeholder { color: rgba(169,182,194,.7); }
.ml-form input[type="email"]:focus { outline: 2px solid var(--brass); outline-offset: 2px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@media (max-width: 640px) { .ml-inner { flex-direction: column; align-items: flex-start; } .ml-form { width: 100%; } .ml-form input[type="email"] { flex: 1; min-width: 0; } }

/* ---------- playable organ (homepage) ---------- */
.organ-widget { max-width: 860px; margin: 0 auto; }
.organ-facade {
  position: relative;
  height: clamp(200px, 32vw, 320px);
  display: flex;
  align-items: end;
  justify-content: center;
  gap: clamp(3px, .7vw, 7px);
  overflow: hidden;
  padding: 28px clamp(10px, 2.4vw, 26px) 0;
  background: linear-gradient(var(--night-3), var(--night));
  border: 1px solid var(--rule-dark);
  border-bottom: 0;
  box-shadow: inset 0 14px 36px rgba(0,0,0,.4);
  isolation: isolate;
}
.organ-pipe {
  position: relative;
  flex: 1 1 0;
  max-width: 40px;
  min-width: 7px;
  height: var(--height);
  padding: 0;
  border: 0;
  border-radius: 2px 2px 1px 1px;
  background: linear-gradient(90deg, var(--brass-deep), var(--brass) 46%, var(--brass-deep));
  box-shadow: inset 1px 0 0 rgba(255,255,255,.1), inset -1px 0 0 rgba(0,0,0,.25), 0 4px 10px rgba(0,0,0,.35);
  touch-action: pan-y;
  user-select: none;
  transition: filter .12s ease, transform .12s ease;
}
.organ-pipe::before {
  content: "";
  position: absolute;
  left: 22%; right: 22%; top: 24%;
  height: 1.5px;
  background: rgba(16,26,38,.55);
}
.organ-pipe:hover, .organ-pipe.is-playing, .organ-pipe:focus-visible {
  filter: brightness(1.14);
  transform: translateY(-2px);
  outline: none;
}
.organ-pipe.is-playing::after {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: -1;
  border-radius: inherit;
  box-shadow: 0 0 14px rgba(221,177,115,.4);
}
.organ-console {
  position: relative;
  z-index: 2;
  padding: 16px clamp(10px, 2vw, 20px) 20px;
  background: var(--night-2);
  border: 1px solid var(--rule-dark);
  border-top: 2px solid var(--brass-deep);
}
.organ-controls { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 6px 12px; margin-bottom: 14px; }
.organ-touch-hint { display: none; font-size: .82rem; color: var(--dim); }
@media (hover: none) {
  #organHoverToggle { display: none; }
  .organ-touch-hint { display: inline; }
}
.organ-btn {
  min-height: 28px;
  padding: 5px 11px;
  border: 1px solid rgba(221,177,115,.4);
  color: var(--brass-soft);
  background: transparent;
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.organ-btn:hover { border-color: var(--brass); background: rgba(221,177,115,.08); }
.organ-btn[aria-pressed="true"] { color: var(--brass-soft); background: rgba(221,177,115,.14); border-color: var(--brass); }
.organ-volume { display: flex; align-items: center; gap: 7px; color: var(--dim); font-size: .7rem; }
.organ-volume input { width: 80px; accent-color: var(--brass); }
.organ-keyboard {
  position: relative;
  height: clamp(110px, 18vw, 170px);
  display: flex;
  overflow: hidden;
  border: 1px solid var(--rule-dark);
  background: var(--night);
  touch-action: pan-y;
  user-select: none;
}
.organ-key {
  position: relative;
  flex: 1;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-right: 1px solid var(--rule-light);
  background: linear-gradient(180deg, var(--bone) 88%, var(--bone-2));
  transition: background .1s ease;
  touch-action: pan-y;
}
.organ-key:last-of-type { border-right: 0; }
.organ-key.is-playing { background: linear-gradient(180deg, var(--brass-soft) 88%, var(--brass)); }
.organ-key--black {
  position: absolute;
  z-index: 2;
  left: calc(var(--x) * 100% / 15 - 2.15%);
  width: 4.3%;
  height: 60%;
  border: 0;
  background: linear-gradient(180deg, var(--ink), var(--night-3) 92%);
  box-shadow: 0 4px 6px rgba(0,0,0,.5);
  transition: background .1s ease;
}
.organ-key--black.is-playing { background: linear-gradient(180deg, var(--brass-deep), var(--night-3) 92%); }
.organ-key:focus-visible { outline: 2px solid var(--brass); outline-offset: -2px; }
.organ-hint { margin: 12px 0 0; text-align: center; color: var(--dim); font-size: .7rem; opacity: .7; letter-spacing: .01em; }
@media (max-width: 560px) {
  .organ-facade { gap: 2px; padding-inline: 8px; }
  .organ-facade { height: 190px; }
  .organ-keyboard { height: 130px; }
}
@media (prefers-reduced-motion: reduce) { .organ-pipe { transition: none; } }

/* ── choir photo strip (Teaching) ── */
.choir-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 2vw, 22px); }
.choir-strip figure { margin: 0; }
.choir-strip img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; border: 1px solid var(--rule-light); }
@media (max-width: 760px) { .choir-strip { grid-template-columns: 1fr; } }

/* Keys and pipes: vertical swipes scroll the page; sideways drags slide across the keys */
.organ-keyboard, .organ-facade { touch-action: pan-y; -webkit-user-select: none; user-select: none; -webkit-touch-callout: none; }

/* Phones: videos stack in a normal vertical list, each tile a bit narrower than the screen */
@media (max-width: 640px) {
  .video-grid, .video-grid.two { grid-template-columns: 1fr; }
  .video-grid > .vid { width: 82%; }
  .vid .frame[data-yt] .play { width: 52px; height: 52px; }
}

/* ── No cropping: every photo shows its whole frame ──
   (The desktop home hero is the one full-bleed background; it trims a sliver top and bottom.) */
.page-head.split .head-photo { align-self: center; }
.page-head.split .head-photo img, .page-head.split .head-photo.wide img { height: auto; min-height: 0; max-height: none; aspect-ratio: auto; object-fit: contain; }
.card-photo > img { aspect-ratio: 4 / 5; height: auto; object-fit: contain; background: var(--bone-2); }
.choir-strip { display: flex; gap: clamp(12px, 2vw, 22px); align-items: flex-start; }
.choir-strip figure { flex: var(--ar, 1) 1 0; min-width: 0; }
.choir-strip img { aspect-ratio: auto; height: auto; object-fit: contain; }
.photo-grid { display: block; columns: 4; column-gap: 1.2rem; }
.photo { break-inside: avoid; margin-bottom: 1.6rem; }
.photo > a { aspect-ratio: auto; }
.photo img { height: auto; object-fit: contain; }
.photo > a:hover img { transform: none; }
.feature { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1fr); grid-template-areas: "img copy" "img credit"; align-items: center; min-height: 0; padding: 0; background: var(--night); }
.feature-img { grid-area: img; position: static; inset: auto; z-index: auto; width: auto; max-width: 100%; height: auto; max-height: 88vh; object-fit: contain; justify-self: end; align-self: center; }
.feature > .wrap { grid-area: copy; display: block; width: auto; max-width: none; margin: 0; padding: clamp(40px, 5vw, 72px) clamp(24px, 5vw, 72px) 0; }
.feature-copy { background: none; padding: 0 0 0 clamp(18px, 2.4vw, 28px); max-width: 44ch; }
.feature-credit { grid-area: credit; position: static; align-self: start; text-align: left; background: none; backdrop-filter: none; max-width: 44ch; margin: 1.4rem clamp(24px, 5vw, 72px) clamp(40px, 5vw, 72px); padding: 0; }
@media (max-width: 1000px) { .photo-grid { columns: 2; } }
@media (max-width: 720px) {
  .feature { display: block; }
  .feature-img { width: 100%; max-height: none; }
  .feature > .wrap { padding: clamp(28px, 6vw, 40px) var(--pad) 0; }
  .feature-credit { margin: 1.2rem var(--pad) 0; padding-bottom: 40px; }
}
@media (max-width: 760px) { .choir-strip { flex-direction: column; } .choir-strip figure { flex: none; width: 100%; } }
@media (max-width: 640px) {
  .hero { padding-top: 78px; }
  .hero-img { height: auto; object-fit: contain; -webkit-mask-image: none; mask-image: none; }
  .hero-shade { display: none; }
}

/* ── Gallery ── whole photos in a masonry grid, tap to open larger */
.gallery-grid { list-style: none; margin: 0; padding: 0; columns: 3; column-gap: clamp(12px, 1.8vw, 20px); }
.gallery-grid li { break-inside: avoid; margin-bottom: clamp(12px, 1.8vw, 20px); }
.gallery-item { display: block; width: 100%; padding: 0; margin: 0; border: 1px solid var(--rule-light); background: var(--bone-2); cursor: zoom-in; -webkit-appearance: none; appearance: none; }
.gallery-item img { display: block; width: 100%; height: auto; transition: opacity .2s; }
.gallery-item:hover img, .gallery-item:focus-visible img { opacity: .88; }
@media (max-width: 900px) { .gallery-grid { columns: 2; } }
@media (max-width: 480px) { .gallery-grid { columns: 1; } }
.lightbox { border: 0; padding: 0; background: transparent; max-width: 100vw; max-height: 100vh; width: 100vw; height: 100vh; }
.lightbox::backdrop { background: rgba(10, 14, 20, .92); }
.lightbox[open] { display: flex; align-items: center; justify-content: center; }
.lightbox figure { margin: 0; text-align: center; pointer-events: none; }
.lightbox img { max-width: 92vw; max-height: 82vh; width: auto; height: auto; display: block; margin: 0 auto; }
.lightbox figcaption { color: var(--bone); font-size: .95rem; margin-top: .8rem; padding: 0 1rem; }
.lightbox button { position: fixed; background: rgba(16,26,38,.6); color: var(--bone); border: 1px solid rgba(246,242,233,.25); width: 48px; height: 48px; font-size: 1.8rem; line-height: 1; cursor: pointer; border-radius: 50%; }
.lb-close { top: calc(16px + env(safe-area-inset-top, 0px)); right: 16px; }
.lb-prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 12px; top: 50%; transform: translateY(-50%); }
behold-widget { display: block; min-height: 240px; }

/* ── Patrons band (home) ── three whole images at one height, a quote beneath */
.patrons h2 { max-width: 30ch; margin-bottom: 2rem; }
.patron-row { display: flex; gap: clamp(12px, 2vw, 22px); align-items: flex-start; max-width: 760px; }
.patron-row figure { flex: var(--ar, 1) 1 0; min-width: 0; margin: 0; }
.patron-row img { display: block; width: 100%; height: auto; border: 1px solid var(--rule-light); }
.patron-row figcaption { margin-top: .7rem; font-size: .82rem; line-height: 1.4; color: var(--ink-2); }
.patron-row figcaption strong { display: block; font-family: "EB Garamond", Georgia, serif; font-weight: 500; font-size: 1.05rem; color: var(--ink); margin-bottom: .15rem; }
.patron-quote { margin: 2.4rem 0 0; padding-left: clamp(16px, 2vw, 24px); border-left: 3px solid var(--brass); max-width: 40ch; }
.patron-quote p { margin: 0; font-family: "EB Garamond", Georgia, serif; font-size: clamp(1.4rem, 2.6vw, 1.9rem); line-height: 1.25; font-style: italic; }
.patron-quote .tr { font-size: 1.05rem; font-style: normal; color: var(--ink-2); margin-top: .5rem; font-family: inherit; }
.patron-quote cite { display: block; margin-top: .6rem; font-style: normal; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--brass-deep); }
.patron-credit { margin-top: 1.6rem; font-size: .75rem; color: var(--ink-2); }
@media (max-width: 560px) { .patron-row { flex-direction: column; } .patron-row figure { width: 78%; flex: none; } }
.patrons h2 em { color: var(--brass-deep); }

/* ── Language toggle (Google Translate) ── */
.lang-toggle { background: none; border: 1px solid currentColor; border-radius: 999px; padding: 5px 12px; font: 500 .7rem/1 "Inter", system-ui, sans-serif; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); cursor: pointer; opacity: .85; }
.lang-toggle:hover { opacity: 1; color: var(--bone); }
body.on-paper .lang-toggle--menu { color: var(--ink-2); }
body.on-paper .lang-toggle--menu:hover { color: var(--ink); }
.lang-toggle--bar { display: none; margin-left: auto; margin-right: 10px; }
body.on-paper .lang-toggle--bar { color: var(--ink-2); }
@media (max-width: 1200px) {
  .lang-toggle--bar { display: inline-block; }
  .lang-toggle--menu { display: none; }
  .nav.menu-open .lang-toggle--bar { color: var(--dim); }
}
.lang-foot { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.gt-note { font-size: .72rem; opacity: .75; }
/* Keep Google's toolbar and hover popups off the page; the note in the footer says it's Google's translation */
iframe.skiptranslate, .goog-te-banner-frame, #goog-gt-tt, .goog-te-balloon-frame, .VIpgJd-ZVi9od-ORHb-OEVmcd, .VIpgJd-ZVi9od-aZ2wEe-wOHMyf { display: none !important; }
body { top: 0 !important; }
.goog-text-highlight, font[style] { background: none !important; box-shadow: none !important; }
.brand-tag { white-space: nowrap; }
/* Between the hamburger and wide screens, tighten the menu so it fits in either language */
@media (min-width: 1201px) and (max-width: 1400px) {
  .links { gap: 18px; }
  .links a { letter-spacing: .1em; }
  .links a.nav-cta { padding: 8px 14px; }
}

/* ── Saint quote bands (home): full width, portrait shown whole, quote large, original beneath ── */
.saint-band { padding: clamp(56px, 8vw, 104px) 0; border-top: 1px solid var(--rule-light); border-bottom: 1px solid var(--rule-light); }
.saint-band--light { background: var(--bone-2); color: var(--ink); }
.saint-band--dark { background: var(--night-2); color: var(--bone); border-color: var(--rule-dark); }
.saint { margin: 0 auto; max-width: 1040px; display: grid; grid-template-columns: auto 1fr; grid-template-areas: "img q" "img cite"; column-gap: clamp(28px, 5vw, 64px); align-items: center; }
.saint-img { grid-area: img; width: clamp(120px, 16vw, 190px); height: auto; display: block; border: 1px solid var(--rule-light); box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.saint-band--dark .saint-img { border-color: var(--rule-dark); }
.saint-q { grid-area: q; margin: 0; align-self: end; }
.saint-text { margin: 0; font-family: "EB Garamond", Georgia, serif; font-style: italic; font-size: clamp(1.7rem, 3.6vw, 2.9rem); line-height: 1.18; letter-spacing: -.005em; text-wrap: balance; }
.saint-text::before { content: "“"; } .saint-text::after { content: "”"; }
.saint-orig { font-feature-settings: "locl" 0; margin: 1rem 0 0; font-family: "EB Garamond", Georgia, serif; font-size: clamp(1rem, 1.5vw, 1.2rem); opacity: .72; }
.saint-cite { grid-area: cite; align-self: start; margin-top: 1.3rem; display: flex; flex-wrap: wrap; gap: .35rem 1rem; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; }
.saint-cite span:first-child { color: var(--brass-deep); font-weight: 600; }
.saint-band--dark .saint-cite span:first-child { color: var(--brass-soft); }
.saint-cite span + span { opacity: .75; }
@media (max-width: 640px) {
  .saint { grid-template-columns: 1fr; grid-template-areas: "img" "q" "cite"; text-align: left; }
  .saint-img { width: 104px; margin-bottom: 1.6rem; }
  .saint-cite { flex-direction: column; gap: .35rem; }
}

/* ── Affiliations, balanced: equal cells, capped logo sizes, one type size ── */
.affil-row { gap: 30px 0; align-items: stretch; }
.affil-row { max-width: 1000px; margin: 0 auto; }
.affil-row li { flex: 0 0 25%; justify-content: center; min-height: 64px; padding: 0 10px; box-sizing: border-box; }
.affil-row a { justify-content: center; width: 100%; }
.affil-row img { height: auto; width: auto; max-height: 48px; max-width: 150px; filter: grayscale(1); transition: filter .2s; }
.affil-row a:hover img, .affil-row a:focus-visible img { filter: none; }
.affil-row .wordmark { font-size: 1.2rem; line-height: 1.12; max-width: 13ch; margin: 0 auto; }
.affil-row .wordmark small { white-space: nowrap; font-size: .54rem; letter-spacing: .14em; line-height: 1.35; margin-top: .3rem; }
@media (max-width: 640px) {
  .affil-row { gap: 26px 0; }
  .affil-row li { flex-basis: 50%; }
  .affil-row img { max-height: 38px; max-width: 124px; }
  .affil-row .wordmark { font-size: 1.05rem; }
}

/* ── Memberships band (About) ── */
.members { background: var(--night-2); color: var(--bone); padding: clamp(56px, 8vw, 96px) 0; }
.members .lbl { color: var(--brass-soft); }
.members .rule { background: var(--rule-dark); }
.member-grid { list-style: none; margin: 1.8rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.member-grid li { display: flex; }
.member { flex: 1; display: flex; flex-direction: column; justify-content: space-between; gap: 1.1rem; min-height: 132px; padding: 22px 22px 18px; border: 1px solid var(--rule-dark); background: rgba(246, 242, 233, .03); color: var(--bone); text-decoration: none; transition: border-color .2s, background .2s, transform .2s; }
.member-name { font-family: "EB Garamond", Georgia, serif; font-size: 1.22rem; line-height: 1.2; }
.member-url { font-size: .68rem; letter-spacing: .12em; text-transform: lowercase; color: var(--brass-soft); opacity: .8; }
a.member:hover, a.member:focus-visible { border-color: var(--brass); background: rgba(221, 177, 115, .08); transform: translateY(-2px); }
a.member:hover .member-url { opacity: 1; }
@media (max-width: 1000px) { .member-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .member-grid { grid-template-columns: 1fr; gap: 10px; } .member { min-height: 0; gap: .5rem; padding: 16px 18px; } }
.patron-q { display: block; margin-top: .8rem; padding-left: .8rem; border-left: 2px solid var(--brass); font-family: "EB Garamond", Georgia, serif; font-style: italic; font-size: 1.08rem; line-height: 1.3; color: var(--ink); quotes: "“" "”"; }
/* quotes under the patron portraits */
.patron-q { margin: .9rem 0 0; padding-left: 12px; border-left: 2px solid var(--brass); }
.patron-q p { margin: 0; font-family: "EB Garamond", Georgia, serif; font-style: italic; font-size: 1.05rem; line-height: 1.3; color: var(--ink); }
.patron-q p::before { content: "“"; } .patron-q p::after { content: "”"; }
.patron-q cite { display: block; margin-top: .4rem; font-style: normal; font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); line-height: 1.4; }

/* ── Patrons section, balanced: three equal columns across the full width ── */
.patrons { text-align: center; }
.patrons-eyebrow { color: var(--brass-deep); }
.patrons h2 { max-width: 30ch; margin: .6rem auto clamp(2.2rem, 4vw, 3.2rem); }
.patron-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 56px); align-items: start; }
.patron { display: flex; flex-direction: column; align-items: center; }
.patron-img { height: clamp(260px, 27vw, 360px); display: flex; align-items: flex-end; justify-content: center; }
.patron-img img { height: 100%; width: auto; max-width: 100%; display: block; border: 1px solid var(--rule-light); box-shadow: 0 10px 28px rgba(16, 26, 38, .12); }
.patron-name { margin: 1.3rem 0 .25rem; font-family: "EB Garamond", Georgia, serif; font-weight: 500; font-size: 1.4rem; }
.patron-role { margin: 0; font-size: .85rem; color: var(--ink-2); line-height: 1.45; }
.patrons .patron-q { margin: 1.2rem auto 0; padding: 1rem 0 0; border-left: 0; border-top: 1px solid var(--brass); max-width: 30ch; }
.patrons .patron-q p { font-size: 1.12rem; }
@media (max-width: 760px) {
  .patron-grid { grid-template-columns: 1fr; gap: 3rem; }
  .patron-img { height: 300px; }
}
/* the desktop/mobile switch only matters on small screens */
.view-toggle { display: none; }
@media (max-width: 760px) { .view-toggle { display: inline-block; } }
.view-desktop .view-toggle { display: inline-block; }
@media (min-width: 761px) { .patron-role { min-height: 2.9em; } }
