@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --ink: #071f2c;
  --ink-soft: #103343;
  --teal: #0f5d62;
  --teal-bright: #1b7979;
  --gold: #d9b56d;
  --gold-pale: #f1deb1;
  --paper: #f7f1e4;
  --paper-deep: #eadfc9;
  --cream: #fffdf7;
  --muted: #617178;
  --line: rgba(7, 31, 44, .16);
  --shadow: 0 24px 70px rgba(3, 20, 28, .15);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0, rgba(217, 181, 109, .13), transparent 29rem),
    var(--cream);
  font: 400 1rem/1.72 var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: .23;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath d='M60 1 74 19l23 3-5 22 15 16-15 16 5 22-23 3-14 18-14-18-23-3 5-22L13 60l15-16-5-22 23-3Z' fill='none' stroke='%23b99a5e' stroke-opacity='.12'/%3E%3C/svg%3E");
}

a { color: inherit; }
img { display: block; max-width: 100%; }
p { margin: 0 0 1rem; }
h1, h2, h3 { margin: 0; font-family: var(--serif); line-height: 1.04; text-wrap: balance; }
h1 { font-size: clamp(3.25rem, 7.5vw, 7rem); font-weight: 500; letter-spacing: -.045em; }
h2 { font-size: clamp(2.4rem, 5vw, 4.75rem); font-weight: 500; letter-spacing: -.035em; }
h3 { font-size: 1.75rem; font-weight: 600; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: .75rem;
  left: .75rem;
  padding: .65rem 1rem;
  color: var(--ink);
  background: var(--gold);
  border-radius: .25rem;
  transform: translateY(-150%);
}

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

:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 1rem clamp(1.1rem, 4vw, 4.5rem);
  color: #fff;
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  color: #fff;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 56px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(217, 181, 109, .55);
  background: #fff;
}

.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand strong { display: block; font: 600 1.33rem/1.1 var(--serif); letter-spacing: .01em; }
.brand small { display: block; margin-top: .18rem; color: rgba(255, 255, 255, .62); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; }

#site-nav { display: flex; align-items: center; gap: clamp(.8rem, 1.8vw, 1.65rem); }
#site-nav a { position: relative; color: rgba(255, 255, 255, .78); font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
#site-nav a:not(.nav-cta)::after { position: absolute; right: 0; bottom: -.55rem; left: 0; height: 1px; content: ""; background: var(--gold); transform: scaleX(0); transition: transform .2s ease; }
#site-nav a:hover, #site-nav a[aria-current="page"] { color: #fff; }
#site-nav a:hover::after, #site-nav a[aria-current="page"]::after { transform: scaleX(1); }
#site-nav .nav-cta { padding: .75rem 1rem; color: var(--ink); background: var(--gold); border: 1px solid var(--gold); }
#site-nav .nav-cta:hover { color: #fff; background: transparent; }

.menu-button { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid rgba(255, 255, 255, .25); background: transparent; }
.menu-button span { display: block; height: 1px; margin: 5px 0; background: #fff; transition: transform .2s ease, opacity .2s ease; }

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  min-height: 720px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(7, 31, 44, .96) 15%, rgba(10, 55, 65, .91) 62%, rgba(15, 93, 98, .72)),
    radial-gradient(circle at 90% 10%, var(--teal-bright), transparent 45%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: auto -8rem -14rem auto;
  width: 44rem;
  height: 44rem;
  content: "";
  border: 1px solid rgba(217, 181, 109, .28);
  transform: rotate(45deg);
  box-shadow: 0 0 0 6rem rgba(217, 181, 109, .025), 0 0 0 12rem rgba(217, 181, 109, .02);
}

.hero-pattern {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .27;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='86' height='86' viewBox='0 0 86 86'%3E%3Cg fill='none' stroke='%23ead29e' stroke-opacity='.28'%3E%3Cpath d='M43 2 54 22l22 11-20 11-11 20-11-20L14 33l20-11Z'/%3E%3Cpath d='m2 43 20-11 11-20 11 20 20 11-20 11-11 20-11-20Z' transform='translate(43 43)'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.hero-copy { align-self: center; max-width: 880px; padding: clamp(5rem, 9vw, 9rem) clamp(1.5rem, 7vw, 8rem); }
.eyebrow, .card-kicker {
  margin: 0 0 1.15rem;
  color: var(--teal);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero .eyebrow, .journal-banner .eyebrow, .contact-band .eyebrow { color: var(--gold); }
.hero h1 { max-width: 820px; }
.hero-lead { max-width: 720px; margin: 1.6rem 0 2.1rem; color: rgba(255, 255, 255, .77); font-size: clamp(1.05rem, 1.5vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.35rem;
  border: 1px solid transparent;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold { color: var(--ink); background: var(--gold); }
.button-gold:hover { background: var(--gold-pale); }
.button-ghost { color: #fff; border-color: rgba(255, 255, 255, .4); }
.button-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }
.button-ink { color: #fff; background: var(--ink); }
.button-outline { color: var(--ink); border-color: var(--ink); }
.button-outline:hover { color: #fff; background: var(--ink); }

.hero-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 4rem; }
.hero-facts span { padding-top: .9rem; color: rgba(255, 255, 255, .55); border-top: 1px solid rgba(255, 255, 255, .2); font-size: .7rem; line-height: 1.4; }
.hero-facts b { display: block; margin-bottom: .2rem; color: #fff; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }

.hero-manuscript {
  position: relative;
  align-self: center;
  margin: clamp(2rem, 6vw, 7rem);
  padding: clamp(2rem, 4vw, 4.5rem);
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.hero-manuscript::before, .hero-manuscript::after { position: absolute; inset: .75rem; content: ""; pointer-events: none; border: 1px solid rgba(15, 93, 98, .23); }
.hero-manuscript::after { inset: 1.12rem; border-color: rgba(217, 181, 109, .55); }
.hero-manuscript > * { position: relative; z-index: 1; }
.hero-manuscript [lang="ar"] { margin: 0 0 2rem; color: var(--teal); font: 500 clamp(1.8rem, 3.7vw, 3.2rem)/1.7 serif; text-align: right; }
.hero-manuscript blockquote { margin: 0; font: italic 500 clamp(1.35rem, 2vw, 1.8rem)/1.35 var(--serif); }
.hero-manuscript cite { display: block; margin-top: .8rem; color: var(--muted); font-size: .75rem; font-style: normal; letter-spacing: .12em; text-transform: uppercase; }
.manuscript-rule { width: 52px; height: 2px; margin: 2.1rem 0 1.2rem; background: var(--gold); }
.hero-manuscript > span { display: block; color: var(--muted); font-size: .82rem; line-height: 1.5; }

.institution-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.7rem clamp(1.5rem, 7vw, 8rem);
  color: #fff;
  background: var(--teal);
}
.institution-strip strong, .institution-strip span { display: block; }
.institution-strip strong { font-family: var(--serif); font-size: 1.2rem; }
.institution-strip span { color: rgba(255, 255, 255, .67); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; }
.institution-strip a { color: var(--gold-pale); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }

.section { max-width: 1500px; margin-inline: auto; padding: clamp(5rem, 9vw, 9rem) clamp(1.4rem, 6vw, 6rem); }
.section-heading { max-width: 760px; margin-bottom: 3.2rem; }
.section-heading > p:last-child { margin-top: 1rem; color: var(--muted); }
.section-heading-row { display: grid; max-width: none; grid-template-columns: minmax(0, 1fr) minmax(280px, .65fr); gap: 4rem; align-items: end; }
.section-heading-row > p { margin: 0; }

.news-section { max-width: none; background: var(--paper); }
.news-grid { display: grid; max-width: 1380px; margin: 0 auto; grid-template-columns: minmax(0, 1.38fr) minmax(320px, .62fr); gap: 1.5rem; }
.news-feature { display: grid; min-height: 620px; grid-template-columns: 1fr 1fr; overflow: hidden; color: #fff; background: var(--ink); }
.news-jacket { min-height: 100%; overflow: hidden; background: #d9cfbd; }
.news-jacket img { width: 200%; max-width: none; height: 100%; object-fit: cover; object-position: right center; transform: translateX(-50%); }
.news-front-cover { display: grid; padding: 1.2rem; place-items: center; }
.news-front-cover img { width: 100%; max-width: 430px; height: 100%; object-fit: contain; transform: none; filter: drop-shadow(0 18px 20px rgba(0, 0, 0, .24)); }
.news-feature-copy { align-self: center; padding: clamp(2rem, 5vw, 4.5rem); }
.news-feature-copy .card-kicker { color: var(--gold); }
.news-feature-copy h3 { font-size: clamp(2.4rem, 4vw, 4rem); }
.news-feature-copy p:not(.card-kicker) { margin-top: 1.25rem; color: rgba(255, 255, 255, .7); }
.news-stack { display: grid; gap: 1.5rem; }
.news-card { display: flex; min-height: 190px; flex-direction: column; align-items: flex-start; justify-content: center; padding: 2rem; background: #fff; border: 1px solid var(--line); }
.news-card h3 { font-size: 1.55rem; }
.news-card p { margin: .75rem 0; color: var(--muted); font-size: .9rem; }
.news-date { color: var(--teal); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.news-card-dark { color: #fff; background: var(--teal); border-color: var(--teal); }
.news-card-dark .news-date { color: var(--gold-pale); }
.news-card-dark p { color: rgba(255, 255, 255, .69); }

.text-link { display: inline-block; margin-top: .65rem; color: var(--teal); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.text-link:hover { color: var(--ink); }
.news-feature .text-link, .news-card-dark .text-link { color: var(--gold-pale); }

.scholar-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.scholar-card { min-height: 430px; padding: clamp(1.7rem, 3vw, 2.8rem); background: rgba(255, 255, 255, .78); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.scholar-card:hover { background: var(--paper); }
.scholar-card-compact { min-height: 405px; }
.scholar-monogram, .director-monogram {
  display: grid;
  width: 78px;
  height: 92px;
  margin-bottom: 2rem;
  place-items: center;
  color: var(--gold-pale);
  background: var(--ink);
  border: 1px solid var(--gold);
  font: 600 1.9rem/1 var(--serif);
}
.scholar-portrait {
  width: 78px;
  height: 92px;
  margin-bottom: 2rem;
  overflow: hidden;
  background: var(--paper-deep);
  border: 1px solid var(--gold);
}
.scholar-portrait img { width: 100%; height: 100%; object-fit: cover; }
.scholar-card h3 { margin-bottom: .5rem; }
.scholar-role { min-height: 3rem; color: var(--teal); font-size: .76rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.scholar-card > p:not(.card-kicker):not(.scholar-role) { color: var(--muted); font-size: .92rem; }
.center-action { margin-top: 2.5rem; text-align: center; }

.publications-preview { max-width: none; color: #fff; background: var(--ink); }
.publications-preview .section-heading > p:last-child { color: rgba(255, 255, 255, .64); }
.publications-preview .eyebrow { color: var(--gold); }
.publication-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.publication-card { display: grid; overflow: hidden; color: var(--ink); background: var(--paper); grid-template-rows: 390px 1fr; }
.publication-cover { padding: 1.8rem; overflow: hidden; background: #e1d8c7; }
.publication-cover img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 14px 15px rgba(4, 19, 28, .25)); }
.publication-cover-jacket img { width: 200%; max-width: none; object-fit: cover; object-position: right center; filter: none; transform: translateX(-50%); }
.publication-copy { display: flex; flex-direction: column; align-items: flex-start; padding: 2rem; }
.publication-copy h3 { margin: 1rem 0 .2rem; font-size: 2.2rem; }
.publication-subtitle { color: var(--teal); font: italic 500 1.15rem/1.35 var(--serif); }
.publication-copy > p:not(.publication-subtitle) { margin-bottom: .35rem; font-weight: 600; }
.publication-copy small { color: var(--muted); }
.publication-copy .text-link { margin-top: auto; padding-top: 1.4rem; }
.publication-topline { display: flex; width: 100%; justify-content: space-between; gap: 1rem; color: var(--muted); font-size: .65rem; letter-spacing: .09em; text-transform: uppercase; }
.publication-topline b { color: var(--teal); }
.publications-preview .center-action .button { color: #fff; border-color: rgba(255, 255, 255, .38); }
.publications-preview .center-action .button:hover { color: var(--ink); background: #fff; }

.journal-banner, .contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 9vw, 10rem);
  color: #fff;
  background: var(--teal);
}
.journal-banner > div { max-width: 850px; }
.journal-banner p:not(.eyebrow), .contact-band p:not(.eyebrow) { margin-top: 1rem; color: rgba(255, 255, 255, .69); }

footer { padding: 4.5rem clamp(1.5rem, 6vw, 6rem) 1.5rem; color: #fff; background: #04151e; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 3rem; }
.footer-brand { display: flex; gap: 1rem; align-items: center; }
.brand-mark-footer { width: 56px; height: 66px; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { font: 600 1.5rem/1.2 var(--serif); }
.footer-brand span { max-width: 260px; color: rgba(255, 255, 255, .52); font-size: .78rem; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: .65rem; }
.footer-column strong { margin-bottom: .5rem; color: var(--gold); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; }
.footer-column a { color: rgba(255, 255, 255, .64); font-size: .78rem; text-decoration: none; }
.footer-column a:hover { color: #fff; }
.footer-base { display: flex; justify-content: space-between; gap: 1rem; margin-top: 4rem; padding-top: 1.2rem; color: rgba(255, 255, 255, .4); border-top: 1px solid rgba(255, 255, 255, .1); font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; }

.inner-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 12vw, 11rem) clamp(1.4rem, 9vw, 10rem);
  color: #fff;
  background: var(--ink);
}
.inner-hero::after { position: absolute; right: -10rem; bottom: -18rem; width: 42rem; height: 42rem; content: ""; border: 1px solid rgba(217, 181, 109, .25); transform: rotate(45deg); }
.inner-hero .eyebrow { color: var(--gold); }
.inner-hero h1 { max-width: 1100px; }
.inner-hero > p:last-of-type { max-width: 780px; margin-top: 1.5rem; color: rgba(255, 255, 255, .7); font-size: 1.15rem; }
.inner-hero .button { position: relative; z-index: 1; margin-top: 1rem; }

.split-section { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); gap: clamp(3rem, 9vw, 9rem); }
.prose { color: #344b54; font: 500 clamp(1.3rem, 2vw, 1.7rem)/1.6 var(--serif); }
.prose p + p { margin-top: 1.4rem; }
.values-band { display: grid; grid-template-columns: repeat(4, 1fr); color: #fff; background: var(--teal); }
.values-band article { min-height: 300px; padding: clamp(2rem, 4vw, 3.5rem); border-right: 1px solid rgba(255, 255, 255, .16); }
.values-band b { color: var(--gold); font: 600 1rem var(--serif); }
.values-band h3 { margin: 3rem 0 1rem; }
.values-band p { color: rgba(255, 255, 255, .66); font-size: .9rem; }
.directors-section { background: var(--paper); }
.director-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; max-width: 980px; }
.director-grid article { min-height: 390px; padding: 3rem; background: #fff; border: 1px solid var(--line); }
.director-grid .director-monogram { width: 86px; height: 100px; }
.director-portrait { width: 118px; height: 140px; margin-bottom: 2rem; overflow: hidden; background: var(--paper-deep); border: 1px solid var(--gold); }
.director-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.director-grid h3 { font-size: 2rem; }
.director-grid article > p:last-child { margin-top: 1rem; color: var(--muted); }

.directory-section:nth-of-type(even) { max-width: none; background: var(--paper); }

.profile-hero {
  display: grid;
  min-height: 520px;
  align-items: center;
  padding: clamp(4rem, 10vw, 9rem) clamp(1.4rem, 9vw, 10rem);
  color: #fff;
  background: var(--ink);
  grid-template-columns: 220px 1fr;
  gap: clamp(2rem, 6vw, 7rem);
}
.profile-monogram-large { display: grid; width: 210px; height: 250px; place-items: center; color: var(--gold); border: 1px solid var(--gold); font: 600 clamp(4rem, 8vw, 7rem)/1 var(--serif); box-shadow: inset 0 0 0 .8rem var(--ink), inset 0 0 0 calc(.8rem + 1px) rgba(217, 181, 109, .35); }
.profile-portrait-large { width: 210px; height: 250px; overflow: hidden; border: 1px solid var(--gold); box-shadow: 0 18px 42px rgba(0, 0, 0, .28); }
.profile-portrait-large img { width: 100%; height: 100%; object-fit: cover; }
.profile-hero .eyebrow { color: var(--gold); }
.profile-hero h1 { font-size: clamp(3.25rem, 7vw, 6.25rem); }
.profile-role { margin: 1.3rem 0 .2rem; color: var(--gold-pale); font: 500 1.35rem var(--serif); }
.profile-hero span { color: rgba(255, 255, 255, .58); font-size: .77rem; letter-spacing: .09em; text-transform: uppercase; }
.author-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr); gap: clamp(3rem, 9vw, 9rem); }
.author-bio > p:not(.eyebrow) { max-width: 800px; color: #344b54; font: 500 clamp(1.18rem, 1.7vw, 1.42rem)/1.65 var(--serif); }
.author-bio h2 { margin-bottom: 1.5rem; }
.focus-panel { align-self: start; padding: 2.5rem; color: #fff; background: var(--teal); }
.focus-panel .card-kicker { color: var(--gold-pale); }
.focus-panel ul { margin: 0; padding: 0; list-style: none; }
.focus-panel li { padding: .9rem 0; border-bottom: 1px solid rgba(255, 255, 255, .17); }
.works-section { padding-top: 0; }
.works-list { border-top: 1px solid var(--line); }
.works-list article, .catalog-list article { display: grid; align-items: center; padding: 1.5rem 0; border-bottom: 1px solid var(--line); grid-template-columns: 80px 1fr; gap: 1.2rem; }
.works-list article > span, .catalog-list article > span { color: var(--teal); font: 600 1rem var(--serif); }
.works-list h3, .catalog-list h3 { font-size: 1.45rem; }
.works-list p, .catalog-list p { margin: .25rem 0 0; color: var(--muted); font-size: .85rem; }
.back-link { margin-top: 2.5rem; }

.book-announcement { display: grid; align-items: center; grid-template-columns: minmax(360px, .95fr) minmax(0, 1.05fr); gap: clamp(3rem, 8vw, 8rem); }
.announcement-image { padding: 1.2rem; overflow: hidden; background: var(--paper-deep); box-shadow: var(--shadow); }
.announcement-image img { width: 100%; }
.announcement-image-jacket { aspect-ratio: .72; padding: 0; }
.announcement-image-jacket img { width: 200%; max-width: none; height: 100%; object-fit: cover; object-position: right center; transform: translateX(-50%); }
.announcement-front-cover { max-width: 560px; justify-self: center; }
.announcement-front-cover img { display: block; width: 100%; }
.book-announcement h2 { margin-bottom: 1rem; }
.book-announcement > div:last-child > p:not(.eyebrow):not(.book-deck) { color: var(--muted); }
.book-deck { color: var(--teal); font: italic 500 1.55rem/1.35 var(--serif); }
.announcement-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 2.3rem; background: var(--line); }
.announcement-meta span { padding: 1.1rem; background: #fff; color: var(--muted); font-size: .74rem; }
.announcement-meta b { display: block; color: var(--ink); text-transform: uppercase; letter-spacing: .07em; }
.catalog-section { max-width: none; background: var(--ink); color: #fff; }
.catalog-section .eyebrow { color: var(--gold); }
.text-catalog { padding-top: 5rem; }
.catalog-list article { grid-template-columns: 80px 1fr auto; }
.catalog-list a { color: var(--teal); font-size: .75rem; font-weight: 700; letter-spacing: .07em; text-decoration: none; text-transform: uppercase; }

.catalogue-nav {
  position: sticky;
  z-index: 5;
  top: 80px;
  display: flex;
  overflow-x: auto;
  gap: .45rem;
  padding: 1rem clamp(1.4rem, 6vw, 6rem);
  background: rgba(250, 247, 240, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.catalogue-nav a { flex: 0 0 auto; padding: .65rem .9rem; color: var(--teal); border: 1px solid var(--line); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.catalogue-nav a:hover { color: #fff; background: var(--teal); border-color: var(--teal); }
.catalogue-group:nth-of-type(even) { max-width: none; background: var(--paper); }
.catalogue-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem; }
.catalog-card { display: grid; min-height: 520px; overflow: hidden; background: #fff; border: 1px solid var(--line); grid-template-rows: 330px 1fr; }
.catalog-cover { display: grid; overflow: hidden; padding: 1.35rem; place-items: center; background: #e7dece; }
.catalog-cover img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 12px 14px rgba(4, 19, 28, .24)); }
.catalog-card-jacket .catalog-cover { padding: 0; }
.catalog-card-jacket .catalog-cover img { width: 200%; max-width: none; object-fit: cover; object-position: right center; filter: none; transform: translateX(-50%); }
.catalog-copy { display: flex; flex-direction: column; align-items: flex-start; padding: 1.55rem; }
.catalog-copy[dir="rtl"] { align-items: flex-end; text-align: right; }
.catalog-copy h3 { font-size: 1.55rem; line-height: 1.08; }
.catalog-copy p { margin: .6rem 0; color: var(--teal); font: italic 500 1rem/1.35 var(--serif); }
.catalog-copy small { color: var(--muted); }
.catalog-copy .text-link { margin-top: auto; padding-top: 1rem; }

.scripture-band { padding: clamp(4rem, 9vw, 8rem) clamp(1.5rem, 12vw, 14rem); color: #fff; background: var(--ink); text-align: center; }
.scripture-band > p { max-width: 1080px; margin: 0 auto; color: var(--gold-pale); font: 500 clamp(1.85rem, 3.2vw, 3.3rem)/1.75 var(--serif); }
.scripture-band blockquote { max-width: 880px; margin: 2rem auto 1rem; color: rgba(255, 255, 255, .78); font: italic 500 clamp(1.2rem, 2vw, 1.65rem)/1.55 var(--serif); }
.scripture-band cite { color: var(--gold); font-size: .72rem; font-style: normal; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.impact-section { background: #fff; }
.impact-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.impact-grid article { min-height: 210px; padding: 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.impact-grid strong { display: block; color: var(--teal); font: 600 clamp(2.8rem, 5vw, 4.8rem)/1 var(--serif); }
.impact-grid span { display: block; margin-top: 1.25rem; color: var(--muted); }
.impact-note { max-width: 980px; margin: 2rem 0 0; color: var(--muted); }

.children-home-band { display: grid; align-items: center; padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 12vw, 13rem); color: #fff; background: var(--teal); grid-template-columns: minmax(240px, .55fr) minmax(0, 1.45fr); gap: clamp(3rem, 9vw, 9rem); }
.children-home-cover { width: min(100%, 390px); padding: 1rem; background: var(--paper); transform: rotate(-2deg); box-shadow: 0 22px 50px rgba(0, 0, 0, .24); }
.children-home-cover img { width: 100%; }
.children-home-band .eyebrow { color: var(--gold-pale); }
.children-home-band p:not(.eyebrow) { max-width: 720px; margin: 1.2rem 0 2rem; color: rgba(255, 255, 255, .72); }

.children-hero { display: grid; min-height: 700px; align-items: center; padding: clamp(4rem, 10vw, 9rem) clamp(1.5rem, 9vw, 10rem); color: #fff; background: var(--ink); grid-template-columns: minmax(0, 1.2fr) minmax(330px, .8fr); gap: clamp(3rem, 8vw, 8rem); }
.children-hero .eyebrow { color: var(--gold); }
.children-hero h1 { max-width: 900px; }
.children-hero > div:first-child > p:not(.eyebrow) { max-width: 780px; margin: 1.5rem 0 2rem; color: rgba(255, 255, 255, .7); font-size: 1.12rem; }
.banana-feature { max-width: 480px; padding: 1.2rem; color: var(--ink); background: var(--paper); box-shadow: 0 24px 65px rgba(0, 0, 0, .35); transform: rotate(2deg); }
.banana-feature img { width: 100%; }
.banana-feature p { padding: 1rem .4rem .2rem; }
.banana-feature strong, .banana-feature span { display: block; }
.banana-feature strong { font: 600 1.4rem var(--serif); }
.banana-feature span { margin-top: .35rem; color: var(--muted); font-size: .76rem; }
.learning-pillars { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); color: #fff; background: var(--teal); }
.learning-pillars article { min-height: 330px; padding: clamp(2rem, 4vw, 3.2rem); border-right: 1px solid rgba(255, 255, 255, .16); }
.learning-pillars span { color: var(--gold); font: 600 1rem var(--serif); }
.learning-pillars h2 { margin: 3rem 0 1rem; font-size: 1.9rem; }
.learning-pillars p { color: rgba(255, 255, 255, .68); font-size: .9rem; }
.age-section { max-width: none; background: var(--paper); }
.age-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.age-grid article { min-height: 420px; padding: 2.4rem; background: #fff; border: 1px solid var(--line); }
.age-label { color: var(--teal); font-size: .7rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.age-grid h3 { margin: 2.4rem 0 1.2rem; font-size: 1.9rem; }
.age-grid ul { margin: 0; padding-left: 1.1rem; color: var(--muted); }
.age-grid li { padding: .45rem 0; }
.banana-section { display: grid; align-items: center; grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr); gap: clamp(3rem, 9vw, 9rem); }
.banana-large { max-width: 520px; padding: 1rem; background: var(--paper); box-shadow: var(--shadow); }
.banana-large img { width: 100%; }
.banana-section > div:last-child > p:not(.eyebrow) { max-width: 700px; color: var(--muted); font: 500 1.25rem/1.6 var(--serif); }
.banana-section dl { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 2rem 0; background: var(--line); gap: 1px; }
.banana-section dl div { padding: 1rem; background: #fff; }
.banana-section dt { color: var(--teal); font-size: .68rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.banana-section dd { margin: .35rem 0 0; color: var(--muted); font-size: .84rem; }

.event-feature { display: grid; align-items: center; grid-template-columns: 240px 1fr; gap: clamp(2.5rem, 7vw, 7rem); padding: clamp(2.5rem, 6vw, 6rem); color: #fff; background: var(--ink); }
.event-date { display: flex; min-height: 250px; flex-direction: column; align-items: center; justify-content: center; border: 1px solid var(--gold); }
.event-date strong { color: var(--gold); font: 500 clamp(3.2rem, 7vw, 6rem)/1 var(--serif); }
.event-date span { margin-top: .8rem; color: rgba(255, 255, 255, .6); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; }
.event-feature .card-kicker { color: var(--gold); }
.event-feature h2 { max-width: 850px; }
.event-feature > div:last-child > p:not(.card-kicker):not(.event-theme) { color: rgba(255, 255, 255, .65); }
.event-theme { margin: 1.2rem 0; color: var(--gold-pale); font: italic 500 1.25rem var(--serif); }
.event-feature .text-link { color: var(--gold); }
.programme-section { max-width: none; background: var(--paper); }
.programme-grid, .award-grid, .journal-sections, .standards-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.programme-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.programme-grid article, .award-grid article, .journal-sections article, .standards-grid article { min-height: 260px; padding: 2rem; background: #fff; border: 1px solid var(--line); }
.programme-grid span, .award-grid span { color: var(--teal); font: 600 1rem var(--serif); }
.programme-grid h3, .award-grid h3, .journal-sections h3, .standards-grid h3 { margin: 2.7rem 0 .8rem; font-size: 1.45rem; }
.programme-grid p, .award-grid p, .journal-sections p, .standards-grid p { color: var(--muted); font-size: .87rem; }
.event-archive { display: grid; grid-template-columns: .7fr 1.3fr; gap: 5rem; }
.event-archive p { color: var(--muted); }

.status-strip { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1.3rem clamp(1.4rem, 9vw, 10rem); color: #fff; background: var(--teal); }
.status-strip strong { font-family: var(--serif); font-size: 1.25rem; }
.status-strip span { color: rgba(255, 255, 255, .65); font-size: .8rem; }
.award-grid article { min-height: 300px; }
.criteria-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: 5rem; max-width: none; background: var(--paper); }
.criteria-section ol { margin: 0; padding-left: 1.3rem; color: var(--muted); }
.criteria-section li { padding: .65rem 0; }

.journal-hero { display: grid; grid-template-columns: 1.35fr .65fr; color: #fff; background: var(--ink); }
.journal-mast { align-self: center; padding: clamp(5rem, 11vw, 10rem) clamp(1.4rem, 9vw, 10rem); }
.journal-overline { color: var(--gold); font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.journal-mast h1 { max-width: 930px; }
.journal-mast > p:last-child { max-width: 720px; margin-top: 1.5rem; color: rgba(255, 255, 255, .67); }
.journal-volume { display: flex; min-height: 570px; flex-direction: column; align-items: center; justify-content: center; margin: clamp(2rem, 6vw, 6rem); padding: 2rem; color: var(--ink); background: var(--paper); border: 1px solid var(--gold); box-shadow: inset 0 0 0 .9rem var(--paper), inset 0 0 0 calc(.9rem + 1px) var(--gold); text-align: center; }
.journal-volume span { color: var(--teal); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; }
.journal-volume strong { max-width: 310px; margin: 3rem 0; font: 600 clamp(2.2rem, 4vw, 3.7rem)/1 var(--serif); }
.journal-scope { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); gap: clamp(3rem, 9vw, 9rem); }
.journal-sections { grid-template-columns: repeat(2, 1fr); }
.journal-sections { max-width: 1500px; margin-inline: auto; padding: 0 clamp(1.4rem, 6vw, 6rem) clamp(5rem, 9vw, 9rem); }
.journal-sections article { min-height: 240px; }
.editorial-standards { max-width: none; background: var(--paper); }
.standards-grid article { min-height: 230px; }
.submission-band { display: flex; align-items: center; justify-content: space-between; gap: 3rem; padding: clamp(4rem, 8vw, 7rem) clamp(1.4rem, 9vw, 10rem); color: #fff; background: var(--teal); }
.submission-band > div { max-width: 740px; }
.submission-band .eyebrow { color: var(--gold); }
.submission-band p { margin-top: 1rem; color: rgba(255, 255, 255, .7); }

@media (max-width: 1120px) {
  .site-header { min-height: 78px; }
  .menu-button { display: block; }
  #site-nav { position: absolute; top: 100%; right: 0; left: 0; display: none; padding: 1.2rem 1.5rem 1.7rem; background: var(--ink); border-top: 1px solid rgba(255, 255, 255, .1); box-shadow: 0 18px 35px rgba(0,0,0,.25); }
  #site-nav.is-open { display: grid; gap: 0; }
  #site-nav a { padding: .8rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  #site-nav .nav-cta { margin-top: .7rem; padding: .8rem 1rem; text-align: center; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 3rem; }
  .hero-manuscript { max-width: 650px; margin: 0 clamp(1.5rem, 7vw, 8rem) 6rem; }
  .news-grid { grid-template-columns: 1fr; }
  .news-stack { grid-template-columns: repeat(3, 1fr); }
  .news-card { min-height: 250px; }
  .publication-card { grid-template-rows: 330px 1fr; }
  .catalogue-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .impact-grid, .learning-pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .programme-grid, .award-grid, .standards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  h1 { font-size: clamp(2.9rem, 12vw, 5.2rem); }
  .section-heading-row, .split-section, .author-layout, .book-announcement, .event-archive, .criteria-section, .journal-scope, .children-home-band, .children-hero, .banana-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-facts { grid-template-columns: repeat(2, 1fr); }
  .news-feature { grid-template-columns: 1fr; }
  .news-jacket { min-height: 450px; }
  .news-jacket img { height: 450px; }
  .news-stack { grid-template-columns: 1fr; }
  .news-card { min-height: auto; }
  .scholar-grid, .publication-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalogue-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .age-grid { grid-template-columns: 1fr; }
  .age-grid article { min-height: auto; }
  .values-band { grid-template-columns: repeat(2, 1fr); }
  .profile-hero { grid-template-columns: 160px 1fr; }
  .profile-monogram-large { width: 160px; height: 190px; }
  .profile-portrait-large { width: 160px; height: 190px; }
  .event-feature { grid-template-columns: 180px 1fr; }
  .journal-hero { grid-template-columns: 1fr; }
  .journal-volume { min-height: 430px; max-width: 460px; margin: 0 auto 5rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .brand small { display: none; }
  .brand strong { font-size: 1.16rem; }
  .brand-mark { width: 39px; height: 46px; }
  .hero { min-height: auto; }
  .hero-copy { padding-top: 5rem; }
  .hero-facts { margin-top: 2.5rem; }
  .hero-manuscript { padding: 2.2rem; }
  .institution-strip, .journal-banner, .contact-band, .submission-band, .status-strip { align-items: flex-start; flex-direction: column; }
  .section { padding-block: 4.5rem; }
  .section-heading { margin-bottom: 2.3rem; }
  .news-jacket, .news-jacket img { min-height: 340px; height: 340px; }
  .scholar-grid, .publication-grid, .director-grid, .programme-grid, .award-grid, .journal-sections, .standards-grid, .catalogue-grid, .impact-grid, .learning-pillars { grid-template-columns: 1fr; }
  .scholar-card { min-height: auto; }
  .publication-card { grid-template-rows: 340px 1fr; }
  .values-band { grid-template-columns: 1fr; }
  .values-band article { min-height: 240px; }
  .profile-hero { display: block; }
  .profile-monogram-large { width: 125px; height: 145px; margin-bottom: 2.5rem; }
  .profile-portrait-large { width: 125px; height: 145px; margin-bottom: 2.5rem; }
  .profile-hero h1 { font-size: clamp(2.8rem, 13vw, 4.6rem); }
  .announcement-meta { grid-template-columns: 1fr; }
  .banana-section dl { grid-template-columns: 1fr; }
  .catalog-list article, .works-list article { grid-template-columns: 48px 1fr; }
  .catalog-list a { grid-column: 2; }
  .event-feature { grid-template-columns: 1fr; padding: 1.4rem; }
  .event-date { min-height: 180px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-base { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media print {
  .site-header, footer, .button, .menu-button { display: none !important; }
  body { background: #fff; }
  .inner-hero, .profile-hero, .journal-hero { color: #000; background: #fff; }
  a { text-decoration: none; }
}
