﻿:root {
  --green: #0d8b57;
  --green-deep: #07563b;
  --mint: #e8f6ef;
  --navy: #122033;
  --ink: #17202a;
  --muted: #647080;
  --line: #dbe5df;
  --yellow: #f2c94c;
  --orange: #ff8a1f;
  --ci-red: #de3d31;
  --ci-blue: #2167b1;
  --white: #ffffff;
  --page: #f7faf8;
  --shadow: 0 18px 48px rgba(18, 32, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(44px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 64px);
  color: var(--white);
  transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.site-header.is-subpage,
.site-header.is-scrolled,
.site-header.is-open {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 34px rgba(18, 32, 51, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  padding: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 18px rgba(18, 32, 51, 0.1);
  flex: 0 0 auto;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 17px;
}

.brand small {
  margin-top: 2px;
  font-size: 11px;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 15px;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  content: "";
  transition: width 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero picture,
.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 28, 24, 0.88) 0%, rgba(7, 28, 24, 0.58) 45%, rgba(7, 28, 24, 0.12) 100%),
    linear-gradient(0deg, rgba(18, 32, 51, 0.68) 0%, rgba(18, 32, 51, 0) 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 250px;
}

.eyebrow,
.section-label {
  display: block;
  margin: 0 0 16px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6.2vw, 86px);
  line-height: 1.06;
  font-weight: 800;
}

.hero-nowrap,
.mission-nowrap {  
  white-space: nowrap;
}

.text-orange {
  color: var(--orange);
}

.text-green {
  color: var(--green);
}

.hero-copy {
  width: min(760px, 100%);
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: var(--navy);
  background: var(--yellow);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.hero-stats {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(1080px, calc(100% - 40px));
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(8, 29, 26, 0.58);
  backdrop-filter: blur(16px);
}

.hero-stats article {
  position: relative;
  min-height: 150px;
  padding: 26px 52px 22px 22px;
}

.hero-stats article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 17px;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.55;
}

.value-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--green);
  background: var(--yellow);
  box-shadow: 0 10px 24px rgba(18, 32, 51, 0.16);
}

.value-icon img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  object-fit: contain;
  object-position: center;
  transform: translate(-50%, -50%);
}

.icon-recovery img {
  width: 35px;
  height: 30px;
}

.icon-participation img {
  width: 36px;
  height: 27px;
}

.icon-respect img {
  width: 34px;
  height: 28px;
}

.icon-safety img,
.icon-connect img {
  width: 34px;
  height: 34px;
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 72px);
}

.intro-band,
.news-preview,
.subpage .section:nth-of-type(odd) {
  background: var(--white);
}

.section-heading {
  width: min(1120px, 100%);
  margin: 0 auto 36px;
}

.section-heading .section-label,
.page-hero .section-label,
.split-section > div:first-child .section-label,
.quote-section .section-label {
  margin-bottom: 8px;
}

.section-heading.with-action {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section h2,
.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.25;
}

.section-heading p,
.page-hero p,
.feature-card p,
.notice-card p,
.program-list p,
.quote-copy p,
.location-card p,
.cta-band p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.feature-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.feature-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.notice-card,
.location-card {
  display: block;
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.intro-band .feature-card,
.programs-preview .feature-card {
  background: var(--page);
}

.image-card {
  overflow: hidden;
  padding-top: 0;
}

.image-card > img {
  width: calc(100% + 56px);
  height: 190px;
  margin: 0 -28px 24px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.vision-card {
  position: relative;
  padding-right: 92px;
}

.vision-icon {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 8px;
  color: var(--green);
  background: var(--mint);
  box-shadow: inset 0 0 0 1px rgba(13, 139, 87, 0.1);
}

.vision-icon img {
  display: block;
  width: 45px;
  height: 45px;
  object-fit: contain;
  object-position: center;
}

.feature-card span,
.program-list span {
  display: block;
  margin-bottom: 28px;
  color: var(--green);
  font-weight: 800;
}

.feature-card h3,
.notice-card h3,
.location-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.35;
}

.feature-card strong {
  display: inline-flex;
  margin-top: 22px;
  color: var(--green-deep);
  font-size: 14px;
}

.business-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.business-strip article {
  overflow: hidden;
  min-height: 150px;
  padding: 0 24px 24px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-deep);
}

.business-strip img {
  width: calc(100% + 48px);
  height: 150px;
  margin: 0 -24px 22px;
  object-fit: cover;
}

.business-strip strong {
  display: block;
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 19px;
}

.business-strip span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.news-preview .notice-grid {
  grid-template-columns: repeat(3, 1fr);
}

.notice-card small {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--green-deep);
  background: var(--mint);
  font-weight: 800;
}

.card-image {
  width: calc(100% + 56px);
  height: 190px;
  margin: -28px -28px 24px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.notice-card span {
  display: inline-flex;
  margin-top: 26px;
  color: var(--green);
  font-weight: 800;
}

.board-latest {
  display: grid;
  gap: 8px;
  margin: 8px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.board-latest li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}

.board-latest .latest-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.board-latest time {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.board-latest.is-empty li {
  display: block;
  color: var(--muted);
}

.text-link {
  color: var(--green-deep);
  font-weight: 800;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1120px, calc(100% - 40px));
  margin: clamp(72px, 9vw, 128px) auto;
  padding: clamp(36px, 5vw, 56px);
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
}

.join-cta {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background:
    linear-gradient(90deg, rgba(8, 29, 26, 0.92) 0%, rgba(8, 29, 26, 0.72) 48%, rgba(8, 29, 26, 0.28) 100%),
    url("assets/photo-join-hope.png") center / cover;
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.76);
}

.join-cta h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.18;
}

.arrow-button {
  gap: 8px;
  min-width: 150px;
}

.subpage {
  padding-top: 92px;
}

.page-hero {
  display: grid;
  justify-content: center;
  padding: 112px 20px 72px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(18, 32, 51, 0.9), rgba(7, 86, 59, 0.74)),
    var(--page-hero-image, url("assets/photo-match-play.png")) center / cover;
}

.about-hero {
  --page-hero-image: url("assets/photo-futsal-court.png");
}

.business-hero {
  --page-hero-image: url("assets/photo-team-huddle.png");
}

.social-hero {
  --page-hero-image: url("assets/photo-coaching.png");
}

.news-hero {
  --page-hero-image: url("assets/photo-celebration.png");
}

.join-hero {
  --page-hero-image: url("assets/photo-mou-handshake.png");
}

.page-hero > * {
  width: min(1120px, 100%);
  margin-left: 0;
  margin-right: 0;
}

.page-hero .section-label {
  width: min(1120px, 100%);
  justify-self: stretch;
}

.page-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.subnav {
  position: sticky;
  top: 92px;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  overflow-x: auto;
}

.subnav a {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--page);
  font-size: 14px;
  font-weight: 800;
}

.split-section,
.quote-section,
.join-page {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.join-invite {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.join-invite img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.join-invite > div {
  padding: 30px;
}

.join-invite h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.25;
}

.join-invite p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.mission-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto 34px;
}

.mission-image {
  overflow: hidden;
  min-height: 420px;
  border-radius: 8px;
  background: var(--mint);
}

.mission-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.mission-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.2;
}

.mission-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.split-section .feature-grid {
  grid-template-columns: 1fr;
}

.split-section.vision-section {
  grid-template-columns: 1fr;
}

.vision-section .feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.join-option-list {
  display: grid;
  gap: 18px;
}

.join-option-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 0;
  padding: 0;
}

.join-option-card > img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  margin: 0;
  border-right: 1px solid var(--line);
  border-bottom: 0;
}

.join-option-card > div {
  padding: 26px 28px 28px 0;
}

.profile-card {
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-deep);
}

.profile-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  margin-bottom: 24px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.profile-card h2 {
  color: var(--white);
}

.profile-card p {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.quote-copy blockquote {
  margin: 28px 0 0;
  padding: 28px;
  border-left: 5px solid var(--yellow);
  color: var(--navy);
  background: var(--white);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.5;
}

.timeline {
  width: min(920px, 100%);
  margin: 0 auto;
  border-top: 2px solid var(--navy);
}

.timeline article {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.timeline time {
  color: var(--green);
  font-weight: 800;
}

.timeline p {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  font-weight: 800;
}

.org-chart {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 6px 0 0;
}

.org-chart::before {
  position: absolute;
  top: 110px;
  left: 50%;
  width: 2px;
  height: 317px;
  transform: translateX(-50%);
  background: linear-gradient(var(--line), #c9d9d2);
  content: "";
}

.org-leadership {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 30px;
}

.org-person {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  width: min(380px, 100%);
  min-height: 96px;
  padding: 18px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(18, 32, 51, 0.08);
}

.org-president {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, var(--navy), #172c46);
  box-shadow: 0 20px 42px rgba(18, 32, 51, 0.18);
}

.org-auditor {
  position: absolute;
  top: 72px;
  right: 0;
  width: min(350px, 31vw);
  border-style: dashed;
  border-color: rgba(7, 86, 59, 0.54);
  background: rgba(255, 255, 255, 0.92);
}

.org-auditor::before {
  position: absolute;
  top: 50%;
  right: 100%;
  width: min(180px, 14vw);
  border-top: 1px dashed rgba(7, 86, 59, 0.48);
  content: "";
}

.org-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: #0795c9;
  background: #f0f7fb;
}

.org-president .org-icon {
  color: #5fd3ff;
  background: rgba(7, 149, 201, 0.18);
}

.org-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.org-person small,
.org-branch small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.org-president small {
  color: #7bdfff;
}

.org-person strong {
  display: block;
  color: var(--navy);
  font-size: clamp(23px, 2.5vw, 32px);
  line-height: 1.25;
}

.org-president strong {
  color: var(--white);
}

.org-branches {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  margin-top: 94px;
}

.org-branches::before {
  position: absolute;
  top: -54px;
  left: 17%;
  right: 17%;
  height: 54px;
  border-top: 2px solid #d9e4df;
  border-left: 2px solid #d9e4df;
  border-right: 2px solid #d9e4df;
  content: "";
}

.org-branch {
  position: relative;
  min-height: 260px;
  padding: 34px;
  border: 1px solid var(--line);
  border-top: 6px solid #0795c9;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 40px rgba(18, 32, 51, 0.08);
}

.org-regional {
  border-top-color: var(--green);
}

.org-branch h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 26px;
  color: var(--green-deep);
  font-size: 22px;
  text-align: center;
}

.org-execution h3 {
  color: #087fae;
}

.org-unit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.org-unit-grid article,
.org-region-head,
.org-team-row article {
  display: grid;
  place-items: center;
  min-height: 82px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-align: center;
}

.org-unit-grid strong,
.org-region-head strong {
  color: var(--navy);
  font-size: 20px;
}

.org-region-head {
  min-height: 88px;
  margin: 0 auto 26px;
  border-color: rgba(13, 139, 87, 0.7);
  width: min(430px, 100%);
}

.org-team-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.org-team-row article {
  min-height: 54px;
  color: var(--navy);
  background: var(--page);
  font-weight: 800;
}

.ci-section {
  background: var(--white);
}

.ci-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  width: min(1120px, 100%);
  margin: 0 auto 24px;
  align-items: stretch;
}

.ci-logo-panel {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f2f7f4 100%);
}

.ci-symbol {
  width: min(210px, 54vw);
}

.ci-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
}

.ci-intro h3 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.3;
}

.ci-intro p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.85;
}

.ci-meaning-grid,
.ci-color-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  gap: 16px;
}

.ci-meaning-grid {
  grid-template-columns: repeat(4, 1fr);
}

.ci-color-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 16px;
}

.ci-meaning-grid article,
.ci-color-card {
  position: relative;
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--page);
}

.ci-meaning-grid article {
  padding-right: 88px;
}

.ci-meaning-icon {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: var(--green);
  background: var(--mint);
  box-shadow: inset 0 0 0 1px rgba(13, 139, 87, 0.1);
}

.ci-meaning-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ci-meaning-icon svg circle {
  fill: currentColor;
  stroke: none;
}

.ci-meaning-grid strong,
.ci-color-card strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.35;
}

.ci-meaning-grid p,
.ci-color-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.ci-color-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.ci-color-head strong {
  margin: 0;
  font-size: 19px;
  letter-spacing: 0;
}

.ci-color-head span {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42), 0 10px 22px rgba(18, 32, 51, 0.16);
}

.color-red .ci-color-head span {
  background: var(--ci-red);
}

.color-blue .ci-color-head span {
  background: var(--ci-blue);
}

.color-green .ci-color-head span {
  background: var(--green);
}

.color-navy .ci-color-head span {
  background: var(--navy);
}

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

.location-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: 1fr;
}

.location-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: stretch;
}

.location-card-main {
  max-width: 860px;
  margin: 0 auto;
}

.location-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--ink);
  line-height: 1.75;
  list-style: none;
}

.location-detail {
  margin-top: 18px;
  padding: 18px;
  border-radius: 8px;
  background: var(--page);
}

.location-detail span {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.location-detail strong {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.55;
}

.location-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.subway-badge {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--white);
  background: #8b50a4;
  font-weight: 900;
}

.list-dot {
  width: 8px;
  height: 8px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--green);
}

.location-map {
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--page);
  box-shadow: var(--shadow);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 220px;
  margin-top: 24px;
  border: 1px dashed rgba(18, 32, 51, 0.25);
  border-radius: 8px;
  color: var(--muted);
  background: var(--page);
  font-weight: 800;
}

.map-link {
  min-height: 120px;
  border-style: solid;
  color: var(--green-deep);
  text-decoration: none;
}

.program-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.program-list article {
  min-height: 310px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.program-list article.rich-card {
  position: relative;
  overflow: hidden;
}

.program-list article.rich-card::before {
  display: block;
  width: 100%;
  height: 168px;
  margin: -30px -30px 26px;
  width: calc(100% + 60px);
  background:
    linear-gradient(135deg, rgba(13, 139, 87, 0.18), rgba(18, 32, 51, 0.12)),
    var(--card-image, url("assets/photo-match-play.png")) center / cover;
  content: "";
}

.program-list ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.program-list h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.league-flow {
  display: grid;
  gap: 30px;
  margin-top: 28px;
}

.league-flow span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-deep);
  font-weight: 800;
  text-align: center;
}

.league-flow span + span::before {
  position: absolute;
  top: -42px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 24px;
  height: 28px;
  transform: translateX(-50%);
  color: var(--yellow);
  content: "↓";
}

.contact-form {
  display: grid;
  gap: 16px;
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.privacy-check {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.privacy-check input {
  margin-top: 4px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: var(--page);
}

textarea {
  resize: vertical;
}

.privacy-check input {
  width: auto;
}

.contact-form .button {
  width: 100%;
  border: 0;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.site-footer {
  display: grid;
  gap: 22px;
  padding: 42px clamp(20px, 5vw, 72px) 26px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.footer-about p {
  max-width: 520px;
  line-height: 1.8;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  padding: 0;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
  color: var(--navy);
  background: var(--yellow);
}

.social-links img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.site-footer strong {
  color: var(--white);
  font-size: 18px;
}

.site-footer p {
  margin: 6px 0 0;
}

.footer-contact p {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: center;
  margin: 0 0 9px;
  line-height: 1.65;
}

.footer-contact a {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--orange);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links button {
  border: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.86);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.footer-links button:hover {
  color: var(--white);
}

#top_btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 28px rgba(18, 32, 51, 0.22);
  cursor: pointer;
}

#top_btn:hover {
  background: var(--green-deep);
}

#top_btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.policy-modal[hidden] {
  display: none;
}

.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(18, 32, 51, 0.64);
}

.policy-panel {
  position: relative;
  width: min(680px, 100%);
  max-height: min(720px, calc(100vh - 40px));
  overflow: auto;
  padding: 34px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.policy-panel h2 {
  margin: 0 0 18px;
  color: var(--navy);
}

.policy-panel p {
  color: var(--muted);
  line-height: 1.8;
}

.policy-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: var(--page);
  font-size: 22px;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 16px;
    font-size: 14px;
  }

  .feature-grid.three,
  .business-strip,
  .notice-grid,
  .news-preview .notice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  .site-header {
    display: flex;
    justify-content: space-between;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--navy);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .menu-toggle {
    display: block;
  }

  .split-section,
  .quote-section,
  .join-page,
  .mission-layout {
    grid-template-columns: 1fr;
  }

  .program-list,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .ci-showcase {
    grid-template-columns: 1fr;
  }

  .ci-meaning-grid,
  .ci-color-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .org-chart::before,
  .org-branches::before,
  .org-auditor::before {
    display: none;
  }

  .org-auditor {
    position: relative;
    top: auto;
    right: auto;
    width: min(380px, 100%);
  }

  .org-branches {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .org-unit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vision-section .feature-grid {
    grid-template-columns: 1fr;
  }

  .join-option-card {
    grid-template-columns: 1fr;
  }

  .join-option-card > img {
    height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .join-option-card > div {
    padding: 0 24px 26px;
  }

  .mission-image,
  .mission-image img {
    min-height: 300px;
  }

  .footer-main,
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand-logo img {
    width: 34px;
    height: 35px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    display: block;
    min-height: 0;
    padding-bottom: 20px;
  }

  .hero-content {
    width: calc(100% - 36px);
    padding: 128px 0 28px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .hero-nowrap,
  .mission-nowrap {
    white-space: normal;
  }

  .hero-stats,
  .feature-grid,
  .feature-grid.three,
  .business-strip,
  .notice-grid,
  .news-preview .notice-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    position: relative;
    left: auto;
    bottom: auto;
    width: calc(100% - 36px);
    margin: 0 auto;
    transform: none;
  }

  .hero-stats article {
    min-height: 0;
    padding: 18px 58px 18px 18px;
  }

  .hero-stats article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .ci-logo-panel,
  .ci-intro {
    padding: 26px;
  }

  .ci-logo-panel {
    min-height: 250px;
  }

  .ci-meaning-grid,
  .ci-color-grid {
    grid-template-columns: 1fr;
  }

  .section-heading.with-action,
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-main,
  .footer-bottom {
    display: grid;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-form {
    padding: 20px;
  }

  .org-person {
    grid-template-columns: 56px 1fr;
    padding: 16px;
  }

  .org-icon {
    width: 52px;
    height: 52px;
  }

  .org-icon svg {
    width: 28px;
    height: 28px;
  }

  .org-branch {
    padding: 24px;
  }

  .org-unit-grid,
  .org-team-row {
    grid-template-columns: 1fr;
  }

  .card-image,
  .image-card > img,
  .business-strip img {
    height: 170px;
  }
}
