/* =============================================================
   Gölgem — the cover. Same furniture as the Şahit cover (.sc-*):
   a bound page floating on the field, a double hairline frame,
   the emblem, the title, the rule, the foot.
   Two deliberate differences:
     · the title is charcoal, not gold — the authored cover sets
       the title in ink and gives the gold to the rule and the
       subtitle. Gölgem's accent belongs to the line figure.
     · no numeral in the kicker. The book takes none (brief §2);
       the slot carries the coming-soon marker instead.
   ============================================================= */
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--cream); color: var(--ink);
  -webkit-font-smoothing: antialiased; }
img, svg { max-width: 100%; height: auto; }

.gc-wrap { min-height: 100dvh; display: flex; align-items: center; justify-content: center;
  padding: 40px 20px; }
.gc { position: relative; width: 680px; max-width: 100%; aspect-ratio: 680 / 904;
  background: radial-gradient(120% 80% at 50% 8%, #FFFDF8 0%, var(--cream) 46%, var(--cream-2) 100%);
  box-shadow: 0 26px 70px rgba(70,63,54,.20); border-radius: 2px; }
.gc-frame { position: absolute; inset: 26px; border: 1px solid var(--line); pointer-events: none; }
.gc-frame::after { content: ""; position: absolute; inset: 6px; border: .6px solid var(--rule-soft); }
/* The foot is absolutely positioned, so the centred stack has to reserve room
   for it — Şahit gets away without this because its emblem is a short wide eye;
   ours is near-square and far taller. */
.gc-inner { position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 7% 11% 25%; text-align: center; }
.gc-kicker { font-family: var(--font-sans); font-size: 11px; letter-spacing: .42em;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: 4%; }
.gc-emblem { width: 50%; margin-bottom: 0; }
.gc-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(54px, 14vw, 96px);
  line-height: .9; color: var(--ink); margin: 4% 0 0; }
/* The title's descender (the g) drops through a tight line-height, so the rule
   needs more clearance than Şahit's does or it reads as a strike-through. */
.gc-rule { width: 66px; height: 1px; background: var(--gold); opacity: .8; margin: 36px 0 20px; }
/* The epigraph slot is deliberately empty — unwritten, and the author's to write
   (brief §14). Until then the English gloss holds the position. */
.gc-en { font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(17px, 3vw, 21px); line-height: 1.5; color: var(--sepia); margin: 0; opacity: .9; }
.gc-foot { position: absolute; left: 0; right: 0; bottom: 8.8%; display: flex;
  flex-direction: column; align-items: center; gap: 12px; }
.gc-sub { font-family: var(--font-sans); font-size: 11px; letter-spacing: .34em;
  text-transform: uppercase; color: var(--gold); }
.gc-author { font-family: var(--font-script); font-size: 40px; color: var(--ink); }

@media (max-width: 560px) {
  .gc { aspect-ratio: auto; min-height: 74vh; }
  .gc-emblem { width: 72%; }
  .gc-inner { padding: 9% 9% 32%; }
  .gc-rule { margin: 26px 0 16px; }
  .gc-author { font-size: 34px; }
}
