/* ============================================================
   Editorial pages — About, Process
   Shares the tokens in base.css. These are read, not explored,
   so the measure is tight and the rhythm is slower than the menu.
   ============================================================ */

body.page {
  background:
    radial-gradient(120% 55% at 50% 0%, #16110a, transparent 55%),
    var(--ink);
  overflow-x: hidden;
}

/* ---------- shared chrome ---------- */

.pagenav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem var(--gut);
  background: rgba(4,4,4,0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(198,161,91,0.14);
}
.pagenav-mark { width: 42px; height: 42px; flex: 0 0 auto; }
.pagenav-links { display: flex; gap: clamp(0.8rem, 3vw, 2.2rem); flex-wrap: wrap; }
.pagenav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-faint);
  transition: color 0.5s;
  white-space: nowrap;
}
.pagenav-links a:hover,
.pagenav-links a[aria-current] { color: var(--gold); }

/* ---------- masthead ---------- */

.masthead {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(4rem, 12vh, 8rem) var(--gut) clamp(2rem, 5vh, 3.5rem);
  text-align: center;
}
.masthead .eyebrow { margin-bottom: 1.4rem; }
.masthead h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 8vw, 5rem);
  line-height: 1;
  margin: 0;
  background: linear-gradient(180deg, #f4e7cf 10%, var(--gold) 60%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.masthead .standfirst {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.8vw, 1.6rem);
  font-weight: 400;
  line-height: 1.68;
  color: var(--bone);
  margin: 0 auto;
  max-width: 40ch;
}

/* ---------- prose ---------- */

.prose {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--gut);
}
.prose > p {
  font-family: var(--serif);
  font-size: clamp(1.12rem, 2.3vw, 1.28rem);
  line-height: 1.8;
  color: var(--bone);
  margin: 0 0 1.6rem;
}
.prose > p.lead {
  font-size: clamp(1.2rem, 2.8vw, 1.5rem);
  color: var(--bone);
  line-height: 1.7;
}
.prose h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 4.4vw, 2.6rem);
  line-height: 1.15;
  color: var(--bone);
  margin: clamp(3rem, 8vh, 5rem) 0 1.2rem;
}
.prose h3 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 2.6rem 0 0.9rem;
}
.prose strong { color: var(--bone); font-weight: 500; }
.prose em { color: var(--gold-lit); font-style: italic; }

/* A line that deserves to be read on its own.
   Selector has to out-rank `.prose > p` (0-1-1) or its `margin: 0 0 1.6rem`
   overrides the `margin: auto` here and the quote never centres. */
.pull,
.prose > p.pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 3.4vw, 1.9rem);
  line-height: 1.5;
  color: var(--gold-lit);
  text-align: center;
  max-width: 26ch;
  margin: clamp(3rem, 8vh, 5rem) auto;
  padding: 0 1rem;
}

/* ---------- the discipline list ---------- */

.disciplines {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.6rem 2.4rem;
  max-width: 900px;
  margin: clamp(2.5rem, 6vh, 4rem) auto;
  padding: 0 var(--gut);
}
.discipline { border-top: 1px solid rgba(198,161,91,0.2); padding-top: 1.1rem; }
.discipline h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.24rem;
  color: var(--gold);
  margin: 0 0 0.5rem;
}
.discipline p {
  font-size: 0.84rem;
  font-weight: 200;
  line-height: 1.75;
  color: var(--bone-faint);
  margin: 0;
}

/* ---------- process phases ---------- */

.phases { max-width: 1000px; margin: 0 auto; padding: 0 var(--gut); }

.phase {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.4rem, 4vw, 3rem);
  padding: clamp(2.2rem, 5vh, 3.4rem) 0;
  border-bottom: 1px solid rgba(198,161,91,0.13);
}
.phase-num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 0.9;
  color: var(--gold-deep);
  opacity: 0.75;
}
.phase h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.1;
  color: var(--bone);
  margin: 0 0 0.7rem;
}
.phase .say {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  line-height: 1.65;
  color: var(--bone-dim);
  margin: 0 0 1.3rem;
}
.phase .detail {
  font-size: 0.88rem;
  font-weight: 200;
  line-height: 1.85;
  color: var(--bone-faint);
  margin: 0 0 1rem;
}
.phase ul { margin: 0 0 1rem; }
.phase li {
  font-size: 0.84rem;
  font-weight: 200;
  line-height: 1.5;
  color: var(--bone-faint);
  padding: 0.34rem 0 0.34rem 1.1rem;
  position: relative;
}
.phase li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.85em;
  width: 4px; height: 1px;
  background: var(--gold-deep);
}

/* the money line inside a phase */
.figure {
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold-lit);
  border-bottom: 1px solid rgba(198,161,91,0.35);
  padding-bottom: 2px;
}

/* ---------- notes / caveats ---------- */

.note-box {
  max-width: 680px;
  margin: clamp(2.5rem, 6vh, 4rem) auto;
  padding: 1.4rem 1.6rem;
  border: 1px solid rgba(198,161,91,0.22);
  background: rgba(11,11,12,0.7);
  border-radius: 2px;
}
.note-box p {
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.78;
  color: var(--bone);
  margin: 0;
}
.note-box p + p { margin-top: 0.8rem; }
.note-box b { color: var(--gold); font-weight: 400; }

/* ---------- case studies ---------- */

.case-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 2.2rem;
}
.case-meta span { color: var(--bone-faint); }

.case-hero {
  max-width: 1100px;
  margin: 0 auto clamp(3rem, 7vh, 5rem);
  padding: 0 var(--gut);
}
.case-hero figure { margin: 0; }
.case-hero-frame {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid rgba(198,161,91,0.22);
  background: var(--ink-06);
}
.case-hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.case-hero-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.55));
  pointer-events: none;
}
.case-cap {
  margin: 0.8rem 0 0;
  text-align: center;
  font-size: 0.66rem;
  font-weight: 200;
  font-style: italic;
  letter-spacing: 0.1em;
  color: var(--bone-faint);
}

/* The reveal — deliberately larger and un-captioned as "concept," since
   this is the room render used identically throughout the site: real
   catalog imagery of the Collection, not a claim about one undisclosed
   past address. */
.case-reveal { max-width: 1100px; margin: clamp(2.5rem, 6vh, 4rem) auto; padding: 0 var(--gut); }
.case-reveal-frame {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid rgba(198,161,91,0.28);
  background: var(--ink-06);
}
.case-reveal-frame img { width: 100%; height: 100%; object-fit: cover; }
.case-reveal-tag {
  margin: 0.9rem 0 0;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--gold-lit);
}

.case-spec {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--gut);
}
.case-spec-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0 1.6rem;
  margin-top: 1.2rem;
}
.case-spec-list li {
  font-size: 0.82rem;
  font-weight: 200;
  letter-spacing: 0.02em;
  line-height: 1.6;
  color: var(--bone-dim);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.055);
}

.case-index {
  max-width: 1000px;
  margin: clamp(4rem, 10vh, 7rem) auto 0;
  padding: clamp(3rem, 7vh, 5rem) var(--gut) 0;
  border-top: 1px solid rgba(198,161,91,0.14);
  text-align: center;
}
.case-index h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  color: var(--bone);
  margin: 0 0 2rem;
}
.case-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  text-align: left;
}
.case-index-card {
  display: block;
  border: 1px solid rgba(198,161,91,0.18);
  padding: 1.1rem 1.2rem;
  transition: border-color 0.5s;
}
.case-index-card:hover { border-color: rgba(198,161,91,0.5); }
.case-index-card:hover .case-index-name { color: var(--gold-lit); }
.case-index-eyebrow {
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.4rem;
}
.case-index-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--bone);
  margin: 0;
  transition: color 0.5s;
}

/* ---------- closing ---------- */

.closing {
  text-align: center;
  padding: clamp(4rem, 12vh, 8rem) var(--gut) 5rem;
  margin-top: clamp(3rem, 8vh, 5rem);
  border-top: 1px solid rgba(198,161,91,0.14);
}
.closing h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  color: var(--bone);
  margin: 0 0 1rem;
}
.closing p {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--bone);
  max-width: 46ch;
  margin: 0 auto 2.4rem;
  line-height: 1.76;
}

@media (max-width: 620px) {
  .phase { grid-template-columns: 1fr; gap: 0.4rem; }
  .phase-num { font-size: 2rem; }
}
