/* YOURI MAGICIAN 公式サイト 共通スタイル */

:root {
  --color-black: #0b0b0c;
  --color-white: #ffffff;
  --color-gray: #6b6b6b;
  --color-gray-light: #e5e5e5;
  --color-gray-dark: #1c1c1c;
  --color-gold: #cf9a2e;
  --color-gold-light: #e8bd4e;
  --color-gold-pale: #e8bd4e80;
  --font-base: "Hiragino Kaku Gothic ProN", "Helvetica Neue", Arial, sans-serif;
  --font-en: "Zilla Slab Highlight", "Noto Serif JP", serif;
  --max-width: 1100px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
}

@media (max-width: 900px) {
  :root {
    --header-h: 16px;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-black);
  background-color: var(--color-white);
  line-height: 1.8;
  padding-top: var(--header-h);
}

body.home {
  padding-top: 0;
}

a {
  color: inherit;
}

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

/* ===== Scroll reveal ===== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-break {
  display: none;
}

@media (max-width: 900px) {
  .mobile-break {
    display: inline;
  }
}

/* ===== Header / Nav ===== */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-gray-light);
  flex-wrap: wrap;
  gap: 0.75rem;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.header-ghost {
  background-color: transparent;
  border-bottom-color: transparent;
}

.header-ghost nav a {
  color: var(--color-white);
}

.header-ghost.is-scrolled {
  background-color: var(--color-black);
  border-bottom-color: transparent;
}

@media (max-width: 900px) {
  .header-ghost.is-scrolled {
    background-color: transparent;
  }
}

.nav-toggle {
  display: none;
}

header .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

header .logo img {
  height: 30px;
  width: auto;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  padding-bottom: 0.2rem;
}

.fan-suit {
  display: none;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: right 0.3s var(--ease);
}

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

nav a:hover::after {
  right: 0;
}

nav .fan-card-cta a {
  padding: 0.5rem 1.3rem;
  background-color: var(--color-black);
  color: var(--color-gold-light);
  border-radius: 999px;
}

nav .fan-card-cta a::after {
  content: none;
}

nav .fan-card-cta a:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
}

@media (max-width: 900px) {
  header {
    padding: 1.4rem 1.25rem;
    justify-content: space-between;
    text-align: left;
    border-bottom-color: transparent;
  }

  /* inner pages: no logo on mobile, so the header bar itself can shrink
     down to almost nothing instead of leaving empty space above the content */
  header:not(.header-ghost) {
    padding: 0.5rem 1.25rem;
  }

  header .logo {
    display: none;
  }

  .nav-toggle {
    position: fixed;
    top: 0.9rem;
    right: 1.25rem;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  .nav-toggle-bundle {
    position: relative;
    display: block;
    width: 30px;
    height: 42px;
    transform: rotate(12deg);
    filter: drop-shadow(0 3px 8px rgba(11, 11, 12, 0.45));
    transition: transform 0.35s var(--ease);
  }

  .nav-toggle-card,
  .nav-toggle-card-back {
    position: absolute;
    inset: 0;
    background: var(--color-white);
    border: 1.5px solid var(--color-black);
    border-radius: 4px;
  }

  .nav-toggle-card-back {
    box-shadow: 1px 1px 0 rgba(11, 11, 12, 0.12);
  }

  .nav-toggle-card-back-1 {
    transform: rotate(-7deg);
  }

  .nav-toggle-card-back-2 {
    transform: rotate(-14deg);
  }

  .nav-toggle-card {
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 3px 0 rgba(11, 11, 12, 0.15);
  }

  .nav-toggle-suit {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--color-gold);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bundle {
    transform: rotate(-6deg) scale(1.08);
  }

  #site-nav {
    position: fixed;
    top: 5.35rem;
    right: 1.25rem;
    z-index: 55;
  }

  nav .card-fan {
    display: flex;
    gap: 0.35rem;
    list-style: none;
    margin: 0.5rem 0 0;
    padding: 0.9rem 0.75rem 1.25rem;
    background: var(--color-white);
    border-radius: 14px;
    box-shadow: 0 16px 32px rgba(11, 11, 12, 0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), visibility 0s linear 0.3s;
  }

  nav.is-open .card-fan {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.3s var(--ease), visibility 0s linear 0s;
  }

  nav .card-fan li {
    width: 64px;
    height: 90px;
    opacity: 0;
    transform: translateY(-18px) scale(0.85);
    pointer-events: none;
    transition: transform 0.45s var(--ease), opacity 0.3s var(--ease);
  }

  nav .card-fan li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    border: 1.5px solid var(--color-gold);
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(11, 11, 12, 0.3);
    text-decoration: none;
    color: var(--color-black);
    font-size: 0.6rem;
    letter-spacing: 0.02em;
    text-align: center;
    line-height: 1.25;
  }

  nav .card-fan .fan-suit {
    display: block;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--color-black);
  }

  nav .card-fan .fan-suit-red {
    color: var(--color-gold);
  }

  nav .card-fan .fan-card-cta a {
    background: var(--color-black);
  }

  nav .card-fan .fan-card-cta .fan-suit {
    color: var(--color-gold-light);
  }

  nav .card-fan .fan-card-cta .fan-label {
    color: var(--color-gold-light);
    font-weight: bold;
  }

  nav.is-open .card-fan li {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  nav.is-open .card-fan li:nth-child(1) {
    transition-delay: 0s;
  }

  nav.is-open .card-fan li:nth-child(2) {
    transition-delay: 0.06s;
  }

  nav.is-open .card-fan li:nth-child(3) {
    transition-delay: 0.12s;
  }

  nav.is-open .card-fan li:nth-child(4) {
    transition-delay: 0.18s;
  }

  nav.is-open .card-fan li:nth-child(5) {
    transition-delay: 0.24s;
  }

  /* ghost header (top page only): enlarged, more visible toggle once the page is scrolled */
  .header-ghost.is-scrolled .nav-toggle {
    top: 2.6rem;
  }

  .header-ghost.is-scrolled .nav-toggle-bundle {
    width: 38px;
    height: 53px;
    filter: drop-shadow(0 6px 12px rgba(11, 11, 12, 0.5));
  }

  .header-ghost.is-scrolled .nav-toggle-suit {
    font-size: 1.85rem;
  }

  .header-ghost.is-scrolled .nav-toggle-card {
    box-shadow: 3px 5px 0 rgba(11, 11, 12, 0.2);
  }

  .header-ghost.is-scrolled nav {
    top: 6.6rem;
  }

  /* inner pages: no logo/hero, so line the card toggle up with the breadcrumb row below */
  header:not(.header-ghost) .nav-toggle {
    top: calc(var(--header-h) + 0.4rem);
  }

  header:not(.header-ghost) #site-nav {
    top: calc(var(--header-h) + 4.85rem);
  }
}

/* ===== Layout helpers ===== */

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem;
}

main.wide {
  max-width: 1280px;
}

.section-title {
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  text-align: center;
}

.section-heading {
  font-family: var(--font-en);
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  text-align: center;
  width: fit-content;
  margin: 0 auto 2.5rem;
  position: relative;
  padding-bottom: 1.2rem;
}

@media (max-width: 900px) {
  .section-heading {
    font-size: 1.45rem;
  }
}

.section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--color-gold) 35%,
    var(--color-gold-light) 50%,
    var(--color-gold) 65%,
    transparent 100%
  );
  background-size: 250% 100%;
  background-position: 200% 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 1s var(--ease) 0.15s;
}

.section-heading.is-visible::after {
  transform: scaleX(1);
  animation: gold-shine 1.8s ease-out 0.5s;
}

@keyframes gold-shine {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -100% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-heading::after {
    transform: scaleX(1);
    background-position: 50% 0;
    transition: none;
    animation: none;
  }
}

.breadcrumb {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 2rem 0;
  font-size: 0.8rem;
  color: var(--color-gray);
}

.breadcrumb a {
  text-decoration: none;
  color: var(--color-gray);
}

@media (max-width: 900px) {
  .breadcrumb + main {
    padding-top: 2rem;
  }
}

.page-lead {
  text-align: center;
  color: var(--color-gray);
  max-width: 640px;
  margin: 0 auto 3rem;
}

/* ===== Hero (single full-bleed photo, text overlaid directly) ===== */

.hero {
  position: relative;
  min-height: 92vh;
  background-color: var(--color-black);
  color: var(--color-white);
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-photo .hero-main-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 6%;
  transition: transform 0.8s var(--ease);
}

.hero-photo .hero-main-photo.mobile-only {
  display: none;
}

.hero:hover .hero-main-photo {
  transform: scale(1.05);
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

@media (min-width: 901px) {
  .hero-photo::before {
    display: none;
  }
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(11, 11, 12, 0.8) 0%,
    rgba(11, 11, 12, 0.25) 22%,
    rgba(11, 11, 12, 0) 42%
  );
}

.hero-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 58%;
  padding: 4rem clamp(2rem, 6vw, 5.5rem);
}

.hero-brand,
.hero-details {
  width: 100%;
}

.hero-badges {
  position: absolute;
  z-index: 2;
  right: 5%;
  bottom: 9%;
  width: 38%;
  min-width: 300px;
  opacity: 0;
  animation: fade-up 0.9s var(--ease) 1.05s forwards;
}

@media (max-width: 900px) {
  .hero {
    min-height: 0;
    aspect-ratio: 1080 / 1920;
  }
  .hero-photo .hero-main-photo.desktop-only {
    display: none;
  }
  .hero-photo .hero-main-photo.mobile-only {
    display: block;
  }
  .hero-photo::before {
    background: linear-gradient(
      to bottom,
      rgba(11, 11, 12, 0) 0%,
      rgba(11, 11, 12, 0) 50%,
      rgba(11, 11, 12, 0.45) 65%,
      rgba(11, 11, 12, 0.82) 85%
    );
  }
  .hero-text {
    display: block;
    max-width: none;
    padding: 0;
  }
  .hero-brand {
    position: absolute;
    left: 7%;
    top: 34%;
    width: auto;
  }
  .hero-brand .hero-eyebrow,
  .hero-brand .hero-name {
    text-shadow:
      0 0 8px rgba(0, 0, 0, 0.92),
      0 0 16px rgba(0, 0, 0, 0.85),
      0 3px 6px rgba(0, 0, 0, 0.95),
      0 5px 18px rgba(0, 0, 0, 0.85);
  }
  .hero-brand .hero-eyebrow {
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
  }
  .hero-brand .hero-name {
    font-size: 2.3rem;
    margin-bottom: 0.5rem;
  }
  .hero-details {
    position: absolute;
    left: 7%;
    right: 7%;
    top: 54.5%;
    width: auto;
  }
  .hero-details .hero-copy {
    font-size: 2.25rem;
    line-height: 1.3;
    margin-bottom: 0.7rem;
  }
  .hero-details .hero-sub {
    font-size: 0.74rem;
    line-height: 1.65;
    margin-bottom: 0.75rem;
  }
  .hero-details .hero-actions {
    display: none;
  }
  .hero-badges {
    right: auto;
    bottom: auto;
    left: 50%;
    top: 80%;
    width: 78%;
    min-width: 0;
    animation-name: fade-up-center;
  }
}

.hero-eyebrow {
  font-family: var(--font-en);
  letter-spacing: 0.22em;
  font-size: 1.05rem;
  color: var(--color-gray-light);
  margin: 0 0 0.75rem;
  opacity: 0;
  animation: fade-up 0.9s var(--ease) 0.15s forwards;
}

.hero-name {
  font-family: var(--font-en);
  font-size: clamp(3rem, 6.2vw, 5rem);
  letter-spacing: 0.08em;
  margin: 0 0 2rem;
  opacity: 0;
  animation: fade-up 0.9s var(--ease) 0.3s forwards;
}

.hero-copy {
  font-family: var(--font-en);
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 1.5rem;
  opacity: 0;
  animation: fade-up 0.9s var(--ease) 0.45s forwards;
}

.hero-copy .accent {
  color: var(--color-gold-light);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--color-gray-light);
  margin: 0 0 2.5rem;
  max-width: 32em;
  opacity: 0;
  animation: fade-up 0.9s var(--ease) 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.9s var(--ease) 0.75s forwards;
}

@media (min-width: 901px) {
  .hero-actions .button {
    padding: 1.05rem 2.6rem;
    font-size: 0.95rem;
  }
}

.awards-strip {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.75rem;
  opacity: 0;
  animation: fade-up 0.9s var(--ease) 0.9s forwards;
}

.awards-strip .award {
  font-size: 0.75rem;
  color: var(--color-gray-light);
  border-left: 1px solid var(--color-gold-light);
  padding-left: 0.75rem;
  line-height: 1.5;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up-center {
  from {
    opacity: 0;
    transform: translate(-50%, 16px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow,
  .hero-name,
  .hero-copy,
  .hero-sub,
  .hero-actions,
  .awards-strip {
    animation: none;
    opacity: 1;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== Buttons ===== */

.button {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border: 1px solid currentColor;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.button-primary {
  background-color: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}

.button-primary:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
}

.button-outline {
  background: transparent;
  color: inherit;
}

.button-outline:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
}

.button-gold {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  border: 1px solid var(--color-gold-light);
  color: var(--color-black);
  font-weight: 700;
  letter-spacing: 0.15em;
  box-shadow: 0 10px 24px rgba(207, 154, 46, 0.45);
}

.button-gold:hover {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  border-color: var(--color-gold);
  box-shadow: 0 12px 28px rgba(207, 154, 46, 0.6);
}

.hero-cta-mobile {
  display: none;
}

@media (max-width: 900px) {
  .hero-cta-mobile {
    display: block;
    background-color: var(--color-black);
    text-align: center;
    padding: 0.5rem 1.25rem 2rem;
  }
}

/* dark-on-light contexts (outside .hero) */
main .button-outline,
main .button-primary.on-light {
  color: var(--color-black);
  border-color: var(--color-black);
}

main .button-primary.on-light {
  background-color: var(--color-black);
  color: var(--color-white);
}

main .button-outline:hover {
  color: var(--color-white);
}

/* ===== Generic photo/content sections ===== */

.section-dark {
  background-color: var(--color-black);
  color: var(--color-white);
}

.section-dark .section-title,
.section-dark .page-lead {
  color: var(--color-gray-light);
}

.profile-summary {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr;
  gap: 3rem;
  align-items: stretch;
}

.profile-summary img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  border: 3px solid var(--color-gold);
  box-shadow: 0 14px 32px rgba(11, 11, 12, 0.22);
}

.profile-summary p {
  margin: 0 0 1.25rem;
}

.profile-summary .profile-name {
  font-family: var(--font-en);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  margin: 0 0 1.25rem;
}

.quote {
  font-size: 1.05rem;
  color: var(--color-gold);
  border-left: 2px solid var(--color-gold);
  padding-left: 1rem;
}

@media (max-width: 800px) {
  .profile-summary {
    grid-template-columns: 1fr;
  }

  .profile-summary img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }
}

/* ===== Celebrity slideshow (index) ===== */

.celebrity-media-glow {
  position: relative;
  overflow: hidden;
  background-color: var(--color-black);
}

.celebrity-media-glow > .celebrity-section,
.celebrity-media-glow > .section-dark {
  position: relative;
  z-index: 1;
  background-color: transparent;
}

.celebrity-section {
  padding: 4.5rem 0;
}

.celebrity-media-glow::before {
  content: "";
  position: absolute;
  width: 42%;
  height: 34%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(232, 189, 78, 0.24) 40%,
    rgba(255, 255, 255, 0.16) 50%,
    rgba(232, 189, 78, 0.24) 60%,
    transparent 100%
  );
  filter: blur(55px);
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  animation: light-sweep 18s linear infinite;
}

.celebrity-section .section-title,
.celebrity-section .section-heading {
  color: var(--color-white);
}

@keyframes light-sweep {
  0%   { left: -10%; top: 2%;  opacity: 0; }
  4%   { left: -3%;  top: 2%;  opacity: 1; }
  22%  { left: 50%;  top: 6%; }
  40%  { left: 26%;  top: 36%; }
  58%  { left: 2%;   top: 64%; }
  76%  { left: 32%;  top: 78%; }
  94%  { left: 62%;  top: 84%; opacity: 1; }
  100% { left: 82%;  top: 86%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .celebrity-media-glow::before {
    animation: none;
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .celebrity-section {
    padding: 2rem 0;
  }
  .celebrity-section main {
    padding-top: 1.5rem;
    padding-bottom: 1rem;
  }
  .celebrity-section .section-heading {
    margin-bottom: 1.2rem;
  }
  .celebrity-section + .section-dark main {
    padding-top: 1.5rem;
  }
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--color-black);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 42s linear infinite;
}

.marquee-track img {
  height: 253px;
  width: auto;
  flex-shrink: 0;
  margin-right: 0.5rem;
  object-fit: cover;
  filter: grayscale(25%);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.marquee-mobile-rows {
  display: none;
}

@media (max-width: 800px) {
  .marquee-desktop {
    display: none;
  }
  .marquee-mobile-rows {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .marquee-mobile-rows .marquee-track img {
    height: 130px;
  }
  .marquee-mobile-rows .marquee-track {
    animation-duration: 34s;
  }
  .marquee-mobile-rows .marquee-track-reverse {
    animation-direction: reverse;
  }
}

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

/* ===== TV appearance ===== */

.tv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: center;
  gap: 2.5rem 2rem;
  margin-bottom: 3rem;
}

.tv-grid img {
  height: 142px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.92;
  transition: transform 0.35s var(--ease);
}

.tv-grid img:hover {
  transform: scale(1.08);
}

@media (max-width: 800px) {
  .tv-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 1.5rem;
  }
  .tv-grid img {
    height: 94px;
  }
}

.tv-history {
  margin-top: 1rem;
}

.tv-history summary {
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 2rem;
  border: 1px solid var(--color-gray);
  font-family: var(--font-en);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--color-white);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.tv-history summary::-webkit-details-marker {
  display: none;
}

.tv-history summary::after {
  content: "+";
  font-size: 1.1rem;
  line-height: 1;
  color: var(--color-gold-light);
  transition: transform 0.3s var(--ease);
}

.tv-history:hover summary,
.tv-history[open] summary {
  border-color: var(--color-gold);
}

.tv-history[open] summary::after {
  transform: rotate(45deg);
}

.tv-history .tv-list {
  margin-top: 2rem;
  animation: fade-up 0.6s var(--ease);
}

.tv-list {
  columns: 2;
  column-gap: 3rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.tv-list li {
  border-bottom: 1px dotted #333;
  padding: 0.5rem 0;
  break-inside: avoid;
}

.tv-list .station {
  color: var(--color-gray-light);
  opacity: 0.6;
  font-size: 0.8rem;
}

@media (max-width: 640px) {
  .tv-list {
    columns: 1;
  }
}

/* ===== Feature rows (alternating photo / text) ===== */

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 1000px;
  margin: 4rem auto;
}

.feature-row-media {
  border: 3px solid var(--color-gold);
  box-shadow: 0 14px 32px rgba(11, 11, 12, 0.22);
}

.feature-row-media img {
  width: 100%;
  display: block;
}

.feature-row-reverse .feature-row-media {
  order: 2;
}

.feature-row-media.reveal {
  transform: translateX(-32px);
}

.feature-row-reverse .feature-row-media.reveal {
  transform: translateX(32px);
}

.feature-row-text.reveal {
  transform: translateY(20px);
  transition-delay: 0.15s;
}

@media (max-width: 800px) {
  .feature-row-media.reveal,
  .feature-row-reverse .feature-row-media.reveal {
    transform: translateY(20px);
  }
}

.feature-row-text h3 {
  font-family: var(--font-en);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--color-gold);
  margin: 0 0 1rem;
}

.feature-row-text p {
  margin: 0;
  color: var(--color-black);
}

@media (max-width: 800px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin: 3rem auto;
  }

  .feature-row-media,
  .feature-row-reverse .feature-row-media {
    order: 0;
  }

  .feature-row-text {
    order: 1;
  }
}

/* ===== Credits (supervision) ===== */

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

.credit-item {
  margin: 0;
}

.credit-item img {
  width: 100%;
  border: 3px solid var(--color-gold);
  box-shadow: 0 14px 32px rgba(11, 11, 12, 0.22);
}

.achievements-photo {
  border: 3px solid var(--color-gold);
  box-shadow: 0 14px 32px rgba(11, 11, 12, 0.22);
}

.credit-item figcaption {
  margin-top: 0.85rem;
  text-align: center;
}

.credit-item .credit-name {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.credit-item .credit-role {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--color-gold);
}

@media (max-width: 800px) {
  .credit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Plan cards ===== */

.plan-grid {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.plan-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  align-items: center;
}

.plan-row:nth-child(even) {
  grid-template-columns: 1.3fr 1fr;
}

.plan-row:nth-child(even) .plan-row-media {
  order: 2;
}

.plan-row-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.plan-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 3px solid var(--color-gold);
  box-shadow: 0 14px 32px rgba(11, 11, 12, 0.22);
  transition: transform 0.7s var(--ease);
}

.plan-row:hover .plan-row-media img {
  transform: scale(1.06);
}

.plan-row-body h2 {
  font-family: var(--font-en);
  font-size: 1.3rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--color-gold);
  margin: 0 0 1rem;
}

.plan-row-body p {
  font-size: 0.9rem;
  color: var(--color-gray);
  margin: 0 0 0.75rem;
}

@media (max-width: 800px) {
  .plan-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .plan-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .plan-row:nth-child(even) .plan-row-media {
    order: 0;
  }
}

.plan-note {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem;
  background-color: var(--color-black);
  color: var(--color-gray-light);
  font-size: 0.9rem;
}

/* ===== Plan CTA banner (index) ===== */

.plan-cta {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: center;
}

.plan-cta-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.plan-cta-text {
  position: relative;
  z-index: 1;
  margin-left: auto;
  width: 46%;
  padding: 3rem clamp(2rem, 5vw, 4rem);
}

.plan-cta-text .section-title {
  text-align: left;
}

.plan-cta-text .section-heading {
  text-align: left;
  margin: 0 0 1.75rem;
}

.plan-cta-text .page-lead {
  text-align: left;
  margin: 0 0 1.75rem;
  max-width: none;
}

@media (max-width: 900px) {
  .plan-cta {
    flex-direction: column;
    min-height: 0;
  }

  .plan-cta-photo {
    display: none;
  }

  .plan-cta-text {
    width: 100%;
    margin-left: 0;
    padding: 4rem 2rem;
    text-align: center;
  }

  .plan-cta-text .section-title,
  .plan-cta-text .section-heading,
  .plan-cta-text .page-lead {
    text-align: center;
  }

  .plan-cta-text .section-heading {
    margin: 0 auto 1.75rem;
  }

  .plan-cta-text .page-lead {
    margin: 0 auto 1.75rem;
  }
}

/* ===== Placeholder (retained for pages not yet migrated) ===== */

.placeholder {
  padding: 4rem 1rem;
  text-align: center;
  color: var(--color-gray);
  border: 1px dashed var(--color-gray-light);
  border-radius: 4px;
}

/* ===== Contact form ===== */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 640px;
  margin: 0 auto;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.contact-form .required {
  color: var(--color-gold);
  font-size: 0.75rem;
  margin-left: 0.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-base);
  font-size: 1rem;
  padding: 0.75rem;
  border: 1px solid var(--color-gray-light);
  border-radius: 2px;
  background-color: var(--color-white);
  color: var(--color-black);
  transition: border-color 0.2s var(--ease);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.contact-form .hidden-field {
  display: none;
}

.contact-form [hidden] {
  display: none;
}

.contact-file-note {
  margin-top: -1rem;
  font-size: 0.8rem;
  color: var(--color-gray);
}

.contact-privacy-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-gray);
  margin: 0;
}

.contact-privacy-note a {
  color: var(--color-gold);
}

.contact-form button {
  align-self: center;
  margin-top: 1rem;
  cursor: pointer;
  background-color: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.contact-form button:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
}

.contact-note {
  text-align: center;
  color: var(--color-gray);
  font-size: 0.85rem;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.thanks-section {
  text-align: center;
  padding: 5rem 1rem;
}

.thanks-section h1 {
  margin-bottom: 1rem;
  font-family: var(--font-en);
}

.thanks-section p {
  color: var(--color-gray);
  margin-bottom: 2.5rem;
}

/* ===== Achievements list & article ===== */

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

.achievement-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.achievement-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 3px solid var(--color-gold);
  box-shadow: 0 14px 32px rgba(11, 11, 12, 0.22);
  margin-bottom: 1rem;
}

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

.achievement-card:hover .achievement-card-media img {
  transform: scale(1.06);
}

.achievement-card-date {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--color-gold);
  margin-bottom: 0.4rem;
}

.achievement-card-title {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 800px) {
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

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

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(220px, 1fr);
  gap: 4rem;
  align-items: start;
}

.article-aside {
  position: static;
}

.article-aside-card {
  border: 1px solid var(--color-gray-light);
  padding: 1.75rem;
}

.article-aside-title {
  font-family: var(--font-en);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  margin: 0 0 1.25rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--color-gray-light);
}

.article-aside-empty {
  font-size: 0.85rem;
  color: var(--color-gray);
  margin: 0 0 1.75rem;
}

.article-aside-recent {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.aside-recent-item {
  display: flex;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
  padding: 0.85rem;
  border: 1px solid var(--color-gray-light);
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}

.aside-recent-item:hover {
  border-color: var(--color-gold);
  background-color: rgba(207, 154, 46, 0.05);
}

.aside-recent-media {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid var(--color-gold);
}

.aside-recent-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.aside-recent-item:hover .aside-recent-media img {
  transform: scale(1.08);
}

.aside-recent-date {
  font-family: var(--font-en);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: var(--color-gold);
  margin: 0 0 0.3rem;
}

.aside-recent-title {
  font-size: 0.78rem;
  line-height: 1.5;
  margin: 0;
}

.article-aside-contact {
  text-align: center;
}

@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

.article-intro {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

.article-intro-media {
  border: 3px solid var(--color-gold);
  box-shadow: 0 14px 32px rgba(11, 11, 12, 0.22);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.article-intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-intro-text .section-title {
  text-align: left;
}

.article-title {
  font-family: var(--font-en);
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: left;
  margin: 0 0 1rem;
}

.article-meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--color-gray);
  font-size: 0.85rem;
}

.article-meta .article-date {
  font-family: var(--font-en);
  letter-spacing: 0.05em;
}

@media (max-width: 700px) {
  .article-intro {
    grid-template-columns: 1fr;
  }

  .article-intro-media {
    max-width: 220px;
  }
}

.article-lead {
  margin: 0 0 3rem;
  text-align: left;
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid var(--color-gold);
}

.article-lead p {
  margin: 0 0 1rem;
}

.article-body {
  margin: 0;
}

.article-section {
  margin-bottom: 1rem;
}

.article-body h2 {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  font-family: var(--font-en);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--color-gold);
  margin: 3.5rem 0 1.5rem;
}

.article-body h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.6rem;
  height: 1px;
  width: 40px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s var(--ease) 0.25s;
}

.article-section.is-visible h2::after {
  transform: scaleX(1);
}

.article-section:first-child h2 {
  margin-top: 0;
}

.article-h2-mark {
  color: var(--color-gold-light);
  font-size: 0.85em;
  flex-shrink: 0;
}

.article-body h3 {
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--color-black);
  background: linear-gradient(to right, rgba(207, 154, 46, 0.08), transparent);
  border-left: 3px solid var(--color-gold);
  padding: 0.5rem 0.75rem;
  margin: 2rem 0 1rem;
}

.article-body p {
  margin: 0 0 1.1rem;
  color: #2a2a2a;
}

.article-body strong {
  color: var(--color-gold);
  font-weight: 700;
}

.article-infobox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--color-gray-light);
  border: 1px solid var(--color-gray-light);
  margin: 1.75rem 0 2.5rem;
}

.article-infobox div {
  background: var(--color-white);
  padding: 1rem 1.25rem;
}

.article-infobox div:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.article-infobox dt {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  margin: 0 0 0.3rem;
}

.article-infobox dd {
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .article-infobox {
    grid-template-columns: 1fr;
  }
}

.article-pullquote {
  max-width: 620px;
  margin: 3.5rem auto;
  padding: 1.75rem 2.5rem;
  border-top: 1px solid var(--color-gold);
  border-bottom: 1px solid var(--color-gold);
  font-family: var(--font-en);
  font-size: 1.25rem;
  line-height: 1.8;
  text-align: center;
  color: var(--color-gold);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-start;
  margin: 3.5rem 0 0;
}

.article-tags span {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--color-gray);
  border: 1px solid var(--color-gray-light);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}

.article-cta {
  margin: 4rem 0 0;
  padding: 3rem 2rem;
  text-align: center;
  background-color: var(--color-black);
  color: var(--color-white);
}

.article-cta h2 {
  font-family: var(--font-en);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--color-gold-light);
  margin: 0 0 1rem;
}

.article-cta p {
  color: var(--color-gray-light);
  margin: 0 0 1.75rem;
}

.article-back {
  text-align: center;
  margin-top: 2.5rem;
}

.article-intro--text-only {
  grid-template-columns: 1fr;
}

.article-body ul,
.article-body ol {
  margin: 0 0 1.1rem;
  padding-left: 1.4rem;
  color: #2a2a2a;
}

.article-body li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.article-table-wrap {
  overflow-x: auto;
  margin: 1.75rem 0 2.5rem;
}

.article-table-wrap table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.article-table-wrap th,
.article-table-wrap td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--color-gray-light);
  vertical-align: top;
}

.article-table-wrap th {
  background: var(--color-black);
  color: var(--color-gold-light);
  font-weight: 500;
  white-space: nowrap;
}

.article-table-wrap tbody tr {
  transition: background-color 0.3s var(--ease);
}

.article-table-wrap tbody tr:hover {
  background-color: rgba(207, 154, 46, 0.08);
}

.point-box {
  border: 1px solid var(--color-gold);
  background: linear-gradient(to bottom, rgba(207, 154, 46, 0.06), transparent);
  padding: 1.75rem 2rem;
  margin: 2rem 0 2.5rem;
}

.point-box-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-en);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--color-gold);
  margin: 0 0 1.1rem;
}

.point-box-title::before {
  content: "◆";
  font-size: 0.8em;
  color: var(--color-gold-light);
}

.point-box-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.point-box-list li {
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.8;
  color: #2a2a2a;
  margin: 0;
}

.point-box-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05em;
  color: var(--color-gold);
  font-weight: 700;
}

.column-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--color-gray-light);
  padding: 1.75rem;
  transition: border-color 0.3s var(--ease);
}

.column-card:hover {
  border-color: var(--color-gold);
}

.column-card-date {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--color-gold);
  margin: 0 0 0.6rem;
}

.column-card-title {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 0.75rem;
}

.column-card-excerpt {
  font-size: 0.82rem;
  color: var(--color-gray);
  line-height: 1.7;
  margin: 0;
}

/* ===== Legal pages (Privacy / Company) ===== */

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-en);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--color-gold);
  margin: 2.5rem 0 1rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0 0 1rem;
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 1rem;
  padding-left: 1.4rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--color-gold);
}

.legal-updated {
  margin-top: 3rem;
  color: var(--color-gray);
  font-size: 0.85rem;
  text-align: right;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
  text-align: left;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--color-gray-light);
  vertical-align: top;
}

.legal-table th {
  width: 30%;
  color: var(--color-gray);
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .legal-table th {
    width: auto;
    white-space: normal;
  }
}

/* ===== Footer ===== */

footer {
  background-color: var(--color-black);
  color: var(--color-gray-light);
  padding: 1.75rem 2rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo img {
  height: 34px;
  width: auto;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-nav a {
  color: var(--color-gray-light);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  transition: color 0.3s var(--ease);
}

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

.footer-cta {
  padding: 0.55rem 1.4rem;
  font-size: 0.75rem;
}

.footer-legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 1.25rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-legal a {
  color: var(--color-gray-light);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  transition: color 0.3s var(--ease);
}

.footer-legal a:hover {
  color: var(--color-gold);
}

.footer-copyright {
  max-width: var(--max-width);
  margin: 0.75rem auto 0;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--color-gray);
  text-align: center;
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    width: 100%;
    justify-content: space-between;
  }
}
