:root {
  --brand-navy: #071A30;
  --brand-navy-2: #071A30;
  --brand-gold: #AB9636;
  --brand-gold-2: #AB9636;
  --text-dark: #071A30;
  --text-muted: #667085;
  --bg: #f5f6f8;
  --white: #FFFFFF;
  --line: rgba(7, 26, 48, 0.12);
  --shadow: 0 18px 45px rgba(8, 23, 43, 0.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  margin: 0;
  font-family: 'Noto Sans JP', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--bg);
  line-height: 1.7;
}
a { color: inherit; }
img { max-width: 100%; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  background: rgba(7, 26, 48, 0.96);
  border-bottom: 2px solid var(--brand-gold);
  backdrop-filter: blur(12px);
}
.nav-container {
  width: min(1200px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo, .nav-logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-img { width: 34px; height: 34px; object-fit: contain; }
.nav-brand-text, .footer-brand-text {
  color: var(--brand-gold-2);
  font-weight: 900;
  letter-spacing: 0.22em;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 21px 0 17px;
  border-bottom: 2px solid transparent;
  transition: 0.2s ease;
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--brand-gold-2);
  border-bottom-color: var(--brand-gold-2);
}
.hamburger { display: none; width: 28px; }
.hamburger span { display: block; height: 2px; background: #fff; margin: 6px 0; }
.page-header {
  position: relative;
  min-height: 330px;
  padding: 142px 0 78px;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: #dfe4ea;
}
.header-background { position: absolute; inset: 0; z-index: 0; }
.header-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.header-fallback {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.84), rgba(235,239,244,.72)),
    radial-gradient(circle at 20% 20%, rgba(200,164,54,.22), transparent 30%),
    linear-gradient(120deg, #eef1f5, #cfd6df);
}
.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.38);
  z-index: 1;
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-shadow: 0 8px 18px rgba(0,0,0,.45);
}
.page-subtitle {
  margin: 18px 0 0;
  color: var(--brand-gold);
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 1.05rem;
}
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
  margin: 0;
  color: var(--brand-navy);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0.12em;
}
.section-subtitle { color: var(--brand-gold); font-weight: 900; letter-spacing: .08em; margin-top: 8px; }
.about-page, .partner-page, .contact-overview, .team-overview, .team-detail-section, .current-partners, .members-page {
  padding: 82px 0;
  background: var(--bg);
}
.about-content, .partner-content, .team-hero, .contact-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 46px;
  align-items: center;
}
.about-text, .partner-text, .team-hero-content, .contact-info, .player-info-detail, .team-info-detail {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.about-text h2, .partner-text h2, .team-hero-content h2, .team-info-detail h3, .player-info-detail h3 {
  margin-top: 0;
  color: var(--brand-navy);
  font-weight: 900;
  letter-spacing: .08em;
}
.about-block, .partner-message, .team-achievements, .members-role-block {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.placeholder-img-large, .partner-image, .team-hero-image {
  min-height: 280px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(7,26,48,.12), rgba(255,255,255,.88)),
    linear-gradient(135deg, transparent 0 42%, rgba(200,164,54,.25) 42% 44%, transparent 44% 100%);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.team-hero-image img, .partner-image img { width: 100%; height: 100%; object-fit: cover; }
.footer {
  background: var(--brand-navy);
  color: #fff;
  padding: 42px 0 22px;
  border-top: 2px solid var(--brand-gold);
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { color: rgba(255,255,255,.84); text-decoration: none; font-weight: 800; font-size: .86rem; letter-spacing: .08em; }
.footer-links a:hover { color: var(--brand-gold-2); }
.footer-bottom { text-align: center; color: rgba(255,255,255,.62); font-size: .85rem; padding-top: 18px; }
/* MEMBERS page */
.members-page { background: linear-gradient(180deg, #f5f6f8 0%, #ebeff4 100%); }
.members-nav-panel {
  margin-top: -42px;
  position: relative;
  z-index: 5;
}
.members-tabs-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.members-tabs-card a {
  text-decoration: none;
  color: var(--brand-navy);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 900;
  letter-spacing: .06em;
  background: #fff;
  transition: .18s ease;
}
.members-tabs-card a:hover {
  color: #fff;
  background: var(--brand-navy);
  border-color: var(--brand-navy);
  transform: translateY(-2px);
}
.members-division {
  padding: 74px 0;
  border-bottom: 1px solid rgba(7,26,48,.08);
}
.members-division:nth-child(even) { background: rgba(255,255,255,.48); }
.members-division-heading { text-align: center; margin-bottom: 40px; }
.members-division-heading h2 {
  margin: 0;
  color: var(--brand-navy);
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .14em;
}
.members-division-heading h2::after {
  content: "";
  display: block;
  width: 86px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 99px;
  background: var(--brand-gold);
}
.members-division-heading p { color: var(--text-muted); font-weight: 800; margin: 14px 0 0; }
.members-role-block { border-top: 0; padding-top: 0; margin-top: 34px; }
.members-role-title {
  margin: 0 0 20px;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: .08em;
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  gap: 12px;
}
.members-role-title::before { content: ""; width: 28px; height: 3px; background: var(--brand-gold); border-radius: 99px; }
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 22px;
}
.member-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(7,26,48,.10);
  transition: .18s ease;
}
.member-card:hover { transform: translateY(-4px); box-shadow: 0 20px 42px rgba(7,26,48,.16); }
.member-link { display: block; padding: 22px 18px; color: var(--text-dark); text-decoration: none; text-align: center; }
.member-avatar {
  width: 116px;
  height: 116px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-gold), #fff 65%);
  padding: 5px;
  box-shadow: 0 8px 18px rgba(7,26,48,.12);
}
.member-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; background: #fff; display: block; }
.member-card h4 { margin: 0; color: var(--brand-navy); font-size: 1.22rem; font-weight: 900; }
.member-role { display: inline-block; margin-top: 8px; color: var(--brand-gold); font-size: .82rem; font-weight: 900; letter-spacing: .05em; }
.member-empty { text-align: center; color: var(--text-muted); padding: 32px 0; }
@media (max-width: 820px) {
  .nav-menu { display: none; }
  .hamburger { display: block; }
  .page-header { min-height: 280px; padding: 118px 0 58px; }
  .about-content, .partner-content, .team-hero, .contact-content { grid-template-columns: 1fr; }
  .footer-content { flex-direction: column; }
  .members-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; }
  .member-avatar { width: 92px; height: 92px; }
}

/* ===== HOME PAGE FIX ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .04em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: .2s ease;
}
.btn-primary {
  background: var(--brand-gold);
  color: #fff;
  box-shadow: none;
}

.btn-primary:hover { transform: translateY(-2px); background: var(--brand-gold-2); color: var(--brand-navy); box-shadow: none; }
.btn-secondary {
  background: rgba(255,255,255,.88);
  color: var(--brand-navy);
  border-color: rgba(255,255,255,.7);
}
.btn-secondary:hover { transform: translateY(-2px); background: #fff; border-color: var(--brand-gold); box-shadow: none; }

.hero {
  position: relative;
  min-height: 760px;
  padding-top: 64px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #eef1f5;
}
.hero-image { position: absolute; inset: 64px 0 0; z-index: 0; }
.hero-image .header-img,
.header-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,26,48,.82), rgba(7,26,48,.35) 45%, rgba(255,255,255,.10));
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  color: #fff;
  padding: 90px 0;
}
.hero-title {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: .015em;
  text-shadow: none;
}
.title-line { display: block; }
.hero-subtitle {
  margin: 24px 0 0;
  max-width: 620px;
  color: rgba(255,255,255,.9);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: .02em;
  text-shadow: none;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.about, .teams, .news, .contact {
  padding: 96px 0;
  background: var(--bg);
}
.about:nth-of-type(even), .news { background: #fff; }
.about .about-content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, .75fr);
  gap: 42px;
  align-items: center;
}
.about .about-text {
  font-size: 1rem;
}
.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.stats .stat-item,
.team-stats-overview .stat-item,
.player-stats-overview .stat-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 24px;
  box-shadow: 0 12px 32px rgba(7,26,48,.08);
  text-align: center;
}
.stat-number {
  display: block;
  color: var(--brand-navy);
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: .06em;
}
.stat-label {
  display: block;
  margin-top: 8px;
  color: var(--brand-gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.teams-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.team-card {
  display: block;
  background: #fff;
  color: var(--text-dark);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: .2s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 24px 55px rgba(7,26,48,.18); }
.team-image {
  position: relative;
  height: 190px;
  background: #edf1f5;
  overflow: hidden;
}
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .9;
  transition: .25s ease;
}
.team-card:hover .team-photo { transform: scale(1.04); }
.team-icon.fallback {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(7,26,48,.92);
  color: var(--brand-gold-2);
  border: 2px solid rgba(255,255,255,.85);
  font-size: 1.25rem;
}
.team-info { padding: 24px; }
.team-info h3 {
  margin: 0 0 10px;
  color: var(--brand-navy);
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .08em;
}
.team-info p {
  margin: 0;
  color: var(--text-muted);
  font-size: .92rem;
  font-weight: 600;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.news-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 14px 34px rgba(7,26,48,.08);
}
.news-date { color: var(--brand-gold); font-weight: 900; letter-spacing: .08em; margin-bottom: 10px; }
.news-card h3 { margin: 0 0 10px; color: var(--brand-navy); font-weight: 900; }
.news-card p { margin: 0; color: var(--text-muted); }

.contact .contact-content {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, 1.1fr);
  gap: 34px;
  align-items: start;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 900; color: var(--brand-navy); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid rgba(7,26,48,.16);
  border-radius: 14px;
  padding: 13px 15px;
  font: inherit;
  background: #fff;
  color: var(--text-dark);
  outline: none;
  transition: .18s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 4px rgba(200,164,54,.14);
}
.contact-details { display: grid; gap: 16px; margin-top: 24px; }
.contact-item { display: flex; gap: 12px; align-items: flex-start; color: var(--text-muted); font-weight: 700; }
.contact-item i { color: var(--brand-gold); margin-top: 5px; }

/* Page detail common fixes */
.player-overview, .player-detail-section, .player-overview-enhanced, .members-admin-section {
  padding: 82px 0;
  background: var(--bg);
}
.player-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .7fr);
  gap: 42px;
  align-items: center;
}
.player-hero-content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.player-hero-content h2 { margin: 0 0 14px; color: var(--brand-navy); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; letter-spacing: .08em; }
.player-hero-description { color: var(--text-muted); font-weight: 650; margin: 0; }
.player-hero-image {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.player-photo { max-height: 440px; width: auto; object-fit: contain; display: block; }
.player-info-grid, .overview-cards, .team-achievements ul, .player-info-list {
  list-style: none;
}
.player-info-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.player-info-group h4 { margin: 0 0 8px; color: var(--brand-gold); font-weight: 900; }
.player-info-list { margin: 0; padding: 0; color: var(--text-muted); font-weight: 700; }
.player-info-list li + li { margin-top: 6px; }

@media (max-width: 1100px) {
  .teams-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .hero { min-height: 640px; }
  .hero-content { padding: 70px 0; }
  .about .about-content, .contact .contact-content, .player-hero { grid-template-columns: 1fr; }
  .news-grid, .teams-grid, .form-row, .player-info-grid { grid-template-columns: 1fr; }
  .team-image { height: 170px; }
}


/* ===== REFINED PAGE HEADER / ABOUT ===== */
.page-header-soft {
  min-height: 280px;
  padding: 128px 0 64px;
  text-align: left;
}
.page-header-soft::after {
  background: linear-gradient(90deg, rgba(245,246,248,.88), rgba(245,246,248,.60) 55%, rgba(245,246,248,.28));
}
.page-header-soft .container {
  max-width: 1120px;
}
.page-kicker,
.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--brand-gold);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .18em;
}
.page-header-soft h1 {
  color: var(--brand-navy);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  letter-spacing: .1em;
  text-shadow: none;
}
.page-header-soft .page-subtitle {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 1rem;
  letter-spacing: .08em;
}
.about-page-refined {
  padding-top: 56px;
}
.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 28px;
  align-items: stretch;
}
.about-panel,
.about-summary-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.about-panel h2 {
  margin: 0 0 14px;
  color: var(--brand-navy);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 900;
}
.about-lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.02rem;
  font-weight: 700;
}
.refined-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}
.fact-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f7f8fa);
  border: 1px solid rgba(7,26,48,.08);
}
.fact-label {
  display: block;
  color: var(--text-muted);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.fact-value {
  display: block;
  color: var(--brand-navy);
  font-size: 1.05rem;
  font-weight: 900;
}
.about-block h3 {
  margin: 0 0 10px;
  color: var(--brand-navy);
  font-size: 1.25rem;
  font-weight: 900;
}
.about-block p {
  margin: 0;
  color: var(--text-muted);
  font-weight: 700;
}
.summary-list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
}
.summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.summary-list li span {
  color: var(--text-muted);
  font-weight: 800;
}
.summary-list li strong {
  color: var(--brand-navy);
  text-align: right;
  font-weight: 900;
}
.refined-quote {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-navy-2));
  color: #fff;
}
.refined-quote small {
  display: block;
  color: rgba(255,255,255,.68);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
  margin-bottom: 10px;
}
.refined-quote span {
  display: block;
  font-size: 1.35rem;
  line-height: 1.5;
  font-weight: 900;
}
.about-values-section,
.history-refined {
  padding: 82px 0;
  background: #fff;
}
.about-values-section {
  border-top: 1px solid rgba(7,26,48,.06);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.value-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(7,26,48,.07);
}
.value-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--brand-gold), #ebd57c);
  color: #fff;
  font-size: 1.3rem;
}
.value-card h3 {
  margin: 0 0 10px;
  color: var(--brand-navy);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.value-card p {
  margin: 0;
  color: var(--text-muted);
  font-weight: 700;
}
.refined-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.refined-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 146px;
  width: 2px;
  background: linear-gradient(180deg, var(--brand-gold), rgba(7,26,48,.1));
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 34px;
  align-items: start;
  margin-bottom: 24px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-date {
  position: relative;
  z-index: 1;
  padding-top: 18px;
  color: var(--brand-gold);
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-align: right;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 138px;
  top: 23px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 4px solid #fff;
  background: var(--brand-gold);
  box-shadow: 0 0 0 1px rgba(7,26,48,.12);
}
.timeline-content {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px 24px;
  box-shadow: 0 12px 28px rgba(7,26,48,.08);
}
.timeline-content h3 {
  margin: 0 0 8px;
  color: var(--brand-navy);
  font-size: 1.2rem;
  font-weight: 900;
}
.timeline-content p {
  margin: 0;
  color: var(--text-muted);
  font-weight: 700;
}
.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-link {
  color: rgba(255,255,255,.84);
  text-decoration: none;
  font-weight: 800;
}
.social-link:hover { color: var(--brand-gold-2); }

@media (max-width: 900px) {
  .about-intro-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  .refined-timeline::before {
    left: 14px;
  }
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 42px;
  }
  .timeline-date {
    text-align: left;
    padding-top: 0;
  }
  .timeline-item::before {
    left: 6px;
    top: 4px;
  }
}

@media (max-width: 640px) {
  .page-header-soft {
    min-height: 240px;
    padding: 110px 0 48px;
  }
  .about-panel,
  .about-summary-card,
  .value-card {
    padding: 24px;
  }
  .refined-facts {
    grid-template-columns: 1fr;
  }
}


/* ===== GLOBAL REFINEMENT: apply ABOUT style to all lower pages ===== */
.team-icon.fallback { display: none !important; }

body:not(.home) .page-header-soft {
  min-height: 280px;
  padding: 128px 0 64px;
  text-align: left;
}
.page-header-soft::after {
  background: linear-gradient(90deg, rgba(245,246,248,.90), rgba(245,246,248,.62) 58%, rgba(245,246,248,.32));
}
.page-header-soft .container {
  max-width: 1120px;
}
.page-header-soft h1 {
  color: var(--brand-navy);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  letter-spacing: .1em;
  text-shadow: none;
}
.page-header-soft .page-subtitle {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 1rem;
  letter-spacing: .08em;
}

/* Home member cards: cleaner, less AI-looking */
.teams {
  background: #fff;
}
.teams-grid {
  align-items: stretch;
}
.team-card {
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(7,26,48,.10);
}
.team-image {
  height: 165px;
  background: #f2f4f7;
}
.team-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(7,26,48,.18));
  pointer-events: none;
}
.team-info {
  padding: 22px 22px 24px;
}
.team-info h3 {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.team-info h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  border-radius: 99px;
  background: var(--brand-gold);
}
.team-info p {
  line-height: 1.75;
}

/* Members page refined */
.members-nav-panel {
  background: var(--bg);
}
.members-page {
  background: var(--bg);
}
.members-tabs-card {
  justify-content: flex-start;
  border-radius: 24px;
  padding: 16px;
}
.members-tabs-card a {
  background: #f7f8fa;
}
.members-division {
  padding: 78px 0;
}
.members-division .container {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 38px;
  box-shadow: var(--shadow);
}
.members-division-heading {
  text-align: left;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.members-division-heading h2 {
  font-size: clamp(2rem, 4.8vw, 3.8rem);
  letter-spacing: .10em;
}
.members-division-heading h2::after {
  margin: 16px 0 0;
  width: 68px;
}
.members-division-heading p {
  margin: 0;
  color: var(--text-muted);
  white-space: nowrap;
}
.member-card {
  box-shadow: 0 10px 24px rgba(7,26,48,.08);
}
.member-avatar {
  background: linear-gradient(135deg, #f6e7ab, #fff 68%);
}

/* Partner / contact / player detail panels aligned with ABOUT */
.partner-page,
.contact-overview,
.team-overview,
.team-detail-section,
.player-overview,
.player-detail-section,
.player-overview-enhanced,
.members-admin-section {
  background: var(--bg);
}
.partner-content,
.contact-content,
.team-hero,
.player-hero {
  align-items: stretch;
}
.partner-text,
.contact-info,
.team-hero-content,
.team-info-detail,
.player-hero-content,
.player-info-detail,
.contact-form {
  border-radius: 28px;
}

@media (max-width: 900px) {
  .members-division .container {
    padding: 26px;
  }
  .members-division-heading {
    display: block;
  }
  .members-division-heading p {
    margin-top: 10px;
    white-space: normal;
  }
}


/* ===== NEWS PAGE REFINED ===== */
.news-filter {
  padding: 34px 0 0;
  background: var(--bg);
}
.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 14px 34px rgba(7,26,48,.08);
}
.filter-btn {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--brand-navy);
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  cursor: pointer;
  transition: .18s ease;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--brand-navy);
  border-color: var(--brand-navy);
  color: var(--white);
}
.news-section {
  padding: 56px 0 82px;
  background: var(--bg);
}
.news-section + .news-section {
  padding-top: 0;
}
.news-section .news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.news-section .news-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 0;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.news-section .news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(7,26,48,.16);
}
.news-card > a {
  display: contents;
  color: inherit;
  text-decoration: none;
}
.news-image {
  min-height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand-navy), #0c243f);
  color: var(--brand-gold);
  font-size: 2rem;
}
.news-content {
  padding: 26px 28px;
}
.news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.news-date {
  color: var(--brand-gold);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.news-category {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(171,150,54,.13);
  color: var(--brand-navy);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .06em;
}
.news-content h3 {
  margin: 0 0 10px;
  color: var(--brand-navy);
  font-size: 1.35rem;
  line-height: 1.45;
  font-weight: 900;
}
.news-content p {
  margin: 0;
  color: var(--text-muted);
  font-weight: 700;
}
.read-more {
  display: inline-flex;
  margin-top: 18px;
  color: var(--brand-gold);
  font-weight: 900;
  text-decoration: none;
  letter-spacing: .06em;
}
.read-more::after {
  content: "→";
  margin-left: 8px;
}
.social-media-section {
  padding: 82px 0;
  background: var(--white);
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.social-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(7,26,48,.07);
}
.social-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 18px;
  background: var(--brand-navy);
  color: var(--brand-gold);
  font-size: 1.35rem;
}
.social-card h3 {
  margin: 0 0 8px;
  color: var(--brand-navy);
  font-weight: 900;
}
.social-card p {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-weight: 700;
}
@media (max-width: 900px) {
  .social-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .news-section .news-card { grid-template-columns: 1fr; }
  .news-image { min-height: 120px; }
  .social-grid { grid-template-columns: 1fr; }
}


/* ===== HOME HERO TYPOGRAPHY FIX ===== */
.hero-title,
.hero-title .title-line {
  letter-spacing: 0.015em !important;
  text-shadow: none !important;
}
.hero-subtitle {
  letter-spacing: 0.02em !important;
  text-shadow: none !important;
}
.hero .btn,
.hero .btn-primary,
.hero .btn-secondary {
  letter-spacing: 0.04em !important;
  box-shadow: none !important;
  text-shadow: none !important;
}


/* ===== FUNCTIONAL FIXES — ORIGINAL DESIGN PRESERVED ===== */
body.menu-open { overflow: hidden; }
.hamburger { cursor: pointer; user-select: none; }
.hamburger span { transition: transform .22s ease, opacity .22s ease; }
.reveal-ready { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal-ready.reveal-visible { opacity: 1; transform: none; }
.activity-list {
  margin: 14px 0 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-weight: 700;
}
.activity-list li + li { margin-top: 7px; }
.value-label {
  display: inline-block;
  margin: -2px 0 12px;
  color: var(--brand-gold);
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.company-information { padding: 82px 0; background: #fff; }
.company-info-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.company-info-list { margin: 0; padding: 0; list-style: none; }
.company-info-list li {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.company-info-list li:last-child { border-bottom: 0; }
.company-info-list span { color: var(--text-muted); font-weight: 800; }
.company-info-list strong { color: var(--brand-navy); font-weight: 900; }
.empty-partner-message {
  grid-column: 1 / -1;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  color: var(--text-muted);
  text-align: center;
  font-weight: 700;
}
.contact-text a { color: inherit; font-weight: 800; }
.checkbox-label a { color: var(--brand-gold); font-weight: 900; }

@media (max-width: 820px) {
  .nav-menu.active {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    max-height: calc(100vh - 64px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 24px;
    overflow-y: auto;
    background: rgba(7,26,48,.99);
    border-bottom: 2px solid var(--brand-gold);
  }
  .nav-menu.active a {
    display: block;
    padding: 15px 4px;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .refined-facts { grid-template-columns: 1fr; }
  .company-info-list li { grid-template-columns: 1fr; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready { opacity: 1; transform: none; transition: none; }
}


/* ===== 2026-07 heading spacing & flat card refinement ===== */
.section-header {
  margin-bottom: 28px;
}
.section-subtitle {
  margin-top: 4px;
}
.about-page,
.partner-page,
.contact-overview,
.team-overview,
.team-detail-section,
.current-partners,
.members-page,
.about-values-section,
.history-refined {
  padding: 56px 0;
}
.page-header,
.page-header-soft {
  min-height: 240px;
  padding: 112px 0 44px;
}
body:not(.home) .page-header-soft {
  min-height: 240px;
  padding: 112px 0 44px;
  text-align: center;
}
.page-header-soft .page-subtitle {
  margin-top: 8px;
}
.about-page-refined {
  padding-top: 24px;
}
.about-intro-grid {
  gap: 20px;
}
.about-panel,
.about-summary-card,
.about-text,
.partner-text,
.team-hero-content,
.contact-info,
.player-info-detail,
.team-info-detail,
.fact-item,
.value-card,
.timeline-content {
  box-shadow: none;
}
.about-panel,
.about-summary-card,
.about-text,
.partner-text,
.team-hero-content,
.contact-info,
.player-info-detail,
.team-info-detail,
.timeline-content {
  border: 1px solid rgba(7, 26, 48, 0.14);
}
.fact-item,
.value-card {
  border: 1px solid rgba(7, 26, 48, 0.12);
}
.timeline-item {
  margin-bottom: 18px;
}
@media (max-width: 640px) {
  .page-header,
  .page-header-soft,
  body:not(.home) .page-header-soft {
    min-height: 200px;
    padding: 98px 0 32px;
  }
  .section-header {
    margin-bottom: 22px;
  }
  .about-page,
  .partner-page,
  .contact-overview,
  .team-overview,
  .team-detail-section,
  .current-partners,
  .members-page,
  .about-values-section,
  .history-refined {
    padding: 44px 0;
  }
}


/* ===== HOME ABOUT: one outer card containing text and stats ===== */
.about .about-content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(7, 26, 48, 0.14);
  border-radius: 24px;
  box-shadow: none;
}

.about .about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 38px 42px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.about .stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  min-width: 0;
  margin: 0;
  background: transparent;
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.about .stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 30px 14px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

.about .stats .stat-item + .stat-item {
  border-left: 1px solid var(--line);
}

.about .stats .stat-number {
  max-width: 100%;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.about .stats .stat-label {
  margin-top: 8px;
  font-size: 0.72rem;
  line-height: 1.35;
  letter-spacing: 0.07em;
}

@media (max-width: 980px) {
  .about .about-content {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  }

  .about .about-text {
    padding: 32px;
  }

  .about .stats .stat-number {
    font-size: clamp(1.65rem, 3.4vw, 2.35rem);
  }
}

@media (max-width: 820px) {
  .about .about-content {
    grid-template-columns: 1fr;
  }

  .about .stats {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 520px) {
  .about .about-text {
    padding: 26px 22px;
  }

  .about .stats .stat-item {
    padding: 22px 7px;
  }

  .about .stats .stat-number {
    font-size: clamp(1.3rem, 7vw, 1.85rem);
  }

  .about .stats .stat-label {
    font-size: 0.58rem;
    letter-spacing: 0.03em;
  }
}

/* HOME ABOUT: keep the prize amount balanced inside the third stat column */
.about .stats .stat-item:nth-child(3) .stat-number {
  font-size: clamp(1.45rem, 2.1vw, 1.9rem);
  letter-spacing: 0;
}

@media (max-width: 980px) {
  .about .stats .stat-item:nth-child(3) .stat-number {
    font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  }
}

@media (max-width: 520px) {
  .about .stats .stat-item:nth-child(3) .stat-number {
    font-size: clamp(1.05rem, 5.2vw, 1.35rem);
  }
}


/* ===== Navigation brand refinement ===== */
.nav-brand-text {
  color: #fff;
  letter-spacing: 0.08em;
}
.nav-logo a {
  color: inherit;
  text-decoration: none;
}

/* ===== PARTNER PAGE 2026 ===== */
.partner-hero {
  min-height: auto !important;
  padding: 128px 0 74px !important;
  text-align: left !important;
  background: #f5f6f8;
}
.partner-hero::after {
  background: linear-gradient(90deg, rgba(245,246,248,.97) 0%, rgba(245,246,248,.91) 55%, rgba(245,246,248,.68) 100%) !important;
}
.partner-hero .header-image {
  opacity: .34;
}
.partner-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1120px;
}
.partner-hero-label,
.partner-contact-label {
  margin: 0 0 8px;
  color: var(--brand-gold);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .18em;
}
.partner-hero h1 {
  margin: 0;
  color: var(--brand-navy);
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1;
  letter-spacing: .12em;
  text-shadow: none;
}
.partner-hero .page-subtitle {
  margin-top: 10px;
  color: var(--brand-gold);
}
.partner-hero-copy {
  max-width: 880px;
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid rgba(7,26,48,.16);
}
.partner-hero-copy h2 {
  margin: 0 0 20px;
  color: var(--brand-navy);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: .04em;
}
.partner-hero-copy p {
  max-width: 820px;
  margin: 0;
  color: #344054;
  font-weight: 500;
  line-height: 1.95;
}
.partner-hero-copy p + p {
  margin-top: 12px;
}

.partner-section {
  padding: 68px 0;
}
.partner-section:nth-of-type(odd) {
  background: #fff;
}
.partner-section:nth-of-type(even) {
  background: var(--bg);
}
.partner-section-header {
  margin-bottom: 30px;
}
.partner-section-header h2 {
  font-size: clamp(2rem, 4.6vw, 3.25rem);
  line-height: 1.15;
}
.partner-introduction {
  max-width: 880px;
  margin: 0 auto 34px;
  text-align: center;
}
.partner-introduction p {
  margin: 0;
  color: #475467;
  font-weight: 500;
  line-height: 1.9;
}
.partner-introduction p + p {
  margin-top: 7px;
}

.organization-card {
  max-width: 980px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(7,26,48,.15);
  border-radius: 20px;
  background: #fff;
}
.organization-list {
  margin: 0;
}
.organization-list > div {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  border-bottom: 1px solid rgba(7,26,48,.11);
}
.organization-list > div:last-child {
  border-bottom: 0;
}
.organization-list dt,
.organization-list dd {
  margin: 0;
  padding: 18px 22px;
}
.organization-list dt {
  color: var(--brand-navy);
  background: #f2f4f7;
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .04em;
}
.organization-list dd {
  color: #344054;
  font-weight: 600;
}
.organization-list a {
  color: var(--brand-navy);
  font-weight: 900;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.sponsor-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(7,26,48,.14);
  border-radius: 20px;
  background: #fff;
}
.sponsor-logo {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 26px;
  border-bottom: 1px solid rgba(7,26,48,.11);
  background: #f8f9fb;
}
.sponsor-logo img {
  max-width: 190px;
  max-height: 105px;
  object-fit: contain;
}
.sponsor-logo-compact img {
  max-width: 112px;
  max-height: 112px;
}
.sponsor-logo-mojhon img {
  width: 72px;
  height: 72px;
}
.sponsor-logo-name {
  color: #111;
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: .04em;
}
.logo-wordmark {
  display: inline-block;
  max-width: 100%;
  color: var(--brand-navy);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.logo-wordmark-kyokuto {
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: .12em;
}
.logo-wordmark-mjup {
  font-size: clamp(2.5rem, 5vw, 4.1rem);
  font-style: italic;
  letter-spacing: -.04em;
}
.sponsor-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}
.sponsor-body h3 {
  margin: 0 0 14px;
  color: var(--brand-navy);
  font-size: 1.18rem;
  line-height: 1.45;
}
.sponsor-body p {
  margin: 0;
  color: #475467;
  font-size: .93rem;
  line-height: 1.85;
}
.company-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--brand-navy);
  font-size: .84rem;
  font-weight: 900;
  text-decoration: none;
}
.company-link:hover {
  color: var(--brand-gold);
}

.partner-logo-grid {
  max-width: 820px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 0 auto;
}
.partner-logo-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid rgba(7,26,48,.14);
  border-radius: 20px;
  background: #fff;
  color: inherit;
  text-align: center;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
}
.partner-logo-card:hover {
  border-color: var(--brand-gold);
  transform: translateY(-3px);
}
.partner-logo-image {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.partner-logo-image img {
  max-width: 235px;
  max-height: 90px;
  object-fit: contain;
}
.partner-logo-card strong {
  display: block;
  color: var(--brand-navy);
  font-size: 1.05rem;
}
.partner-logo-card > span {
  display: block;
  margin-top: 8px;
  color: var(--brand-gold);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.collaboration-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(7,26,48,.14);
  border-left: 1px solid rgba(7,26,48,.14);
}
.collaboration-card {
  min-width: 0;
  padding: 32px;
  border-right: 1px solid rgba(7,26,48,.14);
  border-bottom: 1px solid rgba(7,26,48,.14);
  background: #fff;
}
.collaboration-number {
  margin-bottom: 12px;
  color: var(--brand-gold);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .14em;
}
.collaboration-card h3 {
  margin: 0 0 15px;
  color: var(--brand-navy);
  font-size: 1.3rem;
}
.collaboration-card p {
  margin: 0;
  color: #475467;
  line-height: 1.85;
}
.collaboration-card p + p {
  margin-top: 10px;
}

.partner-contact-section {
  padding: 72px 0;
  color: #fff;
  background: var(--brand-navy);
  border-top: 2px solid var(--brand-gold);
}
.partner-contact-panel {
  max-width: 900px;
}
.partner-contact-panel h2 {
  margin: 0 0 22px;
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  line-height: 1.25;
  letter-spacing: .03em;
}
.partner-contact-panel p {
  max-width: 850px;
  margin: 0;
  color: rgba(255,255,255,.8);
  line-height: 1.9;
}
.partner-contact-panel p + p {
  margin-top: 9px;
}
.partner-contact-button {
  margin-top: 30px;
}

@media (max-width: 980px) {
  .sponsor-grid {
    grid-template-columns: 1fr;
  }
  .sponsor-card {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
  }
  .sponsor-logo {
    min-height: 100%;
    border-right: 1px solid rgba(7,26,48,.11);
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .partner-hero {
    padding: 104px 0 50px !important;
  }
  .partner-hero-copy {
    margin-top: 30px;
    padding-top: 24px;
  }
  .partner-section {
    padding: 48px 0;
  }
  .organization-list > div {
    grid-template-columns: 1fr;
  }
  .organization-list dt {
    padding-bottom: 8px;
  }
  .organization-list dd {
    padding-top: 8px;
  }
  .sponsor-card {
    display: flex;
  }
  .sponsor-logo {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid rgba(7,26,48,.11);
  }
  .partner-logo-grid,
  .collaboration-grid {
    grid-template-columns: 1fr;
  }
  .partner-introduction {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .partner-section-header h2 {
    overflow-wrap: anywhere;
    letter-spacing: .07em;
  }
  .sponsor-body,
  .collaboration-card,
  .partner-logo-card {
    padding: 24px 20px;
  }
  .organization-list dt,
  .organization-list dd {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* Button reset for the mobile navigation toggle */
.hamburger {
  padding: 0;
  border: 0;
  background: transparent;
  appearance: none;
}

/* partner layout cache-bust build: 20260716-partner-layout-2 */
