/* ============================================================
   BÁDATELIA PRAVDY — Editorial-Sacred redesign
   Palette: midnight indigo + warm gold over parchment
   Type: Cormorant Garamond (display) · Hanken Grotesk (body)
   ============================================================ */

:root {
  /* Sacred palette — midnight indigo, gold, parchment */
  --bg:           oklch(0.21 0.035 268);   /* deep midnight indigo — the cosmos */
  --bg-elev:      oklch(0.255 0.04 268);   /* raised indigo panel */
  --bg-deep:      oklch(0.15 0.028 268);   /* deepest void */

  --parchment:    oklch(0.965 0.012 85);   /* warm parchment surface */
  --parchment-2:  oklch(0.935 0.018 80);   /* shaded parchment */

  --fg-light:     oklch(0.945 0.012 85);   /* warm off-white on dark */
  --fg-light-mut: oklch(0.80 0.02 85);     /* muted on dark */
  --fg-dark:      oklch(0.22 0.035 268);   /* deep indigo text on parchment */
  --fg-dark-mut:  oklch(0.46 0.025 268);   /* muted indigo on parchment */

  --accent:       oklch(0.78 0.12 83);     /* warm sacred gold */
  --accent-bright:oklch(0.85 0.13 80);     /* luminous gold */
  --accent-deep:  oklch(0.55 0.09 70);     /* aged gold */

  --line-light:   oklch(0.945 0.012 85 / 0.16);
  --line-dark:    oklch(0.22 0.035 268 / 0.14);

  --shadow-soft:  0 30px 70px -30px oklch(0.11 0.028 268 / 0.55);
  --shadow-gold:  0 0 0 1px oklch(0.78 0.12 83 / 0.25), 0 20px 50px -20px oklch(0.55 0.09 70 / 0.35);

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body:    'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --maxw: 1240px;
  --read: 720px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg-light);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--bg); }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

/* ============ TYPOGRAPHY ============ */
.display { font-family: var(--font-display); font-weight: 500; line-height: 1.04; letter-spacing: -0.01em; }
.serif   { font-family: var(--font-display); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--accent);
  opacity: 0.7;
}
.eyebrow.center::after {
  content: "";
  width: 28px; height: 1px;
  background: var(--accent);
  opacity: 0.7;
}
.eyebrow.center { justify-content: center; }

/* ============ LAYOUT PRIMITIVES ============ */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 2rem; }
.wrap-read { max-width: var(--read); margin: 0 auto; padding: 0 1.5rem; }
section { position: relative; }

/* ============ TOP NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease), padding 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: oklch(0.11 0.028 268 / 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  padding: 0.8rem 2rem;
  border-bottom-color: var(--line-light);
}
.nav-brand {
  display: flex; align-items: center; gap: 0.8rem;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--fg-light);
}
.nav-symbol {
  width: 30px; height: 30px;
  filter: drop-shadow(0 0 8px oklch(0.78 0.12 83 / 0.5));
}
.nav-brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.1rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg-light);
  transition: color 0.3s var(--ease);
  position: relative;
  padding: 0.3rem 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent-bright); }
.nav-links a.active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--accent);
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--fg-light); transition: 0.35s var(--ease); display: block; }

@media (max-width: 920px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 360px);
    background: var(--bg-deep);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.4rem;
    transform: translateX(105%);
    transition: transform 0.5s var(--ease);
    border-left: 1px solid var(--line-light);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.05rem; font-family: var(--font-display); }
  /* Scrolled nav on mobile: solid background, NO backdrop-filter. backdrop-filter
     creates a containing block that traps the fixed slide-in panel to the bar's
     height, so the menu opened as a thin strip once the page was scrolled. */
  .nav.scrolled {
    background: var(--bg-deep);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav-toggle { display: flex; z-index: 101; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ============ HERO ============ */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('images/hero-cosmos.png') center/cover no-repeat;
  z-index: -2;
  transform: scale(1.06);
  animation: heroDrift 26s var(--ease) infinite alternate;
}
@keyframes heroDrift {
  to { transform: scale(1.14) translateY(-1.5%); }
}
.hero-grain {
  position: absolute; inset: 0; z-index: -1; opacity: 0.5; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 0.92 0 0 0 0 0.7 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* Dark scrim — lifts the bright cosmic image so the light hero copy reads cleanly.
   Sits above the bg (-2) and grain (-1), below the inner content (1). */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 62% at 50% 50%, oklch(0.11 0.028 268 / 0.55), transparent 72%),
    linear-gradient(to bottom, oklch(0.11 0.028 268 / 0.5), oklch(0.11 0.028 268 / 0.32) 42%, oklch(0.11 0.028 268 / 0.6));
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 7rem 2rem 5rem;
}
.hero-eyebrow {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--fg-light);
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.2s forwards;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3.4rem, 9vw, 7.2rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--fg-light);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 0.4s forwards;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--fg-light);
}
.hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  color: var(--fg-light-mut);
  max-width: 620px;
  margin: 0 auto 2.6rem;
  line-height: 1.5;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 0.6s forwards;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 0.8s forwards;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.9rem;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.25;
  white-space: nowrap;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.btn-gold {
  background: var(--accent);
  color: var(--bg-deep);
  box-shadow: 0 12px 30px -10px oklch(0.78 0.12 83 / 0.5);
}
.btn-gold:hover { background: var(--accent-bright); transform: translateY(-2px); box-shadow: 0 18px 40px -12px oklch(0.78 0.12 83 / 0.65); }
.btn-gold:active { transform: translateY(0); box-shadow: 0 8px 20px -10px oklch(0.78 0.12 83 / 0.5); }
.btn-ghost {
  background: transparent;
  color: var(--fg-light);
  border: 1px solid var(--line-light);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-bright); }
.hero-cta .btn-ghost { color: #fff; }
.btn-ghost:active { background: oklch(0.78 0.12 83 / 0.08); }
.btn .arrow { transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

/* ============ SECTION SHARED ============ */
.section-pad { padding: 7rem 0; }
.section-pad-lg { padding: 9rem 0; }

.section-head { margin-bottom: 3.5rem; }
.section-head.center { text-align: center; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-top: 1.2rem;
}
.section-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.lead {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.55;
  font-weight: 400;
}

/* ============ DASKALOS REQUEST — featured quote ============ */
.request {
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.request::before {
  content: "";
  position: absolute; top: -200px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, oklch(0.78 0.12 83 / 0.06), transparent 70%);
  pointer-events: none;
}
.request-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 5rem;
  align-items: center;
}
.request-figure {
  position: relative;
}
.request-figure img {
  width: 100%;
  border-radius: 3px;
  filter: grayscale(0.15) contrast(1.05);
  box-shadow: var(--shadow-soft);
}
.request-figure .frame {
  position: absolute;
  inset: 0;
  border: 1px solid oklch(0.78 0.12 83 / 0.35);
  pointer-events: none;
  border-radius: 2px;
}
.request-figure figcaption {
  font-family: var(--font-display);
  font-style: italic;
  text-align: center;
  margin-top: 1.4rem;
  color: var(--accent-bright);
  font-size: 1.15rem;
}
.request-figure figcaption span {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg-light-mut);
  margin-top: 0.5rem;
}
.request-body blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.7;
  color: var(--fg-light);
  font-weight: 400;
  position: relative;
  padding-left: 1.8rem;
  border-left: 2px solid var(--accent);
}
.request-body blockquote p { margin-bottom: 1.4rem; }
.request-body blockquote p:last-of-type { margin-bottom: 1.8rem; }
.request-cite {
  display: flex; align-items: center; gap: 1rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  padding-left: 1.8rem;
}
.request-cite::before {
  content: ""; width: 36px; height: 1px; background: var(--accent);
}

@media (max-width: 880px) {
  .request-grid { grid-template-columns: 1fr; gap: 3rem; }
  .request-figure { max-width: 360px; margin: 0 auto; }
}

/* ============ ABOUT — DASKALOS & PANAYIOTA ============ */
.about { background: var(--parchment); color: var(--fg-dark); }
.about .eyebrow { color: var(--accent-deep); }
.about .section-num { color: var(--accent-deep); }
.about h2 { color: var(--fg-dark); }

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}
.about-card {
  background: var(--parchment-2);
  border-radius: 4px;
  padding: 2.6rem 2.2rem;
  position: relative;
  border-top: 3px solid var(--accent);
  box-shadow: 0 20px 50px -30px oklch(0.22 0.035 268 / 0.25);
}
.about-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.9rem;
  line-height: 1.1;
  margin-bottom: 0.6rem;
  color: var(--fg-dark);
}
.about-card .role {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 600;
  margin-bottom: 1.4rem;
  display: block;
}
.about-card p { font-size: 0.97rem; color: var(--fg-dark-mut); }
.about-card .portrait {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.8rem;
  display: block;
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 6px var(--parchment-2), 0 18px 40px -22px oklch(0.22 0.035 268 / 0.45);
  background: var(--parchment);
}

/* Q&A interview */
.interview-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.interview-head h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--fg-dark);
}
.interview-head .ornament {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin: 1.4rem 0;
}
.interview-head .ornament .line { width: 60px; height: 1px; background: var(--accent-deep); }
.interview-head .ornament .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.qa {
  max-width: 820px;
  margin: 0 auto;
}
.qa-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--line-dark);
}
.qa-item:last-child { border-bottom: none; }
.qa-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--accent-deep);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.qa-q {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.4;
  color: var(--fg-dark);
  margin-bottom: 1rem;
}
.qa-a {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--fg-dark-mut);
}
.qa-a em { font-family: var(--font-display); font-style: italic; color: var(--fg-dark); }

@media (max-width: 760px) {
  .about-intro { grid-template-columns: 1fr; gap: 1.6rem; }
}

/* ============ CYPRUS ============ */
.cyprus {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.cyprus-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.cyprus-figure {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.cyprus-figure img {
  width: 100%; height: 100%; object-fit: cover;
  min-height: 420px;
  transition: transform 1.2s var(--ease);
}
.cyprus-figure:hover img { transform: scale(1.05); }
.cyprus-figure .label {
  position: absolute;
  left: 1.4rem; bottom: 1.4rem;
  background: oklch(0.11 0.028 268 / 0.78);
  backdrop-filter: blur(10px);
  color: var(--fg-light);
  padding: 0.7rem 1.2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  border-radius: 2px;
  border: 1px solid oklch(0.78 0.12 83 / 0.3);
}
.cyprus-body p { color: var(--fg-light-mut); margin-bottom: 1.3rem; font-size: 1.02rem; }
.cyprus-body p strong { color: var(--fg-light); font-weight: 600; }

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}
.contact-card {
  background: var(--bg-elev);
  border: 1px solid var(--line-light);
  border-radius: 3px;
  padding: 1.5rem;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.contact-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.contact-card .region {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.contact-card a {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--fg-light);
  word-break: break-all;
  transition: color 0.3s var(--ease);
}
.contact-card:hover a { color: var(--accent-bright); }

@media (max-width: 880px) {
  .cyprus-split { grid-template-columns: 1fr; gap: 3rem; }
  .contact-cards { grid-template-columns: 1fr; }
}

/* ============ DISCLAIMER ============ */
.disclaimer {
  background: var(--bg-deep);
  position: relative;
}
.disclaimer-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 4rem;
}
.disclaimer-aside {
  position: sticky; top: 6rem; align-self: start;
}
.disclaimer-aside .pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid oklch(0.78 0.12 83 / 0.3);
  border-radius: 100px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.4rem;
}
.disclaimer-aside .pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.disclaimer-block { margin-bottom: 3rem; }
.disclaimer-block:last-child { margin-bottom: 0; }
.disclaimer-block h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.55rem;
  color: var(--fg-light);
  margin-bottom: 1rem;
}
.disclaimer-block .daskalos-note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--fg-light-mut);
  padding: 1.4rem 1.6rem;
  border-left: 2px solid var(--accent);
  background: oklch(0.78 0.12 83 / 0.04);
  border-radius: 0 3px 3px 0;
  margin-bottom: 1.2rem;
}
.disclaimer-block .daskalos-sign {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent);
  margin-top: 1rem;
}
.disclaimer-block p { color: var(--fg-light-mut); margin-bottom: 1rem; font-size: 0.97rem; }
.disclaimer-block ul { list-style: none; margin: 1rem 0; }
.disclaimer-block ul li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.7rem;
  color: var(--fg-light-mut);
  font-size: 0.97rem;
}
.disclaimer-block ul li::before {
  content: "—";
  position: absolute; left: 0;
  color: var(--accent);
}

.contributors {
  background: oklch(0.16 0.035 268 / 0.5);
  border: 1px solid var(--line-light);
  border-radius: 3px;
  padding: 1.6rem 1.8rem;
  margin-top: 1.5rem;
}
.contributors .ctitle {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}
.contributors .clist {
  font-family: var(--font-display);
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--fg-light-mut);
  columns: 2;
  column-gap: 2rem;
}
.copyright-line {
  margin-top: 1.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--accent-deep);
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .disclaimer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .disclaimer-aside { position: static; }
  .contributors .clist { columns: 1; }
}

/* ============ RESEARCH — closing contemplation ============ */
.research {
  background: var(--parchment);
  color: var(--fg-dark);
  position: relative;
  overflow: hidden;
}
.research::before {
  content: "“";
  position: absolute;
  top: -2rem; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 22rem;
  line-height: 1;
  color: oklch(0.78 0.12 83 / 0.12);
  pointer-events: none;
}
.research-inner { position: relative; max-width: 820px; margin: 0 auto; text-align: center; padding: 0 1.5rem; }
.research .eyebrow { color: var(--accent-deep); justify-content: center; }
.research .eyebrow::after { content: ""; width: 28px; height: 1px; background: var(--accent-deep); opacity: 0.7; margin-left: 0.85rem; }
.research blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  line-height: 1.6;
  color: var(--fg-dark);
  font-weight: 400;
  margin: 2.5rem 0;
}
.research blockquote p { margin-bottom: 1.6rem; }
.research blockquote p:last-child { margin-bottom: 0; }
.research blockquote em { font-style: italic; color: var(--accent-deep); font-weight: 500; }
.research blockquote strong { font-weight: 600; color: var(--fg-dark); }
.research .attrib {
  margin-top: 2.5rem;
  display: inline-flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
.research .attrib .name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--fg-dark);
}
.research .attrib .src {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 600;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-deep);
  padding: 5rem 0 2.5rem;
  border-top: 1px solid var(--line-light);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
}
.footer-brand {
  display: flex; align-items: center; gap: 0.9rem;
  margin-bottom: 1.2rem;
}
.footer-brand img { width: 38px; filter: drop-shadow(0 0 10px oklch(0.78 0.12 83 / 0.4)); }
.footer-brand .ft {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 600;
  color: var(--fg-light);
}
.footer-tag {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--fg-light-mut);
  font-size: 1.12rem;
  max-width: 320px;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-nav .fcol h4 {
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-nav .fcol ul { list-style: none; }
.footer-nav .fcol li { margin-bottom: 0.6rem; }
.footer-nav .fcol a {
  font-size: 0.98rem;
  color: var(--fg-light-mut);
  transition: color 0.3s var(--ease);
}
.footer-nav .fcol a:hover { color: var(--accent-bright); }
.footer-bottom {
  border-top: 1px solid var(--line-light);
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
  color: var(--fg-light-mut);
}
.footer-bottom .love { color: var(--accent); }

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
}

/* ============ SCROLL REVEAL ============ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.12s; }
.reveal.d2 { transition-delay: 0.24s; }
.reveal.d3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* Skip link (keyboard users jump past the 7-item nav) */
.skip-link {
  position: fixed;
  top: -100px; left: 1rem;
  z-index: 300;
  background: var(--accent);
  color: var(--bg-deep);
  padding: 0.75rem 1.3rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow: var(--shadow-gold);
  transition: top 0.3s var(--ease);
}
.skip-link:focus-visible { top: 1rem; }

/* ============================================================
   SUB-PAGE & READING LAYOUT — added for multi-page redesign
   ============================================================ */

/* Sub-page hero (compact, dark) */
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  padding: 9rem 2rem 7rem;
  background: var(--bg-deep);
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line-light);
}
/* Contextual photo layer — image set per page via inline style */
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  transform: scale(1.05);
  animation: pageHeroDrift 30s var(--ease) infinite alternate;
}
@keyframes pageHeroDrift {
  to { transform: scale(1.1) translateY(-1%); }
}
/* Subtle gold top glow only — no dark scrim, photo shows through */
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, oklch(0.78 0.12 83 / 0.10), transparent 70%);
  pointer-events: none;
}
.page-hero-inner { max-width: var(--read); margin: 0 auto; position: relative; text-align: center; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 1.4rem 0 1.2rem;
  color: var(--fg-light);
}
.page-hero .lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  color: var(--fg-light);
  max-width: 640px; margin: 0 auto;
  line-height: 1.5;
}

/* Breadcrumb */
.crumbs {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-light-mut);
  display: flex; gap: 0.6rem; align-items: center; justify-content: center;
  margin-bottom: 0.4rem;
}
.crumbs a { color: var(--accent); }
.crumbs span.sep { opacity: 0.4; }

/* ============ READING SURFACE (parchment) ============ */
.reading {
  background: var(--parchment);
  color: var(--fg-dark);
  padding: 5rem 0 7rem;
  position: relative;
}
.reading::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, oklch(0.78 0.12 83 / 0.5), transparent);
}
.prose {
  max-width: var(--read);
  margin: 0 auto;
  padding: 0 1.5rem;
  font-size: 1.075rem;
  line-height: 1.85;
  color: var(--fg-dark);
}
.prose p { margin: 0 0 1.4rem; }
.prose p:last-child { margin-bottom: 0; }

/* Chapter headings inside reading flow */
.chapter {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--fg-dark);
  margin: 4rem 0 1.6rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line-dark);
  position: relative;
}
.chapter:first-of-type { margin-top: 1rem; border-top: none; padding-top: 0; }
.chapter-num {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 0.7rem;
}
.prose h3, .prose h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--fg-dark);
  line-height: 1.2;
  margin: 2.6rem 0 1rem;
}
.prose h3 { font-size: clamp(1.5rem, 3vw, 1.95rem); }
.prose h4 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); color: var(--accent-deep); }
.prose h5 {
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-deep);
  margin: 2rem 0 0.6rem;
}

/* Drop-cap on first paragraph of a chapter */
.prose .lead::first-letter {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 4.4em;
  line-height: 0.82;
  float: left;
  padding: 0.08em 0.12em 0 0;
  color: var(--accent-deep);
}

/* Blockquote / pull-quote */
.prose blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  line-height: 1.5;
  color: var(--fg-dark);
  border-left: 2px solid var(--accent);
  padding: 0.4rem 0 0.4rem 1.6rem;
  margin: 2.2rem 0;
  position: relative;
}
.prose blockquote.gilded {
  background: oklch(0.935 0.018 80);
  border-left-width: 3px;
  padding: 1.6rem 1.8rem;
  border-radius: 2px;
  box-shadow: var(--shadow-soft);
}
.prose blockquote.gilded cite {
  display: block;
  font-family: var(--font-body); font-style: normal;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-deep);
  margin-top: 1rem;
}
.prose cite { font-style: normal; }

/* Lists */
.prose ul, .prose ol { margin: 0 0 1.4rem; padding-left: 1.4rem; }
.prose li { margin: 0 0 0.5rem; line-height: 1.75; }
.prose ul li::marker { color: var(--accent-deep); }
.prose ol li::marker { color: var(--accent-deep); font-weight: 600; }

/* Numbered vow / principle list (sacred numerals) */
.vows { list-style: none; padding: 0; counter-reset: vow; margin: 2rem 0; }
.vows li {
  counter-increment: vow;
  position: relative;
  padding: 1.1rem 1.4rem 1.1rem 4rem;
  margin: 0 0 0.8rem;
  background: oklch(0.95 0.014 82);
  border-left: 2px solid var(--accent);
  border-radius: 2px;
  font-size: 1.02rem;
  line-height: 1.7;
}
.vows li::before {
  content: counter(vow, upper-roman);
  position: absolute; left: 1.2rem; top: 1.1rem;
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.5rem;
  color: var(--accent-deep);
}

/* Prayer block */
.prayer {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.12rem, 2.1vw, 1.32rem);
  line-height: 1.7;
  color: var(--fg-dark);
  background: linear-gradient(180deg, oklch(0.95 0.014 82), oklch(0.935 0.018 80));
  border: 1px solid var(--line-dark);
  border-top: 3px solid var(--accent);
  padding: 2.2rem 2.4rem;
  margin: 2.4rem 0;
  border-radius: 2px;
  text-align: center;
}

/* Q&A interview (reading pages — scoped so it doesn't override the homepage .qa) */
.prose .qa { margin: 2rem 0; }
.prose .qa .q, .prose .qa .a {
  padding: 1.1rem 0 1.1rem 2.6rem;
  position: relative;
  border-bottom: 1px solid var(--line-dark);
}
.prose .qa .q:last-child, .prose .qa .a:last-child { border-bottom: none; }
.prose .qa .q {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.18rem; color: var(--fg-dark);
}
.prose .qa .q::before {
  content: "Ot.";
  position: absolute; left: 0; top: 1.15rem;
  font-family: var(--font-body); font-weight: 700; font-size: 0.7rem;
  letter-spacing: 0.14em; color: var(--accent-deep);
}
.prose .qa .a::before {
  content: "Od.";
  position: absolute; left: 0; top: 1.15rem;
  font-family: var(--font-body); font-weight: 700; font-size: 0.7rem;
  letter-spacing: 0.14em; color: var(--accent-deep);
}
.prose .qa .a { color: var(--fg-dark-mut); }

/* Section divider with symbol */
.divider {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin: 4rem 0;
}
.divider .line { flex: 1; max-width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-deep), transparent); }
.divider .ornament {
  width: 26px; height: 26px; opacity: 0.7;
}

/* Figure / caption */
.prose figure { margin: 2.4rem 0; }
.prose figure img {
  width: 100%; border-radius: 2px;
  box-shadow: var(--shadow-soft);
}
.prose figcaption {
  font-family: var(--font-body); font-size: 0.85rem;
  color: var(--fg-dark-mut); text-align: center;
  margin-top: 0.8rem; font-style: italic;
}

/* Inline emphasis & links in prose */
.prose strong { font-weight: 600; color: var(--fg-dark); }
.prose em { font-style: italic; }
.prose a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: oklch(0.55 0.09 70 / 0.4); }
.prose a:hover { color: var(--bg); }

/* Two-column contributor / contact grid on reading pages */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin: 2rem 0; }
@media (max-width: 640px) { .grid-2 { grid-template-columns: 1fr; } }

/* Card grid (contacts / circles) */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; margin: 2rem 0; }
.contact-card-2 {
  display: block;
  background: oklch(0.95 0.014 82);
  border: 1px solid var(--line-dark);
  border-top: 2px solid var(--accent);
  padding: 1.5rem 1.6rem;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.contact-card-2:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.contact-card-2 .who { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--fg-dark); }
.contact-card-2 .role { font-size: 0.85rem; color: var(--fg-dark-mut); margin: 0.2rem 0 0.8rem; }
.contact-card-2 .mail { font-family: var(--font-body); font-size: 0.9rem; color: var(--accent-deep); word-break: break-all; }

/* Aside / note box */
.note {
  background: oklch(0.935 0.018 80);
  border-left: 3px solid var(--accent-deep);
  padding: 1.4rem 1.6rem;
  margin: 2rem 0;
  border-radius: 2px;
  font-size: 0.98rem;
  color: var(--fg-dark-mut);
}
.note strong { color: var(--fg-dark); }

/* Table of contents (in-page jump list) */
.toc {
  background: oklch(0.95 0.014 82);
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  padding: 1.8rem 2rem;
  margin: 2rem 0 3rem;
}
.toc h4 { margin: 0 0 1rem; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-deep); }
.toc ol { list-style: none; padding: 0; counter-reset: toc; columns: 2; column-gap: 2rem; }
.toc li { counter-increment: toc; margin: 0 0 0.5rem; break-inside: avoid; }
.toc li::before { content: counter(toc, upper-roman) " · "; color: var(--accent-deep); font-family: var(--font-display); font-weight: 600; }
.toc a { color: var(--fg-dark); text-decoration: none; }
.toc a:hover { color: var(--accent-deep); }
@media (max-width: 560px) { .toc ol { columns: 1; } }

/* End-of-page footer seal */
.seal {
  text-align: center;
  padding: 3rem 0 1rem;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--fg-dark-mut);
}
.seal img { width: 40px; margin: 0 auto 1rem; opacity: 0.6; display: block; }

/* Small news card */
.news-card {
  display: block;
  background: var(--parchment-2);
  border: 1px solid var(--line-dark);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease);
}
.news-card:hover { transform: translateY(-4px); }
.news-card .cover { aspect-ratio: 16/9; background-size: cover; background-position: center; }
.news-card .body { padding: 1.6rem 1.7rem; }
.news-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: var(--fg-dark); margin-bottom: 0.5rem; }
.news-card .meta { font-size: 0.82rem; color: var(--fg-dark-mut); margin-bottom: 0.8rem; }
.news-card .more { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-deep); font-weight: 600; }

/* Contact form */
.form { max-width: 620px; margin: 2rem auto; }
.form .field { margin-bottom: 1.2rem; }
.form label { display: block; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-deep); font-weight: 600; margin-bottom: 0.5rem; }
.form input, .form textarea {
  width: 100%; padding: 0.9rem 1rem;
  background: oklch(0.98 0.008 85);
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  font-family: var(--font-body); font-size: 1rem;
  color: var(--fg-dark);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.form input:focus, .form textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px oklch(0.78 0.12 83 / 0.15);
}
.form textarea { min-height: 140px; resize: vertical; }
.form .btn-gold {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  padding: 0.95rem 2.2rem;
  border: none; border-radius: 2px;
  font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.2s var(--ease);
}
.form .btn-gold:hover { background: var(--accent-bright); transform: translateY(-2px); }
.form .btn-gold:active { transform: translateY(0); }
.form input:user-invalid, .form textarea:user-invalid {
  border-color: oklch(0.55 0.19 25);
  box-shadow: 0 0 0 3px oklch(0.55 0.19 25 / 0.12);
}

/* Big primary button link (gold) */
.btn-gold-link {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 2px;
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.3s var(--ease), transform 0.2s var(--ease);
}
.btn-gold-link:hover { background: var(--accent-bright); transform: translateY(-2px); }
.btn-gold-link:active { transform: translateY(0); }
.btn-ghost-link {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1px solid var(--line-light);
  color: var(--fg-light);
  padding: 1rem 2rem;
  border-radius: 2px;
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.btn-ghost-link:hover { border-color: var(--accent); color: var(--accent-bright); }

/* ============================================================
   POLISH LAYER — shared utilities & long-page affordances
   ============================================================ */

/* Global keyboard focus ring (accessibility) */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 1px;
}
.prose a:focus-visible { text-decoration-color: var(--accent); }

/* Reading-progress bar (long pages) */
.reading-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent-bright));
  z-index: 200;
  opacity: 0.92;
  transition: width 0.1s linear;
}

/* Centered text utility */
.tc { text-align: center; }

/* Centered figure with a constrained, centered image */
.prose figure.fig-c { display: flex; flex-direction: column; align-items: center; }
.prose figure.fig-c img { width: auto; max-width: 280px; margin-inline: auto; }
.prose figure.fig-c.sm img { max-width: 220px; }
.prose figure.fig-c.xs img { max-width: 240px; }

/* Kicker — centered display-italic accent line (e.g. the Five Keys) */
.kicker {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  text-align: center;
  color: var(--accent-deep);
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 1rem 0 2.4rem;
}

/* Vibration colour note (archangel orders) */
.vibration {
  text-align: center;
  color: var(--accent-deep);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  margin: -0.2rem 0 1.4rem;
}

/* Centered order sub-heading (archangel orders) */
.prose h3.order-title { text-align: center; margin-bottom: 0.6rem; }

/* Colophon / book title block */
.colophon { text-align: center; margin: 1.6rem 0 2rem; }
.colophon .title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.45rem;
  color: var(--accent-deep);
  letter-spacing: 0.02em;
}
.colophon p { margin: 0.35rem 0; }

/* ============ HERO RESPONSIVE ============ */
/* On tablet & mobile, anchor the page-hero photo to the bottom-left corner
   so the subject stays in frame as the hero grows to full viewport height. */
@media (max-width: 920px) {
  .page-hero-bg { background-position: left bottom; }

  /* System page keeps its subject centered */
  .page-hero[data-od-id="system-hero"] .page-hero-bg { background-position: center; }
}
