:root {
  --ink: #142f4f;
  --ink-deep: #0c2037;
  --ink-soft: #244c6e;
  --paper: #f4f7fb;
  --white: #ffffff;
  --line: #d8e2ec;
  --coral: #f05b47;
  --coral-dark: #d64634;
  --sky: #48b5d1;
  --yellow: #f4c95d;
  --text: #263b4f;
  --muted: #617487;
  --shadow: 0 24px 70px rgba(15, 41, 67, .14);
  --shadow-soft: 0 12px 32px rgba(15, 41, 67, .08);
  --radius: 1.35rem;
  --radius-lg: 2.4rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }
.shell { width: min(1180px, calc(100% - 2.25rem)); margin-inline: auto; }
.narrow { width: min(850px, calc(100% - 2.25rem)); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 1rem; top: -6rem; z-index: 100; padding: .75rem 1rem; color: var(--ink); background: var(--white); border-radius: .7rem; font-weight: 800; }
.skip-link:focus { top: 1rem; }

.topline { color: #dbe6f0; background: var(--ink-deep); font-size: .82rem; font-weight: 700; letter-spacing: .025em; }
.topline-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.site-header { position: sticky; top: 0; z-index: 30; background: rgba(244, 247, 251, .93); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(20,47,79,.09); }
.admin-bar .site-header { top: 32px; }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; }
.brand { display: inline-flex; align-items: center; gap: .82rem; color: var(--ink); text-decoration: none; font-weight: 900; letter-spacing: -.025em; white-space: nowrap; }
.brand-mark { display: grid; place-items: center; width: 43px; aspect-ratio: 1; border-radius: 13px; color: #fff; background: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 1.06rem; position: relative; box-shadow: 0 8px 20px rgba(20,47,79,.18); }
.brand-mark::after { content: ""; width: 9px; height: 9px; position: absolute; right: -3px; top: -3px; background: var(--coral); border-radius: 50%; border: 2px solid var(--paper); }
.custom-logo-link { display: block; }
.custom-logo { width: auto; max-width: 280px; max-height: 58px; object-fit: contain; }
.nav { display: block; }
.nav-list { display: flex; align-items: center; gap: 1.35rem; margin: 0; padding: 0; list-style: none; }
.nav-list li { position: relative; margin: 0; }
.nav-list > li > a { position: relative; text-decoration: none; color: var(--ink); font-size: .93rem; font-weight: 800; }
.nav-list > li > a:not(.button)::after { content: ""; position: absolute; height: 2px; left: 0; right: 100%; bottom: -.35rem; background: var(--coral); transition: right .2s ease; }
.nav-list > li > a:not(.button):hover::after, .nav-list > li > a[aria-current="page"]::after, .nav-list > .current-menu-ancestor > a::after { right: 0; }
.nav-list > li > a[aria-current="page"], .nav-list > .current-menu-ancestor > a { color: var(--coral-dark); }
.nav-list .sub-menu { position: absolute; left: -.85rem; top: calc(100% + .8rem); min-width: 250px; display: none; gap: .15rem; margin: 0; padding: .65rem; list-style: none; background: var(--white); border: 1px solid var(--line); border-radius: .9rem; box-shadow: var(--shadow-soft); }
.nav-list li:hover > .sub-menu, .nav-list li:focus-within > .sub-menu { display: grid; }
.nav-list .sub-menu a { display: block; padding: .55rem .65rem; color: var(--ink); border-radius: .55rem; text-decoration: none; font-size: .88rem; font-weight: 750; line-height: 1.35; }
.nav-list .sub-menu a:hover, .nav-list .sub-menu a:focus-visible { background: var(--paper); }
.menu-toggle { display: none; align-items: center; gap: .65rem; border: 0; background: var(--ink); color: #fff; border-radius: 11px; padding: .65rem .85rem; font: inherit; font-weight: 800; }
.menu-toggle i, .menu-toggle i::before, .menu-toggle i::after { display: block; width: 18px; height: 2px; background: currentColor; content: ""; transition: transform .2s ease; }
.menu-toggle i { position: relative; }
.menu-toggle i::before { position: absolute; top: -6px; }
.menu-toggle i::after { position: absolute; top: 6px; }
.menu-toggle[aria-expanded="true"] i { background: transparent; }
.menu-toggle[aria-expanded="true"] i::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] i::after { top: 0; transform: rotate(-45deg); }

h1, h2, h3 { margin-top: 0; color: var(--ink); font-family: Georgia, "Times New Roman", serif; line-height: 1.08; letter-spacing: -.035em; }
p { margin-top: 0; }
.eyebrow { margin: 0 0 1.05rem; color: var(--sky); font-size: .82rem; font-weight: 900; letter-spacing: .145em; text-transform: uppercase; }
.eyebrow.dark { color: var(--coral-dark); }
.eyebrow.light { color: var(--yellow); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; min-height: 48px; padding: .72rem 1.1rem; border: 1px solid transparent; border-radius: 999px; color: #fff; background: var(--coral); text-decoration: none; font-weight: 900; line-height: 1.2; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); background: var(--coral-dark); box-shadow: 0 12px 28px rgba(240,91,71,.25); }
.button.secondary { color: var(--ink); background: transparent; border-color: var(--ink); box-shadow: none; }
.button.secondary:hover { color: #fff; background: var(--ink); }
.button.pale { color: var(--ink-deep); background: var(--yellow); }
.button.pale:hover { background: #ffda79; box-shadow: 0 12px 28px rgba(244,201,93,.2); }
.text-link { display: inline-flex; align-items: center; gap: .5rem; color: #fff; text-decoration: none; font-weight: 900; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.dark-link { color: var(--ink); }

.home-hero { position: relative; overflow: hidden; color: #fff; background: var(--ink); }
.home-hero::before { content: ""; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 58px 58px; mask-image: linear-gradient(to right, #000, transparent 78%); }
.home-hero-grid { min-height: 700px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 2.4rem; padding: 5.7rem 0 7.8rem; position: relative; z-index: 1; }
.hero-copy { position: relative; z-index: 3; }
.hero-copy h1 { margin-bottom: 1.6rem; max-width: 750px; color: #fff; font-size: clamp(3.4rem, 7.2vw, 6.7rem); }
.hero-copy h1 em { color: var(--yellow); font-weight: 400; }
.hero-copy > p:not(.eyebrow) { max-width: 650px; color: #dce7f1; font-size: clamp(1.08rem, 1.9vw, 1.32rem); }
.hero-actions { display: flex; align-items: center; gap: 1.3rem; flex-wrap: wrap; margin-top: 2rem; }
.portrait-stage { align-self: end; position: relative; min-height: 540px; display: flex; align-items: end; justify-content: center; }
.portrait-stage img { position: relative; z-index: 2; width: min(100%, 520px); max-height: 560px; object-fit: cover; object-position: center bottom; border-radius: 52% 52% 1.8rem 1.8rem; box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.portrait-shape { position: absolute; border-radius: 50%; }
.shape-one { z-index: 1; width: 430px; aspect-ratio: 1; right: -5%; top: 3%; background: var(--sky); }
.shape-two { z-index: 0; width: 240px; aspect-ratio: 1; left: -4%; bottom: 5%; border: 55px solid var(--coral); }
.portrait-note { position: absolute; z-index: 4; right: -1rem; bottom: 2.2rem; display: grid; min-width: 205px; padding: 1rem 1.2rem; color: var(--ink); background: var(--yellow); border-radius: 1rem; box-shadow: var(--shadow); line-height: 1.25; transform: rotate(-2deg); }
.portrait-note span { color: var(--coral-dark); font-family: Georgia, serif; }
.hero-ribbon { position: absolute; z-index: 5; bottom: 0; left: 0; right: 0; min-height: 53px; display: flex; align-items: center; justify-content: space-around; gap: 2rem; padding-inline: 2rem; color: var(--ink-deep); background: var(--yellow); font-size: .78rem; font-weight: 950; letter-spacing: .12em; white-space: nowrap; overflow: hidden; }
.hero-ribbon span::before { content: "•"; margin-right: 2rem; color: var(--coral); }

.section { padding-block: clamp(4.5rem, 8vw, 8rem); }
.section-heading { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 6vw, 5rem); align-items: end; margin-bottom: 3.2rem; }
.section-heading h2 { margin-bottom: 0; max-width: 650px; font-size: clamp(2.7rem, 5.5vw, 4.8rem); }
.section-heading > p { margin: 0 0 .25rem; max-width: 630px; color: var(--muted); font-size: 1.1rem; }
.intro-section { background: var(--white); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { display: flex; align-items: baseline; gap: 1rem; padding: 1.8rem 1.2rem; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { color: var(--ink); font: 700 clamp(2.6rem, 5vw, 4.5rem)/1 Georgia, serif; letter-spacing: -.05em; }
.stat span { color: var(--muted); font-weight: 800; }
.programs-section { background: var(--paper); }
.program-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr)); gap: 1rem; }
.program-card { min-height: 375px; display: flex; flex-direction: column; padding: 1.55rem; color: var(--text); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; box-shadow: 0 0 0 rgba(15,41,67,0); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.program-card:hover { transform: translateY(-6px); border-color: rgba(20,47,79,.25); box-shadow: var(--shadow-soft); }
.card-top, .card-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.index { color: var(--coral-dark); font-size: .9rem; font-weight: 950; letter-spacing: .12em; }
.pill { display: inline-flex; align-items: center; min-height: 30px; padding: .28rem .65rem; color: var(--ink); background: #e9f1f8; border-radius: 999px; font-size: .78rem; font-weight: 850; }
.program-card h3 { margin: auto 0 1.05rem; padding-top: 2rem; font-size: clamp(1.75rem, 2.5vw, 2.2rem); }
.program-card h3 small { display: block; margin-top: .75rem; color: var(--muted); font: 700 .95rem/1.4 Inter, ui-sans-serif, system-ui, sans-serif; letter-spacing: 0; }
.program-card p { color: var(--muted); }
.card-bottom { margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--line); font-size: .84rem; }
.card-bottom > span { color: var(--muted); }
.card-bottom strong { color: var(--ink); }
.section-action { display: flex; justify-content: center; margin-top: 2.3rem; }
.workshop-band { color: #dce8f2; background: var(--ink-deep); }
.workshop-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2.5rem, 7vw, 7rem); align-items: start; }
.workshop-layout h2 { color: #fff; font-size: clamp(2.8rem, 5vw, 4.7rem); }
.workshop-layout > div:first-child > p:not(.eyebrow) { max-width: 460px; }
.workshop-list { display: grid; }
.workshop-list a { min-height: 88px; display: grid; grid-template-columns: 45px 1fr 24px; align-items: center; gap: 1rem; color: #fff; border-bottom: 1px solid rgba(255,255,255,.16); text-decoration: none; }
.workshop-list a:first-child { border-top: 1px solid rgba(255,255,255,.16); }
.workshop-list a span { color: var(--yellow); font-size: .8rem; font-weight: 900; }
.workshop-list a strong { line-height: 1.3; }
.workshop-list a i { font-style: normal; transition: transform .2s ease; }
.workshop-list a:hover i { transform: translate(3px,-3px); }
.team-section { background: var(--white); }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 7vw, 6rem); align-items: center; }
.team-photo { position: relative; }
.team-photo::before { content: ""; position: absolute; width: 70%; height: 70%; left: -1.25rem; bottom: -1.25rem; background: var(--yellow); border-radius: var(--radius-lg); }
.team-photo img { position: relative; width: 100%; aspect-ratio: 1.15; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.team-grid h2 { font-size: clamp(2.7rem, 5vw, 4.5rem); }
.team-grid p { font-size: 1.04rem; }
.journal-teaser { padding-top: 0; background: var(--white); }
.journal-card { display: grid; grid-template-columns: auto 1fr auto; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; padding: clamp(2rem, 5vw, 4.3rem); color: #dce8f2; background: var(--ink); border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.journal-card::after { content: ""; position: absolute; width: 180px; height: 180px; border: 40px solid var(--sky); border-radius: 50%; right: -85px; top: -85px; opacity: .4; }
.journal-card h2 { margin-bottom: .8rem; color: #fff; font-size: clamp(2.35rem, 4vw, 3.8rem); }
.journal-card p { margin-bottom: 0; }
.journal-monogram { display: grid; place-items: center; width: 110px; aspect-ratio: 1; color: var(--ink); background: var(--yellow); border-radius: 50%; font: 900 1.1rem/1 Inter, sans-serif; letter-spacing: .08em; }
.journal-card .button { position: relative; z-index: 1; }
.contact-strip { background: var(--paper); }
.contact-strip-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 7vw, 7rem); align-items: end; }
.contact-strip h2 { margin: 0; font-size: clamp(2.7rem, 5vw, 4.5rem); }
.contact-strip-inner > div:last-child { padding-bottom: .4rem; }

.page-hero { position: relative; overflow: hidden; color: #dce8f2; background: var(--ink); }
.page-hero::before { content: ""; position: absolute; inset: 0; opacity: .13; background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0); background-size: 32px 32px; mask-image: linear-gradient(to left, #000, transparent 75%); }
.page-hero-grid { min-height: 420px; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 2rem; padding-block: 5.2rem; position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 1.3rem; max-width: 900px; color: #fff; font-size: clamp(3.3rem, 7vw, 6.5rem); }
.page-lead { max-width: 760px; color: #dce8f2; font-size: clamp(1.08rem, 2vw, 1.28rem); }
.page-marker { align-self: center; color: rgba(255,255,255,.1); font: 800 clamp(5rem, 14vw, 12rem)/.8 Georgia, serif; letter-spacing: -.08em; white-space: nowrap; }
.catalog { background: var(--paper); }
.catalog-intro { display: flex; justify-content: space-between; gap: 2rem; align-items: center; margin-bottom: 5rem; padding: 1.7rem 2rem; background: var(--white); border-left: 5px solid var(--coral); border-radius: 0 var(--radius) var(--radius) 0; box-shadow: var(--shadow-soft); }
.catalog-intro p { max-width: 760px; margin: 0; }
.catalog-group + .catalog-group { margin-top: 6rem; }
.group-heading { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 1rem; margin-bottom: 2rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.group-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -.5rem; }
.group-heading h2 { margin: 0; font-size: clamp(2.4rem, 4vw, 3.7rem); }
.group-heading > span { color: var(--muted); font-weight: 800; }

.program-hero { color: #dce8f2; background: var(--ink); position: relative; overflow: hidden; }
.program-hero::after { content: ""; position: absolute; width: 450px; aspect-ratio: 1; right: -180px; top: -180px; border: 85px solid rgba(72,181,209,.18); border-radius: 50%; }
.program-hero .shell { position: relative; z-index: 1; padding-block: 2rem 5.2rem; }
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: .55rem; margin-bottom: 4.5rem; color: #b9cadd; font-size: .86rem; }
.breadcrumb a { text-decoration-color: rgba(255,255,255,.35); }
.breadcrumb span:last-child { color: #fff; }
.program-hero-grid { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 2rem; }
.program-hero h1 { margin-bottom: 1rem; max-width: 980px; color: #fff; font-size: clamp(3rem, 6.5vw, 6rem); }
.program-subtitle { max-width: 800px; color: var(--yellow); font: 700 clamp(1.35rem, 2vw, 1.8rem)/1.35 Georgia, serif; }
.program-number { color: rgba(255,255,255,.1); font: 800 clamp(5rem, 13vw, 11rem)/.75 Georgia, serif; }
.detail-section { background: var(--paper); }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.article-body { min-width: 0; padding: clamp(1.6rem, 4vw, 3.5rem); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.article-label { margin-bottom: 2.5rem; color: var(--coral-dark); font-size: .82rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.article-body h2 { margin: 2.6rem 0 1rem; font-size: clamp(2rem, 4vw, 3rem); }
.article-body h3 { margin: 2.2rem 0 .85rem; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.article-body h4 { margin: 2rem 0 .7rem; color: var(--ink); font-size: 1.2rem; font-weight: 900; }
.article-body p, .article-body li { font-size: 1.02rem; }
.article-body p { margin-bottom: 1.15rem; }
.article-body ul, .article-body ol { padding-left: 1.35rem; }
.article-body li { margin-bottom: .5rem; padding-left: .35rem; }
.article-body a { color: #126d8a; font-weight: 750; text-decoration-thickness: 1px; text-underline-offset: 3px; overflow-wrap: anywhere; }
.article-body hr { height: 1px; margin: 2.7rem 0; border: 0; background: var(--line); }
.article-body figure { margin: 2.2rem auto; }
.article-body figure img { max-height: 680px; margin-inline: auto; object-fit: contain; border-radius: 1rem; box-shadow: var(--shadow-soft); }
.article-body figcaption { margin-top: .7rem; color: var(--muted); font-size: .87rem; text-align: center; }
.article-body iframe { max-width: 100%; border: 0; }
.article-body > iframe { width: 100%; height: auto; aspect-ratio: 16 / 9; border-radius: 1rem; background: var(--ink-deep); }
.article-body h1:empty, .article-body p:empty { display: none; }
.article-body table { width: 100%; border-collapse: collapse; }
.article-body th, .article-body td { padding: .7rem; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.article-body blockquote { margin: 2rem 0; padding: 1rem 1.4rem; color: var(--ink); background: var(--paper); border-left: 5px solid var(--yellow); }
.article-body .alignwide { width: min(1100px, calc(100vw - 3rem)); max-width: none; margin-left: 50%; transform: translateX(-50%); }
.article-body .alignfull { width: 100vw; max-width: none; margin-left: 50%; transform: translateX(-50%); }
.page-links { margin-top: 2rem; font-weight: 800; }
.video-frame { position: relative; aspect-ratio: 16 / 9; margin-block: 2.2rem; overflow: hidden; border-radius: 1rem; background: var(--ink-deep); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.program-aside { position: sticky; top: 130px; display: grid; gap: 1rem; }
.aside-card { padding: 1.55rem; color: var(--text); background: var(--white); border-top: 5px solid var(--yellow); border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow-soft); }
.aside-card dl { margin: 0 0 1.5rem; }
.aside-card dl > div { padding: .9rem 0; border-bottom: 1px solid var(--line); }
.aside-card dt { color: var(--muted); font-size: .8rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.aside-card dd { margin: .15rem 0 0; color: var(--ink); font-weight: 850; line-height: 1.4; }
.aside-card .button { width: 100%; }
.aside-note { margin: 1rem 0 0; color: var(--muted); font-size: .8rem; line-height: 1.5; }
.back-link { color: var(--ink); font-weight: 850; text-decoration: none; }

.content-section { background: var(--paper); }
.article-body.standalone { padding: clamp(1.6rem, 5vw, 4.6rem); }
.about-page .article-body > p:first-child { color: var(--ink); font: 700 clamp(1.35rem, 2.5vw, 1.75rem)/1.5 Georgia, serif; }
.about-page .article-body figure img { width: min(100%, 680px); }
.legal-page .page-hero-grid { min-height: 360px; }
.legal-page .article-body h1, .legal-page .article-body h2 { font-family: Inter, ui-sans-serif, system-ui, sans-serif; letter-spacing: -.02em; font-size: 1.55rem; line-height: 1.35; }

.contact-page-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 7vw, 6rem); align-items: start; }
.contact-cards { display: grid; gap: .9rem; }
.contact-card { display: grid; grid-template-columns: 1fr auto; gap: .25rem 1rem; min-height: 130px; align-content: center; padding: 1.4rem 1.55rem; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.contact-card:hover { transform: translateX(5px); box-shadow: var(--shadow-soft); }
.contact-card span { color: var(--coral-dark); font-size: .8rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.contact-card strong { overflow-wrap: anywhere; font: 700 clamp(1.2rem, 2.6vw, 1.8rem)/1.25 Georgia, serif; }
.contact-card i { grid-column: 2; grid-row: 1 / 3; align-self: center; color: var(--coral); font-style: normal; font-size: 1.4rem; }
.contact-copy h2 { font-size: clamp(2.7rem, 5vw, 4.5rem); }
.address-box { display: grid; margin-top: 2rem; padding: 1.4rem; color: #dce8f2; background: var(--ink); border-radius: var(--radius); }
.address-box strong { margin-bottom: .5rem; color: var(--yellow); }

.journal-page-section { background: var(--paper); }
.journal-page-grid { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.issn-card { position: sticky; top: 130px; display: grid; padding: 1.7rem; color: #fff; background: var(--ink); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.issn-card > span { color: var(--yellow); font-size: .8rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.issn-card > strong { margin: 2.5rem 0; font: 700 3rem/1.08 Georgia, serif; }
.journal-copy p:first-child { color: var(--ink); font: 700 1.45rem/1.5 Georgia, serif; }
.journal-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--line); }

.resource-card { padding: clamp(1.7rem, 5vw, 3.5rem); background: var(--white); border-left: 6px solid var(--coral); border-radius: 0 var(--radius) var(--radius) 0; box-shadow: var(--shadow-soft); }
.resource-card > p:first-child { color: var(--ink); font: 700 clamp(1.25rem, 2.5vw, 1.65rem)/1.5 Georgia, serif; }
.resource-url { margin: 1.5rem 0 0; color: var(--muted); font-size: .86rem; overflow-wrap: anywhere; }
.resource-stack { display: grid; gap: 1.2rem; }

.post-list { display: grid; gap: 1rem; }
.post-card { padding: clamp(1.5rem, 4vw, 2.6rem); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.post-card h2 { margin-bottom: .8rem; font-size: clamp(2rem, 4vw, 3rem); }
.post-card h2 a { text-decoration: none; }
.post-card h2 a:hover { color: var(--coral-dark); }
.navigation.pagination { margin-top: 2rem; }
.nav-links { display: flex; flex-wrap: wrap; gap: .45rem; }
.page-numbers { display: grid; place-items: center; min-width: 42px; min-height: 42px; padding: .4rem; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: .65rem; text-decoration: none; font-weight: 800; }
.page-numbers.current, .page-numbers:hover { color: #fff; background: var(--ink); }
.empty-state h2 { font-size: clamp(2rem, 4vw, 3rem); }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-footer { padding: 4.5rem 0 1.8rem; color: #becddd; background: var(--ink-deep); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .85fr .9fr; gap: clamp(2rem, 6vw, 5rem); }
.brand-inverse { color: #fff; }
.brand-inverse .brand-mark { color: var(--ink); background: var(--yellow); }
.brand-inverse .brand-mark::after { border-color: var(--ink-deep); }
.footer-brand p { max-width: 360px; margin-top: 1.2rem; }
.site-footer h2 { margin-bottom: 1rem; color: #fff; font: 800 .88rem/1.4 Inter, sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: grid; gap: .55rem; }
.footer-links a { color: #e8f0f6; text-decoration-color: rgba(255,255,255,.25); text-underline-offset: 3px; }
.legal-row { display: flex; justify-content: space-between; gap: 1.5rem; margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; }
.legal-row nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .55rem 1rem; }
.legal-row a { color: #dbe6f0; }

@media (max-width: 930px) {
  .menu-toggle { display: inline-flex; }
  .nav { display: none; position: absolute; left: 1rem; right: 1rem; top: calc(100% + .65rem); padding: 1rem; flex-direction: column; align-items: stretch; gap: .25rem; background: #fff; border: 1px solid var(--line); border-radius: 1rem; box-shadow: var(--shadow); }
  .nav[data-open="true"] { display: flex; }
  .nav-list { width: 100%; display: grid; align-items: stretch; gap: .15rem; }
  .nav-list > li > a { display: block; padding: .72rem .8rem; }
  .nav-list > li > a:not(.button)::after { display: none; }
  .nav-list .button { margin-top: .4rem; }
  .nav-list .sub-menu { position: static; min-width: 0; display: grid; margin: .1rem 0 .45rem .7rem; padding: .25rem 0 .25rem .6rem; border: 0; border-left: 2px solid var(--line); border-radius: 0; box-shadow: none; }
  .home-hero-grid { grid-template-columns: 1fr; min-height: 0; padding-top: 5rem; }
  .hero-copy { max-width: 760px; }
  .portrait-stage { min-height: 500px; width: min(620px,100%); margin-inline: auto; }
  .portrait-note { right: 1rem; }
  .section-heading, .workshop-layout, .team-grid, .contact-strip-inner, .contact-grid { grid-template-columns: 1fr; }
  .journal-card { grid-template-columns: auto 1fr; }
  .journal-card .button { grid-column: 2; justify-self: start; }
  .article-layout { grid-template-columns: 1fr; }
  .program-aside { position: static; grid-row: 1; }
  .journal-page-grid { grid-template-columns: 1fr; }
  .issn-card { position: static; grid-template-columns: 1fr auto; align-items: end; gap: 1rem; }
  .issn-card > strong { margin: 1.5rem 0 0; }
  .issn-card .button { grid-column: 2; grid-row: 1 / 3; }
}

@media (max-width: 680px) {
  .shell, .narrow { width: calc(100% - 1.25rem); }
  .topline-inner span:first-child { display: none; }
  .topline-inner { justify-content: center; }
  .header-inner { min-height: 70px; }
  .brand-mark { width: 39px; }
  .menu-toggle span { display: none; }
  .home-hero-grid { padding: 4.4rem 0 6.7rem; }
  .hero-copy h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .portrait-stage { min-height: 390px; }
  .portrait-stage img { max-height: 430px; }
  .shape-one { width: 310px; }
  .shape-two { width: 180px; border-width: 42px; }
  .portrait-note { right: 0; bottom: 1rem; min-width: 170px; }
  .hero-ribbon { justify-content: flex-start; }
  .hero-ribbon span:nth-child(n+3) { display: none; }
  .section { padding-block: 4.5rem; }
  .section-heading { margin-bottom: 2.2rem; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .program-card { min-height: 330px; }
  .workshop-list a { min-height: 100px; }
  .journal-card { grid-template-columns: 1fr; }
  .journal-card .button { grid-column: 1; }
  .journal-monogram { width: 82px; }
  .page-hero-grid, .program-hero-grid { grid-template-columns: 1fr; }
  .page-hero-grid { min-height: 390px; padding-block: 4rem; }
  .page-marker, .program-number { display: none; }
  .program-hero .shell { padding-block: 1.4rem 4rem; }
  .breadcrumb { margin-bottom: 3rem; }
  .catalog-intro { align-items: stretch; flex-direction: column; }
  .catalog-intro .button { align-self: start; }
  .group-heading { grid-template-columns: 1fr; }
  .group-heading > span { justify-self: start; }
  .article-body { padding: 1.25rem; border-radius: 1.25rem; }
  .article-body.standalone { padding: 1.35rem; }
  .issn-card { grid-template-columns: 1fr; }
  .issn-card .button { grid-column: 1; grid-row: auto; }
  .legal-row { flex-direction: column; }
  .legal-row nav { justify-content: flex-start; }
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

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