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

:root {
  --ink: #172d28;
  --green: #24483d;
  --green2: #355b4f;
  --lime: #d4e59d;
  --gold: #e3a443;
  --paper: #f7f6f0;
  --white: #fffefa;
  --muted: #68756d;
  --line: #dce1d7;
  --serif: Georgia,'Times New Roman',serif;
  --sans: Arial,Helvetica,sans-serif;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

button {
  font: inherit;
}

.wrap {
  width: min(var(--max),calc(100% - 48px));
  margin: auto;
}

.topline {
  height: 34px;
  background: var(--green);
  color: #eef1e9;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.topline .wrap {
  display: flex;
  justify-content: space-between;
}

.topline a {
  opacity: .88;
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(23,45,40,.1);
  background: rgba(247,246,240,.94);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  flex: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50% 50% 50% 8px;
  background: var(--green);
  display: grid;
  place-items: center;
  color: var(--lime);
  font: 24px var(--serif);
  transform: rotate(-12deg);
}

.brand-mark span {
  transform: rotate(12deg);
}

.brand strong {
  font-size: 12px;
  letter-spacing: .04em;
  line-height: 1.35;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  font-weight: normal;
  letter-spacing: .08em;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 10px;
  font-weight: bold;
  color: #33463e;
}

.nav-links a {
  white-space: nowrap;
}

.nav-links a:hover {
  color: #987034;
}

.nav-cta,.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 2px;
  padding: 14px 19px;
  background: var(--green);
  color: white;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: .2s;
}

.nav-cta:hover,.btn:hover {
  background: #18362d;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 24px;
  color: var(--ink);
}

.hero {
  min-height: 610px;
  position: relative;
  overflow: hidden;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 74% 50%,rgba(196,220,160,.25),transparent 30%),linear-gradient(110deg,#18372f 0%,#24483d 53%,#496454 100%);
}

.hero:after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -31%;
  width: 70%;
  height: 88%;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(135deg,rgba(211,229,157,.18),rgba(211,229,157,.03));
  transform: rotate(-14deg);
}

.hero-grid {
  position: absolute;
  right: 6%;
  top: 11%;
  width: min(45%,550px);
  height: 77%;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 48% 48% 4px 4px;
  overflow: hidden;
  opacity: .8;
}

.hero-grid:before,.hero-grid:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  width: 95%;
  height: 95%;
  left: 2.5%;
  top: 3%;
}

.hero-grid:after {
  width: 65%;
  height: 65%;
  left: 17.5%;
  top: 18%;
}

.hero-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.sun {
  position: absolute;
  top: 18%;
  right: 24%;
  width: 102px;
  height: 102px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .95;
  box-shadow: 0 0 90px rgba(227,164,67,.22);
}

.hill {
  position: absolute;
  bottom: -8%;
  width: 100%;
  height: 37%;
  background: #789075;
  clip-path: polygon(0 48%,14% 31%,25% 44%,38% 14%,53% 36%,67% 18%,78% 43%,91% 24%,100% 38%,100% 100%,0 100%);
}

.hill.two {
  height: 27%;
  background: #a5b48b;
  opacity: .85;
  clip-path: polygon(0 57%,17% 38%,32% 59%,47% 25%,61% 50%,77% 21%,100% 52%,100% 100%,0 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(610px,60%);
  padding: 86px 0 100px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  text-transform: uppercase;
  letter-spacing: .19em;
  font-size: 10px;
  font-weight: bold;
  color: #d5e59d;
}

.eyebrow:before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  font: clamp(54px,7.5vw,94px)/.96 var(--serif);
  letter-spacing: -.055em;
  font-weight: normal;
  margin: 24px 0;
}

.hero h1 em {
  font-weight: normal;
  color: var(--lime);
}

.hero p {
  max-width: 455px;
  color: #e0e8de;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.btn-light {
  background: var(--lime);
  color: var(--ink);
}

.btn-light:hover {
  background: #e2efbb;
}

.text-link {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #f3f4ec;
}

.text-link span {
  font-size: 17px;
  margin-left: 8px;
}

.hero-caption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 26px;
  font-size: 9px;
  color: #e3e9dc;
  letter-spacing: .12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.intro {
  padding: 92px 0 82px;
}

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

.section-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: bold;
  color: #748271;
}

.intro h2 {
  font: clamp(23px,3vw,40px)/1.16 var(--serif);
  letter-spacing: -.035em;
  font-weight: normal;
  margin: 15px 0 0;
  white-space: nowrap;
}

.section-heading h2 {
  font: clamp(37px,5vw,58px)/1.08 var(--serif);
  letter-spacing: -.04em;
  font-weight: normal;
  margin: 15px 0 0;
}

.intro h2 em,.section-heading h2 em {
  color: #7d9168;
}

.intro h2 em {
  white-space: nowrap;
}

.intro-copy {
  padding-top: 12px;
  color: #58665d;
  font-size: 15px;
  line-height: 1.9;
}

.ko {
  display: block;
  color: #8a9588;
  font-size: 12px;
  margin-top: 8px;
  line-height: 1.7;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--line);
  margin-top: 54px;
  border: 1px solid var(--line);
}

.stat {
  background: var(--paper);
  padding: 22px 25px;
}

.stat strong {
  display: block;
  font: 31px var(--serif);
  font-weight: normal;
  color: var(--green);
}

.stat span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  display: block;
  margin-top: 7px;
}

.fields {
  background: #e9ecdf;
  padding: 88px 0 96px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.section-heading p {
  color: var(--muted);
  font-size: 13px;
  max-width: 320px;
  line-height: 1.7;
  margin: 0;
}

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

.field-card {
  min-height: 295px;
  padding: 23px;
  position: relative;
  overflow: hidden;
  background: var(--green);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.field-card:nth-child(2) {
  background: #7a6042;
}

.field-card:nth-child(3) {
  background: #53684f;
}

.field-card:nth-child(4) {
  background: #5a6870;
}

.field-card:before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  right: -62px;
  top: 30px;
  box-shadow: 0 0 0 26px rgba(255,255,255,.035),0 0 0 52px rgba(255,255,255,.025);
}

.field-card:after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  right: -17px;
  top: 75px;
}

.field-number {
  font-size: 10px;
  letter-spacing: .14em;
  opacity: .72;
  position: relative;
  z-index: 1;
}

.field-card h3 {
  font: 32px var(--serif);
  font-weight: normal;
  margin: 0;
  position: relative;
  z-index: 1;
}

.field-card p {
  font-size: 11px;
  line-height: 1.6;
  opacity: .82;
  margin: 8px 0 0;
  position: relative;
  z-index: 1;
}

.field-card a {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.field-card a span {
  margin-left: 8px;
  font-size: 15px;
}

.kingdom {
  padding: 94px 0;
  background: var(--white);
}

.kingdom-grid {
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  gap: 9%;
  align-items: center;
}

.kingdom-visual {
  height: 420px;
  background: #dce4d3;
  position: relative;
  overflow: hidden;
}

.kingdom-visual:before {
  content: "";
  position: absolute;
  width: 70%;
  height: 118%;
  left: 14%;
  top: 4%;
  border-radius: 48% 48% 0 0;
  background: linear-gradient(145deg,#94a783,#526d59);
  transform: rotate(-13deg);
}

.kingdom-visual:after {
  content: "";
  position: absolute;
  width: 44%;
  height: 86%;
  left: 34%;
  top: 20%;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(170deg,#e2b563,#a47442);
  opacity: .88;
}

.visual-label {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 25px;
  color: white;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.kingdom-copy h2 {
  font: clamp(41px,5vw,61px)/1.02 var(--serif);
  font-weight: normal;
  letter-spacing: -.05em;
  margin: 16px 0 20px;
}

.kingdom-copy p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 480px;
}

.kingdom-points {
  display: flex;
  gap: 25px;
  border-top: 1px solid var(--line);
  margin: 28px 0;
  padding-top: 20px;
}

.kingdom-points div {
  font-size: 11px;
  line-height: 1.6;
  color: var(--green);
  font-weight: bold;
}

.kingdom-points span {
  display: block;
  color: #829080;
  font-weight: normal;
  font-size: 10px;
  margin-top: 4px;
}

.reports {
  padding: 91px 0 98px;
  background: #f0efe7;
}

.reports-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 35px;
}

.report-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 16px;
}

.report-card {
  background: var(--white);
  min-height: 305px;
  display: flex;
  flex-direction: column;
}

.report-art {
  height: 170px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,#54694e,#b6a46e);
}

.report-card:nth-child(2) .report-art {
  background: linear-gradient(135deg,#70523f,#d1a45e);
}

.report-card:nth-child(3) .report-art {
  background: linear-gradient(135deg,#50677b,#a6b4ad);
}

.report-art:before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  right: 15%;
  top: 15%;
  box-shadow: 0 0 0 20px rgba(255,255,255,.06),0 0 0 40px rgba(255,255,255,.04);
}

.play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  padding-left: 3px;
  font-size: 13px;
}

.report-tag {
  position: absolute;
  top: 15px;
  left: 16px;
  background: rgba(23,45,40,.72);
  color: #fff;
  padding: 7px 9px;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.report-body {
  padding: 20px 21px 22px;
}

.report-body small {
  font-size: 9px;
  letter-spacing: .13em;
  color: #788277;
  text-transform: uppercase;
}

.report-body h3 {
  font: 23px var(--serif);
  font-weight: normal;
  margin: 8px 0 9px;
}

.report-body p {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.join {
  padding: 80px 0;
  background: var(--green);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.join:after {
  content: "";
  position: absolute;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  right: -130px;
  top: -205px;
  box-shadow: 0 0 0 42px rgba(255,255,255,.025),0 0 0 84px rgba(255,255,255,.02);
}

.join-row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.join h2 {
  font: clamp(40px,5vw,62px)/1.03 var(--serif);
  font-weight: normal;
  letter-spacing: -.045em;
  margin: 15px 0;
}

.join p {
  color: #d2ddd1;
  font-size: 13px;
  line-height: 1.8;
  max-width: 460px;
}

.join .eyebrow {
  color: var(--lime);
}

.join .btn {
  flex-shrink: 0;
}

footer {
  background: #172d28;
  color: #d8e0d6;
  padding: 37px 0 24px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 32px;
}

.footer-note {
  font: 22px/1.3 var(--serif);
  max-width: 280px;
}

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

.footer-col strong {
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #a5b593;
}

.footer-col a {
  display: block;
  font-size: 11px;
  margin-top: 12px;
  color: #d8e0d6;
}

.copyright {
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 18px;
  color: #98a79a;
  font-size: 9px;
  display: flex;
  justify-content: space-between;
  letter-spacing: .06em;
}

.mobile-open .nav-links {
  display: flex;
}

@media(max-width:1100px) {
  .nav-inner {
    position: relative;
  }

  .menu-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    padding: 20px 24px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .mobile-open .nav-links {
    display: flex;
  }
}

@media(max-width:900px) {
  .field-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .report-grid {
    grid-template-columns: 1fr 1fr;
  }

  .report-card:first-child {
    grid-column: span 2;
  }

  .hero-copy {
    width: 66%;
  }

  .kingdom-grid {
    gap: 6%;
  }
}

@media(max-width:680px) {
  .wrap {
    width: min(var(--max),calc(100% - 36px));
  }

  .topline {
    font-size: 9px;
  }

  .topline .wrap span:last-child {
    display: none;
  }

  .nav {
    height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    padding: 20px 24px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .hero {
    min-height: 600px;
  }

  .hero-grid {
    width: 72%;
    right: -7%;
    height: 57%;
    top: 10%;
    opacity: .55;
  }

  .hero-copy {
    width: 100%;
    padding: 100px 0 112px;
  }

  .hero h1 {
    font-size: clamp(56px,16vw,78px);
    max-width: 460px;
  }

  .hero p {
    font-size: 14px;
    max-width: 360px;
  }

  .hero-caption {
    right: 13px;
    bottom: 16px;
  }

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

  .intro,.fields,.kingdom,.reports {
    padding: 67px 0;
  }

  .intro-grid,.kingdom-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .intro h2 {
    font-size: clamp(22px,6.6vw,28px);
    line-height: 1.2;
  }

  .section-heading h2 {
    font-size: 43px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .stat-row {
    margin-top: 35px;
  }

  .stat {
    padding: 18px 12px;
  }

  .stat strong {
    font-size: 26px;
  }

  .stat span {
    font-size: 8px;
  }

  .section-heading,.reports-head {
    display: block;
  }

  .section-heading p {
    margin-top: 15px;
  }

  .field-grid {
    gap: 10px;
  }

  .field-card {
    min-height: 250px;
    padding: 17px;
  }

  .field-card h3 {
    font-size: 27px;
  }

  .field-card p {
    font-size: 10px;
  }

  .kingdom-visual {
    height: 300px;
  }

  .kingdom-copy h2 {
    font-size: 46px;
  }

  .kingdom-points {
    gap: 14px;
  }

  .report-grid {
    grid-template-columns: 1fr;
  }

  .report-card:first-child {
    grid-column: auto;
  }

  .report-card {
    min-height: 0;
  }

  .join {
    padding: 66px 0;
  }

  .join-row {
    display: block;
  }

  .join .btn {
    margin-top: 15px;
  }

  .footer-main {
    display: block;
  }

  .footer-links {
    margin-top: 30px;
    gap: 24px;
    flex-wrap: wrap;
  }

  .copyright {
    display: block;
    line-height: 1.8;
  }

  .copyright span {
    display: block;
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }

  *,*:before,*:after {
    transition: none!important;
  }
}

.subhero {
  min-height: 340px;
  position: relative;
  overflow: hidden;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 65px 0;
}

.subhero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 82% 42%,rgba(196,220,160,.22),transparent 30%),linear-gradient(110deg,#18372f 0%,#24483d 58%,#496454 100%);
}

.subhero:after {
  content: "";
  position: absolute;
  right: -5%;
  bottom: -65%;
  width: 47%;
  height: 115%;
  border-radius: 50% 50% 0 0;
  background: rgba(211,229,157,.12);
  transform: rotate(-14deg);
}

.subhero .wrap {
  position: relative;
  z-index: 1;
}

.subhero h1 {
  font: clamp(44px,6vw,72px)/1.06 var(--serif);
  font-weight: normal;
  letter-spacing: -.04em;
  margin: 18px 0 13px;
}

.subhero p {
  max-width: 670px;
  color: #e0e8de;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.subhero .section-label {
  color: var(--lime);
}

.page-content {
  padding: 76px 0 92px;
}

.page-lead {
  max-width: 780px;
  color: #58665d;
  font-size: 17px;
  line-height: 1.9;
  margin: 0 0 38px;
}

.page-h2 {
  font: clamp(32px,4vw,46px)/1.12 var(--serif);
  font-weight: normal;
  letter-spacing: -.03em;
  margin: 0 0 19px;
}

.page-h2 em {
  color: #7d9168;
  font-style: normal;
}

.page-h3 {
  font: 25px var(--serif);
  font-weight: normal;
  margin: 0 0 12px;
}

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

.content-card {
  background: var(--white);
  padding: 26px;
  border: 1px solid var(--line);
}

.content-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.tag {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: bold;
  color: #71806d;
  margin-bottom: 14px;
  display: block;
}

.scripture {
  border-left: 3px solid var(--lime);
  padding: 5px 0 5px 22px;
  font: 22px/1.7 var(--serif);
  color: var(--ink);
  margin: 25px 0;
}

.scripture cite {
  display: block;
  font: 11px var(--sans);
  letter-spacing: .13em;
  color: var(--muted);
  margin-top: 8px;
  font-style: normal;
}

.video-frame {
  aspect-ratio: 16/9;
  background: #182b25;
  position: relative;
  overflow: hidden;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  min-height: 320px;
  background: linear-gradient(135deg,#24483d,#496454);
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
  padding: 30px;
}

.video-placeholder .play {
  font-size: 38px;
  border: 1px solid rgba(255,255,255,.7);
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin: 0 auto 17px;
  padding-left: 4px;
}

.video-placeholder p {
  font-size: 14px;
  line-height: 1.7;
  color: #e0e8de;
}

.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.field-list {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 13px;
}

.missioner {
  background: var(--white);
  padding: 22px 23px;
  border-top: 2px solid var(--lime);
  min-height: 146px;
}

.missioner .country {
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #71806d;
  font-weight: bold;
}

.missioner h3 {
  font: 23px var(--serif);
  font-weight: normal;
  margin: 12px 0 4px;
}

.missioner p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

.logo-panel {
  display: grid;
  place-items: center;
  background: #fffefa;
  border: 1px solid var(--line);
  padding: 32px;
  min-height: 300px;
}

.logo-panel img {
  max-width: min(100%,430px);
  height: auto;
  object-fit: contain;
}

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

.curriculum article {
  padding: 26px;
  background: var(--white);
  border-top: 3px solid var(--lime);
}

.curriculum article:nth-child(2) {
  border-color: #789075;
}

.curriculum article:nth-child(3) {
  border-color: var(--gold);
}

.curriculum ol {
  margin: 15px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.school-stats {
  display: flex;
  gap: 30px;
  margin-top: 26px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.school-stats strong {
  display: block;
  font: 32px var(--serif);
  font-weight: normal;
  color: var(--green);
}

.school-stats span {
  font-size: 11px;
  color: var(--muted);
}

.page-cta {
  background: var(--green);
  color: white;
  padding: 55px 0;
}

.page-cta .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.page-cta h2 {
  font: clamp(30px,4vw,43px)/1.15 var(--serif);
  font-weight: normal;
  margin: 0;
}

.page-cta p {
  font-size: 14px;
  color: #d2ddd1;
  line-height: 1.75;
  max-width: 530px;
}

.page-cta .btn {
  flex: none;
}

.notice {
  font-size: 12px;
  color: #7a847c;
  line-height: 1.7;
  margin-top: 24px;
}

@media(max-width:900px) {
  .content-grid,.field-list,.curriculum {
    grid-template-columns: repeat(2,1fr);
  }

  .page-cta .wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media(max-width:680px) {
  .subhero {
    min-height: 300px;
    padding: 55px 0;
  }

  .subhero h1 {
    font-size: 45px;
  }

  .subhero p {
    font-size: 14px;
  }

  .page-content {
    padding: 58px 0 70px;
  }

  .page-lead {
    font-size: 15px;
  }

  .content-grid,.field-list,.curriculum {
    grid-template-columns: 1fr;
  }

  .missioner {
    min-height: 0;
  }

  .logo-panel {
    min-height: 230px;
    padding: 20px;
  }

  .school-stats {
    gap: 18px;
  }

  .page-cta {
    padding: 45px 0;
  }
}

/* Korean-first copy for mission subpages */
.en-sub {
  display: block;
  margin-top: 7px;
  color: #758178;
  font: 400 .84em/1.65 var(--sans);
  letter-spacing: 0;
  text-transform: none;
}

.subhero .en-sub {
  color: #d2ddd1;
}

.tag .en-sub,.country .en-sub {
  display: inline;
  margin: 0 0 0 5px;
}

.scripture .en-sub {
  font-size: .82em;
  color: #758178;
}

.quote .en-sub {
  display: block;
  margin-top: 8px;
  color: #758178;
  font-size: 14px;
}

.curriculum ol .en-sub {
  display: inline;
  font-size: .9em;
}

.footer-col strong .en-sub {
  font-size: 10px;
  color: #a5b593;
}

.footer-note .en-sub {
  color: #b2beb2;
}

.stat strong {
  font-family: var(--sans);
  font-size: 25px;
  letter-spacing: -.04em;
}

.stat span {
  font-size: 12px;
  line-height: 1.45;
}

@media(max-width:680px) {
  .stat strong {
    font-size: 22px;
  }

  .stat span {
    font-size: 9px;
  }
}

/* Korean typography follows the supplied church reference: serif display, sans-serif reading text. */
html[lang="ko"] {
  --sans: 'Noto Sans KR','Malgun Gothic','Apple SD Gothic Neo',sans-serif;
  --serif: 'Noto Serif KR','Batang','AppleMyungjo',serif;
}

.ko,.stat strong {
  font-family: 'Noto Sans KR','Malgun Gothic','Apple SD Gothic Neo',sans-serif;
}

.en-sub {
  font-family: Arial,Helvetica,sans-serif;
  font-size: .86em;
  text-transform: none;
  letter-spacing: 0;
}

.stat-row .stat {
  padding: 25px 25px 24px;
}

.stat-row .stat strong {
  font-size: 13px;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: .12em;
  color: #748271;
}

.stat-row .stat h3 {
  font: 25px/1.35 var(--serif);
  font-weight: 500;
  margin: 14px 0 9px;
  color: var(--green);
}

.stat-row .stat p {
  font-size: 14px;
  line-height: 1.75;
  color: #58665d;
  margin: 0;
}

.stat-row .stat .en-sub {
  font-size: 12px;
  color: #758178;
  margin-top: 5px;
}

.video-placeholder .play {
  display: none;
}




@media(max-width:680px) {
  .stat-row .stat {
    padding: 18px 12px;
  }

  .stat-row .stat strong {
    font-size: 10px;
  }

  .stat-row .stat h3 {
    font-size: 19px;
  }

  .stat-row .stat p {
    font-size: 12px;
  }

  .stat-row .stat .en-sub {
    font-size: 10px;
  }
}

/* Final override: keep the three Mission Vision lines from wrapping. */
html body section.intro#about .intro-grid > div:first-child > h2 {
  white-space: nowrap !important;
  overflow-wrap: normal !important;
  word-break: keep-all !important;
  font-size: clamp(23px,3vw,38px) !important;
  line-height: 1.16 !important;
}

@media (max-width: 680px) {
  html body section.intro#about .intro-grid > div:first-child > h2 {
    font-size: clamp(20px,6.5vw,26px) !important;
    line-height: 1.2 !important;
  }
}

/* 선교 카드 5개 배치 */
.field-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.field-grid .field-card {
  grid-column: span 2;
}

.field-grid .field-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.field-grid .field-card:nth-child(5) {
  grid-column: 4 / span 2;
  background: #526d70;
}

/* 태블릿·모바일에서는 2열, 마지막 카드는 가운데 */
@media (max-width: 900px) {
  .field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field-grid .field-card {
    grid-column: auto;
  }

  .field-grid .field-card:nth-child(5) {
    grid-column: 1 / -1;
    width: calc(50% - 5px);
    justify-self: center;
  }
}
.field-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.field-grid .field-card {
  box-sizing: border-box;
  flex: 0 1 calc((100% - 28px) / 3);
  grid-column: auto;
}

.field-grid .field-card:nth-child(4n + 1) { background: var(--green); }
.field-grid .field-card:nth-child(4n + 2) { background: #7a6042; }
.field-grid .field-card:nth-child(4n + 3) { background: #53684f; }
.field-grid .field-card:nth-child(4n + 4) { background: #5a6870; }

.field-grid .field-summary {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.field-grid .field-period {
  margin-top: 6px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .field-grid .field-card {
    flex-basis: calc((100% - 14px) / 2);
  }
}

@media (max-width: 680px) {
  .field-grid {
    gap: 10px;
  }

  .field-grid .field-card {
    flex-basis: calc((100% - 10px) / 2);
  }
}
.video-modal {
  position: relative;
  width: min(960px, calc(100vw - 32px));
  max-width: none;
  padding: 56px 16px 16px;
  border: 0;
  border-radius: 14px;
  background: #101713;
  box-shadow: 0 24px 80px #0008;
}

.video-modal::backdrop {
  background: #07110dcc;
}

.video-modal-frame {
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #000;
}

.video-modal-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid #ffffff55;
  border-radius: 50%;
  background: #fff;
  color: #24483d;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}
.report-art .report-thumbnail {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.report-art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, .35), transparent 65%);
}

.report-art:before {
  z-index: 2;
}

.report-art .report-tag,
.report-art .play {
  z-index: 3;
}
.report-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .report-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-card:first-child {
    grid-column: auto;
  }
}