:root {
  --bg: oklch(0.16 0.022 182);
  --bg-deep: oklch(0.11 0.018 182);
  --panel: oklch(0.2 0.028 180 / 0.92);
  --panel-soft: oklch(0.24 0.03 185 / 0.72);
  --line: oklch(0.52 0.06 80 / 0.38);
  --line-soft: oklch(0.67 0.03 180 / 0.18);
  --muted: oklch(0.8 0.02 120 / 0.76);
  --jade: oklch(0.72 0.13 166);
  --jade-deep: oklch(0.52 0.1 170);
  --bronze: oklch(0.72 0.09 72);
  --bronze-deep: oklch(0.47 0.07 72);
  --shadow: rgba(0, 0, 0, 0.48);
  --page-background:
    radial-gradient(circle at top left, rgba(51, 129, 107, 0.2), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(172, 129, 69, 0.14), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(56, 117, 125, 0.14), transparent 30%),
    linear-gradient(180deg, var(--bg), var(--bg-deep) 82%);
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: clamp(20px, 4vw, 48px);
  display: grid;
}

.shell {
  position: relative;
  min-height: calc(100vh - clamp(40px, 8vw, 96px));
  display: grid;
  gap: clamp(22px, 3vw, 40px);
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: center;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(135deg, rgba(14, 31, 34, 0.92), rgba(11, 19, 22, 0.92)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 30px 80px var(--shadow);
  overflow: hidden;
}

.shell::before,
.shell::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.shell::before {
  inset: 16px;
  border: 1px solid rgba(219, 196, 144, 0.18);
  mix-blend-mode: screen;
}

.shell::after {
  width: 42vw;
  height: 42vw;
  right: -12vw;
  top: -10vw;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(56, 138, 118, 0.18), transparent 68%);
}

.copy {
  position: relative;
  display: grid;
  align-content: start;
  gap: clamp(18px, 2vw, 26px);
  max-width: 42rem;
  padding-top: clamp(12px, 2vw, 30px);
}

.copy::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 7.5rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 162, 98, 0.9), transparent);
}

h1 {
  font-size: clamp(4.3rem, 12vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
}

.intro {
  margin: 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.7;
}

.intro strong {
  color: var(--ink);
  font-weight: 600;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.actions .nav-link {
  min-height: 2.85rem;
  padding: 0.8rem 1.2rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.motto {
  display: grid;
  gap: 0.55rem;
  width: min(100%, 26rem);
  justify-self: end;
  padding: 0.95rem 1rem 0 0;
  border-top: 1px solid rgba(223, 208, 167, 0.22);
}

.motto-label {
  color: rgba(223, 208, 167, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
}

.motto-text {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.28;
  color: var(--ink);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.4rem;
  color: rgba(210, 218, 214, 0.64);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
}

.art {
  position: relative;
  display: grid;
  gap: 1rem;
  justify-items: end;
}

.art::before {
  content: '';
  position: absolute;
  right: clamp(16px, 4vw, 44px);
  bottom: clamp(-10px, 1vw, 8px);
  width: min(54vw, 28rem);
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px solid rgba(223, 208, 167, 0.16);
  opacity: 0.55;
  animation: orbit 16s ease-in-out infinite;
}

.sigil {
  position: relative;
  width: min(100%, 34rem);
  aspect-ratio: 0.92;
  display: grid;
  padding: clamp(14px, 2vw, 18px);
  border: 1px solid rgba(223, 208, 167, 0.18);
  background:
    linear-gradient(180deg, rgba(53, 72, 65, 0.22), rgba(8, 15, 17, 0.7)),
    linear-gradient(145deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.22));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 28px 70px rgba(0, 0, 0, 0.44);
}

.sigil::before,
.sigil::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(223, 208, 167, 0.12);
}

.sigil::after {
  inset: auto auto 14px 14px;
  width: 5rem;
  height: 5rem;
  border-right: 0;
  border-top: 0;
}

.poster {
  position: relative;
  overflow: hidden;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(16, 32, 33, 0.4), rgba(7, 13, 14, 0.1)), oklch(0.2 0.03 178);
}

.poster::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(4, 11, 13, 0.36)),
    radial-gradient(circle at 72% 26%, rgba(74, 183, 140, 0.18), transparent 22%),
    radial-gradient(circle at 28% 16%, rgba(188, 141, 84, 0.2), transparent 18%);
  z-index: 1;
  pointer-events: none;
}

.poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) contrast(1.02) brightness(0.92);
  transform: scale(1.04);
}

.mark {
  position: absolute;
  top: clamp(28px, 4vw, 40px);
  right: clamp(22px, 4vw, 42px);
  z-index: 3;
  width: clamp(68px, 8vw, 94px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(223, 208, 167, 0.28);
  background: rgba(9, 19, 21, 0.6);
  backdrop-filter: blur(3px);
}

.mark svg {
  width: 56%;
  height: 56%;
}

.plaque {
  position: absolute;
  right: clamp(14px, 2vw, 22px);
  bottom: clamp(14px, 2vw, 22px);
  z-index: 2;
  display: grid;
  gap: 0.25rem;
  min-width: 13rem;
  padding: 0.9rem 1rem;
  background: rgba(9, 17, 18, 0.72);
  border: 1px solid rgba(223, 208, 167, 0.2);
}

.plaque b {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(223, 208, 167, 0.88);
}

.plaque span {
  color: rgba(227, 235, 232, 0.76);
  font-size: 0.96rem;
  line-height: 1.45;
}

.corner-note {
  position: absolute;
  left: clamp(14px, 2vw, 20px);
  bottom: clamp(8px, 1vw, 8px);
  z-index: 2;
  color: rgba(219, 226, 223, 0.62);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes orbit {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.45;
  }

  50% {
    transform: translate3d(-10px, -12px, 0) scale(1.035);
    opacity: 0.7;
  }
}

@media (max-width: 1120px) {
  .shell {
    gap: clamp(18px, 2.4vw, 28px);
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.82fr);
    align-items: start;
  }

  .copy {
    max-width: 36rem;
    gap: 16px;
  }

  h1 {
    font-size: clamp(3.6rem, 9vw, 6.2rem);
    max-width: 7ch;
  }

  .intro {
    max-width: 30rem;
  }

  .sigil {
    width: min(100%, 29rem);
    aspect-ratio: 0.84;
  }
}

@media (max-width: 920px) {
  .page {
    padding: 10px;
  }

  .shell {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px 14px 20px;
    align-content: start;
  }

  .art {
    order: 0;
    justify-items: stretch;
    width: min(100%, 28rem);
    justify-self: center;
  }

  .copy {
    max-width: none;
    padding-top: 0;
    gap: 14px;
  }

  .copy::before {
    width: 4.75rem;
  }

  .motto {
    width: 100%;
    justify-self: stretch;
    padding-right: 0;
  }

  .mark {
    top: 16px;
    right: 12px;
  }

  .sigil {
    width: 100%;
    max-height: min(44vh, 26rem);
    aspect-ratio: 1.18;
  }

  h1 {
    font-size: clamp(2.9rem, 15vw, 4.8rem);
    line-height: 0.9;
    max-width: 6ch;
  }

  .intro {
    max-width: 30rem;
    line-height: 1.62;
  }

  .meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .poster img {
    object-position: center 10%;
    transform: scale(0.98);
  }
}

@media (max-width: 540px) {
  .page {
    padding: 6px;
  }

  .shell::before {
    inset: 8px;
  }

  .shell::after {
    width: 78vw;
    height: 78vw;
    right: -24vw;
    top: -18vw;
  }

  .copy {
    gap: 12px;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4rem);
  }

  .meta,
  .motto-label {
    font-size: 0.64rem;
    letter-spacing: 0.18em;
  }

  .intro {
    font-size: 0.96rem;
    line-height: 1.54;
  }

  .actions {
    width: 100%;
  }

  .actions .nav-link {
    width: 100%;
    min-height: 2.7rem;
    padding: 0.78rem 1rem;
    letter-spacing: 0.08em;
  }

  .meta {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .art::before {
    right: 10px;
    bottom: -18px;
    width: 62vw;
  }

  .sigil {
    padding: 10px;
    aspect-ratio: 1.26;
    max-height: min(34vh, 18rem);
  }

  .sigil::before {
    inset: 10px;
  }

  .sigil::after {
    left: 10px;
    bottom: 10px;
  }

  .motto {
    gap: 0.45rem;
    padding-top: 0.82rem;
  }

  .poster img {
    object-position: center 8%;
    transform: scale(0.95);
  }

  .corner-note {
    left: 12px;
    bottom: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.07em;
  }

  .plaque {
    min-width: 0;
    max-width: calc(100% - 28px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .art::before {
    animation: none;
  }
}
