:root {
  --fg: #111;
  --muted: #6b7280;
  --bg: #f5f5f4;
  --card: #fff;
  --border: #e5e5e4;
  --border-strong: #d4d4d3;
  --accent: #f59e0b;
  --accent-dark: #b45309;
  --ink: #0a0a0a;
  --max-w: 1180px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", "Yu Gothic", "Meiryo", sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  background: var(--ink);
  color: #fff;
  border-bottom: 4px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand {
  color: #fff;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand span {
  color: var(--accent);
  font-weight: 700;
  margin-left: 4px;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.site-nav { display: flex; gap: 22px; }
.site-nav a {
  color: #d4d4d3;
  font-size: 14px;
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.site-nav a:hover {
  color: #fff;
  border-bottom-color: var(--accent);
  text-decoration: none;
}

/* Hero */
.hero {
  position: relative;
  padding: 80px 0 60px;
  text-align: center;
  background:
    radial-gradient(ellipse at center top, rgba(209,26,42,0.18), transparent 60%),
    linear-gradient(180deg, #111 0%, #0a0a0a 100%);
  color: #fff;
  margin-bottom: 16px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.hero h1 {
  font-size: clamp(32px, 6vw, 56px);
  margin: 0 0 16px;
  letter-spacing: 0.04em;
  font-weight: 900;
  text-transform: uppercase;
}
.hero h1 span { color: var(--accent); }
.hero .lead {
  color: #d4d4d3;
  margin: 0 auto;
  max-width: 680px;
  font-size: 16px;
  line-height: 1.8;
}

/* Section head */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 48px 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-strong);
  position: relative;
}
.section-head::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 48px;
  height: 3px;
  background: var(--accent);
}
.section-head h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.section-head a {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.section-head a:hover { color: var(--accent); }

/* Card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  color: var(--fg);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,.1);
  border-color: var(--border-strong);
  text-decoration: none;
}
.card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: #f0f0ef;
  display: block;
}
.event-thumb {
  display: grid;
  min-height: 190px;
  padding: 24px;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(245,158,11,.07), transparent 65%),
    #fafaf9;
  border-bottom: 1px solid var(--border);
}
.event-thumb img {
  width: auto;
  max-width: 100%;
  max-height: 150px;
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
}
.card.no-img {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  color: #fff;
  border-color: #222;
}
.card.no-img:hover {
  border-color: var(--accent);
}
.card.no-img .card-body {
  padding: 20px 18px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.card.no-img .card-body::before {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 10px;
}
.card.no-img h3 { color: #fff; }
.card.no-img time { color: #a1a1a0; }
.card-body { padding: 14px 16px 18px; }
.card-body time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.card-body h3 {
  margin: 6px 0 0;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
  color: inherit;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fighter-card .placeholder {
  width: 100%;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #222, #0a0a0a);
  color: var(--accent);
  font-size: 64px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* News list (year listings) */
.year-block { margin-bottom: 48px; }
.year-block > h2 {
  font-size: 28px;
  margin: 32px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-strong);
  font-weight: 900;
  position: relative;
  letter-spacing: 0.02em;
}
.year-block > h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 64px;
  height: 3px;
  background: var(--accent);
}
.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.news-list li {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color .15s, transform .15s;
}
.news-list li:hover { border-color: var(--accent); }
.news-list a {
  display: flex;
  gap: 16px;
  padding: 14px 18px;
  align-items: center;
  color: var(--fg);
}
.news-list a:hover { text-decoration: none; }
.news-list img {
  width: 96px;
  height: 72px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 6px;
  background: #f0f0ef;
}
.thumb-placeholder {
  width: 96px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 6px;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-meta { min-width: 0; flex: 1; }
.news-list time {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}
.news-list .title {
  display: block;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.55;
  margin-top: 4px;
}

/* Article */
.article {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 40px;
  margin: 32px 0 48px;
  max-width: 820px;
}
.article header {
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}
.article .date {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: 0.05em;
}
.article h1 {
  font-size: clamp(24px, 4vw, 32px);
  margin: 0;
  line-height: 1.5;
  font-weight: 800;
}
.prose { font-size: 16px; line-height: 1.9; }
.prose p { margin: 0 0 1.2em; }
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin: 0 0 28px;
}
.gallery figure { margin: 0; }
.gallery img { width: 100%; border-radius: 6px; background: #f0f0ef; }
.back {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.back a { font-size: 14px; font-weight: 500; }

/* Event and result details */
.event-detail {
  width: 100%;
  margin: 32px 0 56px;
  padding: clamp(24px, 4vw, 52px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(17, 17, 17, .06);
}
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 12px;
}
.breadcrumb a { color: #525252; font-weight: 700; }
.breadcrumb span { color: #c4c4c3; }
.event-head {
  margin-bottom: 40px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--border);
}
.event-kicker {
  margin: 0 0 8px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}
.event-head h1,
.fight-detail-head h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.35;
  letter-spacing: -.02em;
}
.event-overview {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  margin-top: 30px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(245,158,11,.08), transparent 60%),
    #fafaf9;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.event-mark {
  display: flex;
  min-height: 150px;
  margin: 0;
  padding: 16px;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.event-mark img {
  width: auto;
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
}
.event-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
  margin: 0;
}
.event-fact {
  min-width: 0;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}
.event-fact dt {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}
.event-fact dd {
  margin: 0;
  color: #171717;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
}
.event-section { margin-top: 44px; }
.event-section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-strong);
}
.event-section-head p {
  grid-column: 1 / -1;
  margin: 0 0 2px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
}
.event-section-head h2 {
  margin: 0;
  font-size: clamp(21px, 3vw, 28px);
  line-height: 1.4;
}
.event-section-head > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.bout-list { display: grid; gap: 14px; }
.bout-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 0;
  overflow: hidden;
  color: var(--fg);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.bout-card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 24px rgba(17,17,17,.08);
  transform: translateY(-1px);
  text-decoration: none;
}
.bout-summary { overflow: hidden; }
.bout-summary.compact { padding: 0; }
.bout-label {
  margin: 0;
  padding: 11px 18px;
  color: #fff;
  background: #171717;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}
.bout-rules {
  margin: 0;
  padding: 8px 18px;
  color: #57534e;
  background: #fafaf9;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
}
.matchup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr);
  align-items: center;
  min-height: 86px;
  padding: 14px 18px;
}
.competitor { min-width: 0; text-align: center; }
.competitor strong {
  display: block;
  color: #171717;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.45;
}
.competitor small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}
.versus {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--accent-dark);
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}
.bout-result {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin: 0;
  padding: 9px 18px;
  color: #292524;
  background: #fffbeb;
  border-top: 1px solid #fde68a;
  font-size: 13px;
  font-weight: 800;
}
.bout-result span {
  color: var(--accent-dark);
  font-size: 9px;
  letter-spacing: .12em;
}
.bout-link {
  margin-right: 20px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}
.report-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.report-card {
  display: flex;
  min-height: 170px;
  padding: 20px;
  flex-direction: column;
  color: #fff;
  background: linear-gradient(135deg, #292524, #0a0a0a);
  border: 1px solid #292524;
  border-radius: 12px;
}
.report-card:hover { border-color: var(--accent); text-decoration: none; }
.report-label {
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}
.report-card strong { margin-top: 8px; font-size: 17px; line-height: 1.5; }
.report-card p {
  margin: 8px 0 0;
  color: #d6d3d1;
  font-size: 12px;
  line-height: 1.7;
}
.report-link {
  margin-top: auto;
  padding-top: 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}
.schedule-copy,
.archive-copy {
  padding: clamp(20px, 4vw, 36px);
  background: #fafaf9;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.schedule-copy h2 {
  margin: 30px 0 12px;
  padding-left: 12px;
  border-left: 4px solid var(--accent);
  font-size: 20px;
}
.schedule-copy h2:first-child { margin-top: 0; }
.schedule-group {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.schedule-group p,
.archive-copy p { margin: 0; }
.archive-copy { display: grid; gap: 10px; }

/* Individual fight reports */
.fight-detail { max-width: 980px; margin-left: auto; margin-right: auto; }
.fight-detail-head {
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.fight-detail > .bout-summary {
  margin-bottom: 34px;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.report-hero {
  margin-bottom: 32px;
  padding: 26px;
  color: #fff;
  background: linear-gradient(135deg, #292524, #0a0a0a);
  border-radius: 12px;
}
.report-hero p {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
}
.report-hero h2 { margin: 0; font-size: clamp(22px, 4vw, 32px); }
.detail-gallery { margin: 0 0 34px; }
.detail-copy {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 2;
}
.detail-copy p { margin: 0 0 1.35em; }
.detail-heading {
  margin: 46px 0 20px;
  padding: 10px 14px;
  color: #fff;
  background: #171717;
  border-left: 4px solid var(--accent);
  font-size: 22px;
}
.comment-heading {
  margin: 28px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  font-size: 18px;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #9a9a99;
  padding: 48px 0 32px;
  margin-top: 72px;
  font-size: 13px;
  border-top: 4px solid var(--accent);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(209,26,42,0.14), transparent 55%);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px 48px;
  align-items: start;
}
.footer-brand { grid-column: 1; }
.footer-logo {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-logo span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-left: 6px;
}
.footer-tag {
  margin: 6px 0 0;
  color: #6a6a69;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.footer-nav {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-self: center;
}
.footer-nav a {
  color: #c4c4c3;
  font-size: 13px;
  font-weight: 500;
}
.footer-nav a:hover { color: var(--accent); text-decoration: none; }
.footer-copy {
  grid-column: 1 / -1;
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid #1f1f1f;
  color: #555;
  font-size: 12px;
  letter-spacing: 0.05em;
}

/* Fighter */
.fighter-card img { aspect-ratio: 1/1; object-fit: cover; }
.fighter-detail .name-en { color: var(--muted); font-size: 14px; margin: 4px 0 0; letter-spacing: 0.05em; }
.fighter-photo { max-width: 320px; margin: 0 0 20px; border-radius: 6px; background: #eee; }
.fighter-info { display: grid; grid-template-columns: 130px 1fr; gap: 6px 14px; margin: 0; }
.fighter-info dt { color: var(--muted); font-size: 13px; padding-top: 2px; }
.fighter-info dd { margin: 0; font-size: 15px; }

/* Sub cards (event result sub-pages) */
.subpages { margin-top: 28px; }
.sub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.sub-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px;
}
.sub-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  background: #eee;
  margin-bottom: 8px;
}
.sub-card h3 { font-size: 14px; margin: 0 0 6px; line-height: 1.5; }
.sub-card p { font-size: 12px; color: var(--muted); margin: 0; }
.card-body .sub { color: var(--muted); font-size: 12px; margin: 4px 0 0; }

@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { grid-column: 1; grid-row: auto; }
  .fighter-info { grid-template-columns: 100px 1fr; }
  .site-header .container { flex-direction: column; align-items: flex-start; }
  .site-nav { gap: 14px; }
  .article { padding: 18px; }
  .news-list img { width: 64px; height: 48px; }
  .event-detail { margin: 18px 0 36px; padding: 20px 16px; border-radius: 12px; }
  .event-overview { grid-template-columns: 1fr; padding: 18px; }
  .event-mark { min-height: 120px; }
  .event-facts { grid-template-columns: 1fr; gap: 14px; }
  .bout-card { grid-template-columns: 1fr; gap: 0; }
  .bout-link {
    margin: 0;
    padding: 12px 18px;
    text-align: right;
    border-top: 1px solid var(--border);
  }
  .matchup { grid-template-columns: 1fr; gap: 10px; padding: 16px; }
  .versus { width: 30px; height: 30px; margin: 0 auto; }
  .event-section-head { grid-template-columns: 1fr; }
  .event-section-head > span { margin-top: 4px; }
}
