
:root {
  --ink: #050608;
  --ink-soft: #090b0e;
  --ink-raised: #101217;
  --paper: #f2eee6;
  --text: #e8e4dc;
  --muted: #aaa39a;
  --gold: #c89936;
  --gold-bright: #e0b85a;
  --red: #8d0c0b;
  --line: rgba(200, 153, 54, 0.34);
  --shell: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 28%, rgba(139, 17, 12, 0.08), transparent 26rem),
    radial-gradient(circle at 82% 65%, rgba(200, 153, 54, 0.05), transparent 28rem),
    var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.admin-bar .site-header { top: 32px; }
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.2;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.55) 0 .6px, transparent .9px),
    radial-gradient(circle at 76% 42%, rgba(224,184,90,.6) 0 .7px, transparent 1px),
    radial-gradient(circle at 38% 72%, rgba(255,255,255,.4) 0 .5px, transparent .9px);
  background-size: 127px 139px, 191px 173px, 157px 181px;
}
::selection { color: var(--ink); background: var(--gold-bright); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
.section-shell { width: var(--shell); margin-inline: auto; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--gold-bright);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 270px 1fr 230px;
  align-items: center;
  min-height: 78px;
  padding: 9px max(24px, calc((100vw - 1280px) / 2));
  border-bottom: 1px solid rgba(200,153,54,.18);
  background: linear-gradient(180deg, rgba(4,5,7,.97), rgba(4,5,7,.8));
  backdrop-filter: blur(16px);
}
.header-brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
}
.header-brand > img { width: 54px; height: 54px; object-fit: cover; border-radius: 50%; filter: drop-shadow(0 0 18px rgba(200,153,54,.12)); }
.header-brand > span, .footer-brand > span { display: grid; line-height: 1; }
.header-brand strong, .footer-brand strong {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.header-brand small, .footer-brand small {
  margin-top: 6px;
  color: var(--gold-bright);
  font-size: .57rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.desktop-nav { display: flex; justify-content: center; gap: clamp(20px, 3vw, 44px); }
.desktop-nav a, .site-footer nav a {
  position: relative;
  color: #c7c0b5;
  font-size: .7rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.desktop-nav a::after, .site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after,
.site-footer nav a:hover::after, .site-footer nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-cta {
  justify-self: end;
  padding: 12px 17px;
  border: 1px solid var(--line);
  color: var(--gold-bright);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}
.header-cta:hover, .header-cta:focus-visible { color: var(--ink); border-color: var(--gold-bright); background: var(--gold-bright); }
.mobile-menu { display: none; }

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  padding-top: 78px;
  overflow: hidden;
  isolation: isolate;
  background-image: url("../images/reunion-de-guardianes.jpg");
  background-position: center 44%;
  background-size: cover;
}
.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(3,4,6,.98) 0%, rgba(3,4,6,.82) 40%, rgba(3,4,6,.2) 72%, rgba(3,4,6,.48) 100%),
    linear-gradient(0deg, rgba(3,4,6,.99) 0%, rgba(3,4,6,.16) 45%, rgba(3,4,6,.38) 100%);
}
.hero::after {
  position: absolute;
  inset: 16px;
  z-index: 2;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(200,153,54,.24);
  clip-path: polygon(0 0,11% 0,11% 1px,89% 1px,89% 0,100% 0,100% 100%,89% 100%,89% calc(100% - 1px),11% calc(100% - 1px),11% 100%,0 100%);
}
.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0,1fr) 260px;
  align-items: center;
  gap: 70px;
  margin-block: auto;
  padding-block: 90px 130px;
}
.hero-copy { max-width: 790px; }
.eyebrow {
  margin: 0 0 20px;
  color: var(--gold-bright);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .23em;
  line-height: 1.5;
  text-transform: uppercase;
}
.hero h1, .order h2, .archives h2, .minstrel h2, .release h2, .press h2, .initiation h2 {
  margin: 0;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.06;
}
.hero h1 { max-width: 770px; font-size: clamp(3rem, 6.3vw, 6.35rem); letter-spacing: -.025em; text-wrap: balance; }
.hero h1 span { display: block; color: var(--gold-bright); font-style: italic; }
.hero-intro { max-width: 670px; margin: 28px 0 0; color: #c8c1b8; font-size: clamp(1rem,1.4vw,1.18rem); line-height: 1.75; }
.hero-actions, .release-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { color: #0a0805; border-color: var(--gold-bright); background: linear-gradient(135deg,#a87622,var(--gold-bright) 54%,#9e6d1e); box-shadow: 0 10px 34px rgba(200,153,54,.14); }
.button-primary:hover, .button-primary:focus-visible { background: linear-gradient(135deg,#c89936,#f0cb75 54%,#b98427); }
.button-ghost { color: var(--gold-bright); border-color: var(--line); background: rgba(8,9,12,.66); }
.button-ghost:hover, .button-ghost:focus-visible { border-color: var(--gold-bright); background: rgba(200,153,54,.08); }
.hero-seal {
  align-self: center;
  justify-self: end;
  display: grid;
  justify-items: center;
  width: 245px;
  padding: 22px 20px 25px;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  background: linear-gradient(90deg,transparent,rgba(5,6,8,.78));
  text-align: center;
}
.hero-seal img { width: 158px; aspect-ratio: 1; margin-bottom: 18px; border-radius: 50%; object-fit: cover; filter: drop-shadow(0 10px 24px rgba(0,0,0,.68)); }
.hero-seal span { color: #887f73; font-size: .61rem; letter-spacing: .17em; text-transform: uppercase; }
.hero-seal strong { margin-top: 6px; color: var(--gold-bright); font-family: Georgia,"Times New Roman",serif; font-size: 1.75rem; font-weight: 400; text-transform: uppercase; }
.hero-seal p { margin: 8px 0 0; color: #c8c1b8; font-size: .67rem; letter-spacing: .09em; text-transform: uppercase; }
.hero-footer {
  position: absolute;
  right: max(24px,calc((100vw - 1180px)/2));
  bottom: 34px;
  left: max(24px,calc((100vw - 1180px)/2));
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.hero-footer p { margin: 0; color: #c5beb3; font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; }
.hero-footer span { height: 1px; background: linear-gradient(90deg,transparent,var(--gold),transparent); }
.hero-orbit { position: absolute; z-index: 1; border: 1px solid rgba(200,153,54,.1); border-radius: 50%; pointer-events: none; animation: orbit 30s linear infinite; }
.orbit-one { top: 12%; right: -180px; width: 580px; height: 580px; }
.orbit-two { top: 18%; right: -100px; width: 420px; height: 420px; animation-direction: reverse; }
.hero-orbit::before, .hero-orbit::after { position: absolute; top: 50%; left: 50%; content: ""; background: rgba(200,153,54,.2); transform: translate(-50%,-50%); }
.hero-orbit::before { width: 100%; height: 1px; }
.hero-orbit::after { width: 1px; height: 100%; }
@keyframes orbit { to { transform: rotate(360deg); } }

.manifesto {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr 120px;
  align-items: center;
  min-height: 340px;
  border-bottom: 1px solid var(--line);
}
.section-number { margin: 0; color: #726b62; font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; }
.manifesto blockquote { margin: 0; color: var(--paper); font-family: Georgia,"Times New Roman",serif; font-size: clamp(1.8rem,4vw,3.65rem); line-height: 1.25; text-align: center; text-wrap: balance; }
.manifesto > img { justify-self: end; width: 84px; aspect-ratio: 1; border-radius: 50%; object-fit: cover; opacity: .82; }

.order { position: relative; padding-block: 135px 0; overflow: hidden; scroll-margin-top: 76px; }
.order::before { position: absolute; inset: 0; z-index: -1; content: ""; background: radial-gradient(circle at 12% 50%,rgba(141,12,11,.12),transparent 34%); }
.order-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(420px,1.1fr); align-items: center; gap: clamp(60px,7vw,110px); }
.order-copy { max-width: 590px; }
.order h2, .archives h2, .minstrel h2, .initiation h2 { font-size: clamp(2.7rem,5vw,5.2rem); text-wrap: balance; }
.order-copy > p:not(.eyebrow), .minstrel-banner-copy > p:not(.eyebrow), .initiation-copy > p:not(.eyebrow) { color: #b7b0a7; font-size: 1rem; line-height: 1.75; }
.order-copy p.lead, .release-copy p.lead, .initiation-copy p.lead { margin: 28px 0 20px; color: #e0d8cc; font-size: 1.23rem; line-height: 1.55; }
.adversary-note { margin-top: 42px; padding: 27px 28px; border-left: 2px solid var(--red); background: linear-gradient(90deg,rgba(141,12,11,.12),transparent); }
.adversary-note > span { color: #b65a51; font-size: .63rem; letter-spacing: .19em; text-transform: uppercase; }
.adversary-note h3 { margin: 8px 0 7px; color: #dfd6ca; font-family: Georgia,"Times New Roman",serif; font-size: 1.55rem; font-weight: 400; }
.adversary-note p { margin: 0; color: #9f978d; line-height: 1.65; }
.order-visual { position: relative; margin: 0; border: 1px solid var(--line); overflow: hidden; background: #08090b; box-shadow: 0 38px 90px rgba(0,0,0,.4); }
.order-visual::after { position: absolute; inset: 0; content: ""; pointer-events: none; background: linear-gradient(0deg,rgba(3,4,5,.96),transparent 50%); }
.order-visual img { width: 100%; min-height: 580px; object-fit: cover; object-position: center; }
.order-visual figcaption { position: absolute; right: 34px; bottom: 30px; left: 34px; z-index: 2; }
.order-visual figcaption span { color: var(--gold-bright); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; }
.order-visual figcaption p { margin: 8px 0 0; color: #c6bfb5; font-family: Georgia,"Times New Roman",serif; font-size: 1.08rem; }
.order-timeline { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 100px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.order-timeline article { padding: 32px 30px 34px; }
.order-timeline article + article { border-left: 1px solid var(--line); }
.order-timeline span { color: #6f675d; font-size: .64rem; letter-spacing: .15em; }
.order-timeline p { margin: 11px 0 8px; color: var(--gold-bright); font-size: .64rem; letter-spacing: .17em; text-transform: uppercase; }
.order-timeline h3 { margin: 0; color: #d8d1c8; font-family: Georgia,"Times New Roman",serif; font-size: 1.25rem; font-weight: 400; }

.archives { padding-block: 140px; scroll-margin-top: 76px; }
.section-heading { display: grid; grid-template-columns: minmax(0,1fr) minmax(280px,.55fr); align-items: end; gap: 60px; margin-bottom: 58px; }
.section-heading > p { margin: 0 0 6px; color: #aaa39a; line-height: 1.7; }
.archive-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.archive-card { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 300px; border: 1px solid rgba(200,153,54,.24); background: var(--ink-soft); overflow: hidden; transition: border-color 200ms ease, transform 200ms ease; }
.archive-card:hover { border-color: rgba(224,184,90,.62); transform: translateY(-3px); }
.archive-image { position: relative; min-height: 300px; overflow: hidden; }
.archive-image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg,transparent 45%,rgba(9,11,14,.92)); }
.archive-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.65) contrast(1.06); }
.archive-copy { display: flex; flex-direction: column; padding: 32px 30px 27px; }
.archive-copy > span { color: var(--gold-bright); font-size: .62rem; letter-spacing: .18em; }
.archive-copy h3 { margin: 16px 0 12px; color: #e7e0d5; font-family: Georgia,"Times New Roman",serif; font-size: 1.7rem; font-weight: 400; }
.archive-copy p { margin: 0; color: #9d968d; font-size: .9rem; line-height: 1.65; }
.archive-copy small { margin-top: auto; padding-top: 24px; color: #686159; font-size: .58rem; letter-spacing: .13em; text-transform: uppercase; }

.minstrel { scroll-margin-top: 76px; border-top: 1px solid rgba(200,153,54,.2); background: linear-gradient(180deg,#060709,#090a0d 55%,#050608); }
.minstrel-banner { position: relative; display: flex; min-height: 760px; overflow: hidden; isolation: isolate; background: url("../images/hero-order.png") center 42% / cover; }
.minstrel-banner::before { position: absolute; inset: 0; z-index: -1; content: ""; background: linear-gradient(90deg,rgba(3,4,6,.97),rgba(3,4,6,.78) 42%,rgba(3,4,6,.08) 72%),linear-gradient(0deg,rgba(3,4,6,.98),transparent 45%); }
.minstrel-banner-copy { align-self: center; position: relative; z-index: 2; padding-block: 90px; }
.minstrel-banner-copy > img { width: min(510px,52vw); margin: 4px 0 26px; filter: drop-shadow(0 12px 32px rgba(0,0,0,.8)); }
.minstrel-banner-copy h2 { max-width: 670px; font-size: clamp(2.8rem,5vw,5rem); }
.minstrel-banner-copy > p:not(.eyebrow) { max-width: 630px; }
.release { display: grid; grid-template-columns: minmax(300px,.84fr) minmax(0,1.16fr); gap: clamp(56px,8vw,118px); align-items: center; padding-block: 130px; }
.release-art-wrap { position: relative; }
.release-art-frame { position: relative; padding: 10px; border: 1px solid var(--line); background: #08090c; box-shadow: 0 34px 90px rgba(0,0,0,.45); }
.release-art-frame::after { position: absolute; right: -24px; bottom: -24px; z-index: -1; width: 68%; height: 68%; content: ""; border-right: 1px solid rgba(200,153,54,.32); border-bottom: 1px solid rgba(200,153,54,.32); }
.release-art-frame img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.corner { position: absolute; width: 24px; height: 24px; pointer-events: none; }
.corner-tl { top:4px; left:4px; border-top:1px solid var(--gold); border-left:1px solid var(--gold); }
.corner-tr { top:4px; right:4px; border-top:1px solid var(--gold); border-right:1px solid var(--gold); }
.corner-bl { bottom:4px; left:4px; border-bottom:1px solid var(--gold); border-left:1px solid var(--gold); }
.corner-br { right:4px; bottom:4px; border-right:1px solid var(--gold); border-bottom:1px solid var(--gold); }
.catalogue { margin: 22px 0 0; color: #746d63; font-size: .63rem; letter-spacing: .17em; }
.release-copy h2 { max-width: 720px; font-size: clamp(2.7rem,5vw,5rem); text-wrap: balance; }
.release-copy > p:not(.eyebrow):not(.release-credits) { max-width: 710px; color: #bcb5ac; font-size: 1rem; line-height: 1.72; }
.release-facts { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 38px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.release-facts div { min-width: 0; padding: 20px 18px 20px 0; }
.release-facts div + div { padding-left: 18px; border-left: 1px solid var(--line); }
.release-facts span, .release-facts strong { display: block; }
.release-facts span { margin-bottom: 7px; color: var(--gold-bright); font-size: .63rem; letter-spacing: .13em; text-transform: uppercase; }
.release-facts strong { color: #ddd7ce; font-size: .8rem; font-weight: 400; }
.release-credits { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 25px 0 0; color: #756f67; font-size: .68rem; letter-spacing: .05em; }
.band { padding-bottom: 115px; }
.band-portrait { position: relative; margin: 0; border: 1px solid var(--line); overflow: hidden; background: #08090b; }
.band-portrait::after { position: absolute; inset: 0; content: ""; pointer-events: none; background: linear-gradient(0deg,rgba(3,4,5,.96),transparent 46%); }
.band-portrait img { width: 100%; min-height: 480px; object-fit: cover; }
.band-portrait figcaption { position: absolute; right: 48px; bottom: 40px; left: 48px; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.band-portrait figcaption span { color: var(--gold-bright); font-family: Georgia,"Times New Roman",serif; font-size: 1.7rem; letter-spacing: .06em; }
.band-portrait figcaption p { margin: 0; color: #c6bfb5; font-size: .8rem; letter-spacing: .06em; }
.member-grid { display: grid; grid-template-columns: repeat(6,1fr); margin-top: 34px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.member-grid article { min-width: 0; padding: 25px 18px; }
.member-grid article + article { border-left: 1px solid var(--line); }
.member-grid article > span { color: #655e55; font-size: .58rem; letter-spacing: .14em; }
.member-grid h3 { margin: 13px 0 4px; color: #e3ddd4; font-family: Georgia,"Times New Roman",serif; font-size: 1.05rem; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; }
.member-grid p { margin: 0; color: #8b847b; font-size: .69rem; }
.press { position: relative; display: grid; grid-template-columns: 120px 1fr minmax(280px,.8fr); align-items: center; gap: 45px; margin-bottom: 130px; padding: 56px; border: 1px solid var(--line); background: linear-gradient(120deg,rgba(200,153,54,.08),transparent 36%),var(--ink-soft); scroll-margin-top: 110px; }
.press::before { position: absolute; top: -1px; left: 56px; width: 110px; height: 2px; content: ""; background: var(--gold-bright); }
.press-seal img { width: 110px; mix-blend-mode: screen; }
.press h2 { font-size: clamp(2.1rem,3.5vw,3.65rem); }
.press-copy > p:last-child { max-width: 560px; margin: 18px 0 0; color: #9f988e; line-height: 1.65; }
.press-actions { display: grid; gap: 10px; }
.press-email { margin-top: 9px; color: var(--gold-bright); font-size: .7rem; letter-spacing: .08em; text-align: center; }

.initiation { position: relative; min-height: 780px; display: flex; overflow: hidden; isolation: isolate; border-top: 1px solid rgba(200,153,54,.2); background: url("../images/gnt-oath.png") center / cover; scroll-margin-top: 76px; }
.initiation-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg,rgba(3,4,6,.98),rgba(3,4,6,.82) 50%,rgba(3,4,6,.45)),linear-gradient(0deg,rgba(3,4,6,.94),transparent 50%); }
.initiation-inner { display: grid; grid-template-columns: minmax(0,1fr) minmax(370px,.8fr); align-items: center; gap: 100px; padding-block: 110px; }
.initiation-copy { max-width: 690px; }
.initiation-copy .button { margin-top: 18px; }
.initiation-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(5,6,8,.66); backdrop-filter: blur(8px); }
.initiation-steps li { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 27px 24px; }
.initiation-steps li + li { border-top: 1px solid var(--line); }
.initiation-steps li > span { color: var(--gold-bright); font-size: .62rem; letter-spacing: .16em; }
.initiation-steps h3 { margin: 0 0 7px; color: #e4ddd3; font-family: Georgia,"Times New Roman",serif; font-size: 1.35rem; font-weight: 400; }
.initiation-steps p { margin: 0; color: #a29a90; font-size: .88rem; line-height: 1.55; }

.site-footer { border-top: 1px solid rgba(200,153,54,.2); background: #030405; }
.footer-top { display: grid; grid-template-columns: 280px 1fr auto; align-items: center; gap: 50px; min-height: 190px; }
.footer-brand > img { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; }
.footer-top > p { margin: 0; color: #8f887e; font-family: Georgia,"Times New Roman",serif; font-size: 1.12rem; }
.footer-socials { display: grid; justify-items: end; gap: 13px; }
.footer-socials > span { color: #686159; font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; }
.footer-top nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 22px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; min-height: 70px; border-top: 1px solid rgba(200,153,54,.13); }
.footer-bottom p { margin: 0; color: #655f57; font-size: .63rem; letter-spacing: .08em; }

.wp-fallback {
  min-height: 72svh;
  padding-block: 170px 110px;
}
.wp-fallback article { max-width: 850px; }
.wp-fallback h1 {
  margin: 0 0 30px;
  color: var(--paper);
  font-family: Georgia,"Times New Roman",serif;
  font-size: clamp(2.7rem,5vw,5rem);
  font-weight: 400;
  line-height: 1.08;
}
.wp-fallback p,
.wp-fallback li { color: #b7b0a7; line-height: 1.75; }
.wp-fallback a:not(.button) { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 255px 1fr 205px; }
  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: .62rem; }
  .header-cta { font-size: .59rem; }
  .archive-card { grid-template-columns: .78fr 1.22fr; }
  .release { grid-template-columns: minmax(280px,.75fr) minmax(0,1.25fr); gap: 54px; }
  .member-grid { grid-template-columns: repeat(3,1fr); }
  .member-grid article:nth-child(4) { border-left: 0; }
  .member-grid article:nth-child(n+4) { border-top: 1px solid var(--line); }
  .press { grid-template-columns: 90px 1fr; }
  .press-actions { grid-column: 2; grid-template-columns: 1fr 1fr; }
  .press-email { grid-column: 1 / -1; }
  .footer-top { grid-template-columns: 260px 1fr; }
  .footer-socials { grid-column: 2; justify-items: start; }
  .footer-top nav { justify-content: flex-start; }
}

@media (max-width: 860px) {
  :root { --shell: min(100% - 36px,680px); }
  .site-header { grid-template-columns: 1fr auto; min-height: 68px; padding: 8px 18px; }
  body.admin-bar .site-header { top: 46px; }
  .header-brand > img { width: 48px; height: 48px; }
  .header-brand strong { font-size: .98rem; }
  .header-brand small { font-size: .5rem; }
  .desktop-nav, .header-cta { display: none; }
  .mobile-menu { position: relative; display: block; }
  .mobile-menu summary { display: grid; align-content: center; gap: 7px; width: 44px; height: 44px; cursor: pointer; list-style: none; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { display: block; width: 25px; height: 1px; margin-left: auto; background: var(--gold-bright); transition: transform 180ms ease; }
  .mobile-menu[open] summary span:first-child { transform: translateY(4px) rotate(45deg); }
  .mobile-menu[open] summary span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu nav { position: absolute; top: 56px; right: -2px; display: grid; width: min(300px,calc(100vw - 36px)); padding: 15px; border: 1px solid var(--line); background: rgba(4,5,7,.98); box-shadow: 0 20px 60px rgba(0,0,0,.5); }
  .mobile-menu nav a { padding: 15px 12px; border-bottom: 1px solid rgba(200,153,54,.13); color: #d2cbc0; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
  .mobile-menu nav a:last-child { border-bottom: 0; }
  .hero { min-height: 930px; padding-top: 68px; background-position: 57% center; }
  .hero::before { background: linear-gradient(0deg,rgba(3,4,6,1) 0%,rgba(3,4,6,.94) 40%,rgba(3,4,6,.12) 78%,rgba(3,4,6,.48) 100%),linear-gradient(90deg,rgba(3,4,6,.58),transparent 60%); }
  .hero::after { inset: 9px; }
  .hero-content { grid-template-columns: 1fr; align-items: end; gap: 24px; padding: 390px 0 114px; }
  .hero-seal { position: absolute; top: 48px; right: 0; width: 142px; padding: 12px; }
  .hero-seal img { width: 82px; margin-bottom: 10px; }
  .hero-seal strong { font-size: 1.1rem; }
  .hero-seal p { display: none; }
  .hero-footer { grid-template-columns: auto 1fr auto; gap: 14px; bottom: 25px; }
  .hero-footer span:nth-of-type(2), .hero-footer p:last-child { display: none; }
  .manifesto { grid-template-columns: 1fr; gap: 24px; padding-block: 72px; text-align: center; }
  .manifesto > img { justify-self: center; width: 72px; }
  .order { padding-top: 95px; }
  .order-grid { grid-template-columns: 1fr; gap: 56px; }
  .order-visual img { min-height: 460px; }
  .order-timeline { grid-template-columns: 1fr; margin-top: 70px; }
  .order-timeline article + article { border-top: 1px solid var(--line); border-left: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .archive-grid { grid-template-columns: 1fr; }
  .archive-card { grid-template-columns: .85fr 1.15fr; }
  .minstrel-banner { min-height: 820px; background-position: 61% top; }
  .minstrel-banner::before { background: linear-gradient(0deg,rgba(3,4,6,.99),rgba(3,4,6,.91) 40%,rgba(3,4,6,.08) 78%),linear-gradient(90deg,rgba(3,4,6,.5),transparent); }
  .minstrel-banner-copy { align-self: end; padding-block: 370px 80px; }
  .minstrel-banner-copy > img { width: min(470px,80vw); }
  .release { grid-template-columns: 1fr; gap: 62px; padding-block: 95px; }
  .release-art-wrap { max-width: 560px; }
  .press { grid-template-columns: 78px 1fr; padding: 38px 32px; }
  .initiation-inner { grid-template-columns: 1fr; gap: 60px; }
  .footer-top { grid-template-columns: 1fr; gap: 25px; padding-block: 48px; }
  .footer-socials { grid-column: auto; }
}

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

@media (max-width: 560px) {
  :root { --shell: calc(100vw - 28px); }
  .header-brand > span { max-width: 205px; }
  .hero { min-height: 870px; }
  .hero-content { padding-top: 330px; }
  .hero h1 { font-size: clamp(2.75rem,14vw,4.2rem); }
  .hero-actions, .release-actions { display: grid; }
  .button { width: 100%; }
  .manifesto br { display: none; }
  .order, .archives { padding-block: 80px; }
  .order { padding-bottom: 0; }
  .order-visual img { min-height: 360px; }
  .archive-card { grid-template-columns: 1fr; }
  .archive-image { min-height: 210px; }
  .archive-image::after { background: linear-gradient(0deg,rgba(9,11,14,.96),transparent 60%); }
  .minstrel-banner { min-height: 740px; }
  .minstrel-banner-copy { padding-top: 320px; }
  .release-facts { grid-template-columns: 1fr; }
  .release-facts div { padding: 17px 0; }
  .release-facts div + div { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .band-portrait img { min-height: 400px; object-position: center; }
  .band-portrait figcaption { right: 22px; bottom: 22px; left: 22px; display: block; }
  .band-portrait figcaption p { margin-top: 8px; }
  .member-grid { grid-template-columns: repeat(2,1fr); }
  .member-grid article:nth-child(odd) { border-left: 0; }
  .member-grid article:nth-child(even) { border-left: 1px solid var(--line); }
  .member-grid article:nth-child(n+3) { border-top: 1px solid var(--line); }
  .press { grid-template-columns: 1fr; gap: 28px; margin-bottom: 80px; padding: 34px 24px; }
  .press-seal img { width: 80px; }
  .press-actions { grid-column: auto; grid-template-columns: 1fr; }
  .press-email { grid-column: auto; overflow-wrap: anywhere; }
  .initiation { min-height: auto; }
  .initiation-inner { padding-block: 85px; }
  .initiation-steps li { grid-template-columns: 38px 1fr; padding: 23px 18px; }
  .footer-bottom { display: grid; justify-content: start; gap: 7px; padding-block: 22px; }
}

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