/* ===========================
   Mai Yamamoto Official Site
   =========================== */

:root {
  --bg: #ffffff;
  --bg-dark: #0a0a0a;
  --bg-soft: #f5f5f5;
  --text: #0a0a0a;
  --text-muted: #6b6b6b;
  --text-inv: #ffffff;
  --accent: #e60012;          /* Red accent */
  --accent-dark: #b3000e;
  --line: #e5e5e5;
  --line-dark: #1f1f1f;

  --font-jp: "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-display: "Bebas Neue", "Oswald", sans-serif;
  --font-cond: "Oswald", sans-serif;

  --max: 1200px;
  --pad: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html { hanging-punctuation: allow-end last; }

body {
  margin: 0;
  font-family: var(--font-jp);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  word-break: auto-phrase;
  line-break: strict;
  overflow-wrap: normal;
  text-wrap: pretty;
}

/* 見出し：行長を均等化（Chrome114+/Safari17.5+/FF121+） */
.hero-title,
.hero-jp,
.hero-en,
.section-title,
.pb-first-headline,
.pb-why h3,
.pull-quote p,
.pb-quote p {
  text-wrap: balance;
}

/* 長文：寡行（最後の1単語が浮く）防止 */
.hero-lede,
.pb-first-body,
.sponsorship-intro,
.lead,
.prose p,
.pb-card p,
.vis-card p,
.style-card p {
  text-wrap: pretty;
}

/* Responsive nowrap: モバイルでは改行許可 */
.nowrap-md { white-space: nowrap; }
@media (max-width: 640px) {
  .nowrap-md { white-space: normal; }
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  width: 100%;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.0);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  color: #fff;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}
.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1;
}
.logo-mark.big { width: 56px; height: 56px; font-size: 30px; }
.logo-name { font-size: 18px; letter-spacing: 0.12em; }

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-family: var(--font-cond);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}
.nav a { position: relative; padding: 6px 0; }
.nav a:not(.nav-cta):hover { color: var(--accent); }
.nav-cta {
  border: 1px solid #fff;
  padding: 8px 18px !important;
  transition: all 0.2s ease;
}
.nav-cta:hover { background: var(--accent); border-color: var(--accent); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(230,0,18,0.35), transparent 60%),
    linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 60%, #0a0a0a 100%);
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 28px, rgba(255,255,255,0.015) 28px, rgba(255,255,255,0.015) 29px);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-eyebrow {
  font-family: var(--font-cond);
  letter-spacing: 0.25em;
  font-size: 13px;
  color: var(--accent);
  margin: 0 0 28px;
  text-transform: uppercase;
}
.hero-title {
  margin: 0;
  font-weight: 900;
}
.hero-jp {
  display: block;
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: clamp(40px, 7.5vw, 96px);
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.hero-en {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 58px);
  letter-spacing: 0.08em;
  line-height: 1.05;
  color: rgba(255,255,255,0.55);
  margin-top: 18px;
}
.hero-lede {
  margin: 32px 0 0;
  max-width: 620px;
  font-size: 16px;
  line-height: 1.95;
  color: rgba(255,255,255,0.85);
  word-break: auto-phrase;
  line-break: strict;
  overflow-wrap: normal;
}
.nowrap { white-space: nowrap; }
.hero-lede-2 {
  margin-top: 14px;
  margin-bottom: 44px;
  color: rgba(255,255,255,0.95);
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll span {
  display: block;
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
  animation: scrollHint 2s infinite;
}
@keyframes scrollHint {
  0% { transform: scaleY(0.3); transform-origin: top; opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.3); transform-origin: bottom; opacity: 0.3; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-lg { padding: 18px 42px; font-size: 15px; }

/* ===== IMPACT NUMBERS ===== */
.impact {
  background: var(--bg-dark);
  color: #fff;
  padding: 60px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.impact-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 0;
  border-left: 2px solid var(--accent);
  padding-left: 24px;
}
.impact-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  letter-spacing: 0.02em;
}
.impact-num .unit {
  font-size: 0.4em;
  margin-left: 4px;
  color: rgba(255,255,255,0.7);
}
.impact-label {
  font-family: var(--font-cond);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 10px;
  color: rgba(255,255,255,0.85);
}
.impact-label small {
  display: block;
  font-family: var(--font-jp);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

/* ===== SECTIONS ===== */
.section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg);
}
.section-dark {
  background: var(--bg-dark);
  color: #fff;
}
.section-accent {
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  color: #fff;
}

.grid-2 {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.section-label .kicker,
.section-label.light .kicker { color: var(--accent); }
.kicker {
  font-family: var(--font-cond);
  font-size: 13px;
  letter-spacing: 0.3em;
  margin: 0 0 12px;
  text-transform: uppercase;
  color: var(--accent);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 0;
}
.section-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin: 10px 0 0;
  letter-spacing: 0.05em;
}
.section-dark .section-sub,
.section-accent .section-sub { color: rgba(255,255,255,0.55); }

.section-label.center {
  text-align: center;
  grid-column: 1 / -1;
  margin-bottom: 60px;
}
.section-label.light .section-sub { color: rgba(255,255,255,0.6); }

.prose h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 32px 0 12px;
  letter-spacing: 0.02em;
}
.prose h3:first-child { margin-top: 0; }
.prose p { margin: 0 0 16px; font-size: 15.5px; line-height: 1.95; color: rgba(255,255,255,0.82); }
.section:not(.section-dark):not(.section-accent) .prose p { color: var(--text); }
.prose strong { color: #fff; }
.section:not(.section-dark):not(.section-accent) .prose strong { color: var(--accent); }

.pull-quote {
  margin: 40px 0 0;
  padding: 28px 32px;
  border-left: 4px solid var(--accent);
  background: rgba(255,255,255,0.04);
}
.pull-quote p {
  font-size: 22px !important;
  font-weight: 700;
  color: #fff !important;
  margin: 0 0 10px !important;
  line-height: 1.5;
}
.pull-quote cite {
  font-style: normal;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

.lead {
  font-size: 17px;
  line-height: 1.9;
  margin: 0 0 32px;
}
.note {
  margin-top: 24px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== PROFILE TABLE ===== */
.profile-photo {
  margin-bottom: 28px;
}
.photo-placeholder {
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, rgba(230,0,18,0.1), rgba(230,0,18,0.04)),
    repeating-linear-gradient(45deg, #1a1a1a 0, #1a1a1a 12px, #151515 12px, #151515 24px);
  color: rgba(255,255,255,0.5);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  letter-spacing: 0.3em;
  font-size: 24px;
  border: 1px solid var(--line);
  position: relative;
}
.photo-placeholder::after {
  content: attr(data-caption);
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45);
}
.photo-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
}

.profile-table {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
}
.profile-table > div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.profile-table dt {
  font-family: var(--font-cond);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}
.profile-table dd {
  margin: 0;
  font-weight: 500;
}
.profile-table dd small {
  color: var(--text-muted);
  font-weight: 400;
  font-family: var(--font-cond);
  letter-spacing: 0.08em;
}

/* ===== TIMELINE ===== */
.tl-wrap { max-width: 900px; margin: 0 auto; }
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 100px;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--line);
}
.timeline li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  position: relative;
  padding: 12px 0 28px;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: 96px;
  top: 20px;
  width: 9px; height: 9px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--bg);
}
.tl-year {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--text);
  padding-top: 6px;
}
.tl-body h4 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
}
.tl-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
}
.tag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 10px;
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 0.15em;
  background: #ececec;
  color: var(--text);
  vertical-align: middle;
}
.tag.gold { background: var(--accent); color: #fff; }

/* ===== PLAY STYLE CARDS ===== */
.style-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.style-card {
  padding: 36px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.style-card:hover { border-color: var(--accent); }
.style-num {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.style-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.06em;
  margin: 0 0 12px;
}
.style-card p {
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}
.style-card strong { color: var(--accent); }

/* ===== VISIBILITY GRID ===== */
.visibility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}
.vis-card {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}
.vis-card h4 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  font-size: 20px;
}
.vis-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== PROJECT B SECTION ===== */
.pb-section {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(230,0,18,0.18), transparent 60%),
    radial-gradient(ellipse at 90% 100%, rgba(230,0,18,0.08), transparent 60%),
    linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
  color: #fff;
}
.pb-hero {
  max-width: 820px;
  margin: 0 auto 72px;
  text-align: center;
}
.pb-tag {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 28px;
}
.pb-quote {
  margin: 0;
  padding: 0;
  border: 0;
}
.pb-quote p {
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 700;
  color: #fff;
  line-height: 1.55;
  margin: 0 0 14px;
  letter-spacing: 0.01em;
}
.pb-quote cite {
  font-style: normal;
  font-family: var(--font-cond);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
}
.en-phrase {
  font-style: normal;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  color: var(--accent);
  white-space: nowrap;
  padding: 0 2px;
}

.pb-first {
  max-width: 900px;
  margin: 0 auto 64px;
  padding: 44px 48px;
  background:
    linear-gradient(135deg, rgba(230,0,18,0.14), rgba(230,0,18,0.04) 60%, transparent 100%),
    rgba(255,255,255,0.02);
  border: 1px solid var(--accent);
  position: relative;
  text-align: center;
}
.pb-first::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 50px; height: 50px;
  border-top: 3px solid var(--accent);
  border-left: 3px solid var(--accent);
}
.pb-first::after {
  content: "";
  position: absolute;
  bottom: -1px; right: -1px;
  width: 50px; height: 50px;
  border-bottom: 3px solid var(--accent);
  border-right: 3px solid var(--accent);
}
.pb-first-eyebrow {
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: 0.35em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pb-first-headline {
  font-family: var(--font-jp);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  line-height: 1.4;
}
.pb-first-body {
  margin: 0 auto;
  max-width: 720px;
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
  font-size: 15px;
}
.pb-first-body + .pb-first-body {
  margin-top: 16px;
}
.pb-first-body-2 {
  color: rgba(255,255,255,0.95);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.pb-first-body strong { color: var(--accent); }

.pb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 72px;
}
.pb-card {
  padding: 36px 32px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.pb-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.pb-num {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.pb-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}
.pb-card p {
  color: rgba(255,255,255,0.78);
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
}
.pb-card strong { color: var(--accent); }

.pb-why {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 44px;
  background: rgba(230,0,18,0.06);
  border-left: 4px solid var(--accent);
}
.pb-why h3 {
  font-size: 22px;
  margin: 0 0 14px;
  font-weight: 700;
}
.pb-why p {
  font-size: 15.5px;
  line-height: 1.95;
  color: rgba(255,255,255,0.88);
  margin: 0 0 12px;
}
.pb-why strong { color: var(--accent); }
.pb-official {
  margin: 22px 0 8px !important;
  font-size: 13px !important;
}
.pb-official-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.25);
  font-family: var(--font-cond);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.2s ease;
}
.pb-official-link:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.pb-official-handle {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: none;
  color: rgba(255,255,255,0.65);
  border-left: 1px solid rgba(255,255,255,0.25);
  padding-left: 10px;
}
.pb-official-link:hover .pb-official-handle {
  color: rgba(255,255,255,0.95);
  border-color: rgba(255,255,255,0.4);
}

.pb-source {
  margin-top: 18px !important;
  font-size: 12px !important;
}
.pb-source small { color: rgba(255,255,255,0.5); }
.pb-source a {
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.25);
}
.pb-source a:hover { color: var(--accent); text-decoration-color: var(--accent); }

/* Timeline highlight (Project B rows) */
.timeline li.tl-highlight::before {
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 7px rgba(230,0,18,0.25);
  width: 11px; height: 11px;
  top: 19px;
}
.timeline li.tl-highlight .tl-year {
  color: var(--accent);
  font-weight: 700;
}
.timeline li.tl-highlight .tl-body h4 { color: var(--accent); }

/* Visibility card: highlighted one (Project B) */
.vis-card.highlight {
  background: linear-gradient(135deg, rgba(230,0,18,0.08), rgba(230,0,18,0.02));
  border-color: var(--accent);
}
.vis-card.highlight h4 { color: var(--accent); }

/* Why-now list under sponsorship intro */
.why-now {
  max-width: 720px;
  margin: -28px auto 60px;
  list-style: none;
  padding: 0;
}
.why-now li {
  padding: 12px 0 12px 28px;
  position: relative;
  color: rgba(255,255,255,0.85);
  font-size: 14.5px;
  line-height: 1.7;
  border-bottom: 1px dashed rgba(255,255,255,0.12);
}
.why-now li::before {
  content: "▸";
  position: absolute;
  left: 4px;
  color: var(--accent);
}
.why-now strong { color: #fff; }

/* ===== SPONSORSHIP PLANS ===== */
.sponsorship-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
  font-size: 16px;
  line-height: 1.95;
  color: rgba(255,255,255,0.85);
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.plan-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px 32px;
  position: relative;
}
.plan-card.featured {
  background: rgba(230,0,18,0.08);
  border-color: var(--accent);
  transform: translateY(-8px);
}
.plan-flag {
  position: absolute;
  top: 0; right: 0;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 6px 14px;
  text-transform: uppercase;
}
.plan-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.05em;
  margin: 0 0 20px;
}
.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.plan-card li {
  padding: 10px 0 10px 24px;
  position: relative;
  color: rgba(255,255,255,0.85);
  font-size: 14.5px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.plan-card li:last-child { border-bottom: 0; }
.plan-note { font-size: 12px; color: rgba(255,255,255,0.5); margin: 0; }

.sponsorship-cta { text-align: center; margin-top: 56px; }

/* ===== CONTACT ===== */
.contact-card {
  border: 1px solid var(--line);
  padding: 36px;
  margin-bottom: 28px;
}
.contact-label {
  font-family: var(--font-cond);
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.contact-org {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.05em;
  margin: 4px 0 16px;
}
.contact-mail {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 20px;
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  color: var(--text);
}
.contact-mail:hover { color: var(--accent); }
.contact-note {
  margin: 18px 0 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}

.social-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social {
  padding: 10px 18px;
  border: 1px solid var(--line);
  font-family: var(--font-cond);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
  color: var(--text);
}
.social:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.social-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.social-handle {
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--text-muted);
  border-left: 1px solid var(--line);
  padding-left: 10px;
}
.social:hover .social-handle { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.3); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-dark);
  color: #fff;
  padding: 48px 0;
  border-top: 1px solid var(--line-dark);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-name { font-weight: 700; font-size: 18px; }
.footer-tag { color: rgba(255,255,255,0.55); font-size: 13px; }
.footer-meta {
  text-align: right;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}
.footer-meta p { margin: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
  }
  .nav-toggle span {
    display: block;
    width: 26px; height: 2px;
    background: #fff;
    transition: transform 0.2s, opacity 0.2s;
  }
  .site-header.menu-open .nav {
    display: flex;
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(10,10,10,0.98);
    padding: 24px var(--pad);
    gap: 20px;
    border-top: 1px solid var(--line-dark);
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .section-label.center { margin-bottom: 40px; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .style-grid { grid-template-columns: 1fr; }
  .visibility-grid { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; }
  .pb-grid { grid-template-columns: 1fr; }
  .pb-why { padding: 28px 24px; }
  .plan-card.featured { transform: none; }

  .timeline::before { left: 40px; }
  .timeline li { grid-template-columns: 80px 1fr; gap: 20px; }
  .timeline li::before { left: 36px; }
  .tl-year { font-size: 16px; }

  .profile-table > div { grid-template-columns: 120px 1fr; gap: 12px; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
}

@media (max-width: 900px) {
  .hero-bg::after {
    width: 100%;
    opacity: 0.45;
    background-position: center 15%;
  }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.75) 50%, rgba(10,10,10,0.95) 100%),
      radial-gradient(ellipse at 50% 30%, rgba(230,0,18,0.2), transparent 55%);
  }
  .hero-inner { max-width: 100%; }
}

@media (max-width: 520px) {
  .hero { padding-top: 100px; }
  .hero-cta .btn { flex: 1; min-width: 45%; padding: 12px 16px; font-size: 13px; }
  .contact-card { padding: 24px; }
  .contact-mail { font-size: 16px; word-break: break-all; }
  .profile-table > div { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-scroll span { animation: none; }
}

/* ===== HIGHLIGHT REEL ===== */
.highlight-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
  color: #f4f4f4;
}
.highlight-section .kicker { color: var(--accent); }

.highlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  max-width: 1200px;
  margin: 36px auto 0;
}
@media (min-width: 760px) {
  .highlight-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (min-width: 1100px) {
  .highlight-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}

.highlight-item { display: flex; flex-direction: column; }
.highlight-eyebrow {
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: 12px;
}

.highlight-quote {
  margin: 0 auto 18px;
  padding: 0 8px;
  text-align: center;
  border: none;
}
.highlight-quote p {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: clamp(1.25rem, 2.3vw, 1.75rem);
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0 0 8px;
  color: #fff;
  text-wrap: balance;
}
.highlight-quote p em {
  color: var(--accent);
  font-style: normal;
}
.highlight-quote cite {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a9a9a;
  font-style: normal;
}

.video-wrap {
  width: 100%;
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.highlight-source {
  width: 100%;
  margin: 10px 0 0;
  text-align: right;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a9a9a;
}
.highlight-source a {
  color: #cfcfcf;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.highlight-source a:hover {
  color: var(--accent);
  border-color: var(--accent);
}
