/* Yugen Press — parked page. Palette and background grammar reused from yugenadvisors.com */
:root {
  color-scheme: dark;
  --ink: #0a1426;
  --ink-soft: #102544;
  --paper: #f5efe3;
  --paper-muted: #c8d2df;
  --gold: #c6a35e;
  --gold-bright: #d5b476;
  --line: rgba(255, 255, 255, 0.12);
  --serif: Iowan Old Style, Baskerville, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--ink);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 20% 0%, rgba(198, 163, 94, 0.18), transparent 34rem),
    radial-gradient(circle at 90% 15%, rgba(71, 113, 158, 0.18), transparent 30rem),
    var(--ink);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

main {
  background: inherit;
}

/* --- Hero: split editorial column + artwork panel --- */

.page {
  display: grid;
  grid-template-columns: minmax(31rem, 0.84fr) minmax(34rem, 1.16fr);
  min-height: 100vh;
  min-height: 100svh;
}

.editorial {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  padding: clamp(2rem, 4.3vw, 5rem) clamp(2.25rem, 5.7vw, 6.75rem) clamp(2rem, 3.5vw, 4rem);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.018), transparent 45%),
    var(--ink);
  box-shadow: 2rem 0 5rem rgba(0, 0, 0, 0.22);
}

.editorial::before {
  position: absolute;
  top: 0;
  left: clamp(2.25rem, 5.7vw, 6.75rem);
  width: clamp(4.5rem, 7vw, 8rem);
  height: 3px;
  content: "";
  background: var(--gold);
}

.site-header {
  align-self: start;
}

.brand-lockup {
  width: clamp(5.25rem, 6.7vw, 7.5rem);
  height: auto;
}

.copy {
  align-self: center;
  max-width: 37rem;
  padding: clamp(3.5rem, 8vh, 7.5rem) 0 clamp(3rem, 7vh, 6rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0 0 1.75rem;
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.25rem;
  height: 1px;
  content: "";
  background: currentColor;
}

h1 {
  max-width: 11ch;
  margin: 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.25vw, 6.25rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.introduction {
  max-width: 31rem;
  margin: clamp(2rem, 4.5vh, 3.25rem) 0 0;
  color: var(--paper-muted);
  font-family: var(--serif);
  font-size: clamp(1.03rem, 1.25vw, 1.32rem);
  line-height: 1.68;
}

.status {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  margin: clamp(2rem, 4vh, 3rem) 0 0;
  color: #ded8cb;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.status span {
  width: 0.42rem;
  height: 0.42rem;
  border: 1px solid rgba(213, 180, 118, 0.8);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(198, 163, 94, 0.08);
}

.artwork {
  position: relative;
  min-width: 0;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #303943;
}

.artwork > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(0.72) contrast(1.08) brightness(0.9);
  transform: scale(1.002);
}

.artwork-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 20, 38, 0.38), transparent 26%),
    linear-gradient(180deg, rgba(6, 12, 23, 0.08) 45%, rgba(6, 12, 23, 0.54) 100%);
  pointer-events: none;
}

.artwork::after {
  position: absolute;
  inset: 1.5rem;
  border: 1px solid rgba(245, 239, 227, 0.2);
  content: "";
  pointer-events: none;
}

figcaption {
  position: absolute;
  right: clamp(2.5rem, 4.5vw, 5rem);
  bottom: clamp(2.7rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: auto auto;
  gap: 1rem;
  align-items: start;
  color: rgba(245, 239, 227, 0.9);
}

.caption-number {
  padding-top: 0.32rem;
  color: var(--gold-bright);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.caption-copy {
  padding-left: 1rem;
  border-left: 1px solid rgba(213, 180, 118, 0.68);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.25vw, 1.32rem);
  font-style: italic;
  line-height: 1.32;
}

/* --- Canto 0 --- */

.canto-zero {
  padding: clamp(4.5rem, 9vh, 7.5rem) clamp(2rem, 7vw, 8rem);
  border-top: 1px solid var(--line);
  text-align: center;
}

.section-kicker {
  margin: 0 0 1.6rem;
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.canto-zero h2 {
  max-width: 26ch;
  margin: 0 auto;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.being-line {
  margin: 1.6rem auto 0;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-style: italic;
  letter-spacing: 0.01em;
}

.canto-zero-note {
  max-width: 34rem;
  margin: 2rem auto 0;
  color: var(--paper-muted);
  font-family: var(--serif);
  font-size: clamp(1.02rem, 1.25vw, 1.3rem);
  line-height: 1.68;
}

/* --- Also in The Lighthouse Cantos --- */

.also-cantos {
  padding: clamp(4.5rem, 9vh, 7.5rem) clamp(2rem, 7vw, 8rem) clamp(5rem, 10vh, 8.5rem);
  border-top: 1px solid var(--line);
  text-align: center;
}

.also-cantos h2 {
  margin: 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.cantos-list {
  display: grid;
  justify-content: center;
  gap: clamp(1.9rem, 4vh, 2.9rem);
  max-width: 42rem;
  margin: clamp(2.8rem, 6vh, 4.2rem) auto 0;
  padding: 0;
  list-style: none;
}

.cantos-list li {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
}

.canto-title {
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1.2;
}

.canto-number {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  letter-spacing: 0.04em;
}

.cantos-note {
  margin: clamp(2.8rem, 6vh, 4rem) 0 0;
  color: rgba(245, 239, 227, 0.5);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

/* --- Footer --- */

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2.2rem clamp(1.5rem, 7vw, 4rem) 2.6rem;
  border-top: 1px solid var(--line);
  color: rgba(245, 239, 227, 0.44);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-rule {
  width: 2.5rem;
  height: 1px;
  background: rgba(245, 239, 227, 0.2);
}

/* --- Responsive --- */

@media (max-width: 900px) {
  .page {
    grid-template-columns: 1fr;
  }

  .editorial {
    min-height: min(47rem, 72svh);
    padding: 2.5rem clamp(1.5rem, 7vw, 4rem) 2rem;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.22);
  }

  .editorial::before {
    left: clamp(1.5rem, 7vw, 4rem);
  }

  .brand-lockup {
    width: 5.5rem;
  }

  .copy {
    max-width: 39rem;
    padding: 3rem 0;
  }

  h1 {
    font-size: clamp(3.4rem, 10.5vw, 5.8rem);
  }

  .introduction {
    font-size: 1.08rem;
  }

  .artwork {
    min-height: 38rem;
  }
}

@media (max-width: 540px) {
  .editorial {
    min-height: 100svh;
    padding-top: 1.75rem;
  }

  .editorial::before {
    width: 4rem;
  }

  .brand-lockup {
    width: 4.6rem;
  }

  .copy {
    padding: 2.4rem 0;
  }

  .eyebrow {
    margin-bottom: 1.3rem;
    font-size: 0.61rem;
    letter-spacing: 0.15em;
  }

  .eyebrow::before {
    width: 1.5rem;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .introduction {
    margin-top: 1.65rem;
    font-size: 1rem;
    line-height: 1.58;
  }

  .status {
    margin-top: 1.65rem;
    font-size: 0.59rem;
    letter-spacing: 0.12em;
  }

  .site-footer {
    gap: 0.75rem;
    font-size: 0.52rem;
    letter-spacing: 0.13em;
    white-space: normal;
    text-align: center;
  }

  .footer-rule {
    width: 1.4rem;
  }

  .artwork {
    min-height: 70svh;
  }

  .artwork > img {
    object-position: 61% center;
  }

  .artwork::after {
    inset: 0.8rem;
  }

  figcaption {
    right: 2rem;
    bottom: 2.25rem;
  }
}

@media (max-height: 690px) and (min-width: 901px) {
  .editorial {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .brand-lockup {
    width: 4.5rem;
  }

  .copy {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  h1 {
    font-size: clamp(3.2rem, 4.7vw, 5rem);
  }

  .introduction {
    margin-top: 1.6rem;
  }

  .status {
    margin-top: 1.5rem;
  }
}

::selection {
  color: var(--ink);
  background: var(--gold-bright);
}
