/*
Theme Name: SYLDRYX Imperium Refined
Theme URI: https://syldryx.com/
Author: OpenAI Codex
Description: A custom one-page artist site for SYLDRYX.
Version: 1.1.0
Text Domain: syldryx-imperium
*/

@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #090807;
  --bg-soft: #14110e;
  --panel: rgba(18, 14, 11, 0.78);
  --line: rgba(217, 172, 98, 0.2);
  --gold: #d7b06a;
  --gold-bright: #f1d7a2;
  --gold-dim: #9a7440;
  --text: #f2ede2;
  --muted: #bfa98a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  --max: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(120, 77, 21, 0.18), transparent 32%),
    linear-gradient(180deg, #080707 0%, #0a0908 40%, #050404 100%);
}

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

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

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

.site-shell::before {
  background:
    radial-gradient(circle at 50% 18%, rgba(227, 180, 103, 0.24), transparent 18%),
    linear-gradient(90deg, rgba(255, 215, 130, 0.05), transparent 18%, transparent 82%, rgba(255, 215, 130, 0.05));
}

.site-shell::after {
  inset: 14px;
  border: 1px solid rgba(217, 172, 98, 0.16);
  z-index: 20;
  mix-blend-mode: screen;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 15;
  backdrop-filter: blur(12px);
  background: rgba(6, 5, 4, 0.72);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(217, 172, 98, 0.18));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name,
.nav a,
.eyebrow,
.section-title,
.quote-line,
.footer-wordmark {
  font-family: "Cinzel", serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-name {
  font-size: 0.95rem;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.82rem;
  color: var(--muted);
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--gold-bright);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 3, 3, 0.46), rgba(4, 3, 3, 0.85)),
    radial-gradient(circle at 50% 35%, rgba(255, 209, 121, 0.18), transparent 18%),
    url("./assets/banner.png") center top / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 58%, rgba(6, 5, 4, 0.96) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, transparent 22%, transparent 78%, rgba(0, 0, 0, 0.58) 100%);
}

.hero-inner,
.section-inner,
.footer-inner {
  position: relative;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 52px;
  align-items: center;
  padding: 120px 0 84px;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.82rem;
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(3.3rem, 9vw, 8.4rem);
  line-height: 0.96;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f7edd7;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.65);
}

.hero h1 span {
  display: block;
  font-size: clamp(1rem, 2vw, 1.35rem);
  letter-spacing: 0.44em;
  color: var(--gold);
  margin-top: 20px;
}

.hero-copy p {
  width: min(56ch, 100%);
  margin: 26px 0 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--gold-dim);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.button-primary {
  background: linear-gradient(135deg, rgba(217, 172, 98, 0.24), rgba(217, 172, 98, 0.08));
  box-shadow: 0 12px 28px rgba(164, 115, 41, 0.16);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.02);
}

.hero-card {
  position: relative;
  padding: 22px;
  background: linear-gradient(180deg, rgba(25, 18, 12, 0.84), rgba(9, 7, 6, 0.92));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(217, 172, 98, 0.12);
  border-radius: 22px;
  pointer-events: none;
}

.hero-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
}

.hero-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-card-meta strong {
  display: block;
  color: var(--text);
  font-size: 0.96rem;
  margin-top: 6px;
}

.section {
  position: relative;
  padding: 110px 0;
}

.section + .section {
  border-top: 1px solid rgba(217, 172, 98, 0.08);
}

.section-title {
  margin: 0 0 22px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #f6e7c8;
}

.section-lead {
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
  line-height: 1.9;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.manifesto-card {
  padding: 26px 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.manifesto-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Cinzel", serif;
  color: var(--gold-bright);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.manifesto-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

.release-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: 42px;
  align-items: center;
  margin-top: 42px;
}

.release-frame {
  position: relative;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(19, 15, 11, 0.86), rgba(8, 7, 6, 0.94));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.release-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(217, 172, 98, 0.14);
  border-radius: 22px;
  pointer-events: none;
}

.release-frame img {
  border-radius: 18px;
}

.release-copy p {
  color: var(--muted);
  line-height: 1.85;
}

.release-points {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.release-point {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.release-point::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-bright) 0%, var(--gold) 52%, rgba(217, 172, 98, 0.2) 100%);
  box-shadow: 0 0 16px rgba(217, 172, 98, 0.32);
}

.release-point strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.release-point span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.sigil-section {
  overflow: hidden;
}

.sigil-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 50%, rgba(217, 172, 98, 0.08), transparent 40%),
    linear-gradient(180deg, rgba(19, 15, 11, 0.82), rgba(8, 7, 6, 0.94));
  box-shadow: var(--shadow);
}

.sigil-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(217, 172, 98, 0.1);
  border-radius: 24px;
  pointer-events: none;
}

.sigil-panel img {
  width: min(100%, 320px);
  margin: 0 auto;
  filter: drop-shadow(0 0 28px rgba(217, 172, 98, 0.16));
}

.quote-line {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.82rem;
}

.sigil-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.footer {
  padding: 52px 0 70px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  border-top: 1px solid rgba(217, 172, 98, 0.1);
  padding-top: 24px;
}

.footer-wordmark {
  color: var(--gold-bright);
  font-size: 0.95rem;
}

.wp-site-blocks,
.wp-block-group,
main {
  margin: 0;
}

@media (max-width: 1040px) {
  .hero-inner,
  .release-layout,
  .sigil-panel {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .site-shell::after {
    inset: 8px;
  }

  .topbar-inner {
    padding: 14px 0;
  }

  .nav {
    display: none;
  }

  .hero-inner,
  .section {
    padding-top: 84px;
  }

  .hero-inner {
    gap: 28px;
    padding-bottom: 60px;
  }

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

  .sigil-panel,
  .hero-card,
  .release-frame {
    padding: 18px;
  }

  .cta-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
