/* 라이프 코어 센터 - 전체 스타일 */

:root {
  --navy: #1B3A5C;
  --navy-deep: #14304E;
  --ink: #1E3A50;
  --body: #4A5C6E;
  --muted: #7A8794;
  --leaf: #4F7A3E;
  --leaf-soft: #EAF1E4;
  --paper: #FFFFFF;
  --ivory: #FAF8F3;
  --line: #E3DED3;
  --radius: 14px;
  --radius-sm: 8px;
  --pill: 999px;
  --shadow: 0 6px 24px rgba(27, 58, 92, .07);
  --shadow-lift: 0 14px 38px rgba(27, 58, 92, .12);
  --wrap: 1180px;
  --header-h: 72px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--body);
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Malgun Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* 한국어는 기본값(break-all 유사 동작)으로 두면 단어 중간에서 잘린다.
     keep-all 로 어절 단위 줄바꿈을 강제하고, 끊을 곳이 없는 긴 문자열만 예외로 흘린다. */
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* height:auto 가 없으면 HTML height 속성이 CSS aspect-ratio 를 무력화한다 */
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { color: var(--ink); margin: 0; line-height: 1.35; letter-spacing: -.02em; }
p { margin: 0; }
ul { margin: 0; padding: 0; }

:focus-visible {
  outline: 3px solid var(--leaf);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.section { padding: clamp(72px, 9vw, 120px) 0; }
.section--paper { background: var(--paper); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--navy); color: #fff;
  padding: 10px 18px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 700;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- 타이포 ---------- */

.eyebrow {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12.5px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 18px;
}

.sec-title {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 900;
  line-height: 1.3;
  color: var(--ink);
}

.sec-title--center { text-align: center; }

.sec-lead {
  margin-top: 20px;
  max-width: 64ch;
  font-size: 17px;
  line-height: 1.85;
  color: var(--body);
}

.rule {
  width: 56px; height: 2px; border: 0;
  background: var(--leaf);
  margin: 32px 0;
}
.rule--sm { width: 48px; margin-top: 24px; margin-bottom: 24px; }
/* margin-left/right 만 덮어써야 .rule--sm 과 조합해도 가운데 정렬이 유지된다 */
.rule--center { margin-left: auto; margin-right: auto; }

.en {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.btn {
  display: inline-block;
  background: var(--navy);
  color: #FFFFFF;
  border: 0;
  padding: 14px 30px;
  border-radius: var(--pill);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: background .25s var(--ease), transform .15s var(--ease);
}
.btn:hover { background: var(--navy-deep); }
.btn:active { transform: translateY(1px); }

/* ---------- 헤더 ---------- */

.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(250, 248, 243, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 40px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-size: 18px; font-weight: 900; color: var(--navy);
  letter-spacing: -.01em; white-space: nowrap;
}
.brand-en {
  margin-top: 3px;
  font-size: 10.5px; font-weight: 500; color: var(--muted);
  letter-spacing: .18em; white-space: nowrap;
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  position: relative;
  font-size: 15px; font-weight: 500; color: var(--body);
  padding: 6px 0; white-space: nowrap;
  transition: color .25s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--leaf);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:hover, .nav a.is-active { color: var(--navy); font-weight: 700; }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: none; border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; margin: 4px auto;
  background: var(--navy);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- 메인 히어로 ---------- */

/* 히어로는 위 아이보리 / 아래 남색 2단 반전 구성.
   경계선은 로고 마크와 '라이프 코어 센터' 글씨 사이에 정확히 놓인다.
   그래서 main.png 를 마크(main-mark.png)와 글씨(main-word-light.png, 흰색 반전)로 나눠 쓴다.
   --hero-w 를 두 조각이 공유하므로 원본 로고 락업의 비례가 그대로 유지된다. */
.hero {
  --hero-w: min(460px, 74vw);
  position: relative;
  min-height: calc(100dvh - var(--header-h));
  display: flex; flex-direction: column;
  overflow: hidden;
  background: var(--ivory);
}

.hero-top {
  flex: 1 1 auto;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 56px 24px 0;
  position: relative;
}
/* 아이보리 영역 상단의 아주 옅은 빛. 마크가 떠 보이게만 한다. */
.hero-top::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 70%, #FFFFFF 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}
.hero-mark {
  position: relative;
  width: var(--hero-w);
  height: auto;
}

.hero-bottom {
  flex: 0 0 auto;
  display: flex; flex-direction: column; align-items: center;
  /* 아래 여백이 곧 남색 면의 높이다. 경계선이 화면의 약 62% 지점에 오도록 잡았다. */
  padding: 0 24px clamp(96px, 17vh, 190px);
  position: relative;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  /* 경계에 1px 밝은 선. 색을 더하지 않고 면의 가장자리만 또렷하게 만든다. */
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14);
}
/* 남색 면 위, 글씨 뒤로 퍼지는 미세한 광원 */
.hero-bottom::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 90% at 50% 20%, rgba(255,255,255,.07), transparent 70%);
  pointer-events: none;
}
.hero-word {
  position: relative;
  width: var(--hero-w);
  height: auto;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-mark { animation: heroIn .9s var(--ease) both; }
  .hero-bottom { animation: heroRise 1s var(--ease) both; }
  @keyframes heroIn { from { opacity: 0; transform: translateY(10px); } }
  @keyframes heroRise { from { opacity: 0; transform: translateY(24px); } }
}

/* ---------- 사업 영역 (비대칭 1 + 2) ---------- */

.biz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 52px;
}

.biz {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.biz:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.biz .no {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11.5px;
  letter-spacing: .24em;
  color: var(--leaf);
  margin-bottom: 18px;
}
.biz img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
}
.biz h3 { font-size: 20px; font-weight: 700; margin-top: 22px; }
.biz p { margin-top: 14px; font-size: 15.5px; }

/* ---------- 라이프코어란 - 인트로 ---------- */

.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
/* 원본이 가로로 긴 사진이라 3:2 로 자르면 양쪽 인물이 잘린다. 원본 비율 유지. */
.intro-split img { border-radius: var(--radius); width: 100%; }
.intro-lead { font-size: 17px; font-weight: 700; color: var(--navy); }
.intro-body { margin-top: 14px; }

/* ---------- 라이프코어란 - 정의 + 다이어그램 ---------- */

.define { text-align: center; }
.define dl { margin: 28px 0 0; }
.define .row { font-size: 17px; color: var(--body); }
.define .row + .row { margin-top: 6px; }
.define .row b { color: var(--ink); font-weight: 700; }
.define .q {
  margin-top: 34px;
  font-size: 17px; font-weight: 700; color: var(--navy);
}

.diagram {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1;
  margin: 44px auto 0;
}
.diagram svg.links {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.diagram .core {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 132px; height: 132px;
  border-radius: 50%;
  background: var(--navy);
  color: #FFFFFF;
  font-size: 30px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.diagram .nodes { position: absolute; inset: 0; }

.diagram .node {
  position: absolute;
  width: 110px;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* 중심에서 반지름 34%, 12시 방향부터 72도 간격 */
.node--1 { left: 50%;   top: 16%; }
.node--2 { left: 82.3%; top: 39.5%; }
.node--3 { left: 70%;   top: 77.5%; }
.node--4 { left: 30%;   top: 77.5%; }
.node--5 { left: 17.7%; top: 39.5%; }
.diagram .node .dot {
  width: 84px; height: 84px; margin: 0 auto;
  border-radius: 50%;
  background: var(--leaf-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--leaf);
}
.diagram .node .dot svg { width: 32px; height: 32px; }
.diagram .node span {
  display: block; margin-top: 8px;
  font-size: 14px; font-weight: 700; color: var(--ink);
  line-height: 1.4;
}

.closing {
  margin-top: 48px;
  text-align: center;
  font-size: 17px; line-height: 2; color: var(--body);
}

/* ---------- 핵심가치 ---------- */

.values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}
.values li {
  list-style: none;
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
}
.values .ico {
  flex: 0 0 56px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--leaf-soft);
  color: var(--leaf);
  display: flex; align-items: center; justify-content: center;
}
.values .ico svg { width: 26px; height: 26px; }
.values h3 { font-size: 18px; font-weight: 700; }
.values p { margin-top: 8px; font-size: 15px; line-height: 1.8; }

/* ---------- 협력 기관 ---------- */

/* 6곳이라 3열 2줄로 정확히 맞아떨어진다. 빈 칸이 생기지 않는다. */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
}
/* 로고 박스를 고정 높이로 두어야 카드마다 기관명 baseline 이 맞는다. */
.partner .logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 104px;
  width: 100%;
  margin-bottom: 16px;
}
/* 높이를 통일해 모든 로고를 같은 크기로 보이게 한다.
   가로로 매우 긴 로고(로고스)만 폭 상한에 걸려 자동으로 작아진다. */
.partner img {
  height: 96px;
  width: auto;
  max-width: 100%;
  margin: 0;
  object-fit: contain;
}
/* 가로로 매우 긴 로고(로고스)는 같은 높이로 두면 폭 때문에 혼자 커 보인다. 70% 로 낮춘다. */
.partner--wide img { height: 67px; }
.partner b { font-size: 15px; font-weight: 700; color: var(--ink); }

/* ---------- 프로그램 소개 ---------- */

.prog-intro h2 {
  margin-top: 20px;
  font-size: 22px; font-weight: 700; color: var(--navy);
}
.prog-intro p {
  margin-top: 18px;
  max-width: 62ch;
  font-size: 17px; line-height: 1.95;
}
.prog-intro .btn { margin-top: 34px; }

/* ---------- 커리큘럼 ---------- */

.curri {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.curri li {
  list-style: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.curri .num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #FFFFFF;
  font-size: 18px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.curri h3 { font-size: 20px; font-weight: 700; }
.curri ul { margin-top: 20px; }
.curri ul li {
  list-style: none;
  position: relative;
  padding: 0 0 0 18px;
  border: 0; background: none; box-shadow: none; border-radius: 0;
  font-size: 15px; line-height: 1.8;
}
.curri ul li + li { margin-top: 10px; }
.curri ul li::before {
  content: "";
  position: absolute; left: 0; top: 11px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--leaf);
}

/* ---------- 라이프코어의 가치 ---------- */

.why-quote {
  margin-top: 28px;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.85;
  color: var(--ink);
}
.why-quote b { color: var(--leaf); font-weight: 700; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.why-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
}
.why-card .no {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11.5px;
  letter-spacing: .24em;
  color: var(--leaf);
  margin-bottom: 16px;
}
/* 제목이 한 줄에 들어가도록 자간을 조인다. 가로가 좁아지면 자연스럽게 두 줄로 흐른다. */
.why-card h3 { font-size: 18px; font-weight: 700; line-height: 1.5; letter-spacing: -.055em; }
.why-card p { margin-top: 14px; font-size: 15px; line-height: 1.85; }

/* ---------- 인사이드 코어 ---------- */

.def-quote {
  text-align: center;
  max-width: 62ch;
  margin: 32px auto 0;
}
.def-quote strong {
  display: block;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  line-height: 1.6;
  color: var(--navy);
}
.def-quote small {
  display: block;
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--body);
}

.core-vs {
  display: grid;
  gap: 12px;
  margin-top: 52px;
}
.cv-head, .cv-row {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 12px;
  align-items: stretch;
}
.cv-head span {
  font-size: 22.5px; font-weight: 700; color: var(--ink);
  text-align: center;
  padding-bottom: 10px;
  line-height: 1.4;
}
.cv-out, .cv-in {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
  min-height: 88px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  line-height: 1.5;
  text-align: center;
}
/* 항목명과 설명을 하이픈으로 잇지 않고 줄을 나눈다. */
.cv-out b, .cv-in b { font-size: 16.5px; font-weight: 700; }
.cv-out b { color: var(--body); }
.cv-in b { color: var(--ink); }
.cv-out span, .cv-in span { font-size: 14.5px; }
.cv-out {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--muted);
}
.cv-in {
  background: var(--leaf-soft);
  border: 1px solid transparent;
  border-left: 3px solid var(--leaf);
  color: var(--ink);
  font-weight: 500;
}
.cv-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--leaf);
  font-size: 20px;
}

/* ---------- 수강 안내 ---------- */

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
  margin-top: 52px;
}

.info-table {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.info-row {
  display: flex; gap: 20px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
}
.info-row:last-child { border-bottom: 0; }
/* 항목명(일시/장소/비용)은 우측 안내 박스의 제목과 같은 급으로 맞춘다. 16px / 700 / --ink */
.info-row .k {
  flex: 0 0 96px;
  font-size: 16px; font-weight: 700; color: var(--ink);
  line-height: 1.7;
}
/* 값은 안내 박스 본문과 같은 급. 15px / 400 / --body */
.info-row .v { font-size: 15px; font-weight: 400; color: var(--body); line-height: 1.8; }
.info-row .v small {
  display: block; margin-top: 6px;
  font-size: 14px; color: var(--muted); line-height: 1.7;
}

.notes { display: grid; gap: 14px; }
.note {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--leaf);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
}
.note b { display: block; font-size: 16px; font-weight: 700; color: var(--ink); }
.note p { margin-top: 8px; font-size: 15px; line-height: 1.8; color: var(--body); }

.seed {
  margin: 24px 0 0;
  background: var(--navy);
  color: #FFFFFF;
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  font-size: 17px; line-height: 2;
}
.seed b { color: #D9E4C9; font-weight: 700; }
.seed cite {
  display: block;
  margin-top: 18px;
  font-size: 14px;
  font-style: normal;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .62);
}

/* ---------- FAQ ---------- */

.faq-list { margin-top: 48px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
}
.faq-item summary {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px; color: var(--leaf);
  line-height: 1.6;
}
.faq-item summary .q {
  flex: 1;
  font-size: 16.5px; font-weight: 700; color: var(--ink);
  line-height: 1.6;
}
.faq-item summary::after {
  content: "+";
  font-size: 22px; font-weight: 400; color: var(--muted);
  line-height: 1;
  transition: transform .25s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .a {
  padding: 0 24px 24px 60px;
  font-size: 15.5px; line-height: 1.9;
  color: var(--body);
}

/* ---------- 푸터 ---------- */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .72);
  padding: 64px 0 40px;
}
/* 연락처를 싣지 않기로 확정. 2열 고정. */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.footer-brand strong {
  display: block;
  font-size: 18px; font-weight: 900; color: #FFFFFF;
}
.footer-brand .en-mark {
  display: block; margin-top: 6px;
  font-size: 12px; letter-spacing: .24em;
  color: rgba(255, 255, 255, .55);
}
.footer-brand p { margin-top: 16px; font-size: 14px; }

.site-footer h2 {
  font-size: 13px; font-weight: 700; color: #FFFFFF;
  letter-spacing: .06em;
  margin-bottom: 16px;
}
.footer-links li { list-style: none; }
.footer-links li + li { margin-top: 10px; }
.footer-links a {
  font-size: 14px;
  transition: color .2s var(--ease);
}
.footer-links a:hover { color: #FFFFFF; }

.footer-bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 13px; color: rgba(255, 255, 255, .5);
}

/* ---------- 스크롤 진입 ---------- */

.fade {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.fade.in { opacity: 1; transform: none; }

/* ---------- 반응형 ---------- */

@media (max-width: 1023px) {
  .nav {
    position: absolute; left: 0; right: 0; top: var(--header-h);
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: 0; }
  .nav a::after { display: none; }
  .nav-toggle { display: block; }

  .biz-grid { grid-template-columns: 1fr; }
  .biz--lead { grid-row: auto; }
  .biz--lead img { aspect-ratio: 16 / 9; }

  .intro-split { grid-template-columns: 1fr; gap: 40px; }
  .curri { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  /* 3열 유지. 6곳이라 2줄로 떨어진다. */
  .info-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .brand-name { font-size: 16px; }
  .brand-en { font-size: 9.5px; letter-spacing: .14em; }
  .brand img { height: 34px; }

  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* 원형 다이어그램 해제 */
  .diagram {
    aspect-ratio: auto;
    max-width: none;
    display: block;
  }
  .diagram svg.links { display: none; }
  .diagram .core {
    position: static;
    transform: none;
    margin: 0 auto 28px;
  }
  .diagram .nodes {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .diagram .node {
    position: static;
    transform: none;
    width: auto;
    display: flex; align-items: center; gap: 14px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    text-align: left;
  }
  .diagram .node .dot { width: 48px; height: 48px; flex: 0 0 48px; margin: 0; }
  .diagram .node .dot svg { width: 22px; height: 22px; }
  .diagram .node span { margin-top: 0; }
  /* 5개를 2열에 넣으면 마지막 하나가 빈 칸을 남긴다. 마지막만 전체 폭. */
  .diagram .node:last-child { grid-column: span 2; }

  /* 값이 좁은 칸에서 어색하게 끊기지 않도록 라벨을 위로 */
  .info-row { flex-direction: column; gap: 6px; }
  .info-row .k { flex: none; }

  .faq-item .a { padding-left: 24px; }
  .seed { padding: 26px 20px; font-size: 16px; }

  .cv-head, .cv-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .cv-arrow { display: none; }
  .cv-out, .cv-in { padding: 14px 10px; min-height: 84px; }
  .cv-out b, .cv-in b { font-size: 15px; }
  .cv-out span, .cv-in span { font-size: 13px; }
  .cv-head span { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
  .fade { opacity: 1; transform: none; }
}

/* 제목을 가운데 정렬한 섹션에서는 eyebrow 도 같이 가운데로 */
.eyebrow--center { text-align: center; }
