/* =========================================================================
   12evelation · Summit of Dominion Universe
   Faith-driven IP studio — black & gold cinematic system.
   Cinzel display · Fraunces editorial · Cormorant italic · Inter UI.
   ========================================================================= */

:root {
  /* --- palette --- */
  --bg:           #0A0807;
  --bg-2:         #100D0B;
  --bg-3:         #16120F;
  --surface:      rgba(255, 255, 255, 0.02);
  --surface-2:    rgba(255, 255, 255, 0.035);
  --navy:         #0B1220;   /* deep blue-black used in philosophy / partner bands */

  --text:         #F3EEE5;
  --text-muted:   #B7AE9F;
  --text-faint:   #837A6C;

  --gold:         #E0A93C;
  --gold-bright:  #F4C969;
  --gold-deep:    #A8761F;
  --gold-soft:    rgba(224, 169, 60, 0.10);

  --line:         rgba(224, 169, 60, 0.22);
  --line-soft:    rgba(243, 238, 229, 0.08);
  --line-strong:  rgba(224, 169, 60, 0.45);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  --font-display: "Fraunces", "Tiempos Headline", Georgia, serif;
  --font-cinema:  "Cinzel", "Trajan Pro", Georgia, serif;
  --font-italic:  "Cormorant Garamond", "Fraunces", Georgia, serif;
  --font-sans:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --nav-h: 84px;
  --maxw: 1280px;
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  min-width: 320px;
}
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.container--narrow { max-width: 920px; }
.container--wide   { max-width: 1460px; }
@media (max-width: 900px) { .container { padding: 0 26px; } }
@media (max-width: 520px) { .container { padding: 0 18px; } }

/* =========================================================================
   SHARED TYPE
   ========================================================================= */
.kicker {
  font-family: var(--font-cinema);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
}

/* page-title: the big Cinzel section headings ("WHO WE ARE", "WHAT WE DO") */
.page-title {
  font-family: var(--font-cinema);
  font-weight: 700;
  color: var(--gold);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.page-title::after {
  content: "";
  display: block;
  width: 74px;
  height: 3px;
  margin-top: 22px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold-deep));
  border-radius: 2px;
}

/* centered divider heading ("OUR VALUES", "OUR OPERATING MODEL") */
.rule-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  text-align: center;
  margin: 0 auto;
}
.rule-heading span {
  font-family: var(--font-cinema);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: clamp(16px, 2.2vw, 24px);
  white-space: nowrap;
}
.rule-heading::before,
.rule-heading::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 360px;
  background: linear-gradient(90deg, transparent, var(--line-strong));
}
.rule-heading::after { background: linear-gradient(90deg, var(--line-strong), transparent); }

.prose { color: var(--text-muted); font-size: 18px; line-height: 1.75; }
.prose p + p { margin-top: 20px; }
.prose strong { color: var(--text); font-weight: 600; }

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-cinema);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  padding: 16px 30px;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  line-height: 1;
}
.btn i { transition: transform 0.25s ease; }
.btn--ghost {
  color: var(--gold-bright);
  border: 1px solid var(--line-strong);
  background: rgba(224, 169, 60, 0.04);
}
.btn--ghost:hover { border-color: var(--gold); background: var(--gold-soft); }
.btn--ghost:hover i { transform: translateX(4px); }
.btn--gold {
  color: #1a1206;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  border: 1px solid var(--gold-bright);
  box-shadow: 0 10px 30px rgba(224, 169, 60, 0.18);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(224, 169, 60, 0.28); }
.btn--gold:hover i { transform: translateX(4px); }
.btn--lg { padding: 18px 38px; font-size: 14px; }

/* =========================================================================
   NAV
   ========================================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(10, 8, 7, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 900px) { .nav-inner { padding: 0 24px; } }

/* brand mark — geometric "12E" monogram */
.brand { display: inline-flex; align-items: center; gap: 0; }
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-cinema);
  font-weight: 700;
  font-size: 26px;
  color: var(--gold-bright);
  letter-spacing: 0.04em;
  line-height: 1;
}
.brand-mark .e-bars {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}
.brand-mark .e-bars span {
  height: 3px;
  border-radius: 2px;
  background: var(--gold-bright);
}
.brand-mark .e-bars span:nth-child(2) { width: 70%; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  position: relative;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 10px 18px;
  transition: color 0.2s ease;
}
.nav-links a + a { border-left: 1px solid var(--line-soft); }
.nav-links a:hover { color: var(--text); }
.nav-links a.is-active { color: var(--gold-bright); }
.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 18px; right: 18px; bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  box-shadow: 0 0 14px var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--gold-bright);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.mobile-nav {
  position: fixed;
  inset: var(--nav-h) 0 auto 0;
  background: rgba(10, 8, 7, 0.98);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 14px 24px 26px;
  gap: 2px;
  transform: translateY(-130%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  z-index: 85;
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav a {
  font-family: var(--font-cinema);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 15px;
  color: var(--text-muted);
  padding: 16px 4px;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav a.is-active { color: var(--gold-bright); }
.mobile-nav a.btn { justify-content: center; margin-top: 14px; border-bottom: 0; color: #1a1206; }

@media (max-width: 1040px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* =========================================================================
   SECTION RHYTHM
   ========================================================================= */
.section { padding: 110px 0; }
.section--tight { padding: 80px 0; }
@media (max-width: 768px) { .section { padding: 72px 0; } }

/* decorative corner-framed block (gold border w/ notched corners feel) */
.framed {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), rgba(255,255,255,0.005));
}

/* =========================================================================
   HOME — HERO (split: copy left, photo right)
   ========================================================================= */
.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) 1.25fr;
  align-items: stretch;
  min-height: calc(100vh - var(--nav-h));
  background: var(--bg);
}
.home-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px clamp(40px, 5vw, 96px);
  z-index: 2;
}
.home-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 5.6vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--text);
}
.home-hero h1 .gold { color: var(--gold-bright); font-style: italic; font-family: var(--font-display); }
.home-hero .hero-rule {
  width: 72px; height: 3px; margin: 30px 0 28px;
  background: linear-gradient(90deg, var(--gold-bright), transparent);
  border-radius: 2px;
}
.home-hero-sub {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 30ch;
  line-height: 1.7;
}
.home-hero-cta { margin-top: 40px; }

.home-hero-media {
  position: relative;
  overflow: hidden;
}
.home-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
/* fade photo into the copy column */
.home-hero-media::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(10,8,7,0.55) 14%, rgba(10,8,7,0) 42%);
  z-index: 1;
}

@media (max-width: 980px) {
  .home-hero { grid-template-columns: 1fr; min-height: auto; }
  .home-hero-media { height: 50vh; min-height: 340px; order: -1; }
  .home-hero-media::before { background: linear-gradient(180deg, rgba(10,8,7,0) 40%, var(--bg) 100%); }
  .home-hero-copy { padding: 56px 26px 8px; }
}

/* HOME — entertain / inspire / transform trio */
.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.trio-item {
  text-align: center;
  padding: 56px 30px;
  position: relative;
}
.trio-item + .trio-item::before {
  content: ""; position: absolute; left: 0; top: 26%; bottom: 26%;
  width: 1px; background: var(--line);
}
.trio-icon { font-size: 30px; color: var(--gold); margin-bottom: 18px; }
.trio-item h3 {
  font-family: var(--font-cinema);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-size: 17px;
  margin-bottom: 12px;
}
.trio-item p { color: var(--text-muted); max-width: 24ch; margin: 0 auto; }
@media (max-width: 760px) {
  .trio { grid-template-columns: 1fr; }
  .trio-item + .trio-item::before { left: 26%; right: 26%; top: 0; bottom: auto; width: auto; height: 1px; }
  .trio-item { padding: 40px 24px; }
}

/* =========================================================================
   WHO WE ARE
   ========================================================================= */
.wwa-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.wwa-cards { display: flex; flex-direction: column; gap: 34px; }
.mv-card { padding: 40px 44px; }
.mv-card h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-bright);
  font-size: 34px;
  margin-bottom: 6px;
}
.mv-card .mv-rule { width: 44px; height: 2px; background: var(--gold-deep); margin: 0 0 22px; }
.mv-card p { color: var(--text-muted); font-size: 18px; line-height: 1.7; }
@media (max-width: 920px) { .wwa-grid { grid-template-columns: 1fr; } }

/* values row */
.values {
  margin-top: 90px;
  border-top: 1px solid var(--line);
  padding-top: 48px;
}
.values-row {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.values-row li {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-bright);
  font-size: clamp(22px, 2.4vw, 30px);
  padding: 6px 34px;
  position: relative;
}
.values-row li + li::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 26px; background: var(--line-strong);
}

/* =========================================================================
   WHAT WE DO
   ========================================================================= */
.wwd-intro {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.wwd-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  min-height: 320px;
  /* gold/black design treatment for the (unprovided) writing-hand visual */
  background:
    radial-gradient(120% 90% at 78% 30%, rgba(224,169,60,0.20), transparent 60%),
    radial-gradient(80% 60% at 30% 80%, rgba(168,118,31,0.12), transparent 70%),
    linear-gradient(135deg, #14100c, #0b0908);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wwd-media .quill { font-size: 84px; color: var(--gold); opacity: 0.85; filter: drop-shadow(0 8px 30px rgba(224,169,60,0.35)); }
@media (max-width: 880px) { .wwd-intro { grid-template-columns: 1fr; } .wwd-media { min-height: 220px; } }

.model-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.model-card { padding: 36px 28px; text-align: center; }
.model-card h3 {
  font-family: var(--font-cinema);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-size: 22px;
  margin-bottom: 14px;
}
.model-card .dotrule {
  width: 40px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.model-card .dotrule::before,
.model-card .dotrule::after { content: ""; height: 1px; width: 16px; background: var(--line-strong); }
.model-card .dotrule i { width: 4px; height: 4px; background: var(--gold); transform: rotate(45deg); }
.model-card p { color: var(--text-muted); font-size: 15px; line-height: 1.65; }
@media (max-width: 920px) { .model-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .model-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   STORY WORLDS — hero band
   ========================================================================= */
.sw-hero {
  position: relative;
  min-height: 64vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.sw-hero-strip {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.sw-hero-strip img { width: 100%; height: 100%; object-fit: cover; }
.sw-hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 110%, rgba(224,169,60,0.18), transparent 55%),
    linear-gradient(180deg, rgba(10,8,7,0.55) 0%, rgba(10,8,7,0.35) 45%, rgba(10,8,7,0.95) 100%);
}
.sw-hero-inner { position: relative; z-index: 2; padding: 0 24px 70px; }
.sw-hero h1 {
  font-family: var(--font-cinema);
  font-weight: 700;
  color: var(--gold-bright);
  font-size: clamp(48px, 8vw, 104px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 6px 40px rgba(0,0,0,0.8);
}
.sw-hero .diamond-rule {
  display: flex; align-items: center; justify-content: center; gap: 14px; margin: 18px 0 20px;
}
.sw-hero .diamond-rule::before,
.sw-hero .diamond-rule::after { content: ""; height: 1px; width: 90px; background: var(--line-strong); }
.sw-hero .diamond-rule i { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }
.sw-hero p {
  font-family: var(--font-cinema);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  font-size: clamp(13px, 1.6vw, 16px);
  max-width: 60ch; margin: 0 auto;
}
.sw-hero p .sub { display: block; color: var(--gold); margin-top: 6px; }

/* worlds grid ("OUR WORLDS. COUNTLESS STORIES.") */
.worlds-head { text-align: center; margin-bottom: 50px; }
.worlds-head .kicker { display: inline-block; margin-bottom: 16px; }
.worlds-head h2 {
  font-family: var(--font-cinema);
  font-weight: 700;
  color: var(--gold-bright);
  font-size: clamp(30px, 4.4vw, 56px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.worlds-head .lede {
  font-family: var(--font-cinema);
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); font-size: 13px; margin-top: 14px;
}

.worlds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.world-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: flex-end;
}
.world-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.world-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,8,7,0) 35%, rgba(10,8,7,0.55) 62%, rgba(10,8,7,0.96) 100%);
}
.world-card:hover img { transform: scale(1.06); }
.world-body { position: relative; z-index: 2; padding: 26px 22px 24px; width: 100%; }
.world-body h3 {
  font-family: var(--font-cinema);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-size: 21px;
  line-height: 1.1;
  letter-spacing: 0.03em;
}
.world-body .wsub {
  font-family: var(--font-cinema);
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); font-size: 10px; margin-top: 4px;
}
.world-body .wtag {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--text-muted);
  font-size: 15px;
  margin: 12px 0 16px;
  display: block;
  min-height: 2.6em;
}
.world-body .explore {
  display: inline-block;
  font-family: var(--font-cinema);
  letter-spacing: 0.14em; text-transform: uppercase;
  font-size: 11px;
  color: var(--gold-bright);
  border: 1px solid var(--line-strong);
  padding: 9px 16px;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.world-card:hover .explore { background: var(--gold-soft); border-color: var(--gold); }
@media (max-width: 1040px) { .worlds-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .worlds-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 440px)  { .worlds-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   STORYWORLD PHILOSOPHY band (deep navy)
   ========================================================================= */
.philosophy { background: linear-gradient(160deg, #0a1018, #060708); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.philo-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.philo-copy h2 {
  font-family: var(--font-cinema);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: 0.04em;
}
.philo-copy .topline {
  display: flex; align-items: center; gap: 16px; margin: 22px 0 26px;
}
.philo-copy .topline::before { content: ""; height: 1px; width: 120px; background: var(--line-strong); }
.philo-copy .topline i { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }
.philo-copy .topline::after { content: ""; height: 1px; flex: 1; background: linear-gradient(90deg, var(--line-strong), transparent); }
.philo-copy > p { color: var(--text-muted); font-size: 19px; line-height: 1.7; max-width: 40ch; }
.philo-pillars {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.philo-pillars li { padding: 0 18px; position: relative; }
.philo-pillars li:first-child { padding-left: 0; }
.philo-pillars li + li::before {
  content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 1px; background: var(--line);
}
.philo-pillars h4 {
  font-family: var(--font-cinema);
  text-transform: uppercase;
  color: var(--gold-bright);
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  line-height: 1.25;
}
.philo-pillars p { color: var(--text-muted); font-size: 13px; line-height: 1.55; }
.philo-media { border-radius: var(--radius); overflow: hidden; }
.philo-media img { width: 100%; }
@media (max-width: 940px) {
  .philo-grid { grid-template-columns: 1fr; }
  .philo-media { order: -1; max-width: 460px; margin: 0 auto; }
  .philo-pillars { grid-template-columns: repeat(2, 1fr); gap: 26px 20px; }
  .philo-pillars li { padding: 0; }
  .philo-pillars li + li::before { display: none; }
}

/* =========================================================================
   SDU SECTION (3 columns: categories | logo | connected)
   ========================================================================= */
.sdu { background: radial-gradient(120% 80% at 50% 0%, #15110b, var(--bg)); }
.sdu-shell {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
}
.sdu-shell::before, .sdu-shell::after {
  content: ""; position: absolute; width: 9px; height: 9px; background: var(--gold); transform: rotate(45deg);
}
.sdu-shell::before { top: -5px; left: 50%; margin-left: -4px; }
.sdu-shell::after  { bottom: -5px; left: 50%; margin-left: -4px; }
.sdu-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 18px;
}
.sdu-col { border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 34px; }
.sdu-col--center {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  background: radial-gradient(80% 60% at 50% 45%, rgba(224,169,60,0.06), transparent 70%);
}
.sdu-col--center img { max-width: 78%; }
.sdu-col h3 {
  font-family: var(--font-cinema);
  text-transform: uppercase;
  color: var(--gold-bright);
  letter-spacing: 0.1em;
  font-size: 17px;
}
.sdu-col h3 + .endrule { margin: 16px 0 26px; }
.endrule {
  display: flex; align-items: center; gap: 10px;
}
.endrule::before { content: ""; flex: 1; height: 1px; background: var(--line); }
.endrule i { width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); }
.endrule::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.sdu-cat { }
.sdu-cat .cat { padding: 14px 0; }
.sdu-cat .cat + .cat { border-top: 1px solid var(--line-soft); }
.sdu-cat .cat .label {
  font-family: var(--font-cinema);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-size: 12px;
  display: block;
  margin-bottom: 4px;
}
.sdu-cat .cat .items { color: var(--text); font-size: 15px; }

.sdu-conn p.lead { color: var(--text-muted); font-size: 14px; line-height: 1.6; }
.sdu-conn ul { margin: 22px 0; }
.sdu-conn li {
  text-align: center;
  color: var(--text);
  font-size: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}
.sdu-conn li:first-child { border-top: 1px solid var(--line-soft); }
.sdu-conn .btn { width: 100%; justify-content: center; margin-top: 8px; }

@media (max-width: 940px) {
  .sdu-grid { grid-template-columns: 1fr; }
  .sdu-col--center { order: -1; padding: 30px; }
  .sdu-col--center img { max-width: 280px; }
}

/* =========================================================================
   PARTNER WITH US band
   ========================================================================= */
.partner { padding: 70px 0; }
.partner-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, #0a1018, #070809);
}
.partner-media {
  position: relative;
  min-height: 300px;
  background:
    radial-gradient(90% 70% at 60% 20%, rgba(224,169,60,0.32), transparent 60%),
    radial-gradient(70% 80% at 30% 90%, rgba(168,118,31,0.18), transparent 70%),
    linear-gradient(135deg, #1a1207, #0a0807);
  display: flex; align-items: center; justify-content: center;
}
.partner-media i { font-size: 64px; color: var(--gold); opacity: 0.55; }
.partner-body {
  padding: 50px clamp(34px, 4vw, 60px);
  display: flex; flex-direction: column; justify-content: center;
}
.partner-body h2 {
  font-family: var(--font-cinema);
  text-transform: uppercase;
  color: var(--gold-bright);
  letter-spacing: 0.06em;
  font-size: clamp(26px, 3vw, 38px);
}
.partner-body p { color: var(--text-muted); margin: 16px 0 28px; max-width: 42ch; }
.partner-audience {
  display: flex; flex-wrap: wrap; gap: 28px 40px; margin-top: 30px;
}
.partner-audience div { text-align: center; }
.partner-audience i { font-size: 26px; color: var(--gold); display: block; margin-bottom: 10px; }
.partner-audience span {
  font-family: var(--font-cinema);
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 12px; color: var(--text);
}
@media (max-width: 820px) {
  .partner-card { grid-template-columns: 1fr; }
  .partner-media { min-height: 180px; }
}

/* =========================================================================
   LICENSE / REGISTER FORM
   ========================================================================= */
.lic-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.lic-head .kicker { display: inline-block; margin-bottom: 16px; }
.lic-head h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.lic-head h1 em { color: var(--gold-bright); }
.lic-head p { color: var(--text-muted); font-size: 19px; margin-top: 18px; }

.reg-form {
  max-width: 880px; margin: 0 auto;
  padding: clamp(30px, 4vw, 52px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 22px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.field { position: relative; }
.field input, .field textarea {
  width: 100%;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 20px 16px 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  transition: border-color 0.2s ease;
}
.field textarea { padding-top: 22px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field label {
  position: absolute; left: 16px; top: 15px;
  color: var(--text-faint); font-size: 15px;
  pointer-events: none; transition: all 0.18s ease;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  top: 6px; font-size: 11px; color: var(--gold); letter-spacing: 0.04em;
}
.field--full { margin-bottom: 22px; }

.fieldset { border: 0; margin-bottom: 26px; }
.fieldset legend {
  font-family: var(--font-cinema);
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gold); font-size: 12px; margin-bottom: 14px;
}
.check-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
@media (max-width: 700px) { .check-grid { grid-template-columns: repeat(2, 1fr); } }
.check { display: flex; align-items: center; gap: 9px; cursor: pointer; padding: 11px 13px;
  border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: 14px; color: var(--text-muted);
  transition: all 0.18s ease; }
.check:hover { border-color: var(--line-strong); color: var(--text); }
.check input { accent-color: var(--gold); width: 15px; height: 15px; }
.check input:checked ~ span { color: var(--gold-bright); }

.form-actions { text-align: center; margin-top: 8px; }
.form-actions .btn { justify-content: center; }
.form-note { color: var(--text-faint); font-size: 13px; margin-top: 16px; }

.reg-success { text-align: center; padding: 60px 30px; }
.reg-success .icon { font-size: 56px; color: var(--gold-bright); margin-bottom: 20px; }
.reg-success h3 { font-family: var(--font-display); font-size: 30px; margin-bottom: 10px; }
.reg-success p { color: var(--text-muted); }

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.contact-lead h1 {
  font-family: var(--font-display);
  font-weight: 400; font-size: clamp(36px, 5vw, 60px); line-height: 1.04; letter-spacing: -0.02em;
}
.contact-lead h1 em { color: var(--gold-bright); }
.contact-lead p { color: var(--text-muted); font-size: 18px; margin-top: 18px; max-width: 38ch; }
.contact-rows { display: flex; flex-direction: column; gap: 4px; }
.crow {
  display: flex; align-items: center; gap: 20px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s ease;
}
.crow + .crow { margin-top: 14px; }
a.crow:hover { border-color: var(--line-strong); }
.crow > i { font-size: 22px; color: var(--gold); width: 26px; text-align: center; }
.crow .clabel { font-family: var(--font-cinema); text-transform: uppercase; letter-spacing: 0.1em; font-size: 11px; color: var(--text-faint); display: block; }
.crow .cval { color: var(--text); font-size: 17px; }
.contact-socials { display: flex; gap: 16px; margin-top: 4px; }
.contact-socials a { font-size: 20px; color: var(--text-muted); transition: color 0.2s ease; }
.contact-socials a:hover { color: var(--gold-bright); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   STORYWORLD DETAIL PAGES
   ========================================================================= */
.detail-hero {
  position: relative;
  min-height: 70vh;
  display: flex; align-items: flex-end;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.detail-hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.detail-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,8,7,0.35) 0%, rgba(10,8,7,0.2) 40%, rgba(10,8,7,0.97) 100%),
              linear-gradient(90deg, rgba(10,8,7,0.7), transparent 60%);
}
.detail-hero-inner { position: relative; z-index: 2; padding: 0 0 64px; width: 100%; }
.detail-hero .kicker { display: inline-block; margin-bottom: 16px; }
.detail-hero h1 {
  font-family: var(--font-cinema);
  font-weight: 700; text-transform: uppercase;
  color: var(--gold-bright);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.02; letter-spacing: 0.03em;
  text-shadow: 0 6px 36px rgba(0,0,0,0.7);
}
.detail-hero .tagline {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--text);
  font-size: clamp(20px, 2.4vw, 28px);
  margin-top: 16px;
}

.detail-meta {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin: 0 0 0;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.detail-meta .chip {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 18px; font-size: 13px; color: var(--text-muted);
}
.detail-meta .chip .ck { font-family: var(--font-cinema); text-transform: uppercase; letter-spacing: 0.08em; font-size: 10px; color: var(--gold); }

.detail-body { display: grid; grid-template-columns: 1.4fr 0.85fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.detail-section + .detail-section { margin-top: 44px; }
.detail-section h2 {
  font-family: var(--font-cinema);
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gold-bright); font-size: 16px; margin-bottom: 18px;
  display: flex; align-items: center; gap: 14px;
}
.detail-section h2::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, var(--line-strong), transparent); }
.detail-section p { color: var(--text-muted); font-size: 18px; line-height: 1.78; }
.detail-section p + p { margin-top: 18px; }

.detail-aside { position: sticky; top: calc(var(--nav-h) + 28px); }
.detail-aside .framed { padding: 30px 28px; }
.detail-aside h3 { font-family: var(--font-display); font-style: italic; color: var(--gold-bright); font-size: 24px; margin-bottom: 8px; }
.detail-aside p { color: var(--text-muted); font-size: 15px; margin-bottom: 20px; }
.detail-aside .btn { width: 100%; justify-content: center; }
.detail-aside .sdu-flag { margin-top: 20px; font-size: 13px; color: var(--text-faint); text-align: center; }
.detail-aside .sdu-flag b { color: var(--gold); }
@media (max-width: 860px) { .detail-body { grid-template-columns: 1fr; } .detail-aside { position: static; } }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { border-top: 1px solid var(--line); padding: 56px 0 36px; background: var(--bg-2); }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 24px; }
.footer-tag { color: var(--text-muted); max-width: 44ch; font-size: 15px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 4px 0; margin: 32px 0; }
.footer-nav a {
  font-family: var(--font-cinema); text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 12px; color: var(--text-muted); padding: 6px 18px;
}
.footer-nav a:first-child { padding-left: 0; }
.footer-nav a + a { border-left: 1px solid var(--line-soft); }
.footer-nav a:hover { color: var(--gold-bright); }
.footer-divider { height: 1px; background: var(--line); margin: 28px 0; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; color: var(--text-faint); font-size: 13px; }

/* =========================================================================
   REVEAL ANIMATION
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
