/* ============================================
   KYNARI — Ghost Theme
   "Crafted with obsession for those who see deeper."
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ============ TOKENS ============ */
:root {
  --bg:        #080808;
  --surface-1: #0D0D0F;
  --surface-2: #111115;
  --surface-3: #16161C;
  --gold:      #B8986A;
  --gold-dim:  #8a6e48;
  --lila:      #A78BFA;
  --white:     #F0EDE8;
  --grey:      #6B6B7A;
  --grey-light:#A0A0B0;

  --font-display: 'Cinzel', serif;
  --font-body:    'Cormorant Garamond', serif;
  --font-ui:      'DM Sans', sans-serif;

  --nav-h: 72px;
  --max-w: 1200px;
  --radius: 2px;

  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

img { display: block; width: 100%; height: auto; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}

.label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============ LAYOUT ============ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ NAVBAR ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(184, 152, 106, 0.12);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav__logo-mark {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--gold);
  transition: all 0.3s var(--ease);
}

.nav__logo:hover .nav__logo-mark {
  background: var(--gold);
  color: var(--bg);
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.25em;
  color: var(--white);
}

.nav__logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
}

.nav__link {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: color 0.2s var(--ease);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--lila);
  transform: scaleX(0);
  transition: transform 0.2s var(--ease);
}

.nav__link:hover {
  color: var(--lila);
}
.nav__link:hover::after {
  transform: scaleX(1);
}

.nav__legacy {
  margin-left: auto;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px 20px;
  transition: all 0.2s var(--ease);
}

.nav__legacy:hover {
  background: var(--gold);
  color: var(--bg);
}

.nav__search {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--grey-light);
  transition: color 0.2s;
  padding: 4px;
}
.nav__search:hover { color: var(--gold); }
.nav__search svg { width: 18px; height: 18px; }

/* ============ HERO ============ */
.hero {
  min-height: 80vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) 32px 60px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, #0e0e1f 0%, #080808 70%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 50% 30%, rgba(167,139,250,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__logo-mark {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
  margin: 0 auto 40px;
  animation: fadeUp 1s var(--ease) both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--white);
  margin-bottom: 28px;
  animation: fadeUp 1s 0.15s var(--ease) both;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 300;
  color: var(--grey-light);
  margin-bottom: 12px;
  animation: fadeUp 1s 0.3s var(--ease) both;
}

.hero__tagline {
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--grey);
  text-transform: uppercase;
  animation: fadeUp 1s 0.45s var(--ease) both;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  animation: fadeUp 1s 0.6s var(--ease) both;
}

.btn {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: none;
}

.btn--gold {
  background: var(--gold);
  color: var(--bg);
}
.btn--gold:hover { background: #caa978; }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(240,237,232,0.3);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============ SECTION HEADERS ============ */
.section-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 36px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(184,152,106,0.2);
}

.section-title {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--gold);
}

/* ============ CAROUSEL ============ */
.featured {
  padding: 80px 0;
  width: 100%;
  overflow: hidden;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.carousel-fade {
  position: absolute;
  top: 0; bottom: 20px;
  width: 80px;
  pointer-events: none;
  z-index: 2;
}
.carousel-fade--left {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.carousel-fade--right {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 16px 60px 32px;
  cursor: grab;
  box-sizing: border-box;
  width: 100%;
}

.carousel-track:active { cursor: grabbing; }
.carousel-track::-webkit-scrollbar { display: none; }

.carousel-card {
  position: relative;
  flex: 0 0 300px;
  height: 520px;
  overflow: hidden;
  background: var(--surface-2);
  cursor: pointer;
  border-radius: 3px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.carousel-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(184,152,106,0.2);
}

.carousel-card__image {
  position: absolute;
  inset: 0;
}

.carousel-card__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.carousel-card:hover .carousel-card__image img {
  transform: scale(1.08);
}

.carousel-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.98) 0%, rgba(8,8,8,0.5) 40%, rgba(8,8,8,0.1) 100%);
  transition: background 0.4s;
}

.carousel-card:hover .carousel-card__overlay {
  background: linear-gradient(to top, rgba(8,8,8,0.98) 0%, rgba(8,8,8,0.6) 50%, rgba(167,139,250,0.08) 100%);
}

.carousel-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 24px;
  transform: translateY(4px);
  transition: transform 0.4s var(--ease);
}

.carousel-card:hover .carousel-card__body {
  transform: translateY(0);
}

.carousel-card__cat {
  display: block;
  margin-bottom: 12px;
}

.carousel-card__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.carousel-card:hover .carousel-card__title { color: var(--gold); }

.carousel-card__meta {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s var(--ease) 0.05s;
}

.carousel-card:hover .carousel-card__meta {
  opacity: 1;
  transform: translateY(0);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(8,8,8,0.85);
  border: 1px solid rgba(184,152,106,0.4);
  color: var(--gold);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  backdrop-filter: blur(8px);
}

.carousel-btn:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn--prev { left: 8px; }
.carousel-btn--next { right: 8px; }

/* ============ FEATURED ============ */
.featured {
  padding: 100px 0;
}

.featured__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.article-card {
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
  cursor: pointer;
  group: true;
}

.article-card__image {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.article-card__image img {
  height: 100%;
  transition: transform 0.6s var(--ease);
}

.article-card:hover .article-card__image img {
  transform: scale(1.05);
}

.article-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.4) 50%, transparent 100%);
}

.article-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
}

.article-card__cat {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.article-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.3;
}

.article-card__meta {
  margin-top: 12px;
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 0.1em;
}

/* ============ REALMS ============ */
.realms {
  padding: 100px 0;
  background: var(--surface-1);
}

.realms__header {
  text-align: center;
  margin-bottom: 64px;
}

.realms__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 52px);
  letter-spacing: 0.2em;
  background: linear-gradient(135deg, var(--gold) 0%, var(--lila) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.realms__sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--grey-light);
  font-style: italic;
}

.realms__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.realm-card {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  cursor: pointer;
}

.realm-card__bg {
  position: absolute;
  inset: 0;
  background: var(--surface-3);
  transition: transform 0.5s var(--ease);
}

.realm-card__bg img {
  height: 100%;
  opacity: 0.7;
  transition: opacity 0.4s, transform 0.5s var(--ease);
}

.realm-card:hover .realm-card__bg img {
  opacity: 0.9;
  transform: scale(1.06);
}

.realm-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.2) 60%, transparent 100%);
  transition: background 0.4s;
}

.realm-card:hover .realm-card__overlay {
  background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.4) 60%, rgba(167,139,250,0.08) 100%);
}

.realm-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
  text-align: center;
}

.realm-card__name {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--white);
  margin-bottom: 8px;
}

.realm-card__desc {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--grey-light);
  line-height: 1.5;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s var(--ease);
}

.realm-card:hover .realm-card__desc {
  opacity: 1;
  transform: translateY(0);
}

/* ============ LATEST ARTICLES ============ */
.latest {
  padding: 100px 0;
}

.latest__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.latest__hero-card {
  position: relative;
}

.latest__hero-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 24px;
}

.latest__hero-image img {
  height: 100%;
  transition: transform 0.6s var(--ease);
}

.latest__hero-card:hover .latest__hero-image img {
  transform: scale(1.04);
}

.latest__hero-cat { margin-bottom: 12px; }

.latest__hero-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 26px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
  transition: color 0.2s;
}

.latest__hero-card:hover .latest__hero-title { color: var(--gold); }

.latest__hero-excerpt {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--grey-light);
  line-height: 1.7;
}

.latest__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.list-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
  cursor: pointer;
}

.list-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }

.list-item:hover { background: rgba(184,152,106,0.04); }

.list-item__image {
  aspect-ratio: 1;
  overflow: hidden;
  flex-shrink: 0;
}

.list-item__image img { height: 100%; }

.list-item__body { padding: 2px 0; }

.list-item__cat { margin-bottom: 8px; }

.list-item__title {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.35;
  transition: color 0.2s;
}

.list-item:hover .list-item__title { color: var(--gold); }

/* ============ KYNARI LEGACY ============ */
.legacy {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  text-align: center;
}

.legacy__bg {
  position: absolute;
  inset: 0;
}

.legacy__bg img {
  height: 100%;
  opacity: 0.25;
}

.legacy__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--bg) 0%, rgba(8,8,8,0.5) 40%, rgba(8,8,8,0.5) 60%, var(--bg) 100%);
}

.legacy__content {
  position: relative;
  z-index: 1;
}

.legacy__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  letter-spacing: 0.25em;
  color: var(--white);
  margin-bottom: 20px;
}

.legacy__sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--grey-light);
  max-width: 520px;
  margin: 0 auto 40px;
  font-style: italic;
}

/* ============ ARTICLE PAGE ============ */
.article-header {
  padding: calc(var(--nav-h) + 80px) 0 60px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.article-header__cat { margin-bottom: 20px; }

.article-header__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}

.article-header__subtitle {
  font-family: var(--font-body);
  font-size: 22px;
  color: var(--grey-light);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 32px;
}

.article-header__meta {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.article-header__meta span { color: var(--gold); }

.article-feature-image {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  margin-bottom: 80px;
}

.article-feature-image img {
  height: 600px;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px 120px;
}

.article-body p {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.8;
  color: var(--grey-light);
  margin-bottom: 28px;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--white);
  margin: 56px 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(184,152,106,0.2);
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin: 40px 0 16px;
}

.article-body strong { color: var(--white); font-weight: 600; }

.article-body em { font-style: italic; color: var(--white); }

.article-body blockquote {
  border-left: 2px solid var(--gold);
  padding: 8px 0 8px 28px;
  margin: 40px 0;
  font-size: 22px;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
}

.article-body a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--lila); }

/* ============ KOENIG CARD WIDTH CLASSES (required by gscan) ============ */
.kg-width-wide {
  width: 100%;
  max-width: 1040px;
  margin-left: 50%;
  transform: translateX(-50%);
}

.kg-width-full {
  width: 100vw;
  max-width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.kg-width-full img,
.kg-width-wide img {
  width: 100%;
  height: auto;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--surface-1);
  border-top: 1px solid rgba(184,152,106,0.12);
  padding: 64px 0 40px;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.3em;
  color: var(--white);
  margin-bottom: 12px;
}

.footer__tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--grey);
  font-style: italic;
}

.footer__col-title {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--grey-light);
  transition: color 0.2s;
}

.footer__link:hover { color: var(--white); }

.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px 32px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--grey);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .featured__grid { grid-template-columns: 1fr 1fr; }
  .realms__grid { grid-template-columns: repeat(3, 1fr); }
  .latest__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .nav__links { display: none; }
  .featured__grid { grid-template-columns: 1fr; }
  .realms__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; }
}

/* ============ TAG COLORS ============ */
.tag--cinema  { color: #E8C4A0; }
.tag--anime   { color: #A78BFA; }
.tag--games   { color: #6EE7B7; }
.tag--culture { color: #FCD34D; }
.tag--comic   { color: #F87171; }
.tag--legacy  { color: var(--gold); }

/* ============ TAG HERO LOGO SWAP (no custom helper needed) ============ */
.tag-hero-logo--legacy { display: none; }
.tag-legacy .tag-hero-logo--legacy { display: block; }
.tag-legacy .tag-hero-logo--default { display: none; }
