/* A-Step 홍보 페이지 — 처음 레이아웃 기준 정리 */

:root {
  --orange: #FF823C;
  --orange-dark: #F0651F;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-900: #111827;
  --container: min(100% - 2rem, 72rem);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

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

#features,
#previews,
#download {
  scroll-margin-top: 5rem;
}

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

.landing-page {
  margin: 0;
  font-family: "Noto Sans KR", system-ui, sans-serif;
  color: var(--gray-900);
  background: #fff;
  overflow-x: hidden;
}

.landing-page .container {
  width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.text-orange {
  color: var(--orange);
}

/* 브랜드: ȧ-Step (a 위 중앙 점) */
.brand__a {
  position: relative;
  display: inline-block;
}

.brand__a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.2em;
  width: 0.2em;
  height: 0.2em;
  margin-left: -0.1em;
  border-radius: 50%;
  background: currentColor;
}

.brand {
  white-space: nowrap;
}

/* ── 헤더 ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 4rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(254, 215, 170, 0.5);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

.site-logo__mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #FFA366, var(--orange-dark));
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
}

.site-logo__mark--sm {
  width: 2rem;
  height: 2rem;
  font-size: 0.75rem;
}

.site-logo__mark .brand__a::before {
  top: 0.16em;
  width: 0.22em;
  height: 0.22em;
  margin-left: -0.11em;
}

.site-logo__name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}


.site-nav {
  display: none;
  gap: 2rem;
}

.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.2s;
}

.site-nav a:hover {
  color: var(--orange);
}

.btn-download-header {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border-radius: 0.75rem;
  background: linear-gradient(90deg, #FFA366, var(--orange));
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
  transition: filter 0.2s, transform 0.15s;
}

.btn-download-header:hover {
  filter: brightness(1.05);
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }
}

/* ── 섹션 공통 ── */
.section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 7rem 0;
  }
}

.section--white {
  background: #fff;
}

.section--gray {
  background: var(--gray-50);
}

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-head__title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.section-head__desc {
  margin: 1rem auto 0;
  max-width: 28rem;
  font-size: 1.125rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ── 히어로 ── */
.section-hero {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section-hero {
    padding-top: 8rem;
    padding-bottom: 6rem;
  }
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}

.hero-bg::before {
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(254, 215, 170, 0.45);
}

.hero-bg::after {
  bottom: -10%;
  left: -15%;
  width: 400px;
  height: 400px;
  background: rgba(233, 213, 255, 0.35);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero-badge {
  display: inline-block;
  margin: 0 0 1.25rem;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #c2410c;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 9999px;
}

.hero-title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero-title__accent {
  background: linear-gradient(90deg, var(--orange), #FFA366);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 1.5rem 0 0;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray-600);
  max-width: 32rem;
}

.hero-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  color: var(--gray-500);
}

.hero-tags li {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.dot--green { background: #22c55e; }
.dot--yellow { background: #eab308; }
.dot--blue { background: #3b82f6; }

.hero-visual {
  min-width: 0;
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-visual {
    justify-content: flex-end;
  }
}

.hero-phone {
  max-width: 280px;
  margin: 0 auto;
  padding: 0.75rem;
  background: #fff;
  border: 2px solid #fed7aa;
  border-radius: 1.5rem;
  box-shadow: 0 24px 48px -12px rgba(249, 115, 22, 0.25);
}

.hero-phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  object-fit: contain;
}

@media (min-width: 768px) {
  .hero-phone {
    max-width: 300px;
  }
}

/* ── 주요 기능 카드 ── */
.features-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: #fff;
  border: 2px solid var(--gray-100);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.25s;
}

.feature-card:hover {
  border-color: #fed7aa;
  box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.1);
}

.feature-card__visual {
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-card--orange .feature-card__visual {
  background: linear-gradient(160deg, #ffedd5, #fff7ed);
}

.feature-card--purple .feature-card__visual {
  background: linear-gradient(160deg, #f3e8ff, #faf5ff);
}

.feature-card--green .feature-card__visual {
  background: linear-gradient(160deg, #dcfce7, #f0fdf4);
}

.feature-card__body {
  padding: 1.5rem;
}

.feature-card__body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.feature-card__body p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--gray-600);
}

/* ── 미리보기 (PC 2열) ── */
.previews-grid {
  display: grid;
  gap: 2rem;
  max-width: 68rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .previews-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.preview-card {
  background: #fff;
  border: 2px solid var(--gray-100);
  border-radius: 1rem;
  padding: 1.25rem 1.25rem 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.preview-card__label {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gray-500);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ── 슬라이더 ── */
.slider {
  position: relative;
}

.slider__viewport {
  overflow: hidden;
  border-radius: 0.75rem;
}

.slider__track {
  display: flex;
  transition: transform 0.35s ease;
}

.slider__slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  padding: 0.25rem 0;
}

.slider__slide img {
  width: auto;
  max-width: 100%;
  max-height: min(68vh, 480px);
  height: auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #374151;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider__btn:hover:not(:disabled) {
  color: var(--orange);
}

.slider__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.slider__btn--prev { left: 0.5rem; }
.slider__btn--next { right: 0.5rem; }
.slider__btn svg { width: 1.25rem; height: 1.25rem; }

.slider__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.slider__dots {
  display: flex;
  gap: 0.5rem;
}

.slider__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 9999px;
  background: #d1d5db;
  cursor: pointer;
  transition: width 0.2s, background 0.2s;
}

.slider__dot.is-active {
  width: 1.25rem;
  background: var(--orange);
}

.slider__counter {
  font-size: 0.875rem;
  color: var(--gray-500);
  min-width: 3rem;
  text-align: center;
}

/* ── 스토어 버튼 ── */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  height: 3rem;
  padding: 0 1.25rem;
  background: #000;
  color: #fff;
  border-radius: 0.75rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: background 0.2s;
}

.store-btn:hover {
  background: #1f2937;
}

.store-btn--lg {
  height: 3.5rem;
}

.store-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.store-btn--lg svg {
  width: 1.75rem;
  height: 1.75rem;
}

.store-btn span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.store-btn small {
  font-size: 10px;
  opacity: 0.85;
}

.store-btn strong {
  font-size: 0.875rem;
  font-weight: 600;
}

.store-btn--lg strong {
  font-size: 1rem;
}

/* ── 다운로드 CTA ── */
.section-cta {
  background: linear-gradient(180deg, #fff7ed 0%, #fff 100%);
  padding: 5rem 0;
}

.cta-box {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.cta-box__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #FFA366, var(--orange));
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.35);
}

.cta-box__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.cta-box__desc {
  margin: 0 0 2rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray-600);
}

.cta-box__stores {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ── 푸터 ── */
.site-footer {
  background: #111827;
  color: #9ca3af;
  padding: 2.5rem 0;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.site-footer__brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.site-footer__tag {
  font-size: 0.875rem;
  color: #6b7280;
}

.site-footer__info p {
  margin: 0;
  font-size: 0.875rem;
}

.site-footer__info p + p {
  margin-top: 0.25rem;
  color: #6b7280;
}

/* ── 앱 화면 가로 나열 (5컷 한눈에) ── */
.previews-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 68rem;
  margin: 0 auto;
}
.preview-card--wide { padding: 1.25rem; }
.app-shots {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: flex-start;
}
.app-shots img {
  flex: 1 1 0;
  min-width: 0;
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
@media (max-width: 767px) {
  .app-shots {
    overflow-x: auto;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
  }
  .app-shots img {
    flex: 0 0 44%;
    scroll-snap-align: center;
  }
}

/* ── A-Step 의미 (다섯 개의 A) ── */
.meaning-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 62rem;
  margin: 0 auto;
}
@media (min-width: 640px) { .meaning-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .meaning-grid { grid-template-columns: repeat(5, 1fr); } }
.meaning-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: #fff;
  border: 2px solid var(--gray-100);
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.meaning-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.15);
}
.meaning-card__a {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, #FFA366, var(--orange-dark));
  color: #fff;
  font-weight: 800;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
}
.meaning-card__body h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--orange-dark);
}
.meaning-card__body p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
  word-break: keep-all;
}
.about-step {
  text-align: center;
  margin: 2.25rem auto 0.75rem;
  max-width: 46rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #374151;
}
.about-step strong { color: var(--orange-dark); }
.about-credit {
  text-align: center;
  margin: 0 auto;
  max-width: 48rem;
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
  word-break: keep-all;
}

/* ── 관련기관 (푸터) ── */
.footer-partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-partners__label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}
.footer-partners__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
}
.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 3.75rem;
  padding: 0.75rem 1.5rem;
  background: #fff;
  border-radius: 0.75rem;
  color: #374151;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.3;
}
.partner-logo small {
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--gray-500);
  margin-top: 0.15rem;
}
.partner-logo img { max-height: 2.75rem; width: auto; display: block; }

/* ── 로고 워드마크 ── */
.site-logo__name {
  font-family: "Poppins", "Noto Sans KR", sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.035em;
  color: var(--orange);
}
.site-logo__name--light {
  color: #fff;
}

/* ── 웹 화면 2컷 펼침 ── */
.web-shots {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  align-items: flex-start;
}
.web-shots img {
  flex: 1 1 0;
  min-width: 0;
  max-width: 26rem;
  height: auto;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
@media (max-width: 639px) {
  .web-shots { gap: 0.75rem; }
}

/* ── 브랜드명 A-Step 색상 통일 ── */
.brand {
  color: var(--orange);
}

/* ── ver3 워딩·구성 개편 ── */
.site-logo__face {
  width: 2.1rem;
  height: auto;
  margin-left: 0.45rem;
  vertical-align: middle;
}
.hero-leaflet img {
  width: 100%;
  max-width: 22rem;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 18px 45px rgba(217, 119, 6, 0.22);
  display: block;
  margin: 0 auto;
}
.weave-text {
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
  font-size: 1.08rem;
  line-height: 1.9;
  color: #374151;
  word-break: keep-all;
}
.app-shots--big {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}
.app-shots--big img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
  background: #fff;
}
@media (min-width: 1024px) {
  .app-shots--big { grid-template-columns: repeat(4, minmax(0, 1fr)); max-width: 76rem; gap: 1.25rem; }
}
@media (max-width: 639px) {
  .app-shots--big { grid-template-columns: 1fr; gap: 1.25rem; max-width: 24rem; }
}
.cta-box--split {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  max-width: 52rem;
  text-align: center;
}
.cta-box--split .cta-box__content { flex: 1 1 auto; min-width: 0; }
.cta-box__mascot { flex: 0 0 auto; }
.cta-box__mascot img {
  width: 13rem;
  height: auto;
  border-radius: 1.25rem;
  box-shadow: 0 10px 30px rgba(217, 119, 6, 0.18);
}
@media (max-width: 767px) {
  .cta-box--split { flex-direction: column; gap: 1.75rem; }
  .cta-box__mascot img { width: 11rem; }
}
.partner-logo img { max-height: 3rem; width: auto; display: block; }
a.partner-logo { cursor: pointer; }
a.partner-logo:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.25); }
.site-footer__inner--center {
  justify-content: center;
  text-align: center;
}
.site-footer__inner--center .site-footer__info p { margin: 0.2rem 0; font-size: 0.85rem; }
.site-footer__inner--center .footer-org { font-weight: 700; color: #fff; font-size: 0.95rem; margin-bottom: 0.45rem; }

/* ── 0820 개편 ── */
/* 반응형 줄바꿈: br-pc=PC에서만, br-m=모바일에서만 */
.br-pc { display: none; }
@media (min-width: 768px) { .br-pc { display: inline; } .br-m { display: none; } }

/* 주요 기능 6컷 그리드 */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  max-width: 62rem;
  margin: 0 auto;
}
.feat-grid img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
  background: #fff;
}
@media (max-width: 1023px) { .feat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 44rem; } }
@media (max-width: 559px) { .feat-grid { grid-template-columns: 1fr; max-width: 22rem; } }

/* 의미 카드 v2: A 뱃지 제거, 아이콘 + 산뜻한 크림 카드 */
.meaning-sub { font-size: 1.02rem; color: #374151; }
.meaning-sub strong { color: #1F2937; }
.meaning-grid--v2 { gap: 1.1rem; }
.meaning-card--v2 {
  background: #FAF6F0;
  border: none;
  border-radius: 1.25rem;
  box-shadow: none;
  padding: 1.9rem 1rem 1.7rem;
  gap: 1.1rem;
}
.meaning-card--v2:hover { transform: none; box-shadow: 0 8px 20px rgba(232, 99, 10, 0.08); }
.meaning-card--v2 .mi { display: flex; align-items: center; justify-content: center; height: 2.6rem; }
.meaning-card--v2 .mi svg { height: 2.2rem; width: auto; }
.meaning-card--v2 .meaning-card__body h3 { color: #1F2937; font-size: 1.12rem; margin: 0; }
.meaning-card--v2 .mdash { display: block; width: 1.4rem; height: 3px; border-radius: 2px; background: var(--orange); margin: 0.55rem auto 0.7rem; }
.meaning-card--v2 .meaning-card__body p { font-size: 0.95rem; color: #374151; line-height: 1.55; }

/* CTA: 볼드 완화 + 모바일 크기 */
.cta-box__title--soft { font-weight: 700; }
@media (max-width: 480px) {
  .cta-box__title--soft { font-size: 1.28rem; letter-spacing: -0.02em; word-break: keep-all; }
}

/* ── 0903: 로고 원본 이미지 워드마크 ── */
.site-logo__word { height: 1.45rem; width: auto; display: block; }
.site-logo { gap: 0.5rem; }
