:root {
  --bg: #ffffff;
  --bg-muted: #f5f6f8;
  --bg-subtle: #f0f1f4;
  --paper: #ffffff;
  --text: #0d0e12;
  --text-soft: #626272;
  --line: #e2e3e8;
  --brand: #9b1c20;
  --brand-deep: #781519;
  --brand-dark: #521012;
  --brand-light: #fff2f2;
  --hero-max: 1920px;
  --max: 1320px;
  --radius: 16px;
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Pretendard Variable", "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, "Apple SD Gothic Neo", sans-serif;
  font-size: 19px;
  line-height: 1.82;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding-left: 1.15rem; }
li { margin-bottom: 0.5rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2.2rem;
  padding: 0.85rem 1.6rem;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  min-width: fit-content;
}
.brand-office {
  font-size: clamp(2.3rem, 2.9vw, 3.15rem);
  line-height: 1;
  color: var(--brand);
  font-weight: 800;
  letter-spacing: -0.05em;
  white-space: nowrap;
  text-shadow: 0 2px 4px rgba(45, 15, 26, 0.14);
}
.brand-status {
  display: inline-flex;
  flex-direction: column;
  gap: 0.02rem;
  font-size: 1.02rem;
  line-height: 0.95;
  color: #111111;
  font-weight: 700;
  white-space: nowrap;
  transform: translateY(-0.62em);
  text-shadow: 0 1px 3px rgba(45, 15, 26, 0.12);
}
.brand-status span {
  display: block;
}
.brand-title {
  font-size: clamp(2.3rem, 2.9vw, 3.15rem);
  line-height: 1;
  color: #111111;
  letter-spacing: -0.05em;
  font-weight: 800;
  white-space: nowrap;
  text-shadow: 0 2px 4px rgba(45, 15, 26, 0.14);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: #1a1718;
  font-size: 1.08rem;
  font-weight: 700;
  flex-wrap: wrap;
}
.site-nav a {
  position: relative;
  padding: 0.15rem 0;
  white-space: nowrap;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}
.site-socials {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 999px;
  background: #f2f2f4;
  border: 1px solid rgba(120, 21, 25, 0.14);
  color: var(--brand);
  box-shadow: 0 10px 22px rgba(120, 21, 25, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.social-link-youtube {
  background: #fff2f2;
  border-color: rgba(255, 0, 0, 0.18);
  color: #ff0000;
}
.social-link-facebook {
  background: #eef3ff;
  border-color: rgba(24, 119, 242, 0.2);
  color: #1877f2;
}
.social-link-instagram {
  background: #fff1f6;
  border-color: rgba(225, 48, 108, 0.2);
  color: #e1306c;
}
.social-link-threads {
  background: #f3f3f3;
  border-color: rgba(24, 24, 24, 0.14);
  color: #111111;
}
.social-link-naverblog {
  background: #effaf2;
  border-color: rgba(3, 199, 90, 0.18);
  color: #03c75a;
}
.social-link:hover,
.social-link:focus-visible {
  background: #c7262c;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(120, 21, 25, 0.18);
}
.social-link svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: currentColor;
}

.side-nav {
  position: fixed;
  top: 50%;
  right: 1.35rem;
  z-index: 38;
  width: 9.2rem;
  padding: 0.75rem;
  border: 1px solid rgba(120, 21, 25, 0.24);
  border-radius: 18px;
  background: rgba(246, 236, 230, 0.96);
  box-shadow: 0 18px 42px rgba(120, 21, 25, 0.18);
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
}
.side-nav-label {
  margin: 0 0 0.45rem;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
}
.side-nav nav {
  display: grid;
  gap: 0.36rem;
}
.side-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  padding: 0.38rem 0.7rem;
  border: 1px solid rgba(120, 21, 25, 0.16);
  border-radius: 999px;
  background: rgba(255, 251, 248, 0.98);
  color: #2d0f1a;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 8px 18px rgba(120, 21, 25, 0.08);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.side-nav a:hover,
.side-nav a:focus-visible,
.side-nav a.is-current {
  border-color: var(--brand);
  background: var(--brand);
  color: #ffffff;
  transform: translateX(-2px);
}
.side-nav a.is-accent {
  border-color: rgba(191, 36, 50, 0.36);
  background: #bf2432;
  color: #ffffff;
}
.side-nav a.is-accent.is-current,
.side-nav a.is-accent:hover,
.side-nav a.is-accent:focus-visible {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
}

/* ── 히어로: 분할 레이아웃 ──────────────────────────── */
.hero-home {
  position: relative;
  min-height: 100svh;
  background: var(--text); /* 다크 배경 */
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  min-height: 100svh;
  padding-top: 4.6rem; /* 헤더 높이 보정 */
}

/* 왼쪽 텍스트 */
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3.5rem 3.5rem 0 3.5rem;
}
.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0;
}
.hero-sns {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: fit-content;
  margin-bottom: 2.5rem;
}
.hero-sns-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.62);
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}
.hero-sns-link svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}
.hero-sns-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}
.hero-eyebrow {
  margin: 0 0 1.2rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brand);
}
.hero-title {
  margin: 0;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.055em;
  word-break: keep-all;
}
.hero-title span {
  display: block;
  color: #ffffff;
  font-size: clamp(2.8rem, 4.2vw, 5.2rem);
}
.hero-title span:last-child {
  color: var(--brand);
}
.hero-lead {
  margin: 1.6rem 0 0;
  word-break: keep-all;
}
.hero-lead p {
  margin: 0;
  font-size: clamp(1rem, 1.3vw, 1.3rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.62);
}
.hero-lead p + p { margin-top: 0.2rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.2rem;
}
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2.2rem;
}
.hero-fact {
  padding: 1rem 1rem 1.05rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}
.hero-fact strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #ffffff;
}
.hero-fact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* 카운트다운 바 (히어로 하단) */
.hero-countdown-bar {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-countdown-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.48);
}
.hero-countdown-dday {
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: #ffffff;
  line-height: 1;
}
.hero-countdown-date {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.06em;
}

/* 오른쪽 비주얼 */
.hero-visual {
  position: relative;
  overflow: hidden;
  background: #161616;
}
.hero-candidate-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(8%) contrast(1.04);
}
.hero-visual-badge {
  position: absolute;
  top: 2rem;
  left: 2rem;
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero-visual-quote {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.2rem 2rem;
  background: linear-gradient(0deg, rgba(10,10,10,0.88) 0%, transparent 100%);
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.7;
}

/* 공통 버튼 */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 1rem;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.button-primary {
  background: #ffffff;
  color: var(--brand);
}
.button-primary:hover,
.button-primary:focus-visible {
  background: #f3ecee;
}
.button-cta {
  min-height: 3.4rem;
  padding: 0.95rem 1.6rem;
  border-width: 0;
  background: var(--brand);
  color: #fff;
  font-size: 1.34rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 24px rgba(155, 28, 32, 0.32);
}
.button-cta:hover,
.button-cta:focus-visible {
  background: var(--brand-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(155, 28, 32, 0.38);
}
.button-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.24);
}
.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.44);
}
.button-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
}
.button-wide { width: 100%; }

.section { padding: 5.4rem 2rem; }
.section-muted { background: var(--bg-muted); }
.section-brand { background: #f9f9fb; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.narrow { max-width: 980px; }
.section-heading { max-width: 58rem; margin-bottom: 2.2rem; }
.section .eyebrow { color: var(--brand); }
.section h2 { font-size: clamp(2.55rem, 3.35vw, 3.5rem); margin-bottom: 0.7rem; }
.section p, .section li { color: var(--text-soft); line-height: 1.86; word-break: keep-all; }
.section p, .section li { font-size: 1.14rem; }
main > .section:first-of-type {
  padding-top: 6.5rem;
}
main > .section:first-of-type .section-inner {
  position: relative;
  overflow: hidden;
  padding: 2.5rem;
  border-radius: 32px;
  background: var(--brand-deep);
  border: 1px solid rgba(155, 28, 32, 0.28);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
main > .section:first-of-type .section-inner::before {
  content: none;
}
main > .section:first-of-type .section-inner::after {
  content: "";
  position: absolute;
  top: -2rem;
  right: -4rem;
  width: 16rem;
  height: 14rem;
  background: rgba(255, 255, 255, 0.06);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 74%);
}
main > .section:first-of-type .section-heading,
main > .section:first-of-type .split-copy,
main > .section:first-of-type .contact-copy {
  position: relative;
  z-index: 1;
}
main > .section:first-of-type .section-heading .eyebrow,
main > .section:first-of-type .split-copy .eyebrow,
main > .section:first-of-type .contact-copy .eyebrow {
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  opacity: 1;
}
main > .section:first-of-type .section-heading h2,
main > .section:first-of-type .split-copy h2,
main > .section:first-of-type .contact-copy h2 {
  color: #ffffff;
}
main > .section:first-of-type .section-heading > p,
main > .section:first-of-type .split-copy > p,
main > .section:first-of-type .contact-copy > p {
  color: rgba(255, 255, 255, 0.78);
}
main > .section:first-of-type .split-media,
main > .section:first-of-type .contact-card,
main > .section:first-of-type .promise-grid,
main > .section:first-of-type .gallery-grid,
main > .section:first-of-type .org-chart {
  position: relative;
  z-index: 1;
}

.vision-grid, .promise-grid, .archive-columns, .detail-grid, .core-word-grid {
  display: grid;
  gap: 1rem;
}
.vision-grid,
.core-word-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.promise-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.archive-columns-wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.detail-grid-wide { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.detail-card-wide { grid-column: span 2; }

.vision-card, .promise-card, .archive-block, .contact-card, .detail-card, .core-word-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 1.7rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}
.card-index {
  margin: 0 0 0.75rem;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.vision-card h3, .promise-card h3, .archive-block h3, .contact-card h3, .detail-card h3, .core-word-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  color: var(--text);
  line-height: 1.45;
  font-weight: 800;
}
.archive-block ul, .contact-card ol, .detail-card ul { margin-top: 1rem; }

.core-word-card {
  text-align: center;
  padding-top: 2rem;
}
.core-word-badge {
  display: grid;
  place-items: center;
  width: 10.8rem;
  height: 10.8rem;
  margin: 0 auto 1.35rem;
  border-radius: 999px;
  background: #c7262c;
  color: #fff;
  box-shadow: 0 18px 40px rgba(120, 21, 25, 0.12);
}
.core-word-badge span {
  font-size: 3.35rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.split-layout, .contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}
.split-copy p { margin: 0 0 1rem; }
.split-copy > p {
  font-size: 1.18rem;
}
.about-section .split-copy > p {
  font-size: 1.12rem;
  line-height: 1.86;
  letter-spacing: -0.025em;
}
.about-section .split-copy h2 {
  font-size: clamp(1.85rem, 2.45vw, 2.55rem);
}
.about-section .detail-card li {
  font-size: 1.62rem;
  line-height: 1.86;
}
.about-section .detail-card h3 {
  font-size: 1.95rem;
}
.sentence-lines {
  display: grid;
  gap: 0.28rem;
}
.sentence-line {
  display: block;
}
.marker-word {
  display: inline;
  padding: 0 0.18em;
  background: rgba(193, 140, 67, 0.26);
  border-radius: 0.2em;
  color: inherit;
  font-weight: 700;
}
.promise-card .sentence-lines,
.vision-card .sentence-lines,
.gallery-caption .sentence-lines,
.gallery-thumb-copy .sentence-lines,
.contact-copy .sentence-lines,
.section-heading .sentence-lines {
  margin: 0;
}
.promise-card .sentence-line + .sentence-line,
.vision-card .sentence-line + .sentence-line,
.gallery-caption .sentence-line + .sentence-line,
.gallery-thumb-copy .sentence-line + .sentence-line,
.contact-copy .sentence-line + .sentence-line,
.section-heading .sentence-line + .sentence-line {
  margin-top: 0.22rem;
}
.split-media img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.about-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #111;
  box-shadow: 0 18px 40px rgba(34, 24, 26, 0.1);
}
.about-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.about-mobile-poster {
  display: none;
}
.about-mobile-poster img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 40px rgba(34, 24, 26, 0.1);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  width: 100%;
}
.about-stat-grid {
  grid-column: 1 / -1;
  margin-top: 0.3rem;
}
.stat-grid div {
  min-height: 9.6rem;
  padding: 1.35rem 1.45rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.05);
}
.stat-grid strong {
  display: block;
  font-size: 2rem;
  color: var(--brand);
}
.stat-grid span { color: var(--text-soft); font-size: 1.28rem; line-height: 1.7; }

.timeline-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.timeline-item {
  padding: 1.35rem 1.45rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.05);
}
.timeline-item strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--brand);
  font-size: 1.12rem;
  font-weight: 800;
}
.timeline-item p { margin: 0; font-size: 1.12rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1rem;
}
.gallery-main, .gallery-side {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}
.gallery-main img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery-caption { padding: 1rem 1.1rem 1.2rem; }
.gallery-caption p, .gallery-caption strong { margin: 0; }
.gallery-caption strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text);
  font-size: 1.3rem;
}
.gallery-side { display: grid; grid-template-columns: 1fr; }
.gallery-thumb {
  display: grid;
  grid-template-columns: 148px 1fr;
  min-height: 9.5rem;
  border-bottom: 1px solid var(--line);
}
.gallery-thumb:last-child { border-bottom: 0; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb-copy { padding: 1rem; }
.gallery-thumb-copy strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text);
  font-size: 1.18rem;
}
.gallery-thumb-copy p,
.gallery-caption p {
  font-size: 1.08rem;
}

.field-slider {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
.field-slider-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
}
.field-slider-button {
  min-width: 5rem;
  min-height: 2.8rem;
  border: 1px solid rgba(120, 21, 25, 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: var(--brand);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.field-slider-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 4rem;
  color: var(--brand-dark);
  font-size: 1rem;
  font-weight: 800;
}
.field-slider-viewport {
  overflow: hidden;
}
.field-slider-track {
  display: flex;
  transition: transform 260ms ease;
}
.field-slide {
  flex: 0 0 100%;
}
.panorama-card {
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(120, 21, 25, 0.12);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}
.panorama-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0.85rem;
  background: var(--bg-muted);
}
.panorama-images figure {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 22px;
  background: #d8d8de;
}
.panorama-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.panorama-copy {
  display: grid;
  gap: 0.7rem;
  max-width: none;
  padding: 1.35rem 1.45rem 1.45rem;
}
.panorama-date {
  width: fit-content;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(107, 31, 50, 0.1);
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.panorama-copy h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  line-height: 1.28;
  font-weight: 800;
}
.panorama-copy p {
  margin: 0;
}

.contact-copy { max-width: 36rem; }
.contact-card {
  padding: 1.7rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.support-notes {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.8rem;
}
.support-notes p {
  margin: 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 5px solid rgba(0, 0, 0, 0.25);
  border-radius: 14px;
  background: #ffffff;
}
.support-form {
  display: grid;
  gap: 1rem;
}
.support-field {
  display: grid;
  gap: 0.45rem;
  padding: 0.95rem 1rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  background: #f8f8f8;
}
.support-field span {
  color: var(--text);
  font-size: 1.04rem;
  font-weight: 700;
}
.support-field input,
.support-field textarea,
.support-field select {
  width: 100%;
  padding: 1.05rem 1.05rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
}
.support-field input:focus,
.support-field textarea:focus,
.support-field select:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.28);
  box-shadow: 0 0 0 4px rgba(107, 31, 50, 0.08);
}
.copy-guide-text {
  margin: 0 0 1rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
}
.copy-box {
  display: grid;
  gap: 1rem;
}
.copy-box-value {
  display: block;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: #fff2f2;
  border: 1px solid rgba(0, 0, 0, 0.10);
  color: var(--brand-dark);
  font-size: 1.34rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.02em;
}
.copy-box-value span {
  display: block;
}
.copy-box-value span + span {
  margin-top: 0.28rem;
  font-size: 1.08rem;
}
.copy-feedback {
  min-height: 1.5rem;
  margin: 0.9rem 0 0;
  color: var(--brand);
  font-size: 1rem;
  font-weight: 700;
}
.supporters-form .button-cta,
.copy-box .button-cta {
  position: relative;
}
.supporters-form .button-cta::before,
.copy-box .button-cta::before {
  content: "CLICK";
  position: absolute;
  top: 0.48rem;
  left: 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.82);
}

.org-chart {
  position: relative;
  padding-top: 1rem;
}
.press-page .section-inner,
.press-detail-page .section-inner {
  background: #ffffff;
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.press-page .section-heading,
.press-page .press-board,
.press-page .press-pagination,
.press-detail-page .press-detail-head,
.press-detail-page .press-detail-body {
  position: relative;
  z-index: 2;
}
.press-page .section-inner::after,
.press-detail-page .section-inner::after {
  content: none !important;
}
.press-page .section-heading .eyebrow {
  color: #ffffff !important;
}
.press-page .section-heading h2 {
  color: #ffffff !important;
}
.press-page .section-heading p,
.press-page .section-heading .sentence-line {
  color: #ffffff !important;
}
.press-detail-page h2 {
  color: var(--text) !important;
}
.press-detail-page p {
  color: var(--text-soft) !important;
}
.press-heading {
  padding-bottom: 1.6rem;
  border-bottom: 2px solid rgba(107, 31, 50, 0.2);
}
.press-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}
.press-card {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(120, 21, 25, 0.12);
  background: #fff;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.press-card:hover,
.press-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(120, 21, 25, 0.24);
  box-shadow: 0 18px 38px rgba(45, 28, 31, 0.12);
}
.press-card-link {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
}
.press-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #ebebef;
}
.press-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.press-card-copy {
  display: grid;
  gap: 0.55rem;
  padding: 1rem 1.05rem 1.15rem;
}
.press-card-date,
.press-detail-head time {
  color: #4b1627 !important;
  font-size: 0.98rem;
  font-weight: 800;
}
.press-card-title {
  color: #161214 !important;
  font-size: 1.14rem;
  line-height: 1.72;
  word-break: keep-all;
}
.press-detail {
  max-width: 980px;
}
.press-detail-head {
  display: grid;
  gap: 0.9rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.press-back-link {
  width: fit-content;
  color: var(--brand);
  font-size: 1rem;
  font-weight: 800;
}
.press-back-link::before {
  content: "< ";
}
.press-detail-head h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  line-height: 1.25;
  letter-spacing: -0.045em;
}
.press-detail-body {
  display: grid;
  gap: 0.8rem;
  padding-top: 2rem;
}
.press-detail-body p {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.95;
  word-break: keep-all;
}
.press-source-button {
  width: fit-content;
  margin-top: 0.7rem;
}
.press-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 2rem;
}
.press-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 999px;
  background: #fff;
  color: var(--brand);
  font-weight: 800;
}
.press-pagination a:hover,
.press-pagination a:focus-visible,
.press-pagination a.is-current {
  background: var(--brand);
  color: #fff;
}

.policy-page .policy-shell {
  background: var(--bg-muted);
  border: 1px solid rgba(120, 21, 25, 0.14);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.policy-page .policy-shell::after {
  content: none !important;
}
.policy-slogan-block {
  padding: 2.8rem 3rem;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(155, 28, 32, 0.97) 0%, rgba(120, 21, 25, 0.97) 100%);
  color: #ffffff;
}
.policy-slogan-block .eyebrow {
  color: rgba(255, 255, 255, 0.7) !important;
}
.policy-slogan-block h2 {
  margin: 0;
  color: #ffffff !important;
  font-size: clamp(3rem, 4.6vw, 4.5rem);
  letter-spacing: -0.06em;
  line-height: 1.05;
}
.policy-slogan-sub {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.policy-vision-block {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1.4rem;
  margin-top: 1.2rem;
  padding: 1.6rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 24px;
  background: #ffffff;
}
.policy-vision-copy {
  padding: 1.2rem 1.25rem;
  border-radius: 20px;
  background: var(--bg-muted);
  border: 1px solid rgba(120, 21, 25, 0.1);
}
.policy-vision-copy .eyebrow {
  color: var(--brand);
}
.policy-vision-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -0.045em;
}
.policy-vision-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0.6rem 0.4rem;
}
.policy-vision-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #ffffff;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.policy-card-keyword {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-soft);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.policy-core-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}
.policy-core-card {
  padding: 1.5rem;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: #ffffff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}
.policy-core-card strong {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--brand);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}
.policy-core-card .sentence-lines {
  margin: 0;
}
.policy-core-card .sentence-line {
  font-size: 1.08rem;
  line-height: 1.85;
}
.policy-core-card.policy-tone-0,
.policy-group.policy-tone-0 {
  background: #fff3f3;
  border-color: rgba(155, 28, 32, 0.18);
}
.policy-core-card.policy-tone-1,
.policy-group.policy-tone-1 {
  background: #fbf1e6;
  border-color: rgba(168, 103, 42, 0.18);
}
.policy-core-card.policy-tone-2,
.policy-group.policy-tone-2 {
  background: #f2efe9;
  border-color: rgba(108, 88, 78, 0.18);
}
.policy-core-card.policy-tone-0 strong,
.policy-group.policy-tone-0 .policy-group-head h3 {
  color: #9b1c20;
}
.policy-core-card.policy-tone-1 strong,
.policy-group.policy-tone-1 .policy-group-head h3 {
  color: #9a5a1e;
}
.policy-core-card.policy-tone-2 strong,
.policy-group.policy-tone-2 .policy-group-head h3 {
  color: #5e4438;
}
.policy-group-stack {
  display: grid;
  gap: 1.3rem;
  margin-top: 1.3rem;
}
.policy-group {
  padding: 1.6rem;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: #ffffff;
}
.policy-group-head {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.policy-group-head h3 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: -0.04em;
}
.policy-group-head p {
  margin: 0;
  font-size: 1.08rem;
  color: var(--text-soft);
}
.policy-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}
.policy-card {
  display: grid;
  align-content: start;
  gap: 0.7rem;
  min-height: 18.5rem;
  padding: 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  background: #fcf9fa;
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.policy-card.policy-tone-0 {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(155, 28, 32, 0.12);
}
.policy-card.policy-tone-1 {
  background: rgba(255, 251, 245, 0.92);
  border-color: rgba(168, 103, 42, 0.14);
}
.policy-card.policy-tone-2 {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(108, 88, 78, 0.14);
}
.policy-card:hover,
.policy-card:focus-visible {
  border-color: rgba(107, 31, 50, 0.34);
  box-shadow: 0 18px 34px rgba(45, 28, 31, 0.1);
  transform: translateY(-2px);
}
.policy-card-tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  background: #efe0d6;
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 800;
}
.policy-card.policy-tone-1 .policy-card-tag {
  background: #f1e2cf;
  color: #9a5a1e;
}
.policy-card.policy-tone-2 .policy-card-tag {
  background: #e8e1d8;
  color: #5e4438;
}
.policy-card strong {
  font-size: 1.34rem;
  line-height: 1.42;
  letter-spacing: -0.03em;
}
.policy-card p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.82;
}
.policy-card-more {
  margin-top: auto;
  color: var(--brand);
  font-size: 0.96rem;
  font-weight: 800;
}
.policy-modal[hidden] {
  display: none;
}
.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
}
.policy-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 12, 14, 0.56);
  backdrop-filter: blur(4px);
}
.policy-modal-dialog {
  position: relative;
  width: min(1180px, calc(100vw - 2rem));
  max-height: calc(100vh - 3rem);
  margin: 1.5rem auto;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 28px 64px rgba(18, 12, 14, 0.28);
  overflow: hidden;
}
.policy-modal-scroll {
  max-height: calc(100vh - 3rem);
  padding: 2rem 2rem 2.2rem;
  overflow: auto;
}
.policy-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  padding: 0.6rem 0.9rem;
  border: 0;
  border-radius: 999px;
  background: #efe7e2;
  color: var(--brand);
  font-weight: 800;
  cursor: pointer;
}
.policy-modal-head {
  display: grid;
  gap: 0.8rem;
  padding-right: 5rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.policy-modal-tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: #efe0d6;
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 800;
}
.policy-modal-head h3 {
  margin: 0;
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.05em;
}
.policy-modal-head p {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.85;
}
.policy-modal-section {
  padding-top: 1.5rem;
}
.policy-modal-section h4 {
  margin: 0 0 0.8rem;
  color: var(--brand);
  font-size: 1.2rem;
  font-weight: 800;
}
.policy-modal-section p,
.policy-modal-section li,
.policy-modal-section .sentence-line {
  font-size: 1.1rem;
  line-height: 1.9;
}
.policy-modal-section ul {
  margin-top: 0;
}
.org-root {
  width: fit-content;
  margin: 0 auto;
  padding: 1.1rem 1.8rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 1.28rem;
  font-weight: 800;
  border: 3px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 46px rgba(34, 24, 26, 0.16);
}
.org-branches {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}
.org-branches::before {
  content: "";
  position: absolute;
  top: -1.55rem;
  left: 12.5%;
  right: 12.5%;
  height: 4px;
  background: rgba(107, 31, 50, 0.5);
}
.org-branch {
  position: relative;
  padding: 1.4rem 1.3rem 1.2rem;
  border: 2px solid rgba(0, 0, 0, 0.14);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(45, 28, 31, 0.1);
}
.org-branch::before {
  content: "";
  position: absolute;
  top: -1.55rem;
  left: 50%;
  width: 4px;
  height: 1.55rem;
  background: rgba(107, 31, 50, 0.5);
  transform: translateX(-50%);
}
.org-branch h3 {
  margin: 0 0 0.8rem;
  font-size: 1.34rem;
  color: var(--text);
}
.org-branch ul {
  margin: 0;
  padding-left: 1rem;
}
.org-branch li {
  font-size: 1.08rem;
}

/* ── 홈 페이지 신규 섹션 ───────────────────────���─────── */
.home-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}
.home-head-link {
  flex-shrink: 0;
  margin-bottom: 0.4rem;
}
.home-policy-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1rem;
  margin-top: 2rem;
}
.home-policy-feature {
  display: grid;
  align-content: space-between;
  gap: 1rem;
  min-height: 100%;
  padding: 2.2rem 2rem;
  border-radius: 30px;
  background: var(--text);
  color: #ffffff;
  box-shadow: 0 20px 44px rgba(36, 20, 25, 0.14);
}
.home-policy-feature-label {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}
.home-policy-feature strong {
  display: block;
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
  color: #ffffff;
}
.home-policy-feature .sentence-line {
  font-size: 1.1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.76);
}
.home-policy-feature-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2.8rem;
  padding: 0.7rem 1.05rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}
.home-policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.home-policy-grid-compact {
  grid-template-columns: 1fr;
  margin-top: 0;
}
.home-policy-card {
  position: relative;
  padding: 2rem 1.6rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
  animation-delay: var(--delay, 0ms);
}
.home-policy-card:hover {
  border-color: rgba(155, 28, 32, 0.24);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.home-policy-num {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--brand);
}
.home-policy-card strong {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
}
.home-policy-card .sentence-line {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-soft);
}
.home-section-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.2rem;
}
.home-message-section {
  padding-top: 0;
}
.home-message-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1rem;
  padding: 1.1rem;
  border-radius: 30px;
  background: #f4efee;
}
.home-message-copy,
.home-message-list {
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(107, 31, 50, 0.1);
}
.home-message-copy {
  padding: 2rem;
}
.home-message-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.14;
  letter-spacing: -0.05em;
}
.home-message-copy p:last-child {
  margin: 1rem 0 0;
  font-size: 1.06rem;
  line-height: 1.8;
  color: var(--text-soft);
}
.home-message-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}
.home-message-item {
  padding: 2rem 1.35rem;
  border-left: 1px solid rgba(107, 31, 50, 0.08);
}
.home-message-item:first-child {
  border-left: 0;
}
.home-message-item strong {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}
.home-message-item p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}

.policy-lite-hero {
  padding: 5.5rem 2rem 3rem;
  background: #fff8f6;
}
.policy-lite-hero .section-inner,
.policy-lite-section .section-inner,
.policy-region-section .section-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.policy-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1rem;
  align-items: stretch;
}
.policy-stage-copy {
  padding: 2rem 2rem 1.8rem;
  border: 1px solid rgba(107, 31, 50, 0.1);
  border-radius: 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #fff7f4 100%);
  box-shadow: 0 18px 34px rgba(40, 24, 28, 0.06);
}
.policy-stage-copy .section-heading h2 {
  font-size: clamp(2.5rem, 4vw, 3.7rem);
  line-height: 1.04;
}
.policy-stage-copy .section-heading p:last-child {
  margin: 0.55rem 0 0;
  color: #9b1c20;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.policy-stage-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.policy-stage-item {
  display: grid;
  align-content: flex-start;
  gap: 0.5rem;
  padding: 1.2rem 1rem;
  border-radius: 1.6rem;
  background: var(--text);
  color: #ffffff;
}
.policy-stage-item:nth-child(1) {
  background: #7f1518;
}
.policy-stage-item:nth-child(2) {
  background: #915023;
}
.policy-stage-item:nth-child(3) {
  background: #5b3a2b;
}
.policy-stage-item span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.54);
}
.policy-stage-item strong {
  font-size: 1.32rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.policy-stage-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.68;
}
.policy-lite-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}
.policy-lite-tags span,
.policy-lite-group-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.3rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #f2e8eb;
  color: var(--brand);
  font-size: 0.84rem;
  font-weight: 800;
}
.policy-lite-core {
  margin-top: 1.8rem;
}
.policy-lite-heading {
  max-width: 42rem;
}
.policy-lite-stack {
  display: grid;
  gap: 1.2rem;
}
.policy-lite-group {
  --policy-group-bg: #ffffff;
  --policy-group-line: rgba(107, 31, 50, 0.14);
  --policy-card-bg: #fcf9fa;
  --policy-card-line: rgba(107, 31, 50, 0.12);
  --policy-pill-bg: #f2e8eb;
  --policy-pill-text: var(--brand);
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 1.15rem;
  padding: 1.45rem;
  border: 1px solid var(--policy-group-line);
  border-radius: 1.8rem;
  background: var(--policy-group-bg);
  box-shadow: 0 16px 32px rgba(35, 20, 25, 0.05);
}
.policy-lite-group:nth-of-type(1) {
  --policy-group-bg: #fff7f4;
  --policy-group-line: rgba(127, 21, 24, 0.18);
  --policy-card-bg: #fff1eb;
  --policy-card-line: rgba(127, 21, 24, 0.12);
  --policy-pill-bg: rgba(127, 21, 24, 0.12);
  --policy-pill-text: #7f1518;
}
.policy-lite-group:nth-of-type(2) {
  --policy-group-bg: #fff9f0;
  --policy-group-line: rgba(145, 80, 35, 0.18);
  --policy-card-bg: #fff3df;
  --policy-card-line: rgba(145, 80, 35, 0.12);
  --policy-pill-bg: rgba(145, 80, 35, 0.14);
  --policy-pill-text: #7a471d;
}
.policy-lite-group:nth-of-type(3) {
  --policy-group-bg: #faf6f1;
  --policy-group-line: rgba(91, 58, 43, 0.18);
  --policy-card-bg: #f3ebe4;
  --policy-card-line: rgba(91, 58, 43, 0.12);
  --policy-pill-bg: rgba(91, 58, 43, 0.14);
  --policy-pill-text: #5b3a2b;
}
.policy-lite-group-intro {
  display: grid;
  gap: 0.6rem;
  align-content: flex-start;
  padding-right: 0.75rem;
}
.policy-lite-group-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  min-height: 3.2rem;
  border-radius: 999px;
  background: rgba(155, 28, 32, 0.08);
  color: var(--brand);
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.policy-lite-group-intro h3 {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.22;
  letter-spacing: -0.04em;
  color: var(--text);
}
.policy-lite-group-intro p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.62;
}
.policy-lite-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.policy-lite-card {
  display: grid;
  gap: 0.65rem;
  width: 100%;
  padding: 1.15rem;
  border: 1px solid var(--policy-card-line);
  border-radius: 1.25rem;
  background: var(--policy-card-bg);
  align-content: flex-start;
  appearance: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.policy-lite-card:hover,
.policy-lite-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(35, 20, 25, 0.08);
}
.policy-lite-card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  min-height: 3rem;
  border-radius: 999px;
  background: rgba(183, 24, 29, 0.08);
  color: #9b1c20;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.policy-lite-card strong {
  font-size: 1.08rem;
  line-height: 1.34;
  color: var(--text);
}
.policy-lite-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.56;
  color: var(--text-soft);
}
.policy-lite-group .policy-card-tag {
  background: var(--policy-pill-bg);
  color: var(--policy-pill-text);
}
.policy-lite-card ul {
  margin: 0;
  padding-left: 1.1rem;
}
.policy-lite-card li {
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.72;
}

.policy-lite-section {
  padding: 3rem 2rem 5rem;
  background: #fffdf9;
}

.policy-region-section {
  padding: 5rem 2rem 6rem;
  background: #f7f1ed;
}
.policy-region-heading {
  max-width: 52rem;
}
.policy-region-heading h2 {
  font-size: clamp(2.35rem, 4vw, 3.4rem);
  line-height: 1.06;
}
.policy-region-heading p {
  font-size: 0.98rem;
  line-height: 1.66;
}
.policy-region-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
  gap: 1.5rem;
  align-items: start;
  margin-top: 2rem;
}
.policy-region-map {
  position: relative;
  min-height: 0;
  aspect-ratio: 530 / 461;
  padding: 0;
  border-radius: 2rem;
  border: 1px solid rgba(107, 31, 50, 0.12);
  background: #eef1f5;
  box-shadow: 0 16px 36px rgba(38, 24, 26, 0.08);
  overflow: hidden;
}
.policy-region-map-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.policy-region-hotspot {
  position: absolute;
  z-index: 2;
  transform: translate(-50%, -50%);
  appearance: none;
  border: 0;
  width: 4.9rem;
  height: 2.5rem;
  background: transparent;
  padding: 0;
  cursor: pointer;
  border-radius: 999px;
}
.policy-region-hotspot:focus-visible {
  outline: 2px solid rgba(155, 28, 32, 0.72);
  outline-offset: 2px;
}
.policy-region-panel {
  position: sticky;
  top: 6.4rem;
  display: grid;
  gap: 1rem;
  padding: 1.45rem;
  border-radius: 1.6rem;
  border: 1px solid rgba(107, 31, 50, 0.12);
  background: #fffdfb;
  box-shadow: 0 14px 30px rgba(38, 24, 26, 0.06);
}
.policy-region-panel-eyebrow {
  margin: 0;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.policy-region-panel h3 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.16;
  letter-spacing: -0.045em;
}
.policy-region-issue {
  margin: 0;
  color: var(--brand);
  font-size: 0.94rem;
  font-weight: 800;
}
.policy-region-body {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.62;
}
.policy-region-detail-group {
  display: grid;
  gap: 0.6rem;
}
.policy-region-detail-group h4 {
  margin: 0;
  color: var(--text);
  font-size: 0.94rem;
}
.policy-region-detail-group ul {
  margin: 0;
  padding-left: 1.1rem;
}
.policy-region-detail-group li {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.62;
}

.home-press-grid {
  margin-top: 0;
}

@media (max-width: 1080px) {
  .policy-lite-hero,
  .policy-lite-section,
  .policy-region-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .policy-stage {
    grid-template-columns: 1fr;
  }
  .policy-stage-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .policy-lite-group {
    grid-template-columns: 1fr;
  }
  .policy-region-layout {
    grid-template-columns: 1fr;
  }
  .policy-region-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .policy-region-map {
    aspect-ratio: 530 / 461;
  }
  .policy-region-hotspot {
    width: 4.1rem;
    height: 2.05rem;
  }
  .policy-region-panel {
    padding: 1.25rem;
  }
  .policy-region-panel h3 {
    font-size: 1.55rem;
  }
  .policy-stage-copy {
    padding: 1.35rem 1.2rem 1.2rem;
  }
  .policy-stage-copy .section-heading h2 {
    font-size: 2rem;
  }
  .policy-stage-board,
  .policy-lite-grid {
    grid-template-columns: 1fr;
  }
  .policy-stage-item {
    padding: 1rem 0.95rem;
  }
  .policy-lite-group {
    padding: 1.15rem;
  }
}

@media (max-width: 980px) {
  .about-highlight-card {
    padding: 1rem 1.25rem;
    gap: 1rem;
  }
  .about-highlight-icon {
    width: 2.8rem;
    height: 2.8rem;
  }
}

.home-cta-section {
  background: #f8f4f2;
}
.home-cta-heading {
  max-width: 42rem;
}
.home-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.home-action-card {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid rgba(107, 31, 50, 0.12);
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(40, 24, 28, 0.06);
}
.home-action-card .eyebrow {
  margin: 0;
}
.home-action-card h3 {
  margin: 0;
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
  line-height: 1.22;
  letter-spacing: -0.045em;
}
.home-action-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}
.home-action-card-dark {
  background: var(--text);
  color: #ffffff;
}
.home-action-card-dark h3 {
  color: #ffffff;
}
.home-action-card-dark p {
  color: rgba(255, 255, 255, 0.72);
}
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid var(--brand);
  background: transparent;
  color: var(--brand);
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease;
}
.button-outline:hover,
.button-outline:focus-visible {
  background: var(--brand);
  color: #ffffff;
}
.button-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.36);
  background: transparent;
  color: rgba(255,255,255,0.88);
  font-weight: 800;
  transition: background 160ms ease, border-color 160ms ease;
}
.button-outline-dark:hover,
.button-outline-dark:focus-visible {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* ── 푸터 ─────────────────────────────────────────── */
.site-footer {
  padding: 2.4rem 2rem 2rem;
  border-top: 1px solid var(--line);
  background: var(--bg-muted);
}
.site-footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: start;
  color: var(--text-soft);
  font-size: 0.96rem;
}
.site-footer-brand {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.site-footer p { margin: 0; line-height: 1.7; }
.site-footer-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-footer-links a {
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 140ms ease;
}
.site-footer-links a:hover { color: var(--brand); }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease, transform 420ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.wave-band {
  position: relative;
  height: 18rem;
  margin: -2rem 0;
  overflow: hidden;
  background: transparent;
}
.wave-band-svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 1280px) {
  .side-nav {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 1rem;
    width: min(calc(100vw - 2rem), 44rem);
    padding: 0.5rem 0.65rem;
    border-radius: 18px;
    transform: translateX(-50%);
  }
  .side-nav-label {
    display: none;
  }
  .side-nav nav {
    display: flex;
    gap: 0.42rem;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .side-nav nav::-webkit-scrollbar {
    display: none;
  }
  .side-nav a {
    flex: 1 0 auto;
    min-height: 2.35rem;
    padding: 0.35rem 0.72rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 980px) {
  .hero-facts,
  .home-message-list,
  .policy-stage-board {
    grid-template-columns: 1fr;
  }
  .home-section-head,
  .policy-stage,
  .home-policy-showcase,
  .home-message-panel,
  .policy-lite-group,
  .home-action-grid {
    grid-template-columns: 1fr;
  }
  .home-section-head {
    align-items: flex-start;
  }
  .home-policy-grid {
    grid-template-columns: 1fr;
  }
  .site-footer-inner {
    grid-template-columns: 1fr;
  }
  .site-footer-links {
    justify-content: flex-start;
  }
  .vision-grid,
  .core-word-grid,
  .promise-grid,
  .policy-core-grid,
  .policy-card-grid,
  .archive-columns,
  .org-branches,
  .detail-grid,
  .detail-grid-wide,
  .split-layout,
  .contact-layout,
  .gallery-grid,
  .timeline-list,
  .hero-facts-inline,
  .stat-grid {
    grid-template-columns: 1fr;
  }
  .detail-card-wide {
    grid-column: auto;
  }
  .policy-vision-block {
    grid-template-columns: 1fr;
  }
  .policy-lite-grid {
    grid-template-columns: 1fr;
  }
  .gallery-thumb { grid-template-columns: 132px 1fr; }
  .press-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-footer-inner { flex-direction: column; }
}

@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }
  body {
    font-size: 16px;
    line-height: 1.72;
  }
  .side-nav {
    display: none;
  }
  .site-header {
    position: sticky;
    top: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem 0.8rem;
    padding: 0.62rem 0.82rem 0.7rem;
    align-items: center;
    justify-items: center;
  }
  .brand {
    gap: 0.22rem;
    width: 100%;
    justify-content: center;
  }
  .site-nav {
    grid-column: 1 / -1;
    width: 100%;
    overflow-x: auto;
    gap: 0.45rem;
    padding-bottom: 0.05rem;
    font-size: 0.86rem;
    flex-wrap: nowrap;
    scrollbar-width: none;
    justify-content: center;
  }
  .site-nav::-webkit-scrollbar {
    display: none;
  }
  .site-nav a {
    flex: 0 0 auto;
    padding: 0.32rem 0.7rem;
    border-radius: 999px;
    background: #f0f1f4;
  }
  .site-nav a::after {
    content: none;
  }
  .site-socials {
    grid-column: 1 / -1;
    margin-left: 0;
    gap: 0.35rem;
    justify-self: center;
    justify-content: center;
    width: 100%;
  }
  .social-link {
    width: 2.35rem;
    height: 2.35rem;
    box-shadow: none;
  }
  .social-link svg {
    width: 1.18rem;
    height: 1.18rem;
  }
  .brand-office { font-size: clamp(1.24rem, 6vw, 1.55rem); }
  .brand-status {
    font-size: 0.52rem;
    transform: translateY(-0.42em);
  }
  .brand-title { font-size: clamp(1.24rem, 6vw, 1.55rem); }
  .section,
  .site-footer { padding-left: 0.9rem; padding-right: 0.9rem; }

  /* 모바일 히어로: 세로 스택 */
  .hero-home {
    min-height: auto;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 0;
    gap: 0;
  }
  .hero-visual {
    order: 1;
    height: auto;
    min-height: 0;
    max-height: none;
    width: 72vw;
    max-width: 22rem;
    margin: 0 auto;
  }
  .hero-visual-frame {
    width: 100%;
    margin: 0;
  }
  .hero-candidate-img {
    object-position: center 15%;
  }
  .hero-copy {
    order: 0;
    padding: 1.6rem 1.2rem 1rem;
    text-align: center;
  }
  .hero-sns {
    flex-direction: row;
    margin-bottom: 1.4rem;
  }
  .hero-text {
    padding: 0;
  }
  .hero-title span {
    font-size: clamp(1.75rem, 7.5vw, 2.4rem);
    letter-spacing: -0.055em;
    overflow-wrap: break-word;
    word-break: keep-all;
  }
  .hero-lead p {
    font-size: 0.95rem;
    line-height: 1.72;
  }
  .hero-actions {
    margin-top: 1.4rem;
    gap: 0.55rem;
  }
  .hero-facts {
    margin-top: 1.4rem;
    gap: 0.6rem;
  }
  .hero-fact {
    padding: 0.9rem 0.95rem;
    border-radius: 18px;
  }
  .hero-countdown-bar {
    padding: 1rem 1.2rem;
    gap: 0.8rem;
    flex-wrap: wrap;
  }
  .hero-countdown-dday {
    font-size: 2rem;
  }
  .eyebrow {
    margin-bottom: 0.65rem;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }
  .hero-title span {
    max-width: 100%;
    font-size: clamp(1.82rem, 8.6vw, 2.22rem);
    line-height: 1.16;
    letter-spacing: -0.065em;
    overflow-wrap: normal;
    word-break: keep-all;
  }
  .hero-lead {
    margin-top: 1rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    word-break: keep-all;
  }
  .hero-lead p {
    width: 100%;
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.68;
    overflow-wrap: normal;
    word-break: keep-all;
  }
  .hero-actions {
    display: grid;
    gap: 0.55rem;
    margin-top: 1.2rem;
  }
  .hero-visual-badge {
    top: 1rem;
    left: 1rem;
    min-height: 2.1rem;
    padding: 0.45rem 0.8rem;
    font-size: 0.78rem;
  }
  .hero-mobile-image {
    display: block;
    order: 2;
  }
  .button {
    min-height: 2.9rem;
    padding: 0.78rem 1rem;
    font-size: 0.95rem;
  }
  .home-policy-grid { gap: 0.7rem; }
  .home-policy-showcase,
  .home-message-panel,
  .home-action-grid {
    gap: 0.8rem;
  }
  .home-policy-feature,
  .home-message-copy,
  .home-action-card,
  .policy-stage-copy {
    padding: 1.25rem;
    border-radius: 20px;
  }
  .home-policy-feature strong {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }
  .home-policy-feature .sentence-line,
  .home-message-copy p:last-child,
  .home-action-card p {
    font-size: 0.96rem;
    line-height: 1.68;
  }
  .home-message-list {
    border-radius: 20px;
  }
  .home-message-item {
    padding: 1.1rem 1rem;
    border-left: 0;
    border-top: 1px solid rgba(107, 31, 50, 0.08);
  }
  .home-message-item:first-child {
    border-top: 0;
  }
  .home-action-card h3 {
    font-size: 1.45rem;
  }
  .section {
    padding-top: 2.6rem;
    padding-bottom: 2.6rem;
  }
  main > .section:first-of-type {
    padding-top: 1.4rem;
  }
  main > .section:first-of-type .section-inner {
    padding: 1.1rem;
    border-radius: 20px;
  }
  main > .section:first-of-type .section-inner::after {
    content: none;
  }
  .wave-band {
    display: none;
  }
  .split-layout,
  .contact-layout,
  .detail-grid,
  .detail-grid-wide,
  .stat-grid,
  .promise-grid,
  .vision-grid,
  .core-word-grid,
  .policy-core-grid,
  .policy-card-grid {
    gap: 0.85rem;
  }
  .vision-card,
  .promise-card,
  .archive-block,
  .contact-card,
  .detail-card,
  .core-word-card,
  .stat-grid div {
    padding: 1.05rem;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  .section-heading {
    max-width: 100%;
    margin-bottom: 1.25rem;
  }
  .split-copy,
  .contact-copy {
    max-width: 100%;
    min-width: 0;
  }
  .section h2 {
    max-width: 100%;
    font-size: 1.62rem;
    line-height: 1.32;
    overflow-wrap: normal;
    word-break: keep-all;
    line-break: auto;
  }
  .section p,
  .section li {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.72;
    overflow-wrap: normal;
    word-break: keep-all;
    line-break: auto;
  }
  .sentence-lines {
    display: block;
    max-width: 100%;
  }
  .sentence-line {
    display: inline;
    overflow-wrap: normal;
    word-break: keep-all;
    line-break: auto;
  }
  .vision-card h3,
  .promise-card h3,
  .archive-block h3,
  .contact-card h3,
  .detail-card h3,
  .core-word-card h3 {
    font-size: 1.2rem;
    overflow-wrap: normal;
    word-break: keep-all;
  }
  .about-section .split-copy h2 {
    max-width: 100%;
    font-size: 1.44rem;
  }
  .about-section .split-layout {
    grid-template-columns: 1fr;
  }
  .about-video {
    order: 2;
    width: 100%;
  }
  .about-mobile-poster {
    display: none;
  }
  .about-video-frame {
    display: block;
    aspect-ratio: 16 / 10;
    border-radius: 18px;
  }
  .about-stat-grid {
    order: 3;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    margin-top: 0;
  }
  .about-stat-grid div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    min-height: 0;
    padding: 0.9rem 1.1rem;
    border-radius: 1rem;
  }
  .about-stat-grid strong {
    flex-shrink: 0;
    font-size: 1.9rem;
    line-height: 1;
  }
  .about-stat-grid span {
    font-size: 0.9rem;
    line-height: 1.48;
    text-align: left;
  }
  .about-section .split-copy > p,
  .about-section .detail-card li {
    font-size: 0.98rem;
    line-height: 1.72;
  }
  .about-section .detail-card h3 {
    font-size: 1.22rem;
  }
  .policy-slogan-block {
    padding: 1.7rem 1.35rem;
  }
  .policy-lite-tags {
    gap: 0.5rem;
    margin-top: 1rem;
  }
  .policy-stage-item {
    padding: 1rem;
    border-radius: 18px;
  }
  .policy-lite-group {
    padding: 1.1rem;
    border-radius: 18px;
  }
  .policy-lite-group-intro h3 {
    font-size: 1.42rem;
  }
  .policy-lite-group-intro p {
    font-size: 0.94rem;
    line-height: 1.66;
  }
  .policy-lite-card {
    padding: 1rem;
    border-radius: 16px;
  }
  .policy-lite-card strong {
    font-size: 1.12rem;
  }
  .policy-lite-card p,
  .policy-lite-card li {
    font-size: 0.94rem;
    line-height: 1.66;
  }
  .policy-slogan-block h2 {
    max-width: none;
    font-size: clamp(2.2rem, 10vw, 3rem);
    word-break: keep-all;
    line-break: auto;
  }
  .policy-slogan-block .sentence-line,
  .policy-vision-lines .sentence-line,
  .policy-group-head p,
  .policy-card p,
  .policy-modal-section p,
  .policy-modal-section li {
    font-size: 1rem;
    line-height: 1.78;
  }
  .policy-vision-block,
  .policy-group {
    padding: 1.1rem;
  }
  .policy-vision-copy,
  .policy-core-card,
  .policy-card {
    padding: 1rem;
  }
  .policy-card {
    min-height: auto;
  }
  .policy-core-card strong {
    font-size: 1.55rem;
  }
  .policy-group-head h3,
  .policy-card strong {
    font-size: 1.28rem;
    word-break: keep-all;
  }
  .policy-modal-dialog {
    width: calc(100vw - 1rem);
    max-height: calc(100vh - 1rem);
    margin: 0.5rem auto;
    border-radius: 20px;
  }
  .policy-modal-scroll {
    max-height: calc(100vh - 1rem);
    padding: 1.2rem 1rem 1.4rem;
  }
  .policy-modal-head {
    padding-right: 0;
  }
  .policy-modal-close {
    top: 0.8rem;
    right: 0.8rem;
    padding: 0.48rem 0.72rem;
  }
  .stat-grid {
    margin-top: 0.85rem;
  }
  .stat-grid div {
    min-height: auto;
  }
  .stat-grid strong {
    font-size: 1.45rem;
  }
  .stat-grid span {
    font-size: 0.95rem;
  }
  .gallery-thumb { grid-template-columns: 1fr; }
  .gallery-thumb img { aspect-ratio: 4 / 3; }
  .press-card-grid {
    grid-template-columns: 1fr;
  }
  .panorama-images {
    grid-template-columns: 1fr;
    padding: 0.7rem;
  }
  .panorama-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .panorama-copy {
    max-width: none;
    padding: 1.1rem;
  }
  .field-slider-controls {
    justify-content: space-between;
  }
  .button-cta {
    min-height: 3.4rem;
    font-size: 1rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  }
  .copy-box-value {
    padding: 0.85rem;
    font-size: 1rem;
  }
  .copy-box-value span + span {
    font-size: 0.88rem;
  }
  .supporters-form .button-cta::before,
  .copy-box .button-cta::before {
    content: none;
  }
  .site-footer {
    padding-bottom: 1.4rem;
  }
}

/* ── 홈 다크 뉴스 스와이퍼 ──────────────────────────── */
.home-news-section {
  background: #0a0b0e;
  padding: 4.5rem 0 5rem;
  overflow: hidden;
}
.home-news-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}
.home-news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.4rem;
}
.home-news-eyebrow {
  color: var(--brand);
  margin: 0 0 0.45rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
.home-news-title {
  margin: 0;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.home-news-all {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
  white-space: nowrap;
  padding-bottom: 0.2rem;
}
.home-news-all:hover {
  color: #ffffff;
}
.home-news-swiper {
  position: relative;
  overflow: visible;
}
.home-news-slide {
  height: auto;
}
.home-news-card {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #141619;
  border: 1px solid rgba(255, 255, 255, 0.07);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}
.home-news-card:hover {
  border-color: rgba(155, 28, 32, 0.5);
  transform: translateY(-3px);
}
.home-news-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #1e2025;
}
.home-news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}
.home-news-card:hover .home-news-card-media img {
  transform: scale(1.04);
}
.home-news-card-media-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1c20 0%, #252830 100%);
}
.home-news-card-copy {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.1rem 1.15rem 1.25rem;
}
.home-news-card-date {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.02em;
}
.home-news-card-title {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: keep-all;
}
.home-news-nav {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  margin-top: 1.6rem;
}
.home-news-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.home-news-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #ffffff;
}
.home-news-btn.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}

@media (max-width: 760px) {
  .home-news-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.6rem;
  }
  .home-news-inner {
    padding: 0 1.2rem;
  }
  .home-news-section {
    padding: 3rem 0 3.5rem;
  }
}

/* Home Redesign */
.button-hero-outline {
  background: transparent;
  color: rgba(13, 14, 18, 0.72);
  border-color: rgba(13, 14, 18, 0.22);
}
.button-hero-outline:hover,
.button-hero-outline:focus-visible {
  background: rgba(13, 14, 18, 0.05);
  color: #0d0e12;
  border-color: rgba(13, 14, 18, 0.42);
}

.hero-home {
  min-height: auto;
  background: #ffffff;
}
.hero-stage {
  position: relative;
  overflow: hidden;
  padding: 6.4rem 2rem 0;
  background: #ffffff;
  border-top: 3px solid #9b1c20;
}
.hero-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(155, 28, 32, 0.09) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  background-position: 0 0;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.5) 65%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.5) 65%, transparent 100%);
  z-index: 0;
}
.hero-stage::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3rem;
  background: linear-gradient(to top, #ffffff, transparent);
  z-index: 2;
  pointer-events: none;
}
.hero-stage-orb,
.hero-stage-ribbon {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.hero-stage-orb-left {
  left: -8rem;
  top: -8rem;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  border: 1.5px solid rgba(155, 28, 32, 0.22);
  background: rgba(155, 28, 32, 0.05);
}
.hero-stage-orb-left::before {
  content: '';
  position: absolute;
  inset: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(155, 28, 32, 0.12);
  background: rgba(155, 28, 32, 0.04);
}
.hero-stage-orb-right {
  right: -12rem;
  bottom: -6rem;
  width: 52rem;
  height: 52rem;
  border-radius: 50%;
  border: 1.5px solid rgba(155, 28, 32, 0.18);
  background: rgba(155, 28, 32, 0.04);
}
.hero-stage-orb-right::before {
  content: '';
  position: absolute;
  inset: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(155, 28, 32, 0.10);
  background: rgba(155, 28, 32, 0.03);
}
.hero-stage-ribbon {
  left: 38%;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(155, 28, 32, 0.10);
}
.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: end;
  gap: 1.4rem;
  max-width: 1320px;
  min-height: 38rem;
  padding-top: 0;
}
.hero-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: transparent;
  overflow: visible;
}
.hero-visual-frame {
  position: relative;
  width: min(30rem, 100%);
  margin: 0 auto;
  border-radius: 0;
}
.hero-candidate-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
  filter: none;
  border-radius: 0;
  box-shadow: none;
  mix-blend-mode: multiply;
  display: block;
}
.hero-visual-card {
  position: relative;
  z-index: 2;
  width: min(24rem, calc(100% - 2rem));
  margin: -3.1rem 0 0 2.8rem;
  padding: 1.35rem 1.5rem 1.3rem;
  border-radius: 2rem;
  background: rgba(168, 74, 116, 0.9);
  color: #ffffff;
  box-shadow: 0 26px 42px rgba(29, 15, 21, 0.3);
  backdrop-filter: blur(8px);
}
.hero-visual-card p,
.hero-visual-card strong,
.hero-visual-card a {
  color: #ffffff;
}
.hero-visual-card p {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  line-height: 1.55;
}
.hero-visual-card strong {
  display: block;
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  line-height: 1.06;
  letter-spacing: -0.06em;
}
.hero-visual-card a {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  font-weight: 800;
  text-decoration: none;
}
.hero-copy {
  justify-content: flex-start;
  align-self: center;
  order: -1;
  padding: 3rem 2rem 4rem 0;
}
.hero-sns {
  flex-direction: row;
  justify-content: flex-end;
  width: 100%;
  margin: 0 0 2.4rem;
}
.hero-sns-link {
  width: 3rem;
  height: 3rem;
  border: 0;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.hero-sns-link svg {
  width: 1.3rem;
  height: 1.3rem;
}
.hero-sns-link:hover {
  background: rgba(255, 255, 255, 0.32);
}
.hero-text {
  justify-content: flex-start;
  padding: 0;
}
.hero-eyebrow {
  margin: 0 0 1rem;
  color: rgba(13, 14, 18, 0.45);
  letter-spacing: 0.18em;
}
.hero-script {
  margin: 0;
  color: #0d0e12;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.06em;
}
.hero-script-accent {
  display: inline-block;
  color: #9b1c20;
  text-shadow: none;
}
.hero-script-plain {
  display: inline-block;
  color: #0d0e12;
}
.hero-script-subline {
  margin: 0.45rem 0 0.6rem;
  color: #0d0e12;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.06em;
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  flex-wrap: wrap;
}
.hero-script-subline-name,
.hero-script-subline-office {
  display: inline-block;
}
.hero-script-subline-city {
  color: #9b1c20;
}
.hero-script-subline-status {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.02em;
  margin-top: 0.18em;
  font-size: 0.42em;
  line-height: 3.12;
  letter-spacing: -0.05em;
  color: rgba(13, 14, 18, 0.62);
}
.hero-script-subline-status span {
  display: block;
}
.hero-script-subline-policy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.9rem 0 1.4rem;
  padding: 0;
  background: none;
  border: none;
  color: #9b1c20;
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  opacity: 0.92;
  transition: opacity 0.18s, letter-spacing 0.18s;
  cursor: pointer;
}
.hero-script-subline-policy::after {
  content: '→';
  font-size: 0.82em;
  font-weight: 600;
  transition: transform 0.18s;
  display: inline-block;
}
.hero-script-subline-policy:hover {
  opacity: 1;
  letter-spacing: 0.03em;
}
.hero-script-subline-policy:hover::after {
  transform: translateX(3px);
}
.hero-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.6rem, 4.6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.065em;
}
.hero-lead {
  max-width: 38rem;
  margin-top: 1.4rem;
}
.hero-lead p {
  color: rgba(13, 14, 18, 0.62);
  font-size: clamp(1rem, 1.28vw, 1.24rem);
  line-height: 1.84;
}
.hero-actions {
  margin-top: 1.5rem;
}
.hero-quote-box {
  max-width: 41rem;
  margin-top: 2rem;
  padding: 1.35rem 1.5rem;
  border-radius: 1.75rem;
  background: rgba(11, 20, 34, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}
.hero-quote-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  line-height: 1.78;
}

.about-highlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.about-highlight-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.4rem;
  padding: 1.25rem 1.75rem;
  border-radius: 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(107, 31, 50, 0.07);
  box-shadow: 0 6px 20px rgba(34, 24, 25, 0.05);
  transition: box-shadow 0.2s;
}
.about-highlight-card:hover {
  box-shadow: 0 10px 28px rgba(155, 28, 32, 0.1);
}
.about-highlight-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: var(--brand, #9b1c20);
  color: #ffffff;
}
.about-highlight-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.about-highlight-body strong {
  color: var(--brand);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  word-break: keep-all;
}
.about-highlight-body p {
  margin: 0;
  color: rgba(28, 26, 29, 0.72);
  font-size: 0.93rem;
  line-height: 1.55;
  word-break: keep-all;
}

.home-diagnosis-section {
  padding: 5.5rem 2rem;
  background: #fff8f6;
}
.home-diagnosis-inner,
.home-promises-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.home-diagnosis-head,
.home-promises-head {
  max-width: 48rem;
}
.home-diagnosis-head h2,
.home-promises-head h2 {
  margin: 0.2rem 0 0.8rem;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.06;
}
.home-diagnosis-head p,
.home-promises-head p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.06rem;
  line-height: 1.72;
}
.home-diagnosis-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.1rem;
}
.home-diagnosis-card {
  display: grid;
  align-content: flex-start;
  gap: 0.8rem;
  padding: 1.5rem 1.2rem;
  border-radius: 1.7rem;
  background: #ffffff;
  border: 1px solid rgba(155, 28, 32, 0.1);
  box-shadow: 0 16px 30px rgba(86, 28, 33, 0.06);
}
.home-diagnosis-card span {
  color: rgba(183, 24, 29, 0.54);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.home-diagnosis-card strong {
  color: var(--text);
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.home-diagnosis-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}
.home-news-section {
  position: relative;
  background: linear-gradient(180deg, #a40f14 0%, #7f0f13 100%);
  padding: 3.8rem 0 3.5rem;
}
.home-news-inner {
  max-width: 1180px;
  padding: 0 2rem;
  margin: 0 auto;
}
.home-news-head {
  margin-bottom: 1.75rem;
}
.home-news-head-copy p {
  max-width: none;
}
.home-news-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
}
.home-news-all {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.8rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}
.home-news-line {
  position: absolute;
  left: 2rem;
  right: 2rem;
  top: 11.8rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}
.home-news-swiper {
  overflow: visible;
}
.home-news-slide {
  padding-top: 2.4rem;
}
.home-news-card {
  position: relative;
  background: transparent;
  border: 0;
  text-decoration: none;
}
.home-news-point {
  position: absolute;
  top: -2.35rem;
  left: 0.4rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  border: 4px solid #ffffff;
  background: #8b0f14;
}
.home-news-card-date {
  display: block;
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
}
.home-news-card-media {
  overflow: hidden;
  border-radius: 1.7rem;
  background: rgba(255, 255, 255, 0.12);
}
.home-news-card-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.home-news-card-copy {
  padding: 1rem 0 0;
}
.home-news-card-title {
  color: #ffffff;
  font-size: 1.22rem;
  line-height: 1.58;
}
.home-news-nav {
  margin-top: 2rem;
}
.home-news-btn {
  border: 0;
  background: rgba(255, 255, 255, 0.18);
}
.home-activity-board {
  display: grid;
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
}
.home-activity-viewport {
  overflow: hidden;
  width: 100%;
}
.home-activity-track {
  display: flex;
  width: 100%;
  transition: transform 280ms ease;
  will-change: transform;
}
.home-activity-month-slide {
  flex: 0 0 100%;
  min-width: 100%;
}
.home-activity-month {
  display: grid;
  gap: 0.8rem;
}
.home-activity-month-head h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.32rem;
  letter-spacing: -0.04em;
}
.home-activity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}
.home-activity-card {
  display: grid;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 1.55rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(39, 15, 18, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.home-activity-card:hover,
.home-activity-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 42px rgba(39, 15, 18, 0.24);
}
.home-activity-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}
.home-activity-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}
.home-activity-card:hover .home-activity-card-media img,
.home-activity-card:focus-visible .home-activity-card-media img {
  transform: scale(1.04);
}
.home-activity-card-copy {
  display: grid;
  gap: 0.42rem;
  padding: 1rem 1rem 1.1rem;
}
.home-activity-card-date,
.home-activity-card-count {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 700;
}
.home-activity-card-title {
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.45;
  letter-spacing: -0.03em;
}
.home-activity-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.home-activity-slider-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.8rem;
  min-height: 2.9rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 800;
}
.home-activity-dialog {
  width: min(1240px, calc(100vw - 2rem));
}
.home-activity-scroll {
  padding-bottom: 1.6rem;
}
.home-activity-head p {
  color: rgba(28, 26, 29, 0.72);
}
.home-activity-viewer {
  display: grid;
  grid-template-columns: 4.4rem minmax(0, 1fr) 4.4rem;
  gap: 1rem;
  align-items: center;
  padding-top: 1.5rem;
}
.home-activity-figure {
  margin: 0;
  min-height: 34rem;
  border-radius: 1.6rem;
  overflow: hidden;
  background: #efecec;
}
.home-activity-figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f4f1f1;
}
.home-activity-nav {
  min-height: 3.6rem;
  border: 0;
  border-radius: 999px;
  background: #9b1c20;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  cursor: pointer;
}
.home-activity-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  color: rgba(28, 26, 29, 0.72);
  font-size: 0.98rem;
  font-weight: 700;
}

.home-career-section {
  padding: 5.5rem 2rem;
  background: #fff8f8;
}
.home-career-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.home-career-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
.home-career-head h2 {
  margin: 0.2rem 0 0;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}
.home-career-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.8rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: #ffe8e8;
  color: var(--brand);
  text-decoration: none;
  font-weight: 800;
}
.home-career-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.2rem;
  margin-top: 2.2rem;
}
.home-career-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  align-content: start;
}
.home-career-highlight-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  border-radius: 0.9rem;
  background: #ffffff;
  border: 1px solid rgba(155, 28, 32, 0.10);
}
.home-career-highlight-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: var(--brand, #9b1c20);
  color: #ffffff;
}
.home-career-highlight-body {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.home-career-highlight-body strong {
  color: var(--brand, #9b1c20);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
  white-space: nowrap;
}
.home-career-highlight-body p {
  margin: 0;
  color: rgba(28, 26, 29, 0.58);
  font-size: 0.9rem;
  line-height: 1.4;
  word-break: keep-all;
}
.home-career-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: 2rem;
  background: #ffffff;
  border: 1px solid rgba(155, 28, 32, 0.1);
  box-shadow: 0 24px 46px rgba(114, 29, 33, 0.08);
}
.home-career-board-main {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  grid-template-rows: auto;
  background: linear-gradient(135deg, #8f1014 0%, #680d11 100%);
}
.home-career-board-copy {
  padding: 2rem 1.8rem;
  color: #ffffff;
}
.home-career-board-copy .eyebrow,
.home-career-board-copy h3,
.home-career-board-copy p {
  color: #ffffff;
}
.home-career-board-copy h3 {
  margin: 0.25rem 0 0.9rem;
  font-size: clamp(1.85rem, 2.8vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}
.home-career-board-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.76;
}
.home-career-video-frame {
  margin: 1.4rem 1.4rem 1.4rem 0;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 18px 34px rgba(17, 10, 12, 0.28);
  background: rgba(255, 255, 255, 0.12);
  align-self: stretch;
}
.home-career-video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  aspect-ratio: 16 / 9;
  border: 0;
}
.home-career-list {
  display: none;
}
.home-career-list li {
  margin: 0;
  padding: 0.95rem 1.4rem;
  border-top: 1px solid rgba(155, 28, 32, 0.08);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
}
.home-career-list li:first-child {
  border-top: 0;
}

.home-gallery-section {
  padding: 5.5rem 2rem;
  background:
    linear-gradient(180deg, #ffe9e9 0%, #ffdcdc 100%);
  overflow: hidden;
}
.home-gallery-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.home-gallery-head h2 {
  margin: 0.2rem 0 0;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.06;
}
.home-gallery-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.1fr 0.84fr;
  gap: 1.3rem;
  align-items: center;
  margin-top: 2.4rem;
}
.home-shorts-panorama {
  position: relative;
  margin-top: 2.5rem;
}
.home-shorts-panorama-viewport {
  overflow: hidden;
}
.home-shorts-panorama-track {
  display: flex;
  transition: transform 320ms ease;
  will-change: transform;
}
.home-shorts-panorama-slide {
  flex: 0 0 100%;
  min-width: 100%;
}
.home-shorts-panorama-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}
.home-short-card-panorama {
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 48px rgba(67, 33, 46, 0.12);
}
.home-short-card-panorama .home-short-media {
  aspect-ratio: 4 / 5.6;
}
.home-short-card-panorama .home-short-copy {
  min-height: 8.6rem;
  padding: 0.9rem 0.95rem 1.05rem;
}
.home-gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.home-gallery-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border: 0;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.9);
  color: #9b1c20;
  font-size: 1.7rem;
  font-weight: 900;
  cursor: pointer;
}
.home-gallery-control.is-dark {
  background: #b51218;
  color: #ffffff;
}
.home-gallery-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #8d4248;
  font-size: 1rem;
  font-weight: 800;
}
.home-gallery-card {
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 48px rgba(67, 33, 46, 0.12);
  overflow: hidden;
}
.home-gallery-card.is-featured {
  transform: translateY(-1.6rem);
}
.home-gallery-card-media {
  aspect-ratio: 4 / 4.2;
}
.home-gallery-card.is-featured .home-gallery-card-media {
  aspect-ratio: 4 / 4.8;
}
.home-gallery-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-gallery-card-copy {
  padding: 1.3rem 1.35rem 1.5rem;
  text-align: center;
}
.home-gallery-card-copy time {
  display: block;
  margin-bottom: 0.7rem;
  color: #856772;
  font-size: 0.94rem;
  font-weight: 700;
}
.home-gallery-card-copy strong {
  display: block;
  color: var(--text);
  font-size: 1.7rem;
  line-height: 1.28;
  letter-spacing: -0.04em;
}
.home-gallery-card-copy p {
  margin: 0.85rem 0 0;
  color: var(--text-soft);
  line-height: 1.66;
}
.home-gallery-footer {
  display: flex;
  justify-content: center;
  margin-top: 2.2rem;
}
.button-gallery {
  background: #b51218;
  color: #ffffff;
}

.home-short-card {
  overflow: hidden;
  border-radius: 1.9rem;
  background: #120f14;
  box-shadow: 0 18px 34px rgba(33, 24, 28, 0.12);
}
.home-short-link {
  display: grid;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.home-short-media {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #1d1820;
}
.home-short-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-short-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(194, 39, 39, 0.9);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.home-short-copy {
  display: grid;
  gap: 0.7rem;
  padding: 1rem 1rem 1.2rem;
  background: #ffffff;
}
.home-short-copy time {
  color: rgba(60, 47, 53, 0.56);
  font-size: 0.9rem;
  font-weight: 700;
}
.home-short-copy strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.48;
  letter-spacing: -0.03em;
}

.home-cardnews-section {
  padding: 2.8rem 0 3rem;
  background: #f4f0ec;
  overflow: hidden;
}
.home-schedule-section {
  padding: 2.2rem 0 2.6rem;
  background: #ffffff;
}
.home-schedule-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  gap: 1.2rem;
}
.home-schedule-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}
.home-schedule-copy {
  display: grid;
  gap: 0.3rem;
}
.home-schedule-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.home-schedule-copy p:last-child {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.72;
}
.home-schedule-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(155, 28, 32, 0.12);
  border-radius: 1.7rem;
  background: #fffaf8;
  box-shadow: 0 16px 36px rgba(49, 29, 18, 0.08);
  cursor: pointer;
}
.home-schedule-card-media {
  background: #f7f1ec;
}
.home-schedule-card-media img {
  width: 100%;
  height: auto;
}
.home-schedule-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem 1.05rem;
  border-top: 1px solid rgba(155, 28, 32, 0.1);
  color: var(--brand-dark);
}
.home-schedule-card-foot strong {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.home-schedule-card-foot span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  font-size: 1.22rem;
  font-weight: 800;
  flex: 0 0 auto;
}
.home-cardnews-inner {
  max-width: 1180px;
  margin: 0 auto 1.35rem;
  padding: 0 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
.home-cardnews-head {
  min-width: 0;
}
.home-cardnews-head h2 {
  margin: 0.2rem 0 0;
  font-size: clamp(1.9rem, 3.1vw, 2.8rem);
}
.home-cardnews-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(120, 21, 25, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #781519;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}
.home-cardnews-more:hover,
.home-cardnews-more:focus-visible {
  background: #ffffff;
  border-color: rgba(120, 21, 25, 0.34);
}
.home-cardnews-marquee {
  overflow: hidden;
  width: 100%;
}
.home-cardnews-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  width: max-content;
  will-change: transform;
}
.home-cardnews-group {
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  gap: 0.8rem;
  padding-right: 0.8rem;
}
.home-cardnews-card {
  flex: 0 0 15.5rem;
  overflow: hidden;
  border-radius: 1.35rem;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(34, 24, 25, 0.1);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.home-cardnews-card:hover,
.home-cardnews-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(34, 24, 25, 0.16);
}
.home-cardnews-card-media {
  aspect-ratio: 4 / 5.35;
  overflow: hidden;
  background: #fff;
}
.home-cardnews-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-cardnews-dialog {
  position: relative;
  width: min(760px, calc(100vw - 2rem));
  padding: 0.9rem;
  background: rgba(12, 12, 14, 0.96);
}
.home-cardnews-scroll {
  padding-bottom: 0;
}
.home-cardnews-modal-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 1rem;
  background: #111;
}
.home-cardnews-modal-figure img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 7rem);
  margin: 0 auto;
  height: auto;
  object-fit: contain;
}
.home-cardnews-download {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}
.home-cardnews-download svg {
  width: 1.3rem;
  height: 1.3rem;
}
.cardnews-page {
  background: #fbf8f5;
}
/* ===== Page Hero (about / policy / guide / supporters) ===== */
.page-hero-section {
  padding: 8rem 0 3.5rem;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 120, 120, 0.18) 0%, transparent 40%),
    linear-gradient(150deg, #8a0f14 0%, #b7181d 52%, #7a1016 100%);
}
.page-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}
.page-hero-section .eyebrow {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.page-hero-inner h1,
.page-hero-inner h2 {
  margin: 0.2rem 0 0.75rem;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
  color: #ffffff;
}
.page-hero-copy,
.page-hero-section p.page-hero-copy {
  max-width: 44rem;
  margin: 0;
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.72;
  word-break: keep-all;
}
@media (max-width: 760px) {
  .page-hero-section {
    padding: 6.5rem 0 2.5rem;
  }
  .page-hero-inner h2 {
    font-size: clamp(1.85rem, 7vw, 2.6rem);
  }
}
/* ===== Cardnews Hero ===== */
.cardnews-hero-section {
  padding: 8rem 0 2.4rem;
  background:
    radial-gradient(circle at 18% 20%, rgba(155, 28, 32, 0.28) 0%, rgba(155, 28, 32, 0) 38%),
    linear-gradient(135deg, #111319 0%, #1d1415 38%, #5b171b 100%);
}
.cardnews-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}
.cardnews-hero-section .eyebrow {
  color: rgba(255, 255, 255, 0.78);
  opacity: 1;
}
.cardnews-hero-inner h2 {
  margin: 0.25rem 0 0.85rem;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  color: #ffffff;
  opacity: 1;
}
.cardnews-hero-copy {
  max-width: 40rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.68;
  opacity: 1;
}
.cardnews-album-section {
  padding: 0 0 5.4rem;
  background: #fbf8f5;
}
.cardnews-album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1rem;
}
.cardnews-album-card {
  overflow: hidden;
  border-radius: 1.35rem;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(34, 24, 25, 0.1);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.cardnews-album-card:hover,
.cardnews-album-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(34, 24, 25, 0.16);
}
.cardnews-album-card-media {
  aspect-ratio: 4 / 5.35;
  overflow: hidden;
  background: #ffffff;
}
.cardnews-album-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-participation-section {
  padding: 5.5rem 2rem;
  background: #f7f5f0;
}
.home-participation-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.home-participation-head h2 {
  margin: 0.2rem 0 0;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}
.home-participation-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 2.2rem;
  overflow: hidden;
  border-radius: 2rem;
  background: linear-gradient(180deg, #cf1a21 0%, #ae1218 100%);
}
.home-participation-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 2rem 2.2rem;
}
.home-participation-card + .home-participation-card {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.home-participation-card strong {
  display: block;
  margin-bottom: 0.7rem;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1.14;
  letter-spacing: -0.04em;
}
.home-participation-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.08rem;
  line-height: 1.72;
}
.home-participation-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #b51218;
  font-size: 1.6rem;
  font-weight: 900;
  text-decoration: none;
}

.home-promises-section {
  padding: 5.5rem 2rem 6rem;
  background: #fffdf8;
}
.home-promises-list {
  display: grid;
  gap: 1rem;
  margin-top: 2.2rem;
}
.home-promise-item {
  display: grid;
  grid-template-columns: 5.4rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.35rem 1.45rem;
  border-radius: 1.7rem;
  background: #ffffff;
  border: 1px solid rgba(155, 28, 32, 0.1);
  box-shadow: 0 16px 30px rgba(86, 28, 33, 0.05);
}
.home-promise-item > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.6rem;
  border-radius: 999px;
  background: #b7181d;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.home-promise-item strong {
  display: block;
  color: var(--text);
  font-size: 1.45rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
}
.home-promise-item p {
  margin: 0.55rem 0 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.68;
}

@media (max-width: 1100px) {
  .hero-inner,
  .home-gallery-grid,
  .home-shorts-panorama-grid,
  .home-career-panel,
  .home-career-board {
    grid-template-columns: 1fr;
  }
  .home-diagnosis-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-activity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-copy {
    padding-left: 0;
  }
  .hero-sns {
    justify-content: flex-start;
    margin-bottom: 2rem;
  }
  .hero-visual-frame {
    margin-left: 0;
  }
  .hero-visual-card {
    margin-left: 1rem;
  }
  .hero-band-inner,
  .home-participation-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-gallery-card.is-featured {
    transform: none;
  }
}

@media (max-width: 760px) {
  .hero-stage {
    overflow: hidden;
    padding: 5.1rem 0.8rem 3rem;
  }
  .hero-stage-orb-left,
  .hero-stage-orb-right,
  .hero-stage-ribbon {
    display: none;
  }
  .hero-stage::before {
    background-image: radial-gradient(circle, rgba(155, 28, 32, 0.07) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    mask-image: none;
    -webkit-mask-image: none;
    opacity: 0.6;
  }
  .hero-visual {
    display: none;
  }
  .hero-inner {
    min-height: auto;
    gap: 2.1rem;
  }
  .hero-visual {
    order: 2;
    justify-items: center;
    align-items: start;
  }
  .hero-visual-frame {
    width: min(24.5rem, calc(100vw - 1.8rem));
    margin: 1.35rem auto 0;
    padding-bottom: 0;
  }
  .hero-candidate-img {
    transform: translateY(0);
  }
  .hero-visual-card {
    width: calc(100% - 1rem);
    margin: -2.5rem 0 0 0.5rem;
    padding: 0.95rem 1rem;
    border-radius: 1.4rem;
  }
  .hero-visual-card p,
  .hero-quote-box p,
  .home-participation-card p,
  .home-gallery-card-copy p {
    max-width: none;
    word-break: keep-all;
  }
  .hero-stage::before {
    background:
      radial-gradient(ellipse 80% 50% at 50% 0%, rgba(155, 28, 32, 0.08) 0%, transparent 60%),
      linear-gradient(180deg, #ffffff 40%, #fdf0f0 70%, #f9e4e5 100%);
  }
  .hero-copy {
    order: 0;
    padding: 1.6rem 1.2rem 1rem;
    text-align: center;
  }
  .hero-text {
    text-align: center;
  }
  .hero-eyebrow {
    margin-bottom: 0.85rem;
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
    justify-items: center;
  }
  .hero-actions .button {
    width: min(18rem, 100%);
  }
  .hero-sns {
    margin-bottom: 1.4rem;
    gap: 0.45rem;
  }
  .hero-sns-link {
    width: 2.5rem;
    height: 2.5rem;
  }
  .hero-script {
    font-size: 2.16rem;
    text-align: center;
  }
  .hero-script-subline {
    justify-content: center;
    align-items: flex-start;
    margin: 0.55rem 0 0.7rem;
    font-size: 2.16rem;
    text-align: center;
  }
  .hero-script-subline-status {
    align-items: center;
  }
  .hero-script-subline-policy {
    justify-content: center;
    margin: 0.6rem auto 1.1rem;
    font-size: 1.12rem;
  }
  .hero-title {
    font-size: 2.55rem;
  }
  .hero-lead {
    max-width: none;
  }
  .hero-quote-box {
    padding: 1rem 1.05rem;
    border-radius: 1.2rem;
  }
  .hero-band {
    padding: 0 1rem 1rem;
  }
  .hero-band-inner,
  .home-participation-panel {
    grid-template-columns: 1fr;
  }
  .hero-band-card {
    min-height: auto;
    padding: 0.95rem 1rem 1rem;
    border-radius: 1.3rem;
  }
  .hero-band-card span {
    margin-bottom: 0.6rem;
    font-size: 0.72rem;
  }
  .hero-band-card strong {
    font-size: 1.45rem;
  }
  .hero-band-card p {
    margin-top: 0.38rem;
    font-size: 0.92rem;
    line-height: 1.5;
  }
  .home-news-section,
  .home-diagnosis-section,
  .home-cardnews-section,
  .home-gallery-section,
  .home-participation-section,
  .home-promises-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .home-news-section {
    margin-top: 0;
  }
  .home-news-inner {
    padding: 0;
  }
  .home-news-head {
    margin-bottom: 1.2rem;
  }
  .home-news-section {
    padding-top: 3rem;
    padding-bottom: 2.8rem;
  }
  .home-cardnews-section {
    padding-top: 2.4rem;
    padding-bottom: 2.6rem;
  }
  .home-schedule-section {
    padding: 1.8rem 1rem 2rem;
  }
  .home-schedule-inner {
    padding: 0;
    gap: 0.95rem;
  }
  .home-schedule-copy h2 {
    font-size: clamp(1.7rem, 7vw, 2.1rem);
  }
  .home-schedule-copy p:last-child {
    font-size: 0.95rem;
    line-height: 1.66;
  }
  .home-schedule-card {
    border-radius: 1.25rem;
  }
  .home-schedule-card-foot {
    padding: 0.82rem 0.95rem 0.9rem;
  }
  .home-schedule-card-foot strong {
    font-size: 0.94rem;
  }
  .home-cardnews-inner {
    padding: 0;
    margin-bottom: 1.1rem;
    align-items: center;
  }
  .home-cardnews-track {
    width: max-content;
  }
  .home-cardnews-group {
    gap: 0.8rem;
    padding-right: 0.8rem;
  }
  .home-cardnews-marquee {
    overflow: hidden;
    touch-action: pan-x;
  }
  .home-cardnews-card {
    flex-basis: 12rem;
    border-radius: 1rem;
  }
  .home-cardnews-more {
    min-height: 2.55rem;
    padding: 0.48rem 0.9rem;
    font-size: 0.9rem;
  }
  .home-cardnews-dialog {
    width: calc(100vw - 1.2rem);
    padding: 0.65rem;
  }
  .home-cardnews-download {
    top: 0.8rem;
    right: 0.8rem;
    width: 2.5rem;
    height: 2.5rem;
  }
  .home-cardnews-modal-figure img {
    max-height: calc(100vh - 4.5rem);
  }
  .cardnews-hero-section {
    padding-top: 6.9rem;
    padding-bottom: 2rem;
  }
  .cardnews-hero-inner {
    padding: 0 1rem;
  }
  .cardnews-hero-inner h2 {
    font-size: 2.1rem;
  }
  .cardnews-hero-copy {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .cardnews-album-section {
    padding-bottom: 3.2rem;
  }
  .cardnews-album-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }
  .guide-layout {
    gap: 1rem;
  }
  .guide-copy {
    gap: 1rem;
  }
  .guide-copy h2 {
    font-size: 2rem;
  }
  .guide-copy-intro p {
    font-size: 1rem;
    line-height: 1.72;
  }
  .guide-account-card {
    padding: 1.25rem 1rem 1.05rem;
    border-radius: 1.2rem;
    gap: 0.55rem;
  }
  .guide-account-card h3 {
    font-size: 1.16rem;
  }
  .guide-note-grid {
    gap: 0.7rem;
    margin-top: 0;
  }
  .guide-note-card {
    padding: 1rem 0.92rem;
    border-radius: 1rem;
    gap: 0.55rem;
  }
  .guide-note-card strong {
    min-height: 1.85rem;
    padding: 0.22rem 0.68rem;
    font-size: 0.84rem;
  }
  .guide-note-card p {
    font-size: 0.94rem;
    line-height: 1.62;
  }
  .home-news-title,
  .home-diagnosis-head h2,
  .home-career-head h2,
  .home-gallery-head h2,
  .home-participation-head h2,
  .home-promises-head h2 {
    font-size: 2rem;
  }
  .home-career-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .home-news-line {
    left: 1rem;
    right: 1rem;
    top: 11.7rem;
  }
  .home-news-card-date {
    margin-bottom: 0.75rem;
  }
  .home-news-card-title {
    font-size: 1.08rem;
  }
  .home-gallery-grid {
    gap: 1rem;
  }
  .home-shorts-panorama-grid {
    grid-template-columns: 1fr;
  }
  .home-short-card-panorama {
    max-width: 19.5rem;
    margin: 0 auto;
  }
  .home-gallery-controls {
    gap: 1.15rem;
    margin-top: 1.45rem;
  }
  .home-gallery-control {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 1.45rem;
  }
  .home-activity-grid {
    grid-template-columns: 1fr;
  }
  .home-diagnosis-grid {
    grid-template-columns: 1fr;
  }
  .home-promise-item {
    grid-template-columns: 1fr;
  }
  .home-promise-item > span {
    width: 4.2rem;
  }
  .home-activity-slider-nav {
    gap: 0.7rem;
  }
  .home-activity-slider-status {
    min-width: 4.3rem;
  }
  .home-activity-viewer {
    grid-template-columns: 1fr;
  }
  .home-activity-figure {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }
  .home-activity-nav {
    min-height: 3.1rem;
  }
  .home-activity-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .home-gallery-card,
  .home-participation-panel {
    border-radius: 1.4rem;
  }
  .home-career-highlights {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
  .home-career-board-copy {
    padding: 1.3rem 1.2rem;
  }
  .home-career-board-main {
    grid-template-columns: 1fr;
  }
  .home-career-video-frame {
    margin: 0 1rem 1rem;
    border-radius: 1.1rem;
    align-self: auto;
  }
  .home-career-video-frame iframe {
    height: auto;
    min-height: unset;
  }
  .home-gallery-card-copy {
    padding: 1rem 1rem 1.2rem;
  }
  .home-gallery-card-copy strong {
    font-size: 1.3rem;
  }
  .home-participation-card {
    padding: 1.25rem;
    border-left: 0;
  }
  .home-participation-card + .home-participation-card {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
  .home-participation-card strong {
    font-size: 1.4rem;
  }
  .home-participation-link {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.3rem;
  }
}

/* Policy Simplified */
.policy-lite-hero {
  background:
    radial-gradient(circle at top right, rgba(113, 77, 178, 0.12), transparent 22%),
    linear-gradient(180deg, #f7f1ec 0%, #f5efea 100%);
}
.policy-lite-hero .section-inner {
  max-width: 1320px;
}
.policy-stage-copy {
  background: linear-gradient(145deg, #201738 0%, #352264 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 48px rgba(37, 24, 68, 0.22);
}
.policy-stage-copy .eyebrow,
.policy-stage-copy h2,
.policy-stage-copy p {
  color: #ffffff;
}
.policy-stage-copy p {
  color: rgba(255, 255, 255, 0.78);
}
.policy-stage-item {
  background: linear-gradient(145deg, #5f376f 0%, #a64f72 100%);
  box-shadow: 0 18px 34px rgba(122, 53, 88, 0.18);
}
.policy-stage-item:nth-child(2) {
  background: linear-gradient(145deg, #205d74 0%, #3aa0a2 100%);
}
.policy-stage-item:nth-child(3) {
  background: linear-gradient(145deg, #6d4821 0%, #b8863c 100%);
}
.policy-lite-tags span {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}
.policy-lite-hero .section-heading {
  margin-bottom: 0;
}
.policy-lite-section {
  background: #fcfaf7;
}
.policy-lite-stack {
  gap: 1rem;
}
.policy-lite-group {
  align-items: center;
  padding: 1.3rem 1.4rem;
  border: 0;
  box-shadow: none;
}
.policy-lite-group-intro {
  gap: 0.5rem;
  padding: 1.4rem 1.3rem;
  border-radius: 1.5rem;
  text-align: center;
  justify-items: center;
}
.policy-lite-group-intro h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  text-align: center;
}
.policy-lite-group:nth-child(1) .policy-lite-group-intro {
  background: linear-gradient(145deg, #f7e8ed 0%, #f3d7e1 100%);
}
.policy-lite-group:nth-child(2) .policy-lite-group-intro {
  background: linear-gradient(145deg, #e6f2f5 0%, #d3ebeb 100%);
}
.policy-lite-group:nth-child(3) .policy-lite-group-intro {
  background: linear-gradient(145deg, #f5ecd8 0%, #f2e1b9 100%);
}
.policy-lite-group-tag {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
}
.policy-lite-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.policy-lite-card {
  gap: 0.55rem;
  min-height: 100%;
  padding: 1.15rem 1.1rem;
  background: #ffffff;
  border-color: rgba(69, 41, 51, 0.08);
  box-shadow: 0 12px 24px rgba(34, 28, 31, 0.05);
}
.policy-card-tag {
  width: fit-content;
  min-height: 1.9rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #f3e3e8;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
}
.policy-lite-group:nth-child(2) .policy-card-tag {
  background: #dff1f3;
  color: #18636e;
}
.policy-lite-group:nth-child(3) .policy-card-tag {
  background: #f6e7bf;
  color: #7f5920;
}
.policy-lite-card p {
  font-size: 0.96rem;
  line-height: 1.6;
}
.policy-lite-card ul {
  display: none;
}
.policy-lite-actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}
.policy-lite-actions .button-outline {
  background: #ffffff;
}

@media (max-width: 760px) {
  .policy-stage {
    gap: 0.8rem;
  }
  .policy-lite-group {
    gap: 0.8rem;
    padding: 1rem;
  }
  .policy-lite-grid {
    grid-template-columns: 1fr;
  }
  .policy-lite-card {
    padding: 1rem;
  }
  .policy-lite-actions {
    flex-direction: column;
  }
}

/* Internal Page Redesign */
.policy-stage-copy h2 {
  font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}
.policy-stage-copy p {
  font-size: 1.18rem;
  line-height: 1.8;
}
.policy-stage-item {
  padding: 1.8rem 1.45rem;
  text-align: center;
  justify-items: center;
}
.policy-stage-item strong {
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  line-height: 1.08;
}
.policy-stage-item p {
  font-size: 1.12rem;
  line-height: 1.55;
}

.field-page .section-inner,
.archive-page .section-inner,
.guide-page .section-inner,
.supporters-page .section-inner,
.press-page .section-inner,
.not-found-page .section-inner {
  position: relative;
  overflow: hidden;
  padding: 2.6rem;
  border-radius: 2rem;
}

.about-media-section .section-inner {
  max-width: 860px;
  background: none;
  border-radius: 0;
  overflow: visible;
  padding: 0;
}
.about-hero-section .about-stat-grid div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}
.about-hero-section .about-stat-grid strong,
.about-hero-section .about-stat-grid span {
  color: #ffffff;
}
.about-profile-section .detail-card,
.about-story-section .detail-card {
  border: 0;
  border-radius: 1.7rem;
  box-shadow: 0 18px 34px rgba(34, 28, 31, 0.08);
}
.about-profile-section .detail-card:nth-child(1) {
  background: linear-gradient(145deg, #f3ebff 0%, #ece5fb 100%);
}
.about-profile-section .detail-card:nth-child(2) {
  background: linear-gradient(145deg, #e9f4ff 0%, #e1eefb 100%);
}
.about-story-section .detail-card:nth-child(1) {
  background: linear-gradient(145deg, #f7e8ed 0%, #f4dce4 100%);
}
.about-story-section .detail-card:nth-child(2) {
  background: linear-gradient(145deg, #e6f3ef 0%, #d7ece6 100%);
}
.about-story-section .detail-card:nth-child(3) {
  background: linear-gradient(145deg, #f8f1db 0%, #f3e7c1 100%);
}
.about-profile-section .detail-card h3,
.about-story-section .detail-card h3 {
  font-size: 1.55rem;
}
.about-profile-section .detail-card li,
.about-story-section .detail-card li {
  font-size: 1.08rem;
  line-height: 1.78;
  color: rgba(28, 26, 29, 0.82);
}
.about-milestone-section .section-inner {
  background: linear-gradient(180deg, #f3ece8 0%, #efe5df 100%);
}
.about-milestone-timeline {
  display: flex;
  gap: 1.15rem;
  overflow-x: auto;
  overflow-y: hidden;
  align-items: stretch;
  padding: 0.2rem 0.2rem 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.about-milestone-node {
  flex: 0 0 min(22rem, 78vw);
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.65rem;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  scroll-snap-align: start;
}
.about-milestone-node:hover .about-milestone-content,
.about-milestone-node:focus-visible .about-milestone-content {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(39, 30, 31, 0.12);
  background: #ffffff;
}
.about-milestone-rail {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 1.2rem;
  padding-left: 0.5rem;
}
.about-milestone-rail::after {
  content: "";
  position: absolute;
  left: 1.55rem;
  right: -1.15rem;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(155, 28, 32, 0.26) 0%, rgba(155, 28, 32, 0.14) 100%);
  transform: translateY(-50%);
}
.about-milestone-node:last-child .about-milestone-rail::after {
  display: none;
}
.about-milestone-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(155, 28, 32, 0.12);
}
.about-milestone-content {
  display: grid;
  align-content: start;
  gap: 0.72rem;
  width: 100%;
  min-height: 13.4rem;
  margin: 0;
  padding: 1.3rem 1.35rem 1.35rem;
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(39, 30, 31, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.about-milestone-period {
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
  display: block;
  padding-left: 0.45rem;
}
.about-milestone-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  background: #f8e6e0;
  color: var(--brand-dark);
  font-size: 0.88rem;
  font-weight: 800;
}
.about-milestone-content strong {
  color: var(--text);
  font-size: 1.42rem;
  line-height: 1.34;
  letter-spacing: -0.04em;
}
.about-milestone-content p {
  margin: 0;
  color: rgba(28, 26, 29, 0.76);
  font-size: 1rem;
  line-height: 1.74;
}
.about-milestone-modal .policy-modal-tag {
  background: #f8e6e0;
  color: var(--brand-dark);
}

.policy-rebuild-page {
  background: #f6f2ef;
}
.policy-rebuild-shell {
  max-width: 1320px;
  margin: 0 auto;
}
.policy-rebuild-hero {
  padding: 4.5rem 2rem 2rem;
  background:
    radial-gradient(circle at 18% 20%, rgba(155, 28, 32, 0.28) 0%, rgba(155, 28, 32, 0) 38%),
    linear-gradient(135deg, #111319 0%, #1d1415 38%, #5b171b 100%);
}
.policy-rebuild-hero .policy-rebuild-shell {
  display: grid;
  gap: 1.35rem;
}
.policy-rebuild-hero-copy {
  display: grid;
  align-content: flex-start;
  gap: 0.7rem;
  padding: 0.4rem 0;
  max-width: 46rem;
}
.policy-rebuild-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.policy-rebuild-hero-copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.7rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}
.policy-rebuild-hero-summary {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.62;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 8px rgba(155, 28, 32, 0.25);
}
.policy-rebuild-values-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0.2rem;
}
.policy-rebuild-values-card {
  display: grid;
  gap: 0.55rem;
  padding: 1rem 0.92rem;
  border-radius: 1.05rem;
  background: #ffffff;
  border: 1px solid rgba(155, 28, 32, 0.08);
  box-shadow: 0 8px 18px rgba(41, 24, 27, 0.04);
}
.policy-rebuild-values-card strong {
  color: #161318;
  font-size: 1.12rem;
  line-height: 1.16;
  letter-spacing: -0.04em;
}
.policy-rebuild-values-card p {
  margin: 0;
  color: rgba(28, 26, 29, 0.74);
  font-size: 0.92rem;
  line-height: 1.5;
}
.policy-rebuild-values-card-hero {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
}
.policy-rebuild-values-card-hero strong {
  color: #ffffff;
}
.policy-rebuild-values-card-hero p {
  color: rgba(255, 255, 255, 0.86);
}
.policy-rebuild-mini-label {
  margin: 0 0 0.45rem;
  color: #9b1c20;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.policy-pillars-section,
.policy-rebuild-region {
  padding: 3.2rem 2rem;
}
.policy-pillars-section {
  background: #f6f2ef;
}
.policy-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2.4rem;
}
.policy-pillar-card {
  background: #ffffff;
  border-radius: 1.4rem;
  padding: 1.8rem 1.6rem;
  border: 1px solid rgba(155, 28, 32, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.policy-pillar-head {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.policy-pillar-number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--brand, #9b1c20);
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}
.policy-pillar-title-block {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.policy-pillar-key {
  color: var(--brand, #9b1c20);
  font-size: 1.34rem;
  font-weight: 900;
  line-height: 1.2;
}
.policy-pillar-subtitle {
  color: rgba(28, 26, 29, 0.70);
  font-size: 1rem;
  font-weight: 700;
}
.policy-pillar-lead {
  margin: 0;
  padding: 0.65rem 0.9rem;
  border-left: 3px solid var(--brand, #9b1c20);
  background: rgba(155, 28, 32, 0.05);
  border-radius: 0 0.5rem 0.5rem 0;
  color: rgba(28, 26, 29, 0.88);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.68;
  word-break: keep-all;
}
.policy-pillar-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.policy-pillar-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.policy-pillar-item-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: rgba(28, 26, 29, 1);
  line-height: 1.45;
}
.policy-pillar-item-title::before {
  content: "\25CF";
  color: var(--brand, #9b1c20);
  font-size: 0.72rem;
  vertical-align: middle;
  margin-right: 0.45rem;
}
.policy-pillar-bullets {
  margin: 0;
  padding: 0 0 0 0.8rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}
.policy-pillar-bullets li {
  position: relative;
  padding-left: 0.9rem;
  color: rgba(28, 26, 29, 0.78);
  font-size: 0.98rem;
  line-height: 1.72;
  word-break: keep-all;
}
.policy-pillar-bullets li::before {
  content: "\2013";
  position: absolute;
  left: 0;
  color: rgba(155, 28, 32, 0.4);
}
.policy-rebuild-promises {
  background: #f6f2ef;
}
.policy-rebuild-region {
  background: #efe7e1;
  padding-bottom: 5rem;
}
.policy-rebuild-section-head {
  max-width: 38rem;
  margin-bottom: 1.2rem;
}
.policy-rebuild-section-head h2 {
  margin: 0 0 0.55rem;
  color: #151318;
  font-size: clamp(2.45rem, 3.5vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}
.policy-rebuild-section-head p {
  margin: 0;
  color: rgba(28, 26, 29, 0.72);
  font-size: 1.14rem;
  line-height: 1.74;
}
.policy-rebuild-group-tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.22rem 0.72rem;
  border-radius: 999px;
  background: #f2e0dc;
  color: #9b1c20;
  font-size: 0.72rem;
  font-weight: 900;
}
.policy-group-toggle + .policy-group-toggle {
  margin-top: 0.95rem;
}
.policy-group-toggle {
  width: 100%;
  border: 1px solid rgba(155, 28, 32, 0.12);
  border-radius: 1.15rem;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(41, 24, 27, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease;
  overflow: hidden;
}
.policy-group-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(41, 24, 27, 0.07);
}
.policy-group-toggle-trigger {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 1rem;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.policy-group-toggle-trigger:focus-visible {
  outline: 2px solid rgba(155, 28, 32, 0.38);
  outline-offset: -2px;
}
.policy-group-toggle-copy {
  display: grid;
  gap: 0.35rem;
  flex: 1;
}
.policy-group-toggle-copy strong {
  color: #161318;
  font-size: 1.22rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
}
.policy-group-toggle-copy p {
  margin: 0;
  color: rgba(28, 26, 29, 0.74);
  font-size: 0.98rem;
  line-height: 1.56;
  font-weight: 700;
}
.policy-group-toggle-action {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}
.policy-group-toggle-action-text {
  color: #9b1c20;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.policy-group-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  background: #b7181d;
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  box-shadow: 0 10px 18px rgba(139, 18, 23, 0.18);
  transition: transform 180ms ease, background-color 180ms ease;
}
.policy-group-toggle-trigger[aria-expanded="true"] .policy-group-toggle-icon {
  background: #7e1014;
  transform: rotate(180deg);
}
.policy-group-toggle-trigger[aria-expanded="true"] .policy-group-toggle-action-text {
  color: #7e1014;
}
.policy-group-toggle-panel {
  padding: 0 1rem 1rem;
  border-top: 1px solid rgba(155, 28, 32, 0.08);
}
.policy-group-toggle-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.policy-group-toggle-item {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  padding: 0.8rem 0.85rem;
  border-radius: 0.95rem;
  background: #f8f3ef;
}
.policy-group-toggle-item-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  min-height: 2.35rem;
  border-radius: 999px;
  background: rgba(183, 24, 29, 0.1);
  color: #9b1c20;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.policy-group-toggle-item-title {
  margin: 0;
  color: #18151a;
  font-size: 1rem;
  line-height: 1.42;
  font-weight: 700;
}
.policy-rebuild-region-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(21rem, 0.92fr);
  gap: 1rem;
  align-items: start;
}
.policy-rebuild-region-map {
  position: relative;
  aspect-ratio: 530 / 461;
  border-radius: 1.4rem;
  border: 1px solid rgba(155, 28, 32, 0.1);
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(41, 24, 27, 0.05);
  overflow: hidden;
}
.policy-rebuild-region-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.policy-rebuild-region-hotspot {
  position: absolute;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 4.9rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.policy-rebuild-region-hotspot:focus-visible {
  outline: 2px solid rgba(155, 28, 32, 0.72);
  outline-offset: 2px;
}
.policy-rebuild-region-panel {
  position: sticky;
  top: 6.4rem;
  display: grid;
  gap: 0.8rem;
  padding: 1.1rem;
  border-radius: 1.2rem;
  background: #ffffff;
  border: 1px solid rgba(155, 28, 32, 0.12);
  box-shadow: 0 10px 20px rgba(41, 24, 27, 0.05);
}
.policy-rebuild-region-eyebrow {
  margin: 0;
  color: #9b1c20;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.policy-rebuild-region-hint {
  margin: 1.5rem 0 0;
  color: rgba(28, 26, 29, 0.38);
  font-size: 0.88rem;
  font-style: italic;
}
.policy-rebuild-region-panel h3 {
  margin: 0;
  color: #161318;
  font-size: 1.6rem;
  line-height: 1.14;
  letter-spacing: -0.04em;
}
.policy-rebuild-region-issue {
  margin: 0;
  color: #9b1c20;
  font-size: 0.84rem;
  font-weight: 800;
}
.policy-rebuild-region-body {
  margin: 0;
  color: rgba(28, 26, 29, 0.74);
  font-size: 0.98rem;
  line-height: 1.56;
}
.policy-rebuild-region-group {
  display: grid;
  gap: 0.4rem;
}
.policy-rebuild-region-group h4 {
  margin: 0;
  color: #161318;
  font-size: 0.94rem;
}
.policy-rebuild-region-group ul {
  margin: 0;
  padding-left: 1.1rem;
}
.policy-rebuild-region-group li {
  color: rgba(28, 26, 29, 0.74);
  font-size: 0.94rem;
  line-height: 1.54;
}

@media (max-width: 1080px) {
  .policy-rebuild-hero,
  .policy-rebuild-values,
  .policy-rebuild-promises,
  .policy-pillars-section,
  .policy-rebuild-region {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .policy-pillars-grid {
    grid-template-columns: 1fr;
  }
  .policy-rebuild-hero .policy-rebuild-shell,
  .policy-rebuild-values-grid,
  .policy-rebuild-region-layout {
    grid-template-columns: 1fr;
  }
  .policy-rebuild-card-grid {
    grid-template-columns: 1fr;
  }
  .policy-rebuild-region-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .policy-rebuild-hero {
    padding-top: 4rem;
  }
  .policy-rebuild-hero-copy {
    padding: 0;
  }
  .policy-rebuild-label {
    font-size: 0.82rem;
  }
  .policy-rebuild-hero-copy h1,
  .policy-rebuild-section-head h2 {
    font-size: 2.05rem;
  }
  .policy-rebuild-hero-summary {
    font-size: 1rem;
  }
  .policy-rebuild-values,
  .policy-rebuild-promises,
  .policy-pillars-section,
  .policy-rebuild-region {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }
  .policy-rebuild-values-grid {
    grid-template-columns: 1fr;
  }
  .policy-rebuild-values-card,
  .policy-group-toggle,
  .policy-rebuild-region-panel {
    border-radius: 1rem;
  }
  .policy-rebuild-region-map {
    border-radius: 1.5rem;
  }
  .policy-rebuild-region-hotspot {
    width: 4.1rem;
    height: 2rem;
  }
  .policy-group-toggle-trigger {
    padding: 1rem 0.9rem;
  }
  .policy-group-toggle-action {
    gap: 0.38rem;
  }
  .policy-group-toggle-icon {
    width: 2.45rem;
    height: 2.45rem;
    font-size: 1.5rem;
  }
  .policy-group-toggle-panel {
    padding: 0 0.9rem 0.95rem;
  }
  .policy-group-toggle-item {
    grid-template-columns: 2.2rem minmax(0, 1fr);
    gap: 0.65rem;
    padding: 0.78rem 0.75rem;
  }
  .policy-group-toggle-item-title {
    font-size: 0.96rem;
  }
}

.field-page .section-inner {
  background:
    linear-gradient(180deg, #f6d2db 0%, #f4d9df 100%);
}
.field-page .section-heading h2 {
  font-size: clamp(3rem, 4.6vw, 4.4rem);
}
.field-page .field-slider-controls {
  margin-bottom: 1.4rem;
}
.field-page .field-slider-button {
  min-width: 5rem;
  min-height: 3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(132, 60, 89, 0.9);
  color: #ffffff;
  font-weight: 800;
}
.field-page .field-slider-status {
  font-size: 1rem;
  font-weight: 800;
}
.field-page .panorama-card {
  border: 0;
  border-radius: 1.8rem;
  overflow: hidden;
  box-shadow: 0 22px 42px rgba(87, 50, 61, 0.14);
}
.field-page .panorama-copy {
  padding: 1.45rem 1.55rem 1.6rem;
  background: rgba(255, 255, 255, 0.92);
}
.field-page .panorama-copy h3 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  line-height: 1.22;
}
.field-page .panorama-copy .sentence-line {
  font-size: 1.08rem;
  line-height: 1.72;
}

.press-page .section-inner {
  background:
    linear-gradient(180deg, #f4f2fb 0%, #f7f7fb 100%);
}
.press-heading h2 {
  font-size: clamp(3rem, 4.8vw, 4.6rem);
}
.press-heading .sentence-line {
  font-size: 1.12rem;
}
.press-card {
  border: 0;
  border-radius: 1.7rem;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(37, 33, 58, 0.1);
}
.press-card-copy {
  padding: 1.3rem 1.3rem 1.45rem;
}
.press-card-date {
  font-size: 0.98rem;
}
.press-card-title {
  font-size: 1.24rem;
  line-height: 1.55;
}
.press-pagination a {
  min-width: 2.9rem;
  min-height: 2.9rem;
  border-radius: 999px;
}

.archive-page .section-inner {
  background:
    linear-gradient(140deg, #f6f1e4 0%, #f3ecdc 100%);
}
.archive-page .section-heading h2 {
  font-size: clamp(3rem, 4.8vw, 4.4rem);
}
.archive-page .org-root {
  min-width: 18rem;
  min-height: 6rem;
  font-size: 1.8rem;
}
.archive-page .org-branch {
  border: 0;
  border-radius: 1.7rem;
  box-shadow: 0 18px 32px rgba(63, 49, 27, 0.1);
}
.archive-page .org-branch h3 {
  font-size: 1.55rem;
}
.archive-page .org-branch li {
  font-size: 1.02rem;
  line-height: 1.7;
}

.guide-page .section-inner,
.supporters-page .section-inner {
  background: #ffffff;
}
.guide-page .guide-layout {
  grid-template-columns: 1fr;
}
.guide-page .guide-account-card {
  max-width: 580px;
  justify-self: center;
  width: 100%;
}
.supporters-page .contact-layout {
  grid-template-columns: 1fr;
}
.supporters-page .contact-card {
  max-width: 600px;
  justify-self: center;
  width: 100%;
}
.guide-page .contact-copy,
.supporters-page .contact-copy {
  padding-right: 1rem;
}
.guide-page .contact-copy .eyebrow,
.guide-page .contact-copy h2,
.guide-page .contact-copy p,
.supporters-page .contact-copy .eyebrow,
.supporters-page .contact-copy h2,
.supporters-page .contact-copy p {
  color: #ffffff;
}
.guide-page .contact-copy .sentence-line,
.supporters-page .contact-copy .sentence-line {
  color: rgba(255, 255, 255, 0.84);
}
.guide-page .contact-copy h2,
.supporters-page .contact-copy h2 {
  margin-top: 0;
  font-size: clamp(3rem, 4.6vw, 4.4rem);
  line-height: 1.05;
}
.guide-page .contact-card,
.supporters-page .contact-card {
  border: 0;
  border-radius: 1.9rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}
.guide-page .contact-card h3,
.supporters-page .contact-card h3 {
  font-size: 1.9rem;
}
.guide-page .copy-guide-text,
.supporters-page .support-field span {
  font-size: 1rem;
}
.guide-page .copy-box-value {
  font-size: 1.6rem;
  line-height: 1.36;
}
.supporters-page .support-form {
  gap: 0.95rem;
}
.supporters-page .support-field input,
.supporters-page .support-field select {
  min-height: 3.35rem;
  font-size: 1rem;
  border-radius: 1rem;
}

.press-detail-page .section-inner {
  background:
    linear-gradient(145deg, #f4f0ff 0%, #f8f8fd 100%);
}
.press-detail-page .press-detail-head h2 {
  font-size: clamp(2.7rem, 4.2vw, 4rem);
  line-height: 1.12;
}
.press-detail-page .press-detail-body p {
  font-size: 1.16rem;
  line-height: 1.8;
}

.not-found-page .section-inner {
  background:
    linear-gradient(145deg, #181325 0%, #30224d 100%);
}
.not-found-page .eyebrow,
.not-found-page h2,
.not-found-page p {
  color: #ffffff;
}
.not-found-page p {
  color: rgba(255, 255, 255, 0.78);
}
.not-found-page h2 {
  font-size: clamp(3rem, 4.6vw, 4.6rem);
}

@media (max-width: 760px) {
  .policy-stage-copy h2,
  .about-hero-section .split-copy h2,
  .field-page .section-heading h2,
  .press-heading h2,
  .archive-page .section-heading h2,
  .guide-page .contact-copy h2,
  .supporters-page .contact-copy h2,
  .not-found-page h2 {
    font-size: 2.2rem;
  }
  .policy-stage-copy p,
  .policy-stage-item p,
  .field-page .panorama-copy .sentence-line,
  .press-heading .sentence-line,
  .guide-page .contact-copy .sentence-line,
  .supporters-page .contact-copy .sentence-line {
    font-size: 1rem;
  }
  .about-hero-section .section-inner,
  .field-page .section-inner,
  .archive-page .section-inner,
  .guide-page .section-inner,
  .supporters-page .section-inner,
  .press-page .section-inner,
  .not-found-page .section-inner {
    padding: 1.25rem;
    border-radius: 1.35rem;
  }
  .policy-stage-item {
    padding: 1.2rem 1rem;
  }
  .policy-stage-item strong {
    font-size: 1.55rem;
  }
  .guide-page .copy-box-value {
    font-size: 1.25rem;
  }
}

/* About / Guide / Supporters Refresh */
.about-hero-section .split-layout {
  align-items: stretch;
}
.about-hero-section .split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-hero-section .split-media {
  align-self: center;
}
.about-hero-section .about-video-frame,
.about-hero-section .about-mobile-poster img {
  border-radius: 1.8rem;
  overflow: hidden;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
}
.about-hero-section .about-stat-grid {
  margin-top: 0.4rem;
}
.about-hero-section .about-stat-grid div {
  padding: 1.4rem 1.25rem;
  border-radius: 1.5rem;
}
.about-hero-section .about-stat-grid strong {
  font-size: clamp(2rem, 3vw, 2.8rem);
}
.about-hero-section .about-stat-grid span {
  font-size: 1rem;
  line-height: 1.55;
}
.about-profile-card {
  background: linear-gradient(145deg, #f7eef7 0%, #f0e7f8 100%);
}
.about-role-card {
  background: linear-gradient(145deg, #f4f0ff 0%, #ece6fb 100%);
}
.about-role-list {
  columns: 2;
  column-gap: 1.8rem;
}
.about-role-list li {
  break-inside: avoid;
  margin-bottom: 0.9rem;
}
.about-focus-card {
  padding: 1.6rem 1.5rem;
}
.about-focus-card h3 {
  font-size: 1.45rem;
}

.guide-page .contact-layout,
.supporters-page .contact-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.6rem;
  align-items: start;
}
.guide-page .contact-copy,
.supporters-page .contact-copy {
  display: grid;
  gap: 1.35rem;
}
.contact-copy-intro {
  display: grid;
  gap: 0.85rem;
}
.contact-copy-intro p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.8;
}
.support-note-grid {
  display: grid;
  gap: 0.9rem;
}
.support-note-card {
  display: grid;
  gap: 0.72rem;
  padding: 1.25rem 1.2rem;
  border-radius: 1.45rem;
  background: rgba(255, 250, 249, 0.98);
  color: #201c1f;
  border: 1px solid rgba(122, 56, 43, 0.14);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}
.guide-page .support-note-card,
.supporters-page .support-note-card {
  color: #201c1f;
}
.support-note-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 2rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: #f5dfd8;
  color: #7b2e21;
  font-size: 0.92rem;
  font-weight: 900;
}
.guide-page .support-note-card p,
.supporters-page .support-note-card p {
  margin: 0;
  color: rgba(32, 28, 31, 0.9);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.72;
}
.guide-page .support-note-card .marker-word,
.supporters-page .support-note-card .marker-word {
  background: #f5dfd8;
  color: #7b2e21;
}
.guide-page .support-note-grid,
.supporters-page .support-note-grid {
  margin-top: 0.2rem;
}
.supporters-page .support-note-card {
  background: rgba(255, 249, 249, 0.98);
}
.guide-page .contact-card,
.supporters-page .contact-card {
  padding: 1.45rem;
}
.guide-page .contact-card h3,
.supporters-page .contact-card h3 {
  margin-bottom: 0.7rem;
}
.guide-page .copy-box {
  gap: 0.9rem;
}
.guide-page .copy-box-value {
  padding: 1.35rem 1rem 1.15rem;
  border-radius: 1.3rem;
  background: linear-gradient(145deg, #fff6f3 0%, #f8ece8 100%);
  border: 1px solid rgba(130, 61, 43, 0.12);
}
.guide-page .copy-box-value span:first-child {
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 900;
  color: #5a241b;
}
.guide-page .copy-box-value span + span {
  font-size: 1rem;
  color: #7a4b42;
}
.guide-page .copy-box .button-cta {
  min-height: 3.7rem;
  font-size: 1.08rem;
}
.policy-stage-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.policy-stage-item span,
.policy-stage-item strong,
.policy-stage-item p {
  width: 100%;
  text-align: center;
}
.policy-stage-item span {
  margin-bottom: 0.75rem;
}
.policy-stage-item strong {
  margin-bottom: 0.55rem;
}
.policy-stage-item p {
  margin: 0;
}
.supporters-page .support-form {
  display: grid;
  gap: 0.85rem;
}
.supporters-page .support-field {
  padding: 0.9rem;
  border-radius: 1.2rem;
  background: #f8f7f8;
  border: 1px solid rgba(38, 33, 37, 0.06);
}
.supporters-page .support-field span {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: rgba(32, 28, 31, 0.82);
}
.supporters-page .support-field input,
.supporters-page .support-field select {
  background: #ffffff;
  border: 1px solid rgba(52, 45, 49, 0.08);
}

@media (max-width: 980px) {
  .guide-page .contact-layout,
  .supporters-page .contact-layout {
    grid-template-columns: 1fr;
  }
  .about-role-list {
    columns: 1;
  }
}

@media (max-width: 760px) {
  .about-hero-section .about-video-frame,
  .about-hero-section .about-mobile-poster img {
    border-radius: 1.2rem;
  }
  .about-highlight-grid {
    gap: 0.6rem;
  }
  .about-highlight-card {
    gap: 0.9rem;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
  }
  .about-highlight-icon {
    width: 2.6rem;
    height: 2.6rem;
  }
  .about-highlight-body strong {
    font-size: 0.95rem;
  }
  .about-highlight-body p {
    font-size: 0.875rem;
  }
  .about-focus-card,
  .support-note-card {
    padding: 1rem;
  }
  .contact-copy-intro p,
  .support-note-card p {
    font-size: 0.98rem;
    line-height: 1.7;
  }
  .guide-page .copy-box-value span:first-child {
    font-size: 1.24rem;
  }
}

/* Policy / Field / Guide adjustments */
.policy-stage-board {
  align-items: stretch;
}
.policy-stage-item {
  min-height: 20rem;
  justify-content: center;
  gap: 0.85rem;
}

.field-page .section-inner {
  background:
    linear-gradient(180deg, #f7dce3 0%, #f3d2dd 100%);
}
.field-page .section-heading {
  margin-bottom: 1.9rem;
}
.field-page .section-heading p {
  max-width: 46rem;
}
.field-stage {
  display: grid;
  gap: 1.2rem;
}
.field-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 0;
  overflow: hidden;
  border-radius: 2rem;
  background: #161218;
  color: #ffffff;
  box-shadow: 0 28px 58px rgba(82, 43, 58, 0.22);
}
.field-feature-visual {
  margin: 0;
  min-height: 32rem;
}
.field-feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.field-feature-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 2.4rem 2.2rem;
}
.field-feature-tag,
.field-highlight-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 2rem;
  padding: 0.35rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
}
.field-feature-date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.96rem;
  font-weight: 700;
}
.field-feature-copy h3 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}
.field-feature-copy .sentence-line {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.84;
}
.field-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.field-highlight-card {
  display: grid;
  overflow: hidden;
  border-radius: 1.7rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(122, 65, 83, 0.1);
  box-shadow: 0 18px 36px rgba(84, 48, 60, 0.12);
}
.field-highlight-visual {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.field-highlight-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.field-highlight-copy {
  display: grid;
  gap: 0.8rem;
  padding: 1.3rem 1.25rem 1.4rem;
}
.field-highlight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}
.field-highlight-date {
  color: rgba(42, 33, 38, 0.58);
  font-size: 0.92rem;
  font-weight: 700;
}
.field-highlight-tag {
  background: #7d3a56;
}
.field-highlight-copy h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1.22;
  letter-spacing: -0.04em;
}
.field-highlight-copy p {
  margin: 0;
  color: rgba(34, 28, 31, 0.78);
  font-size: 1rem;
  line-height: 1.72;
}

.guide-page .contact-layout {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: start;
}
.guide-page .contact-copy {
  display: grid;
  gap: 1.35rem;
}
.guide-page .support-note-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  margin-top: 0.6rem;
}
.guide-page .support-note-card {
  height: 100%;
}
.guide-page .contact-card {
  display: grid;
  align-content: start;
  margin-top: 19.2rem;
}
.guide-page .copy-box {
  margin-top: 0.45rem;
}
.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.6rem;
  align-items: start;
}
.guide-copy {
  display: grid;
  gap: 1.35rem;
}
.guide-copy .eyebrow,
.guide-copy h2,
.guide-copy p {
  color: #ffffff;
}
.guide-copy h2 {
  margin: 0.2rem 0 0;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.guide-copy-intro {
  display: grid;
  gap: 0.85rem;
}
.guide-copy-intro p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}
.guide-account-card {
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding: 1.7rem 1.5rem 1.5rem;
  border-radius: 1.6rem;
  background: rgba(255, 252, 251, 0.98);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}
.guide-account-card h3 {
  margin: 0;
  color: #1f1818;
  font-size: 1.4rem;
  line-height: 1.2;
}
.guide-note-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 0.35rem;
}
.guide-note-card {
  display: grid;
  gap: 0.72rem;
  min-height: 100%;
  padding: 1.25rem 1.15rem;
  border-radius: 1.25rem;
  background: rgba(255, 250, 249, 0.98);
  color: #201c1f;
  border: 1px solid rgba(122, 56, 43, 0.14);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}
.guide-note-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 2rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: #f5dfd8;
  color: #7b2e21;
  font-size: 0.92rem;
  font-weight: 900;
}
.guide-note-card p {
  margin: 0;
  color: rgba(32, 28, 31, 0.9);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.72;
}
.guide-note-card .marker-word {
  background: #f5dfd8;
  color: #7b2e21;
}

@media (max-width: 980px) {
  .field-feature-card,
  .field-highlight-grid,
  .guide-page .support-note-grid {
    grid-template-columns: 1fr;
  }
  .guide-layout,
  .guide-note-grid {
    grid-template-columns: 1fr;
  }
  .guide-page .contact-card {
    margin-top: 0;
  }
  .field-feature-visual {
    min-height: 20rem;
  }
  .policy-stage-item {
    min-height: 14rem;
  }
}

@media (max-width: 760px) {
  .about-milestone-node {
    gap: 0.55rem;
  }
  .about-milestone-timeline {
    gap: 0.85rem;
    padding: 0.1rem 0.1rem 0.7rem;
  }
  .about-milestone-node {
    flex-basis: min(18.5rem, 82vw);
  }
  .about-milestone-rail {
    padding-left: 0.35rem;
  }
  .about-milestone-rail::after {
    right: -0.85rem;
    left: 1.35rem;
  }
  .about-milestone-period {
    padding-left: 0.3rem;
  }
  .about-milestone-content {
    min-height: auto;
    width: 100%;
    padding: 1.05rem 1rem 1.1rem;
    border-radius: 1.15rem;
  }
  .about-milestone-content strong {
    font-size: 1.15rem;
  }
  .about-milestone-content p {
    font-size: 0.96rem;
    line-height: 1.68;
  }
  .field-feature-copy {
    padding: 1.5rem 1.35rem;
  }
  .field-feature-copy h3 {
    font-size: 2rem;
  }
  .field-feature-copy .sentence-line,
  .field-highlight-copy p {
    font-size: 0.98rem;
  }
  .policy-stage-item {
    min-height: 12rem;
  }
}

@media (max-width: 420px) {
  .site-header {
    gap: 0.45rem 0.6rem;
    padding: 0.55rem 0.68rem 0.62rem;
  }
  .brand {
    min-width: 0;
  }
  .brand-office,
  .brand-title {
    font-size: clamp(1.06rem, 5.6vw, 1.28rem);
    letter-spacing: -0.045em;
  }
  .brand-status {
    font-size: 0.46rem;
    transform: translateY(-0.34em);
  }
  .site-nav {
    gap: 0.35rem;
    font-size: 0.8rem;
    justify-content: center;
  }
  .site-nav a {
    padding: 0.28rem 0.58rem;
  }
  .site-socials {
    gap: 0.28rem;
    justify-content: center;
  }
  .social-link {
    width: 2.05rem;
    height: 2.05rem;
  }
  .social-link svg {
    width: 1rem;
    height: 1rem;
  }
  .hero-title span {
    font-size: clamp(1.62rem, 8vw, 1.92rem);
  }
  .hero-candidate-img {
    transform: translateY(0);
  }
  .hero-band-card {
    padding: 0.82rem 0.9rem 0.9rem;
  }
  .hero-band-card strong {
    font-size: 1.26rem;
  }
  .hero-band-card p {
    font-size: 0.86rem;
  }
  .home-short-card-panorama {
    max-width: 17.5rem;
  }
  .home-gallery-control {
    width: 4.85rem;
    height: 4.85rem;
  }
  .section h2,
  .about-section .split-copy h2 {
    font-size: 1.36rem;
    line-height: 1.3;
  }
  .section p,
  .section li,
  .about-section .detail-card li {
    font-size: 0.92rem;
    line-height: 1.66;
  }
  .policy-slogan-block h2 {
    font-size: clamp(1.9rem, 9vw, 2.35rem);
  }
  .about-stat-grid {
    gap: 0.4rem;
  }
  .about-stat-grid strong {
    font-size: 1.6rem;
  }
  .about-stat-grid span {
    font-size: 0.82rem;
  }
  .about-highlight-card {
    gap: 0.75rem;
    padding: 0.9rem 1rem;
  }
  .about-highlight-icon {
    width: 2.4rem;
    height: 2.4rem;
  }
  .about-highlight-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* About fold layout */
.about-fold-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-fold-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.about-fold-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.25rem;
  cursor: pointer;
  list-style: none;
}

.about-fold-card summary::-webkit-details-marker {
  display: none;
}

.about-fold-label {
  color: var(--text);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.about-fold-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.7rem;
  min-height: 2.3rem;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  background: var(--brand-light);
  color: transparent;
  font-size: 0.92rem;
  font-weight: 800;
}

.about-fold-card[open] .about-fold-toggle {
  background: var(--brand);
}

.about-fold-card[open] .about-fold-toggle::before {
  content: "\C811\AE30";
  color: #ffffff;
}

.about-fold-card:not([open]) .about-fold-toggle::before {
  content: "\C5F4\AE30";
  color: var(--brand);
}

.about-fold-body {
  padding: 0 1.25rem 1.25rem;
}

.about-fold-body ul {
  margin: 0;
  padding-left: 1.05rem;
}

.about-fold-body li {
  margin-bottom: 0.7rem;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.about-fold-list {
  columns: 2;
  column-gap: 1.4rem;
}

.about-fold-list li {
  break-inside: avoid;
}

.about-fold-body-stacked {
  display: grid;
  gap: 1rem;
}

.about-fold-block strong {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 800;
}

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

  .about-fold-list {
    columns: 1;
  }
}
