:root {
  --bg: #f7f3e8;
  --bg-2: #f0ead6;
  --bg-3: #ebe4cc;
  --surface: #ffffff;
  --surface-warm: #fdfaf0;
  --line: #e3dcc4;
  --line-2: #d4cdb0;
  --line-soft: #ebe4cc;

  --text: #2c3a2e;
  --text-soft: #3d4f3f;
  --text-muted: #5d6b5f;
  --text-dim: #8a958c;

  --green: #3d6b4a;
  --green-bright: #5a8c5f;
  --green-light: #7eb87e;
  --green-dark: #2a4d34;
  --green-darker: #1e3826;
  --green-deep: #14281c;

  --gold: #b8893f;
  --gold-soft: #d4a85a;
  --gold-bright: #e3bc6b;
  --gold-deep: #8a6428;

  --earth: #8b6f47;
  --earth-soft: #ad8e63;

  --shadow-1: 0 4px 14px rgba(60, 75, 50, 0.06);
  --shadow-2: 0 10px 35px rgba(60, 75, 50, 0.10);
  --shadow-3: 0 25px 60px rgba(60, 75, 50, 0.14);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --maxw: 1180px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  /* 곡식/리넨 질감 — 아주 미세한 점 노이즈 */
  background-image:
    radial-gradient(rgba(139, 111, 71, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ═════════════════════════════════════════
   NAV — 깔끔한 크림 톤 헤더
   ═════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247, 243, 232, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(247, 243, 232, 0.95);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--green-dark);
  text-decoration: none;
}
.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  gap: 1px;
}
.logo-text {
  font-size: 16px;
  letter-spacing: -0.025em;
  color: var(--green-deep);
  font-weight: 800;
}
.logo-text-en {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s var(--ease);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-links a:hover { color: var(--green-dark); }
.nav-links a:hover::after { transform: scaleX(1); }

/* ═════════════════════════════════════════
   HERO — 들녘처럼 따스한 배경
   ═════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 120px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(125, 184, 126, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(212, 168, 90, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    /* 미세한 곡식밭 줄무늬 */
    repeating-linear-gradient(
      180deg,
      transparent 0,
      transparent 80px,
      rgba(93, 107, 95, 0.025) 80px,
      rgba(93, 107, 95, 0.025) 81px
    );
  z-index: 0;
}
.hero-inner { position: relative; z-index: 5; }

/* 2단 그리드: 좌측 텍스트 / 우측 로고 비주얼 */
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 90px;
}
.hero-text {
  position: relative;
}

/* 히어로 로고 비주얼 */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  max-width: 460px;
  margin: 0 auto;
}
.hero-logo-glow {
  position: absolute;
  inset: 10%;
  background:
    radial-gradient(circle at 50% 50%, rgba(212, 168, 90, 0.25) 0%, transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(125, 184, 126, 0.18) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
  animation: glow-pulse 6s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.05); }
}
.hero-logo-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  max-width: 420px;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(42, 77, 52, 0.18));
  animation: float-soft 8s ease-in-out infinite;
}
@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 36px;
  box-shadow: var(--shadow-1);
}
.badge strong { font-weight: 700; color: var(--gold); }
.badge-icon {
  color: var(--gold);
  font-size: 14px;
  line-height: 1;
}
.badge-sep { color: var(--line-2); margin: 0 2px; }

.hero-title {
  font-size: clamp(42px, 6.5vw, 84px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.045em;
  margin-bottom: 32px;
  color: var(--green-deep);
}
.hero-title .accent {
  color: var(--green);
  position: relative;
  display: inline-block;
}
.hero-title .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.08em;
  height: 0.18em;
  background: rgba(212, 168, 90, 0.4);
  z-index: -1;
  border-radius: 3px;
}

.hero-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--text-soft);
  margin-bottom: 48px;
  max-width: 660px;
  line-height: 1.85;
}
.hero-cta {
  display: flex;
  gap: 14px;
  margin-bottom: 0;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--green-dark);
  color: var(--bg);
  box-shadow: 0 6px 20px rgba(42, 77, 52, 0.2);
}
.btn-primary:hover {
  background: var(--green-darker);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(42, 77, 52, 0.3);
}
.btn-ghost {
  background: transparent;
  border-color: var(--green-dark);
  color: var(--green-dark);
}
.btn-ghost:hover {
  background: var(--green-dark);
  color: var(--bg);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
  width: 100%;
}
.stat-value {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--green-dark);
  margin-bottom: 8px;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.stat-unit {
  font-size: 0.55em;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ═════════════════════════════════════════
   SECTIONS — 공통
   ═════════════════════════════════════════ */
.section {
  padding: 130px 0;
  position: relative;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--green);
  padding: 7px 16px;
  background: rgba(125, 184, 126, 0.1);
  border-radius: 100px;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}
.section-title {
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.18;
  margin-bottom: 20px;
  color: var(--green-deep);
}
.section-title strong { color: var(--gold); font-weight: 800; }
.section-sub {
  color: var(--text-soft);
  font-size: clamp(15px, 1.15vw, 17px);
  max-width: 720px;
  line-height: 1.8;
}
.section-sub strong { color: var(--green-dark); font-weight: 700; }
.section-head { margin-bottom: 70px; }
.section-head.center {
  text-align: center;
}
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* ═════════════════════════════════════════
   ABOUT
   ═════════════════════════════════════════ */
.section-about {
  background: var(--surface-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 90px;
  align-items: start;
}
.col-label .section-title { margin-bottom: 18px; }
.col-label-sub {
  color: var(--gold-deep);
  font-size: 14px;
  font-weight: 500;
}
.lead {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 24px;
}
.lead:last-of-type { margin-bottom: 40px; }
.kv {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 8px 28px;
  box-shadow: var(--shadow-1);
}
.kv-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 15px;
}
.kv-row:first-child { border-top: none; }
.kv-row dt {
  color: var(--text-dim);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.kv-row dd { color: var(--text); }

/* ═════════════════════════════════════════
   AWARD — 시상식
   ═════════════════════════════════════════ */
.award-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 70px;
  align-items: center;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 70px;
  box-shadow: var(--shadow-3);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.award-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-soft) 50%, var(--gold) 100%);
}
.award-card::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212, 168, 90, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.award-medal {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.medal-ribbon {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 50px;
  background: linear-gradient(180deg, #a85c4b 0%, #7e3f30 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 75%, 0 100%);
  z-index: 1;
  box-shadow: 0 4px 12px rgba(126, 63, 48, 0.3);
}
.medal-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 45deg,
    #d4a85a 0%,
    #f0c878 15%,
    #b8893f 30%,
    #8a6428 45%,
    #b8893f 60%,
    #f0c878 75%,
    #d4a85a 90%,
    #d4a85a 100%
  );
  padding: 6px;
  box-shadow:
    0 20px 50px rgba(184, 137, 63, 0.3),
    inset 0 0 30px rgba(138, 100, 40, 0.4);
}
.medal-ring::after {
  content: '';
  position: absolute;
  inset: 6px;
  background: radial-gradient(circle at 30% 30%, #faf3e1 0%, #ecd9a0 50%, #c69d4e 100%);
  border-radius: 50%;
  box-shadow: inset 0 4px 12px rgba(138, 100, 40, 0.3);
}
.medal-core {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px;
}
.medal-label {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 6px;
}
.medal-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--green-deep);
  letter-spacing: -0.02em;
  text-shadow: 0 1px 2px rgba(138, 100, 40, 0.2);
  line-height: 1;
  margin-bottom: 6px;
}
.medal-sub {
  font-size: 11.5px;
  color: var(--gold-deep);
  line-height: 1.4;
  font-weight: 600;
}

.award-meta {
  display: flex;
  flex-direction: column;
  position: relative;
}
.award-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 15px;
}
.award-item:first-child { border-top: none; padding-top: 0; }
.award-key {
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.award-val { color: var(--text); }
.award-note {
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 600;
  margin-left: 6px;
}

/* award-context : 62 → 28 → 8 → 1 funnel */
.award-context {
  display: grid;
  grid-template-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
  gap: 16px;
  margin-top: 60px;
  align-items: center;
}
.ctx-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
}
.ctx-card-gold {
  background: linear-gradient(180deg, #fef9ea 0%, #fbf0c8 100%);
  border-color: var(--gold-soft);
  box-shadow: 0 20px 40px rgba(184, 137, 63, 0.18);
  transform: scale(1.05);
}
.ctx-num {
  font-size: clamp(32px, 3.6vw, 44px);
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -0.03em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
}
.ctx-card-gold .ctx-num { color: var(--gold-deep); }
.ctx-unit {
  font-size: 0.5em;
  font-weight: 700;
  color: var(--gold);
}
.ctx-card-gold .ctx-unit { color: var(--gold-deep); }
.ctx-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.4;
}
.ctx-card-gold .ctx-label {
  color: var(--gold-deep);
  font-weight: 700;
}
.ctx-divider {
  font-size: 22px;
  color: var(--gold-soft);
  text-align: center;
  font-weight: 300;
}

/* ═════════════════════════════════════════
   HISTORY TIMELINE — 수상 이력
   ═════════════════════════════════════════ */
.history {
  margin-top: 90px;
  padding-top: 70px;
  border-top: 1px solid var(--line);
}
.history-head {
  text-align: center;
  margin-bottom: 56px;
}
.history-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  padding: 7px 16px;
  background: rgba(184, 137, 63, 0.1);
  border-radius: 100px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.history-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.history-title {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--green-deep);
  margin-bottom: 14px;
  line-height: 1.25;
}
.history-sub {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto;
}

.timeline {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}
.tl-item {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}
.tl-year {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--text-dim);
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.tl-item-current .tl-year {
  color: var(--gold);
}
.tl-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  width: 100%;
  position: relative;
  transition: all 0.25s var(--ease);
}
.tl-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.tl-card-gold {
  background: linear-gradient(180deg, #fefaee 0%, #fdf5dc 100%);
  border-color: var(--gold-soft);
  box-shadow: 0 20px 50px rgba(184, 137, 63, 0.15);
}
.tl-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.tl-badge-special {
  background: rgba(93, 107, 95, 0.1);
  color: var(--text-soft);
}
.tl-badge-grand {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(184, 137, 63, 0.3);
}
.tl-title {
  font-size: 21px;
  font-weight: 800;
  color: var(--green-deep);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.3;
}
.tl-card-gold .tl-title {
  color: var(--gold-deep);
}
.tl-meta {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.tl-desc {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.65;
}
.tl-line {
  align-self: center;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--text-dim) 20%, var(--gold-soft) 80%, var(--gold) 100%);
  position: relative;
  margin-top: 36px;
}
.tl-line::after {
  content: '→';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 24px;
  font-weight: 200;
  background: var(--bg);
  padding: 0 4px;
}

/* ═════════════════════════════════════════
   EVALUATION — 평가 시스템
   ═════════════════════════════════════════ */
.section-evaluation {
  background: var(--surface-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.eval-stages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 70px;
}
.eval-stage {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 44px 38px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  position: relative;
  overflow: hidden;
}
.eval-stage::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-light) 100%);
}
.eval-num {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--green);
  margin-bottom: 16px;
}
.eval-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--green-deep);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.eval-by {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(61, 107, 74, 0.08);
  color: var(--green-dark);
  font-size: 12.5px;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 22px;
}
.eval-desc {
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 24px;
}
.eval-result {
  display: inline-block;
  padding: 12px 20px;
  background: var(--bg-2);
  border: 1px dashed var(--gold-soft);
  border-radius: 10px;
  font-size: 14px;
  color: var(--gold-deep);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.eval-criteria {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 48px 40px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
}
.criteria-head {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 36px;
  position: relative;
  padding-bottom: 16px;
}
.criteria-head::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 3px;
  background: var(--gold-soft);
  border-radius: 2px;
}
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.criterion {
  text-align: center;
  padding: 24px 16px;
  background: var(--surface-warm);
  border-radius: var(--radius-sm);
  transition: all 0.25s var(--ease);
}
.criterion:hover {
  background: var(--bg-2);
  transform: translateY(-4px);
}
.crit-icon {
  color: var(--green);
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  background: rgba(61, 107, 74, 0.1);
  border-radius: 50%;
  margin-bottom: 14px;
}
.crit-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 4px;
}
.crit-sub {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ═════════════════════════════════════════
   KEYNOTE — 시상식 우수사례 발표
   ═════════════════════════════════════════ */
.section-keynote {
  background: var(--bg);
  position: relative;
}
.keynote-quote {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 80px 80px 60px;
  box-shadow: var(--shadow-3);
  border: 1px solid var(--line);
  margin-bottom: 50px;
  overflow: hidden;
}
.keynote-quote::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-soft) 100%);
}
.quote-mark {
  position: absolute;
  top: 30px;
  left: 50px;
  font-size: 180px;
  font-family: 'Georgia', serif;
  color: var(--gold-soft);
  opacity: 0.2;
  line-height: 1;
  font-weight: 700;
  pointer-events: none;
}
.keynote-quote blockquote {
  position: relative;
  z-index: 2;
}
.keynote-quote blockquote p {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.keynote-quote blockquote p:last-child { margin-bottom: 0; }
.keynote-quote blockquote strong {
  color: var(--green-dark);
  font-weight: 700;
  background: linear-gradient(180deg, transparent 65%, rgba(212, 168, 90, 0.3) 65%);
  padding: 0 3px;
}
.keynote-quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--line-soft);
}
.caption-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}
.caption-role {
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 500;
}
.caption-meta {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

.keynote-policy {
  background: var(--surface-warm);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 28px 34px;
}
.policy-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--green);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.policy-text {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.8;
}
.policy-text em {
  color: var(--green-dark);
  font-style: normal;
  font-weight: 600;
}

/* ═════════════════════════════════════════
   TECH — 핵심기술
   ═════════════════════════════════════════ */
.section-tech {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tech-flow { margin-bottom: 90px; }
.flow-row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 32px;
  align-items: stretch;
}
.flow-step {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
}
.flow-old {
  opacity: 0.75;
  background: var(--surface-warm);
}
.flow-new {
  background: var(--surface);
  border: 1px solid rgba(61, 107, 74, 0.2);
  box-shadow: 0 20px 50px rgba(61, 107, 74, 0.1);
  position: relative;
}
.flow-new::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-light) 100%);
  border-radius: var(--radius) 0 0 var(--radius);
}
.flow-step-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  padding: 6px 14px;
  background: rgba(93, 107, 95, 0.08);
  border-radius: 100px;
  color: var(--text-dim);
  margin-bottom: 22px;
  text-transform: uppercase;
  font-weight: 700;
}
.flow-step-tag-new {
  background: rgba(61, 107, 74, 0.1);
  color: var(--green-dark);
}
.flow-step-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
  color: var(--green-deep);
}
.flow-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.flow-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
}
.flow-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 2px;
  background: var(--text-dim);
  border-radius: 2px;
}
.flow-new .flow-list li::before { background: var(--green); }
.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.tech-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 44px 36px;
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-1);
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
  border-color: var(--line-2);
}
.pillar-icon {
  color: var(--green);
  margin-bottom: 24px;
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  background: rgba(61, 107, 74, 0.08);
  border-radius: 16px;
}
.pillar-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.18em;
  margin-bottom: 12px;
  display: block;
}
.pillar-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--green-deep);
}
.pillar-desc {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.75;
}

/* ═════════════════════════════════════════
   PROCESS — 생산 공정
   ═════════════════════════════════════════ */
.process-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 12px 40px;
  box-shadow: var(--shadow-1);
}
.process-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 36px 0;
  border-top: 1px solid var(--line-soft);
  align-items: center;
  transition: all 0.25s var(--ease);
}
.process-step:first-child { border-top: none; }
.process-step:hover { padding-left: 14px; }
.process-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
  position: relative;
}
.process-num::after {
  content: '';
  position: absolute;
  left: 0; bottom: -10px;
  width: 36px;
  height: 3px;
  background: var(--gold-soft);
  border-radius: 2px;
}
.process-body h3 {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  color: var(--green-deep);
}
.process-body p {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.7;
}

/* ═════════════════════════════════════════
   PRESS — 언론보도
   ═════════════════════════════════════════ */
.section-press {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.press-card {
  display: block;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  transition: all 0.25s var(--ease);
}
.press-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: var(--green);
}
.press-date {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 14px;
}
.press-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.press-meta {
  font-size: 13.5px;
  color: var(--green);
  font-weight: 600;
}
.press-card-past {
  background: var(--surface-warm);
  opacity: 0.92;
}
.press-card-past .press-date { color: var(--text-dim); }

/* ═════════════════════════════════════════
   CONTACT — 연락처 + 문의 폼
   ═════════════════════════════════════════ */
.section-contact {
  background: var(--surface-warm);
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: start;
}

/* 좌측 — 연락처 카드들 */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
}
.info-block {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--surface-warm);
  border: 1px solid transparent;
  text-align: left;
  transition: all 0.2s var(--ease);
  position: relative;
}
.info-block-link {
  cursor: pointer;
}
.info-block-link:hover {
  background: rgba(61, 107, 74, 0.05);
  border-color: var(--green);
  transform: translateX(2px);
}
.info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(61, 107, 74, 0.08);
  border-radius: 12px;
  color: var(--green);
}
.info-content {
  flex: 1;
  min-width: 0;
}
.info-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.info-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  word-break: break-all;
}
.info-arrow {
  color: var(--text-dim);
  font-size: 18px;
  transition: all 0.2s var(--ease);
  flex-shrink: 0;
}
.info-block-link:hover .info-arrow {
  color: var(--green);
  transform: translateX(4px);
}
/* 첫 번째 info-block (대표) — 아이콘 없는 단순형 */
.info-block:first-child {
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-darker) 100%);
  color: #f2efe1;
}
.info-block:first-child .info-label {
  color: rgba(255,255,255,0.6);
}
.info-block:first-child .info-value {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

/* 우측 — 문의 폼 */
.contact-form {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 44px 40px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-light) 50%, var(--gold-soft) 100%);
}
.form-head {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-soft);
}
.form-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--green-deep);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.form-sub {
  font-size: 14px;
  color: var(--text-muted);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.form-row .form-field { margin-bottom: 0; }
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: -0.01em;
}
.required {
  color: var(--gold);
  margin-left: 2px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--surface-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  outline: none;
  transition: all 0.2s var(--ease);
  letter-spacing: -0.01em;
}
.form-field textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(61, 107, 74, 0.08);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-dim);
}
.form-field select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235d6b5f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.form-submit {
  width: 100%;
  margin-top: 12px;
  padding: 16px 24px;
  font-size: 15.5px;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: -0.01em;
  color: #ffffff;
  background: var(--green-dark);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s var(--ease);
  box-shadow: 0 6px 20px rgba(42, 77, 52, 0.2);
}
.form-submit:hover {
  background: var(--green-darker);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(42, 77, 52, 0.3);
}
.form-submit:active {
  transform: translateY(0);
}
.form-submit svg { transition: transform 0.2s var(--ease); }
.form-submit:hover svg { transform: translateX(3px); }

.form-note {
  margin-top: 16px;
  padding: 14px 18px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
  background: var(--surface-warm);
  border-left: 3px solid var(--gold-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.form-note strong {
  color: var(--green-dark);
  font-weight: 700;
}

/* Honeypot: 사람 눈에 안 보이게 + 봇이 발견 못 하게 */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* 개인정보 수집·이용 동의 박스 */
.privacy-box {
  background: var(--surface-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-bottom: 18px;
}
.privacy-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.privacy-content {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.privacy-content p {
  margin-bottom: 4px;
}
.privacy-content strong {
  color: var(--text-soft);
  font-weight: 600;
  margin-right: 4px;
}
.privacy-agree {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 8px 0 4px;
}
.privacy-agree input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green-dark);
  cursor: pointer;
  flex-shrink: 0;
}
.privacy-agree span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

/* 폼 제출 성공 카드 */
.form-success {
  text-align: center;
  padding: 40px 24px;
}
.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, #e8f3eb 0%, #c8e4cf 100%);
  border-radius: 50%;
  color: var(--green-dark);
  margin-bottom: 22px;
}
.success-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--green-deep);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.success-desc {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 28px;
}
.success-id {
  display: inline-block;
  padding: 10px 24px;
  background: var(--surface-warm);
  border: 1px dashed var(--gold-soft);
  border-radius: 100px;
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 36px;
}
.success-id strong {
  color: var(--gold-deep);
  font-weight: 800;
  letter-spacing: 0.05em;
}
.success-cta {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═════════════════════════════════════════
   FOOTER
   ═════════════════════════════════════════ */
.footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: var(--bg-3);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  color: var(--green-dark);
}
.footer-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.footer-name {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.footer-en {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.footer-meta {
  color: var(--text-muted);
  font-size: 13px;
}

/* ═════════════════════════════════════════
   REVEAL — 스크롤 등장
   ═════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* ═════════════════════════════════════════
   RESPONSIVE
   ═════════════════════════════════════════ */
@media (max-width: 880px) {
  .nav-links { display: none; }
  .logo-text-en { display: none; }
  .hero { padding: 130px 0 80px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  .hero-visual {
    order: -1;
    max-width: 260px;
  }
  .hero-logo-img { max-width: 240px; }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .badge {
    flex-wrap: wrap;
    font-size: 12.5px;
  }
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 40px; }
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .award-card {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 50px 28px;
  }
  .award-medal { margin: 0 auto; width: 220px; height: 220px; }
  .award-item { grid-template-columns: 1fr; gap: 6px; }
  .flow-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .flow-arrow svg {
    transform: rotate(90deg);
  }
  .tech-pillars { grid-template-columns: 1fr; }
  .process-list { padding: 8px 24px; }
  .process-step {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 0;
  }
  .process-num { font-size: 36px; }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-form { padding: 32px 24px; }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-row .form-field { margin-bottom: 16px; }
  .form-row .form-field:last-child { margin-bottom: 0; }
  .kv { padding: 8px 22px; }
  .kv-row { grid-template-columns: 1fr; gap: 6px; }
  .lead { font-size: 16px; }

  /* award-context: 4단계 funnel → 세로 스택 */
  .award-context {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ctx-divider {
    transform: rotate(90deg);
    height: 24px;
  }
  .ctx-card-gold { transform: none; }

  /* evaluation 2단계 → 세로 */
  .eval-stages {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .eval-stage { padding: 36px 28px; }
  .eval-criteria { padding: 36px 24px; }
  .criteria-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* keynote */
  .keynote-quote { padding: 50px 30px 40px; }
  .quote-mark { top: 14px; left: 20px; font-size: 110px; }
  .keynote-quote blockquote p { font-size: 17px; }
  .keynote-policy { padding: 22px 24px; }

  /* timeline: 가로 → 세로 */
  .history { margin-top: 60px; padding-top: 50px; }
  .history-head { margin-bottom: 36px; }
  .timeline {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .tl-line {
    height: 40px;
    width: 2px;
    background: linear-gradient(180deg, transparent 0%, var(--text-dim) 20%, var(--gold-soft) 80%, var(--gold) 100%);
    margin: 0 auto;
  }
  .tl-line::after {
    content: '↓';
    right: 50%;
    transform: translateX(50%);
    top: 50%;
  }
  .tl-card { padding: 28px 22px; }
}
