﻿@charset "UTF-8";
:root {
  --charcoal:#111;
  --charcoal-light:#222;
  --gold:46.1 90.2% 53.9%;
  --goldDark:#b78e0a;
  --rasta-red:#5f4100;
  --cream:hsl(45 30% 96%);
  --muted-fg:#555;
  --border:hsl(45,15%,85%);
  --primary:#f4c71f;
  --headerHeight:132px;
  --maxCenterWidth:1280px;
  --goldBorderWidth:4px;
  --s1:4px;
  --s2:8px;
  --s3:12px;
  --s4:16px;
  --s5:20px;
  --s6:24px;
  --s7:32px;
  --s8:64px;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.block {
  display: block;
}

.overflow-hidden {
  overflow: hidden;
}

.pointer {
  cursor: pointer;
}

.object-cover {
  object-fit: cover;
}

.aspect-square {
  aspect-ratio: 1/1;
}

.aspect-auto {
  aspect-ratio: auto;
}

.aspect-16-9 {
  aspect-ratio: 16/9;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.min-h-screen {
  min-height: 100vh;
}

.pt-24 {
  padding-top: 6rem;
}

.overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
}
.overlay.light {
  background: rgba(0, 0, 0, 0.1);
}
.overlay.gradient-from-top {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.61) 50%, #000 100%);
}
.overlay.gradient-2 {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.7) 75%, rgba(0, 0, 0, 0.8) 100%);
}
.overlay.gradient-3 {
  background: linear-gradient(to left, rgba(17, 17, 17, 0.8) 0%, rgba(150, 150, 150, 0.3) 7%, rgba(17, 17, 17, 0.7) 75%, rgba(0, 0, 0, 0.8) 100%);
}
.overlay.char-gradient {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.06) 50%, #000 100%);
}

.flex-end {
  justify-content: flex-end;
}

/* grid stuff */
.grid {
  display: grid;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.col-span-1 {
  grid-column: span 1/span 1;
}

.row-span-2 {
  grid-row: span 2/span 2;
}

/* colour presets */
.bg-white {
  background-color: #fff;
}

.font-heading {
  font-family: "Salter Roman", Georgia, serif;
}

.font-body {
  font-family: "Salter Roman", Georgia, serif;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-6xl {
  font-size: 4.25rem;
  line-height: 1;
}

.text-7xl {
  font-size: 4.75rem;
  line-height: 1;
}

.text-cream {
  color: var(--cream);
}

.text-gold {
  color: #f4c71f;
}

.uppercase {
  text-transform: uppercase;
}

.w-\[120\%\] {
  width: 120%;
}

.h-\[120\%\] {
  height: 120%;
}

.-top-\[10\%\] {
  top: -10%;
}

.-left-\[10\%\] {
  left: -10%;
}

@media (max-width: 767px) {
  .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .grid-cols-2,
.grid-cols-3,
.grid-cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .col-span-2 {
    grid-column: span 2/span 2;
  }

  .row-span-2 {
    grid-row: span 2/span 2;
  }

  .aspect-auto {
    aspect-ratio: auto;
  }

  .h-full {
    height: 100%;
  }

  .columns-3 {
    -moz-columns: 3;
    columns: 3;
  }

  .grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
:root {
  --bg-card: #0a0a0a;
  --fg: #f2eee6;
  --fg-faint: rgba(242, 238, 230, 0.35);
  --border: rgba(244, 199, 31, 0.22);
}

body {
  background: #111;
}

.container {
  padding: 0 16px;
}

.breadcrumb { padding-top: 6.5rem; padding-bottom: 16px; }
.breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.breadcrumb__inner a:hover {
  color: #f4c71f;
  transition: color 0.25s;
  cursor: pointer;
}
.breadcrumb__inner span {
  cursor: default;
}
.breadcrumb__inner__sep {
  opacity: 0.4;
}
.breadcrumb__inner__current {
  color: rgba(242, 238, 230, 0.7);
}

.character {
  padding-top: 3rem;
  padding-bottom: 6rem;
}

.character__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

/* Portrait column */
.character__portrait-wrap {
  position: relative;
}

.character__portrait-glow {
  position: absolute;
  inset: -0.75rem;
  background: var(--gold-glow);
  filter: blur(2rem);
  border-radius: 2px;
}

.character__portrait-frame {
  position: relative;
  border: 1px solid var(--border);
  overflow: hidden;
}

.character__portrait {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  object-position: top;
  max-height: 70vh;
}

.character__portrait-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 8, 7, 0.6) 0%, transparent 50%);
}

/* Corner accents */
.corner {
  position: absolute;
  width: 2rem;
  height: 2rem;
}

.corner--tl {
  top: -0.75rem;
  left: -0.75rem;
  border-top: 2px solid rgba(244, 199, 31, 0.6);
  border-left: 2px solid rgba(244, 199, 31, 0.6);
}

.corner--br {
  bottom: -0.75rem;
  right: -0.75rem;
  border-bottom: 2px solid rgba(244, 199, 31, 0.6);
  border-right: 2px solid rgba(244, 199, 31, 0.6);
}

/* Content column */
.character__name {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  color: #f4c71f;
  margin-bottom: 1.5rem;
}

.character__rule {
  width: 5rem;
  height: 1px;
  background: linear-gradient(to right, #f4c71f, transparent);
  margin-bottom: 2rem;
}

.character__tagline {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(244, 199, 31, 0.8);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.character__bio {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.character__bio p {
  font-family: "Salter Roman", Georgia, serif;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.9;
  color: #cecece;
}

/* Traits grid */
.character__strains .strain {
  font-family: "Salter Roman", Georgia, serif;
  padding: 1rem 0rem;
}
.character__strains .strain__label {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #c0c0c0;
  margin-bottom: 0.6rem;
}
.character__strains .strain__value {
  font-size: 0.875rem;
  color: #f4c71f;
}

/* ─── Related characters ──────────────────────── */
.related {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-block: 2rem;
}

.related__eyebrow {
  font-size: 1rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #f4c71f;
  margin-bottom: 2.5rem;
}

.related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.related-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  display: block;
  transition: transform 0.3s ease;
}

.related-card:hover {
  transform: translateY(-8px);
}

.related-card__img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.related-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}

.related-card:hover .related-card__img {
  transform: scale(1.05);
}

.related-card__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-card) 0%, rgba(17, 16, 14, 0.3) 50%, transparent 100%);
}

.related-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
}

.related-card__title {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #f4c71f;
  margin-bottom: 0.3rem;
}

.related-card__name {
  font-family: "Salter Roman", Georgia, serif;
  font-size: 1.3rem;
  color: var(--fg);
  transition: color 0.25s;
}

.related-card:hover .related-card__name {
  color: var(--gold);
}

.related-card__corner {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 1.5rem;
  height: 1.5rem;
  border-top: 1px solid rgba(244, 199, 31, 0.4);
  border-right: 1px solid rgba(244, 199, 31, 0.4);
  opacity: 0;
  transition: opacity 0.3s;
}

.related-card:hover .related-card__corner {
  opacity: 1;
}

/* ─── Responsive ──────────────────────────────── */
/* Tablet and up — two-column split */
@media (min-width: 768px) {
  .character__grid {
    grid-template-columns: 2fr 3fr;
    align-items: start;
    gap: 4rem;
  }

  .character__portrait-wrap {
    position: sticky;
    top: 6rem;
  }

  .character__portrait {
    max-height: 75vh;
  }

  .related__grid {
    grid-template-columns: repeat(3, 1fr);
  }

}
/* Desktop — wider layout */
@media (min-width: 1024px) {
  .character__grid {
    gap: 5rem;
  }

  .nav__links {
    display: flex;
  }
}
/* Mobile — stack nav, hide link list */
@media (max-width: 767px) {
  .nav__links {
    display: none;
  }

  .character__traits {
    grid-template-columns: 1fr;
  }

  .trait {
    border-right: none;
  }

  .trait:last-child {
    border-bottom: none;
  }

  .trait:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

  .trait:last-child {
    border-bottom: none;
  }

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

/* Lion Order final character template */
@font-face {
  font-family: "Salter Roman";
  src: url("/fonts/Salter-Roman.otf") format("opentype"), url("/fonts/Salter-Roman.ttf") format("truetype");
  font-display: swap;
}

:root {
  --lo-yellow: #f4c71f;
  --lo-ink: #0b0a08;
  --lo-cream: #f7f1e3;
  --lo-black-pattern: url("/images/BlackPattern LO.png");
  --font-display: "Salter Roman", Georgia, serif;
  --font-body: "Salter Roman", Georgia, serif;
}

body,
.site-content {
  background:
    radial-gradient(circle at 20% 8%, rgba(244,199,31,.14), transparent 34rem),
    linear-gradient(180deg, rgba(8,7,5,.72), rgba(8,7,5,.94)),
    var(--lo-black-pattern) center / 360px auto repeat,
    var(--lo-ink) !important;
  color: var(--lo-cream) !important;
  font-family: var(--font-body) !important;
}

.site-content > .container {
  width: min(calc(100% - 40px), 1240px) !important;
  margin-inline: auto !important;
  padding: clamp(24px, 4vw, 58px) 0 clamp(48px, 6vw, 90px) !important;
}

.breadcrumb {
  padding-top: clamp(24px, 4vw, 52px) !important;
}

.breadcrumb__inner,
.breadcrumb__inner a,
.breadcrumb__current {
  color: rgba(247,241,227,.74) !important;
  font-family: var(--font-body) !important;
}

.character {
  width: 100% !important;
  margin: 0 auto !important;
  padding: clamp(22px, 4vw, 42px) !important;
  border: 1px solid rgba(244,199,31,.22) !important;
  border-radius: 26px !important;
  background: linear-gradient(135deg, rgba(16,14,10,.78), rgba(7,7,5,.92)) !important;
  box-shadow: 0 32px 88px rgba(0,0,0,.38) !important;
}

.character__grid {
  align-items: center !important;
  gap: clamp(28px, 5vw, 72px) !important;
}

.character__portrait-wrap {
  max-width: 480px !important;
  width: 100% !important;
}

.character__portrait-frame {
  border-radius: 18px !important;
  border: 1px solid rgba(244,199,31,.32) !important;
  background: #080705 !important;
  box-shadow: 0 28px 70px rgba(0,0,0,.44) !important;
}

.character__portrait {
  width: 100% !important;
  aspect-ratio: 4 / 5 !important;
  max-height: min(72svh, 720px) !important;
  object-fit: cover !important;
  object-position: center top !important;
}

.character__portrait-glow {
  background: rgba(244,199,31,.18) !important;
}

.character__name {
  color: var(--lo-cream) !important;
  font-family: var(--font-display) !important;
  font-size: clamp(3.6rem, 7vw, 7rem) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: .86 !important;
  text-transform: none !important;
}

.character__rule {
  background: linear-gradient(to right, var(--lo-yellow), transparent) !important;
}

.character__tagline,
.strain__value,
.related__eyebrow,
.related-card__title {
  color: var(--lo-yellow) !important;
}

.character__tagline,
.character__bio p,
.strain__label,
.strain__value {
  font-family: var(--font-body) !important;
}

.character__bio p {
  color: rgba(247,241,227,.84) !important;
  font-size: clamp(1.05rem, 1.35vw, 1.2rem) !important;
  line-height: 1.72 !important;
}

.related {
  margin-top: clamp(28px, 4vw, 52px) !important;
  padding: clamp(24px, 4vw, 48px) !important;
  border: 1px solid rgba(244,199,31,.18) !important;
  border-radius: 24px !important;
  background: linear-gradient(180deg, rgba(13,11,8,.78), rgba(7,7,5,.9)) !important;
}

.related__eyebrow {
  font-family: var(--font-body) !important;
}

.related-card {
  border-radius: 16px !important;
  border-color: rgba(244,199,31,.25) !important;
  background: #080705 !important;
}

.related-card__name {
  color: var(--lo-cream) !important;
  font-family: var(--font-display) !important;
  font-weight: 400 !important;
}

@media (max-width: 767px) {
  .site-content > .container {
    width: min(calc(100% - 28px), 560px) !important;
  }

  .character {
    padding: 16px !important;
  }

  .character__grid {
    gap: 24px !important;
  }

  .character__name {
    font-size: clamp(3rem, 16vw, 5rem) !important;
  }

  .related {
    padding: 16px !important;
  }
}

/* Client-facing character surface: premium, but not black */
body,
.site-content {
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 218, 43, .18), transparent 34rem),
    linear-gradient(90deg, rgba(132, 106, 33, .86), rgba(92, 74, 24, .86)),
    var(--lo-black-pattern) center / 560px auto repeat,
    #876b22 !important;
}

.character,
.related {
  background:
    linear-gradient(135deg, rgba(44, 35, 16, .9), rgba(24, 19, 10, .92)) !important;
}

.character__portrait-frame,
.related-card {
  background: #241c0f !important;
}

.site-content > .container {
  padding-top: clamp(24px, 4vw, 58px) !important;
  padding-bottom: clamp(34px, 5vw, 70px) !important;
}

body .character {
  padding-bottom: clamp(42px, 6vw, 86px) !important;
}

@media (max-width: 760px) {
  body .breadcrumb {
    padding-top: 84px !important;
  }

  body .character {
    padding-top: 24px !important;
    padding-bottom: 44px !important;
  }

  body .container {
    width: min(100% - 28px, 520px) !important;
    padding-inline: 0 !important;
  }

  body .character__grid {
    gap: 24px !important;
  }

  body .character__portrait {
    max-height: min(72svh, 620px) !important;
  }

  body .character__name {
    font-size: clamp(2.6rem, 12vw, 4rem) !important;
    line-height: .95 !important;
  }

  body .character__bio p {
    font-size: clamp(1rem, 4.2vw, 1.08rem) !important;
    line-height: 1.55 !important;
  }

  body .related__grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 760px) {
  body .character {
    padding-bottom: 24px !important;
  }
}
