@import url('https://fonts.googleapis.com/css2?family=Gowun+Dodum&family=Noto+Sans+KR:wght@400;500;700;900&display=swap');

:root {
  --navy: #253a66;
  --navy-dark: #1a2b4d;
  --indigo: #4a4a8f;
  --coral: #ff7e63;
  --cream: #faf7f1;
  --card: #ffffff;
  --text: #2b2b2e;
  --text-soft: #6b6f76;
  --border: #ece6da;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(37, 58, 102, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Noto Sans KR', 'Malgun Gothic', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  word-break: keep-all;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  flex-wrap: nowrap;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.02rem;
  color: var(--navy-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

.logo .sub {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-soft);
  display: block;
}

.logo-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.logo-mark-img {
  height: 52px;
  width: auto;
  flex-shrink: 0;
  border-radius: 8px;
}

nav.main-nav ul {
  display: flex;
  gap: 2px;
  flex-wrap: nowrap;
}

nav.main-nav a {
  padding: 8px 11px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.84rem;
  color: var(--navy-dark);
  white-space: nowrap;
  transition: background 0.15s ease;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  background: var(--navy-dark);
  color: #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--navy-dark);
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 55%, var(--indigo) 100%);
  color: #fff;
  padding: 90px 0 110px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 126, 99, 0.18);
}

.hero .container { position: relative; z-index: 1; }

.hero .badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 900;
  margin: 0 0 18px;
}

.hero h1 span { color: #ffb3a1; }

.hero p.lead {
  font-size: 1.1rem;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 36px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary { background: var(--coral); color: #fff; box-shadow: 0 8px 20px rgba(255, 126, 99, 0.35); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.55); }
.btn-navy { background: var(--navy-dark); color: #fff; }
.btn-secondary { background: var(--cream); color: var(--navy-dark); border: 1.5px solid var(--border); }

.btn:hover { transform: translateY(-2px); }

/* Sections */
section { padding: 88px 0; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head .eyebrow {
  color: var(--coral);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.88rem;
  margin-bottom: 10px;
  display: block;
}
.section-head h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 0 0 12px; color: var(--navy-dark); }
.section-head p { color: var(--text-soft); margin: 0; }

/* Greeting / intro */
.intro {
  background: var(--card);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.intro-quote {
  background: linear-gradient(150deg, #f3f0ff, #fef1ec);
  border-radius: var(--radius);
  padding: 36px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.6;
}

.intro-text p { margin: 0 0 18px; color: var(--text); }
.intro-sign {
  margin-top: 22px;
  font-weight: 700;
  color: var(--navy-dark);
  text-align: right;
}
.intro-sign small { display: block; font-weight: 400; color: var(--text-soft); }

/* Feature cards */
.features { background: var(--cream); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.feature-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--navy-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.feature-card h3 { margin: 0 0 10px; font-size: 1.05rem; color: var(--navy-dark); }
.feature-card p { margin: 0; font-size: 0.92rem; color: var(--text-soft); }

/* Topics */
.topics { background: var(--card); }

.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.topic-tags li {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy-dark);
}

/* About / Address */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.info-card {
  background: var(--navy-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px;
}

.info-card h3 { margin: 0 0 22px; font-size: 1.2rem; }

.info-row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.info-row:last-child { border-bottom: none; }
.info-row .label { width: 64px; flex-shrink: 0; color: #ffb3a1; font-weight: 700; font-size: 0.9rem; }
.info-row .value { color: rgba(255, 255, 255, 0.92); font-size: 0.95rem; }
.info-row .value a { text-decoration: underline; text-underline-offset: 3px; }

.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: var(--card);
  display: flex;
  flex-direction: column;
}

.map-visual {
  height: 220px;
  background: linear-gradient(135deg, #eef1fb, #fdece7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 700;
  gap: 10px;
}

.map-card .map-cta { padding: 24px; }
.map-card .map-cta p { margin: 0 0 16px; color: var(--text-soft); font-size: 0.92rem; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--coral), #ff9c6b);
  color: #fff;
  text-align: center;
  border-radius: var(--radius);
  padding: 56px 32px;
  margin: 0 24px;
}
.cta-banner h2 { margin: 0 0 12px; font-size: 1.6rem; }
.cta-banner p { margin: 0 0 8px; color: rgba(255,255,255,0.92); }
.cta-banner p:last-of-type { margin: 0 0 0; }
.cta-banner .cta-email { font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.cta-banner .cta-email a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.cta-banner .btn-navy:hover { background: #101c37; }

/* Counselor / profile page */
.profile-hero {
  background: linear-gradient(160deg, var(--navy-dark), var(--indigo));
  color: #fff;
  padding: 72px 0;
  text-align: center;
}
.profile-hero h1 { margin: 0 0 14px; font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
.profile-hero p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto; }

.profile-card {
  max-width: 900px;
  margin: -40px auto 0;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 48px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
}

.avatar-placeholder {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(150deg, #eef1fb, #fdece7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.4rem;
  color: var(--navy-dark);
  font-weight: 900;
  margin: 0 auto;
  border: 3px solid var(--border);
}

.avatar-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  border: 3px solid var(--border);
  box-shadow: var(--shadow);
}

.profile-info h2 { margin: 0 0 4px; color: var(--navy-dark); font-size: 1.5rem; }
.profile-info .role { color: var(--coral); font-weight: 700; margin: 0 0 20px; }

.credential-list { margin: 0 0 24px; }
.credential-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text);
}
.credential-list li:last-child { border-bottom: none; }
.credential-list li::before {
  content: "✓";
  color: #fff;
  background: var(--navy-dark);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.profile-info .bio { color: var(--text-soft); margin: 0 0 24px; }

.specialty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.specialty-tags li {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy-dark);
}

@media (max-width: 640px) {
  .profile-card { grid-template-columns: 1fr; padding: 32px 22px; text-align: center; }
  .profile-info .role { margin-bottom: 16px; }
  .specialty-tags, .credential-list li { justify-content: center; }
}

/* Footer */
footer.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 48px 0 28px;
  font-size: 0.88rem;
  margin-top: 60px;
}
footer.site-footer .foot-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 20px;
}
footer.site-footer .foot-brand { color: #fff; font-weight: 700; font-size: 1.05rem; }
footer.site-footer .foot-links { display: flex; gap: 18px; }
footer.site-footer .foot-links a:hover { color: #fff; }
footer.site-footer p { margin: 4px 0; }

/* Board page */
.board-hero {
  background: linear-gradient(160deg, var(--navy-dark), var(--indigo));
  color: #fff;
  padding: 72px 0;
  text-align: center;
}
.board-hero h1 { margin: 0 0 14px; font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
.board-hero p { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto; }

.board-panel-grid {
  max-width: 780px;
  margin: -40px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.board-panel {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 32px;
  text-align: center;
}
.board-panel .blog-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 18px;
  background: #03c75a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.6rem;
}
.board-panel h2 { margin: 0 0 12px; color: var(--navy-dark); }
.board-panel p { color: var(--text-soft); margin: 0 0 28px; }
.blog-btn {
  background: #03c75a;
  color: #fff;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.blog-btn:hover { transform: translateY(-2px); }

.board-note {
  max-width: 720px;
  margin: 28px auto 0;
  text-align: center;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.category-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
  box-shadow: var(--shadow);
}
.category-card .icon { font-size: 1.6rem; margin-bottom: 12px; }
.category-card h3 { margin: 0 0 8px; font-size: 1rem; color: var(--navy-dark); }
.category-card p { margin: 0; font-size: 0.85rem; color: var(--text-soft); }

@media (max-width: 1180px) {
  nav.main-nav { display: none; }
  nav.main-nav.open {
    display: block;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  nav.main-nav.open ul { flex-direction: column; padding: 12px 24px 20px; gap: 4px; }
  nav.main-nav.open a { display: block; padding: 10px 16px; font-size: 0.95rem; }
  .nav-toggle { display: block; }
}

@media (max-width: 860px) {
  .intro-grid, .about-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: 1fr; }
  .board-panel-grid { grid-template-columns: 1fr; }
  footer.site-footer .foot-top { flex-direction: column; }
}

@media (max-width: 520px) {
  .feature-grid { grid-template-columns: 1fr; }
  .board-panel { padding: 32px 22px; }
}

/* ===== Renewal additions ===== */

/* Hero background image */
.hero {
  background-image: linear-gradient(160deg, rgba(26,43,77,0.90) 0%, rgba(37,58,102,0.84) 55%, rgba(74,74,143,0.78) 100%), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* Critical/functional content: never allow a hidden mid-animation state */
.inquiry-card, .about-grid {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* FAQ */
.faq { background: var(--cream); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 24px;
  box-shadow: var(--shadow);
}
.faq-item summary {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 700;
  color: var(--navy-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--coral);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0 0 22px; color: var(--text-soft); font-size: 0.95rem; }

/* Map embed */
.map-embed { width: 100%; height: 220px; border: 0; display: block; }

/* Inquiry form */
.inquiry-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 36px;
  margin-top: 40px;
}
.inquiry-card h3 { margin: 0 0 8px; color: var(--navy-dark); font-size: 1.2rem; }
.inquiry-card .form-note { color: var(--text-soft); font-size: 0.88rem; margin: 0 0 22px; line-height: 1.6; }
.inquiry-card .form-note a { color: var(--coral); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 0; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-field label { font-size: 0.85rem; font-weight: 700; color: var(--navy-dark); }
.form-field input, .form-field select, .form-field textarea {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 2px solid var(--coral);
  outline-offset: 1px;
}
.inquiry-card button.btn { border: none; cursor: pointer; width: 100%; justify-content: center; }

/* Sticky mobile call button */
.sticky-call { display: none; }
@media (max-width: 640px) {
  .sticky-call {
    display: flex;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 60;
    background: var(--coral);
    color: #fff;
    padding: 16px;
    border-radius: 999px;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(255,126,99,0.45);
  }
  body { padding-bottom: 72px; }
}

/* Resources page */
.resources-hero {
  background: linear-gradient(160deg, var(--navy-dark), var(--indigo));
  color: #fff;
  padding: 72px 0;
  text-align: center;
}
.resources-hero h1 { margin: 0 0 14px; font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
.resources-hero p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto; }

.resource-card {
  max-width: 780px;
  margin: -40px auto 0;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  align-items: center;
}
.resource-card .doc-icon {
  width: 140px;
  height: 180px;
  border-radius: 12px;
  background: linear-gradient(150deg, #eef1fb, #fdece7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border: 3px solid var(--border);
  margin: 0 auto;
}
.resource-card h2 { margin: 0 0 10px; color: var(--navy-dark); }
.resource-card p { color: var(--text-soft); margin: 0 0 20px; }

@media (max-width: 640px) {
  .resource-card { grid-template-columns: 1fr; text-align: center; padding: 32px 22px; }
}

/* Blog latest posts (board.html) */
.latest-posts { margin-top: 56px; }
.latest-posts h2 { text-align: center; color: var(--navy-dark); margin: 0 0 8px; }
.latest-posts .sub { text-align: center; color: var(--text-soft); margin: 0 0 32px; font-size: 0.9rem; }
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.post-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.post-card img { width: 100%; height: 150px; object-fit: cover; background: var(--cream); }
.post-card .post-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-card .post-blog { font-size: 0.75rem; font-weight: 700; color: var(--coral); }
.post-card h4 { margin: 0; font-size: 0.98rem; color: var(--navy-dark); line-height: 1.4; }
.post-card .post-date { margin-top: auto; font-size: 0.78rem; color: var(--text-soft); }

@media (max-width: 860px) {
  .form-row { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: 1fr; }
  .resource-card { grid-template-columns: 1fr; }
}

/* ===== 심리상담소/성교육센터 통합 개편 ===== */

/* Brand subtitle band */
.brand-subtitle {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.brand-subtitle p {
  margin: 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-soft);
  letter-spacing: 0.01em;
}

/* Unified greeting text block */
.intro-unified {
  max-width: 760px;
  margin: 0 auto;
}
.intro-unified p {
  margin: 0 0 22px;
  color: var(--text);
  font-size: 1.03rem;
  line-height: 1.85;
}
.intro-unified p:first-child {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.7;
}
.intro-unified .intro-sign {
  margin-top: 10px;
  text-align: right;
}

/* Split 5:5 orgs section */
.split-orgs { background: var(--cream); }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.split-col {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.split-head h2 {
  margin: 0 0 6px;
  color: var(--navy-dark);
  font-size: 1.25rem;
}
.split-head .split-sub {
  margin: 0 0 24px;
  color: var(--coral);
  font-weight: 700;
  font-size: 0.9rem;
}
.split-list { margin: 0 0 22px; }
.split-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.97rem;
  color: var(--text);
}
.split-list li:last-child { border-bottom: none; }
.split-list li::before {
  content: "✓";
  color: #fff;
  background: var(--navy-dark);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  flex-shrink: 0;
}
.split-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.split-topics span {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy-dark);
}
.split-note {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed var(--border);
  color: var(--text-soft);
  font-size: 0.87rem;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .split-grid { grid-template-columns: 1fr; }
}
