@import "https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700;800;900&family=Noto+Serif+KR:wght@400;500;700;900&family=Nanum+Myeongjo:wght@400;700;800&family=Nanum+Pen+Script&family=Cormorant+Garamond:ital,wght@1,500;1,600;1,700&display=swap";

/* virtual-fs:/src/components/NajuDrawingLanding.css */
:root {
  --paper: #fcf6e9;
  --paper-2: #f6ecd6;
  --ink: #14224b;
  --ink-soft: #2b3866;
  --blue: #0c3d8f;
  --blue-bright: #1f6dd6;
  --blue-soft: #6aa6e8;
  --orange: #f47b2c;
  --orange-soft: #f9a64a;
  --pink: #ef4a78;
  --green: #3aa66f;
  --red: #e23b3b;
  --line: rgba(20, 34, 75, 0.14);
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Noto Sans KR", sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.naju-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.poster-bg {
  position: fixed;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  filter: blur(5px) saturate(1.15);
  opacity: 0.32;
  z-index: 0;
  pointer-events: none;
}
.poster-bg-veil {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(252, 246, 233, 0.55) 0%, rgba(252, 246, 233, 0.75) 40%, rgba(252, 246, 233, 0.82) 100%);
  z-index: 0;
  pointer-events: none;
}
.wash {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}
.w-blue {
  width: 60vw;
  height: 60vw;
  top: -10vw;
  right: -15vw;
  background: radial-gradient(closest-side, rgba(106, 166, 232, 0.55), transparent 70%);
}
.w-pink {
  width: 38vw;
  height: 38vw;
  top: 35vh;
  left: -10vw;
  background: radial-gradient(closest-side, rgba(239, 74, 120, 0.28), transparent 70%);
}
.w-orange {
  width: 40vw;
  height: 40vw;
  top: 80vh;
  right: -8vw;
  background: radial-gradient(closest-side, rgba(244, 123, 44, 0.32), transparent 70%);
}
.w-yellow {
  width: 50vw;
  height: 50vw;
  bottom: -10vw;
  left: 20vw;
  background: radial-gradient(closest-side, rgba(247, 204, 90, 0.32), transparent 70%);
}
.naju-page > header,
.naju-page > section,
.naju-page > footer {
  position: relative;
  z-index: 2;
}
[data-reveal] {
  opacity: 1;
  transform: none;
}
.js-reveal-on [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 720ms ease, transform 720ms ease;
}
.js-reveal-on [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}
.topnav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 22px 6vw;
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(252, 246, 233, 0.72);
  border-bottom: 1px solid rgba(20, 34, 75, 0.08);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-style: italic;
  font-size: 26px;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 14px rgba(12, 61, 143, 0.3);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  white-space: nowrap;
}
.brand-line-1 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 20px;
  color: var(--blue);
  white-space: nowrap;
}
.brand-line-2 {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ink-soft);
  font-weight: 700;
}
.navlinks {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}
.navlinks a {
  position: relative;
  transition: color 200ms;
}
.navlinks a:hover {
  color: var(--blue);
}
.navlinks a:hover::after {
  transform: scaleX(1);
}
.navlinks a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms;
}
.nav-cta {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 200ms,
    box-shadow 200ms,
    background 200ms;
}
.nav-cta:hover {
  background: var(--blue-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(12, 61, 143, 0.3);
}
.hero {
  position: relative;
  padding: 80px 6vw 100px;
  text-align: center;
  min-height: calc(100vh - 84px);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 4% 8%;
  background: radial-gradient(ellipse at center, rgba(255, 253, 247, 0.85) 0%, rgba(255, 253, 247, 0.55) 55%, rgba(255, 253, 247, 0) 80%);
  z-index: -1;
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow-line {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--blue);
  opacity: 0.5;
}
.hero-dates {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 18px;
}
.d-num {
  font-size: clamp(28px, 3.6vw, 48px);
}
.d-tilde {
  font-size: clamp(20px, 2.4vw, 32px);
  color: var(--blue);
}
.hero-title {
  margin: 0;
  font-family:
    "Nanum Myeongjo",
    "Noto Serif KR",
    serif;
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.08em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(8px, 1.2vw, 24px);
  font-size: clamp(80px, 14vw, 220px);
}
.hero-title > * {
  text-shadow:
    -1px 0 0 rgba(255, 255, 255, 0.9),
    1px 0 0 rgba(255, 255, 255, 0.9),
    0 -1px 0 rgba(255, 255, 255, 0.9),
    0 1px 0 rgba(255, 255, 255, 0.9),
    0 4px 18px rgba(255, 255, 255, 0.95),
    0 0 50px rgba(255, 255, 255, 0.7);
}
.t-naju {
  color: #082c6f;
  position: relative;
}
.t-naju::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 14%;
  height: 28%;
  background: radial-gradient(closest-side, rgba(106, 166, 232, 0.45), transparent 70%);
  z-index: -1;
  filter: blur(8px);
}
.t-drawing {
  display: inline-flex;
}
.t-d {
  color: #e35a14;
}
.t-r {
  color: #d8345f;
}
.t-i {
  color: #0e54c5;
}
.hero-sub {
  margin-top: 18px;
  display: inline-flex;
  align-items: baseline;
  gap: 18px;
  font-family:
    "Nanum Myeongjo",
    "Noto Serif KR",
    serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -0.06em;
  color: var(--blue);
}
.sub-amp {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--orange);
  font-weight: 600;
}
.hero-slogan {
  margin: 36px auto 0;
  font-family:
    "Nanum Pen Script",
    "Noto Serif KR",
    serif;
  font-size: clamp(30px, 3.6vw, 48px);
  color: var(--blue);
  letter-spacing: 0.01em;
  line-height: 1.4;
  text-shadow: 0 2px 14px rgba(255, 255, 255, 0.7);
}
.hero-desc {
  margin: 18px auto 0;
  max-width: 560px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.9;
  color: var(--ink-soft);
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition:
    transform 200ms,
    box-shadow 200ms,
    background 200ms,
    color 200ms;
  cursor: pointer;
  border: 0;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--pink));
  color: #fff;
  box-shadow: 0 12px 28px rgba(244, 123, 44, 0.32);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(244, 123, 44, 0.4);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--blue);
  border: 1.5px solid rgba(12, 61, 143, 0.2);
}
.btn-ghost:hover {
  background: #fff;
  border-color: var(--blue);
  transform: translateY(-2px);
}
.btn-ghost.light {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost.light:hover {
  background: rgba(255, 255, 255, 0.3);
}
.btn-primary.big,
.btn-ghost.big {
  padding: 20px 36px;
  font-size: 17px;
}
.btn-arrow {
  display: inline-block;
  transition: transform 200ms;
}
.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}
.hero-countdown {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(12, 61, 143, 0.15);
  border-radius: 18px;
  backdrop-filter: blur(8px);
}
.cd-num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 38px;
  color: var(--orange);
  line-height: 1;
}
.cd-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  font-weight: 600;
  margin-top: 4px;
}
.hero-naju-mark {
  position: absolute;
  top: 80px;
  right: 6vw;
  text-align: right;
  color: var(--blue);
  z-index: 4;
}
.naju-script {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1;
}
.naju-sub {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.24em;
  font-weight: 700;
}
.section {
  padding: 96px 6vw;
  max-width: 1280px;
  margin: 0 auto;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: var(--orange);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange);
  margin-bottom: 22px;
}
.section-eyebrow.light {
  color: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.5);
}
.section-title {
  margin: 0;
  font-family:
    "Nanum Myeongjo",
    "Noto Serif KR",
    serif;
  font-weight: 800;
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -0.05em;
  line-height: 1.2;
  color: var(--ink);
}
.section-title em {
  font-style: normal;
  color: var(--blue);
  position: relative;
}
.section-title em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 14px;
  background: linear-gradient(90deg, rgba(244, 123, 44, 0.35), rgba(239, 74, 120, 0.25));
  z-index: -1;
}
.section-sub {
  margin-top: 18px;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 620px;
}
.section-sub .plus {
  color: var(--orange);
  font-weight: 900;
}
.about-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-text {
  font-size: 18px;
  line-height: 1.9;
  color: var(--ink-soft);
}
.about-text p {
  margin: 0 0 18px;
}
.about-text strong {
  color: var(--ink);
  font-weight: 700;
}
.about-callout {
  display: inline-block;
  margin-top: 8px !important;
  padding: 10px 18px;
  background: rgba(244, 123, 44, 0.1);
  border-left: 3px solid var(--orange);
  color: var(--ink) !important;
  font-weight: 600;
  font-size: 15px !important;
}
.about-stats {
  display: grid;
  gap: 22px;
}
.stat {
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 22px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  backdrop-filter: blur(10px);
  transition: transform 200ms, box-shadow 200ms;
}
.stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(12, 61, 143, 0.1);
}
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  color: var(--blue);
}
.stat-num span {
  font-size: 22px;
  margin-left: 4px;
  color: var(--ink-soft);
  font-style: normal;
  font-family: "Noto Sans KR";
  font-weight: 700;
}
.stat-label {
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 600;
}
.cat-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.cat-card {
  padding: 32px 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 22px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition:
    transform 300ms cubic-bezier(.2, 0, 0, 1),
    box-shadow 300ms,
    border-color 300ms;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: "";
  position: absolute;
  inset: -2px -2px auto auto;
  width: 60px;
  height: 60px;
  background: var(--cat);
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(18px);
  transition: opacity 300ms;
}
.cat-card:hover {
  transform: translateY(-8px);
  border-color: var(--cat);
  box-shadow: 0 22px 44px rgba(12, 61, 143, 0.12);
}
.cat-card:hover::before {
  opacity: 0.4;
}
.cat-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cat);
  border: 2px solid currentColor;
  background: rgba(255, 255, 255, 0.6);
  transition: transform 300ms;
}
.cat-card:hover .cat-icon {
  transform: rotate(-6deg) scale(1.08);
}
.cat-name {
  font-family: "Nanum Myeongjo", serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.04em;
}
.cat-desc {
  margin-top: 6px;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
}
.howto-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}
.howto-info,
.howto-timeline {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 38px 36px;
  backdrop-filter: blur(10px);
}
.info-head {
  font-family: "Nanum Myeongjo", serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--blue);
  letter-spacing: -0.04em;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.info-list li {
  display: grid;
  grid-template-columns: 28px 96px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
}
.info-list li:last-child {
  border-bottom: 0;
}
.info-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: rgba(244, 123, 44, 0.14);
  color: var(--orange);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}
.info-label {
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
  letter-spacing: -0.02em;
}
.info-value {
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 500;
}
.timeline {
  position: relative;
  padding-left: 24px;
  margin-top: 8px;
}
.timeline-bar {
  position: absolute;
  left: 5px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue), var(--orange), var(--pink));
  border-radius: 2px;
  opacity: 0.4;
}
.tl-item {
  position: relative;
  padding: 18px 0 18px 22px;
}
.tl-dot {
  position: absolute;
  left: -22px;
  top: 22px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 2px var(--blue);
}
.tl-item.is-flag .tl-dot {
  background: var(--red);
  box-shadow: 0 0 0 2px var(--red);
}
.tl-date {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
}
.tl-item.is-flag .tl-date {
  color: var(--red);
}
.tl-label {
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-top: 2px;
}
.tl-note {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 4px;
}
.tl-item.is-flag .tl-note {
  color: var(--red);
  font-weight: 700;
}
.benefits-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit-card {
  position: relative;
  padding: 32px 26px 34px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-top: 4px solid var(--bc);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 300ms, box-shadow 300ms;
  backdrop-filter: blur(10px);
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(12, 61, 143, 0.12);
}
.benefit-num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 56px;
  color: var(--bc);
  line-height: 1;
  opacity: 0.85;
}
.benefit-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--bc);
  padding: 4px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
}
.benefit-title {
  margin: 14px 0 8px;
  font-family: "Nanum Myeongjo", serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1.35;
}
.benefit-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.benefit-corner {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 86px;
  height: 86px;
  background: var(--bc);
  opacity: 0.1;
  border-radius: 50%;
  transition: transform 400ms;
}
.benefit-card:hover .benefit-corner {
  transform: scale(1.4);
}
.big-quote {
  margin: 72px auto 0;
  max-width: 760px;
  text-align: center;
  position: relative;
}
.bq-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 120px;
  line-height: 0.6;
  color: var(--orange);
  opacity: 0.4;
  margin-bottom: -28px;
}
.big-quote p {
  font-family: "Nanum Myeongjo", serif;
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.55;
  letter-spacing: -0.05em;
  color: var(--blue);
}
.contact {
  padding: 64px 6vw 96px;
}
.contact-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue) 0%, #1d52a8 60%, #2d6dc7 100%);
  color: #fff;
  position: relative;
  box-shadow: 0 30px 80px rgba(12, 61, 143, 0.35);
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(244, 123, 44, 0.4), transparent 30%), radial-gradient(circle at 20% 90%, rgba(239, 74, 120, 0.3), transparent 30%);
  pointer-events: none;
}
.contact-left,
.contact-right {
  position: relative;
  padding: 56px 52px;
}
.contact-title {
  margin: 12px 0 18px;
  font-family: "Nanum Myeongjo", serif;
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.05em;
  line-height: 1.3;
  color: #fff;
}
.contact-desc {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 30px;
}
.contact-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.phone-icon {
  font-size: 18px;
}
.contact-right {
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
.contact-meta {
  display: grid;
  gap: 22px;
}
.cm-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}
.cm-val {
  margin-top: 4px;
  font-size: 17px;
  font-weight: 700;
}
.cm-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}
.qr-stub {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.95);
  padding: 14px;
  border-radius: 14px;
  width: 130px;
  text-align: center;
}
.qr-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  width: 100%;
  aspect-ratio: 1;
}
.qr-grid span {
  background: transparent;
  border-radius: 1px;
}
.qr-grid span.on {
  background: var(--ink);
}
.qr-label {
  margin-top: 8px;
  font-size: 10px;
  color: var(--ink);
  letter-spacing: 0.05em;
  font-weight: 600;
}
.footer {
  padding: 60px 6vw 80px;
  background: rgba(255, 255, 255, 0.55);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.footer-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.f-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 8px;
}
.f-val {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
  font-weight: 500;
}
.footer-line {
  margin: 48px auto 0;
  max-width: 1280px;
  text-align: center;
  font-family: "Nanum Pen Script", cursive;
  font-size: 28px;
  color: var(--blue);
  letter-spacing: 0.02em;
}
@media (max-width: 980px) {
  .navlinks {
    display: none;
  }
  .topnav {
    padding: 16px 5vw;
  }
  .hero-naju-mark {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .howto-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-card {
    grid-template-columns: 1fr;
  }
  .contact-left,
  .contact-right {
    padding: 40px 32px;
  }
  .footer-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .section {
    padding: 72px 5vw;
  }
  .info-list li {
    grid-template-columns: 24px 80px 1fr;
    gap: 10px;
  }
}
@media (max-width: 560px) {
  .hero {
    padding: 40px 5vw 60px;
  }
  .hero-title {
    font-size: 80px;
    letter-spacing: -0.06em;
  }
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .footer-row {
    grid-template-columns: 1fr;
  }
  .stat {
    padding: 22px 24px;
  }
  .stat-num {
    font-size: 48px;
  }
  .info-list li {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 0;
  }
  .info-icon {
    display: none;
  }
  .info-label {
    font-size: 12px;
    color: var(--orange);
    letter-spacing: 0.1em;
  }
}
.flying-butterfly {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  pointer-events: none;
  will-change: transform;
}
.butterfly-svg {
  display: block;
  filter: drop-shadow(0 4px 6px rgba(40, 60, 120, 0.18));
}
@media (prefers-reduced-motion: reduce) {
  .flying-butterfly {
    display: none;
  }
  .js-reveal-on [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
