:root {
  --page: #fff;
  --ink: #030712;
  --muted: rgba(62, 74, 92, 0.61);
  --soft: rgba(92, 102, 118, 0.08);
  --line: rgba(92, 102, 118, 0.22);
  --accent: #03aea0;
  --footer: #f9fafb;
  --color-status-positive: #00c950;
  --color-status-negative: #fb2c36;
  --container: 1200px;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 16px;
  --space-xl: 24px;
  --space-2xl: 32px;
  --space-3xl: 48px;
  --space-4xl: 64px;
  font-family:
    "Pretendard Variable",
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.09px;
  word-break: keep-all;
}

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

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding-inline: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(32px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  width: 84px;
  height: 36px;
  align-items: center;
}

.brand img {
  width: 84px;
  height: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.09px;
  white-space: nowrap;
}

.nav-links a[aria-current="page"],
.footer-menu a[aria-current="page"] {
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: 712px;
  overflow: hidden;
  isolation: isolate;
  will-change: clip-path;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: rgba(3, 7, 18, 0.01);
  backdrop-filter: blur(2px);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(3, 7, 18, 0.28) 0%,
    rgba(3, 7, 18, 0.24) 24%,
    rgba(3, 7, 18, 0.11) 52%,
    rgba(3, 7, 18, 0) 76%
  );
}

.hero-inner {
  display: flex;
  min-height: 712px;
  align-items: center;
}

.hero-copy {
  width: min(602px, 100%);
  color: #fff;
}

.hero h1,
.values h2,
.history h2,
.brands h2,
.location h2 {
  margin: 0;
  font-weight: 700;
}

.hero h1 {
  display: grid;
  gap: 0;
  font-size: 40px;
  line-height: 1.3;
  letter-spacing: -1.13px;
}

.hero h1 span,
.values h2 span,
.history h2 span,
.brands h2 span {
  display: block;
}

.hero p {
  margin: 32px 0 0;
  max-width: 602px;
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.09px;
}

.values {
  padding-block: 120px 80px;
}

.values h2,
.brands h2 {
  font-size: 36px;
  line-height: 1.334;
  letter-spacing: -0.97px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 24px;
  margin-top: 40px;
}

.value-card {
  position: relative;
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
  overflow: hidden;
  padding: 48px;
  border-radius: 34px;
  color: #fff;
  background-image:
    linear-gradient(0deg, rgba(0, 0, 0, 0.47) 0%, rgba(0, 0, 0, 0.21) 46%, rgba(0, 0, 0, 0.03) 100%),
    var(--card-image);
  background-position: center;
  background-size: cover;
  outline: none;
  cursor: pointer;
  transition: background-image 300ms ease;
}

.value-card:hover,
.value-card:focus-visible {
  background-image:
    linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 54%),
    var(--card-image);
}

.value-card.tech {
  background-position: center 52%;
}

.value-card.growth {
  background-position: center 48%;
}

.value-card.community {
  background-position: center 48%;
}

.value-card-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}

.value-card-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.value-number {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.09px;
}

.value-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.364;
  letter-spacing: -0.43px;
}

.value-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.625;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 350ms ease,
    opacity 220ms ease,
    margin-top 350ms ease;
}

.value-card:hover p,
.value-card:focus-visible p {
  max-height: 200px;
  opacity: 1;
  margin-top: 8px;
}

.value-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  align-self: flex-end;
  opacity: 1;
  transform: translate(0, 0);
  transition:
    opacity 250ms ease,
    transform 250ms ease;
}

.value-card:hover .value-arrow,
.value-card:focus-visible .value-arrow {
  opacity: 0;
  transform: translate(4px, -4px);
}

.value-card:focus-visible {
  box-shadow: 0 0 0 3px rgba(3, 174, 160, 0.55);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: none;
  border-radius: 12px;
  background: #030712;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.0912px;
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.button:hover {
  background: #171d2a;
  transform: translateY(-1px);
}

.button:focus-visible,
.brand-card:focus-visible,
.location-copy a:focus-visible,
.footer-menu a:focus-visible,
.socials a:focus-visible,
.mini-button:focus-visible,
.support-button:focus-visible,
.download-button:focus-visible,
.close-link:focus-visible,
.upload-button:focus-within,
.download-template:focus-visible,
.privacy-block a:focus-visible,
.hiring-grid a:focus-visible,
.language-toggle button:focus-visible,
.application-form input:not([type="checkbox"]):not([type="file"]):focus-visible,
.application-form select:focus-visible,
.application-form textarea:focus-visible {
  outline: none;
  border-color: rgba(3, 174, 160, 0.43);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.history {
  padding-block: 80px;
}

.history-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.history h2 {
  text-align: center;
  font-size: 36px;
  line-height: 1.334;
  letter-spacing: -0.97px;
}

.timeline {
  position: relative;
  width: min(537px, 100%);
  margin-top: 32px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 17px;
  bottom: 18px;
  left: 97px;
  width: 4px;
  border-radius: 100px;
  background: rgba(92, 102, 118, 0.18);
}

.timeline-row {
  position: relative;
  display: grid;
  grid-template-columns: 103px minmax(0, 1fr);
  gap: 32px;
}

.timeline-row + .timeline-row {
  margin-top: 32px;
}

.year {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.97px;
}

.dot {
  position: absolute;
  top: 15px;
  left: 95px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.timeline ul {
  display: grid;
  gap: 24px;
  margin: 9px 0 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  line-height: 1.625;
}

.timeline + .button {
  margin-top: 32px;
}

.brands {
  overflow: hidden;
  padding-bottom: 0;
}

.brands .container {
  padding-block: 80px 48px;
}

.brand-viewport {
  overflow: hidden;
  padding-top: 40px;
  margin-top: -40px;
}

.brand-track {
  display: flex;
  width: max-content;
  gap: 0;
  margin-left: 0;
  padding-bottom: 80px;
  animation: brand-roll 34s linear infinite;
}

.brand-viewport:focus-within .brand-track {
  animation-play-state: paused;
}

.brand-viewport {
  cursor: grab;
}

.brand-viewport.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.brand-set {
  display: flex;
  flex: 0 0 auto;
  gap: 40px;
  padding-right: 40px;
}

.brand-card {
  display: flex;
  width: 453.333px;
  flex: 0 0 453.333px;
  flex-direction: column;
  gap: 24px;
  padding: 48px 36px;
  border-radius: 34px;
  color: var(--ink);
  text-decoration: none;
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.brand-card:hover,
.brand-card:focus-visible {
  filter: brightness(0.98);
  transform: translateY(-4px) rotate(8deg);
}

.brand-card-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 188px;
}

.brand-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.364;
  letter-spacing: -0.43px;
}

.brand-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.09px;
}

.brand-card img {
  display: block;
  height: 21px;
  width: auto;
  align-self: flex-start;
}

.brand-card.peach { background: #FFD6A8; }
.brand-card.mint  { background: #9ADFD9; }
.brand-card.sky   { background: #B8E6FE; }
.brand-card.lemon { background: #FFF085; }
.brand-card.blue  { background: #D8F999; }
.brand-card.green { background: #E9D4FF; }

.location {
  padding-block: 0;
  margin-bottom: 120px;
}

.location-grid {
  display: grid;
  grid-template-columns: 398px minmax(0, 1fr);
  gap: 80px;
  align-items: stretch;
  padding-block: 80px 48px;
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
}

.location h2 {
  font-size: 36px;
  line-height: 1.334;
  letter-spacing: -0.97px;
}

.location h3 {
  margin: 40px 0 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.364;
  letter-spacing: -0.43px;
}

.location h3 + p {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.625;
}

.location-copy a {
  text-decoration: underline;
  text-decoration-color: rgba(3, 7, 18, 0.24);
  text-underline-offset: 4px;
}

.contact-panel {
  width: 318px;
  display: grid;
  gap: 14px;
  padding: 32px;
  border-radius: 20px;
  background: var(--soft);
  font-size: 13px;
  line-height: 1.385;
}

.contact-row {
  display: grid;
  gap: 4px;
}

.contact-row p {
  display: flex;
  gap: 8px;
  margin: 0;
  white-space: nowrap;
}

.contact-row p:last-child {
  color: var(--muted);
}

.contact-row p:last-child span {
  width: 127px;
}

.map-frame {
  position: relative;
  min-height: 466px;
  overflow: hidden;
  border-radius: 32px;
  background: var(--soft);
}

.map-frame .view_map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.site-footer {
  background: var(--footer);
  padding-block: 64px 104px;
}

.footer-inner {
  display: grid;
  gap: 20px;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.429;
  letter-spacing: 0.20px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.385;
  letter-spacing: 0.25px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.socials a {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
}

.socials img {
  width: 20px;
  height: 20px;
  opacity: 0.55;
}


.page-hero,
.foreign-hero {
  padding-block: 80px 0;
}

.page-hero h1,
.foreign-hero h1,
.career-values h2,
.benefits h2,
.hiring h2 {
  margin: 0;
  color: var(--ink);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.334;
  letter-spacing: -0.97px;
}

.page-hero h1 span,
.career-values h2 span,
.benefits h2 span,
.hiring h2 span,
.support-copy h3 span {
  display: block;
}

.wide-photo {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  border-radius: 32px;
  background: var(--soft);
}

.wide-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career-hero-photo,
.authors-hero-photo {
  aspect-ratio: 1160 / 352;
}

.service-list {
  display: grid;
  gap: 72px;
  padding-block: 80px 60px;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 479px;
  gap: 24px;
  align-items: center;
}

.service-copy {
  display: flex;
  max-width: 520px;
  flex-direction: column;
  align-items: flex-start;
}

.section-eyebrow {
  margin: 0 0 4px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.467;
  letter-spacing: 0.14px;
}

.service-copy h2 {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.358;
  letter-spacing: -0.6608px;
}

.service-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.09px;
}

.service-copy .service-lead {
  font-weight: 600;
}

.mini-button,
.support-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  border: none;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.385;
  letter-spacing: 0.25px;
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.mini-button {
  min-height: 32px;
  padding: 7px 14px;
}

.support-button {
  min-height: 40px;
  padding: 9px 20px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.467;
  letter-spacing: 0.144px;
  gap: 5px;
}

.support-button img {
  display: block;
  flex-shrink: 0;
}

.mini-button:hover,
.support-button:hover {
  background: #171d2a;
  transform: translateY(-1px);
}

.service-media {
  width: 100%;
  aspect-ratio: 479 / 295;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: var(--soft);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career-values,
.benefits,
.hiring,
.support-section {
  padding-block: 80px;
}

.culture-group {
  display: grid;
  grid-template-columns: 559px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 56px;
}

.culture-group + .culture-group {
  margin-top: 88px;
}

.culture-summary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.culture-icon {
  display: inline-flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  color: rgba(3, 7, 18, 0.7);
  flex-shrink: 0;
}

.culture-icon.mint,
.belief-card.mint {
  background: #9adfd9;
}

.culture-icon.peach,
.belief-card.peach {
  background: #ffd6a8;
}

.culture-icon.sky,
.belief-card.sky {
  background: #b8e6fe;
}

.culture-summary__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.culture-summary__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.culture-summary h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.358;
  letter-spacing: -0.6608px;
}

.benefit-card h3,
.hiring-grid h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.364;
  letter-spacing: -0.43px;
}

.culture-summary p {
  margin: 0;
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.09px;
}

.arrow-pair {
  display: flex;
  gap: 8px;
}

.arrow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  border: 1px solid rgba(92, 102, 118, 0.16);
  border-radius: 1000px;
  background: none;
  cursor: pointer;
  transition: background-color 180ms ease;
}

.arrow-btn:hover {
  background: rgba(3, 7, 18, 0.06);
}

.arrow-btn img {
  display: block;
  flex-shrink: 0;
}

.belief-scroll {
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.belief-scroll::before,
.belief-scroll::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.belief-scroll::before {
  left: 0;
  background: linear-gradient(to left, transparent, #ffffff);
}

.belief-scroll::after {
  right: 0;
  background: linear-gradient(to right, transparent, #ffffff);
}

.belief-scroll.can-scroll-left::before  { opacity: 1; }
.belief-scroll.can-scroll-right::after  { opacity: 1; }

.belief-rail {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
}

.belief-rail::-webkit-scrollbar {
  display: none;
}

.belief-card {
  display: flex;
  flex: 0 0 418px;
  height: 260px;
  scroll-snap-align: start;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  padding: 46px 32px;
  border-radius: 34px;
}

.belief-card.mint { color: #1b4d49; }
.belief-card.peach { color: #673c25; }
.belief-card.sky { color: #2b305c; }

.belief-card h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.364;
  letter-spacing: -0.427px;
}

.belief-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.09px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.benefit-card img {
  width: 100%;
  aspect-ratio: 1.72;
  border-radius: 16px;
  object-fit: cover;
}

.benefit-card h3 {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.412;
}

.benefit-card ul {
  display: grid;
  gap: 2px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.hiring-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.hiring-grid article {
  padding-top: 32px;
  border-top: 1px solid var(--ink);
}

.hiring-grid h3 {
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.412;
}

.hiring-grid p {
  margin: 0;
}

.hiring-grid a {
  text-decoration: underline;
  text-decoration-color: rgba(3, 7, 18, 0.24);
  text-underline-offset: 4px;
}

.support-section {
  display: grid;
  gap: 0;
}

.support-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 706px);
  gap: 24px;
  padding-block: 80px;
}

.support-row + .support-row {
  border-top: 1px solid var(--ink);
}

.support-row:first-child {
  padding-top: 0;
}

.support-row:last-child {
  padding-bottom: 0;
}

.support-action h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.358;
  letter-spacing: -0.66px;
}

.support-copy {
  display: grid;
  gap: 8px;
}

.support-copy h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.364;
  letter-spacing: -0.43px;
}

.support-copy p {
  margin: 0;
}

.support-copy p + p:nth-of-type(5),
.support-copy p + p:nth-of-type(3) {
  margin-top: 24px;
}

.foreign-hero h1 {
  font-size: 36px;
}

.foreign-hero p {
  margin: 8px 0 0;
  font-size: 16px;
}

.language-toggle {
  display: flex;
  width: 262px;
  height: 48px;
  align-items: center;
  margin-top: 40px;
  padding: 3px;
  border-radius: 12px;
  background: var(--soft);
}

.language-toggle button {
  flex: 1;
  height: 100%;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0;
}

.language-toggle button.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.08);
}

.catalog-section {
  padding-block: 72px 40px;
}

/* ── Contact Us ──────────────────────────────── */
.contact-us-section {
  padding-block: 80px 80px;
}

.contact-us-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 40px;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.contact-us-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.09px;
  color: var(--ink);
}

.contact-us-address {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-us-name {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.09px;
  color: var(--ink);
}

.contact-us-street {
  margin: 0;
  font-size: 14px;
  line-height: 1.429;
  letter-spacing: 0.20px;
  color: var(--ink);
}

.contact-us-details {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  line-height: 1.385;
  letter-spacing: 0.25px;
  color: var(--muted);
  white-space: nowrap;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 216px);
  justify-content: space-between;
  gap: 72px 40px;
}
.catalog-grid[hidden] { display: none; }

.catalog-card {
  display: grid;
  gap: 16px;
}

.catalog-card img {
  width: 216px;
  aspect-ratio: 216 / 306;
  border: 1px solid rgba(92, 102, 118, 0.16);
  border-radius: 16px;
  object-fit: cover;
}

.catalog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.catalog-meta p,
.catalog-meta h2 {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.catalog-meta p {
  color: var(--muted);
}

.catalog-meta h2 {
  font-weight: 600;
  letter-spacing: 0.09px;
}

.download-button {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(92, 102, 118, 0.16);
  border-radius: 50%;
  background: rgba(62, 74, 92, 0.61);
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

/* 지원하기 모달 */
/* 제출 완료 모달 */
.success-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.success-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.success-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 18, 0.5);
  backdrop-filter: blur(2px);
}

.success-modal__panel {
  position: relative;
  width: min(400px, 100%);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(3, 7, 18, 0.18);
  overflow: hidden;
  transform: translateY(12px);
  transition: transform 0.25s ease;
}

.success-modal.is-open .success-modal__panel {
  transform: translateY(0);
}

.success-modal__close {
  position: absolute;
  top: 20px;
  right: 16px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.success-modal__body {
  padding: 56px 20px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.success-modal__panel h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.24px;
  color: var(--ink);
}

.success-modal__panel p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: rgba(62, 74, 92, 0.61);
  line-height: 1.5;
  letter-spacing: 0.09px;
}

.success-modal__confirm {
  display: block;
  width: calc(100% - 40px);
  margin: 8px 20px 20px;
  border: none;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 28px;
  cursor: pointer;
  letter-spacing: 0.09px;
}

.apply-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.apply-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.apply-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 18, 0.5);
  backdrop-filter: blur(2px);
}

.apply-modal__panel {
  position: relative;
  width: min(634px, 100%);
  max-height: calc(100dvh - 40px);
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(3, 7, 18, 0.18);
  transform: translateY(12px);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
}

.apply-modal__panel > * {
  flex-shrink: 0;
}

.apply-modal__panel .application-form {
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
  overscroll-behavior-y: contain;
}

.apply-modal.is-open .apply-modal__panel {
  transform: translateY(0);
}

.apply-modal__panel .application-header {
  border-radius: 20px 20px 0 0;
}

/* application-page */
.application-page {
  min-height: 100vh;
  background: #f5f6f8;
}

.application-shell {
  display: flex;
  min-height: 100vh;
  justify-content: center;
  padding: 0 20px 48px;
}

.application-modal {
  width: min(634px, 100%);
  overflow: hidden;
  border: 1px solid rgba(92, 102, 118, 0.22);
  background: #fff;
}

.application-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  padding: 20px 56px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(32px);
}

.application-header h1 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.412;
}

.close-link {
  position: absolute;
  top: 50%;
  right: 20px;
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  transform: translateY(-50%);
}

.application-form {
  display: grid;
  gap: 32px;
  padding: 20px;
}

.field {
  display: grid;
  gap: 8px;
}

.field > span {
  color: rgba(30, 41, 57, 0.88);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.429;
}

.application-form input:not([type="checkbox"]):not([type="file"]),
.application-form select,
.application-form textarea {
  width: 100%;
  border: 1px solid rgba(92, 102, 118, 0.16);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  line-height: 1.5;
}

.application-form input:not([type="checkbox"]):not([type="file"]) {
  min-height: 48px;
  padding: 12px 16px;
}

.application-form select {
  min-height: 48px;
  padding: 12px 40px 12px 16px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 5.5L8 10.5L13 5.5' stroke='%233E4A5C' stroke-opacity='0.61' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.application-form textarea {
  min-height: 162px;
  padding: 14px 16px 40px;
  resize: vertical;
}

.application-form input::placeholder,
.application-form textarea::placeholder {
  color: rgba(62, 74, 92, 0.28);
}

.field small {
  margin-top: -36px;
  padding: 0 16px;
  color: rgba(62, 74, 92, 0.45);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.385;
  letter-spacing: 0.252px;
  pointer-events: none;
}

.field > .field-error-msg {
  font-size: 13px;
  font-weight: 500;
  color: #fb2c36;
  line-height: 1.385;
}

.field > .field-error-msg[hidden] {
  display: none;
}

.application-form .field--error input[type="email"] {
  border-color: rgba(251, 44, 54, 0.5);
  box-shadow: 0 0 0 3px rgba(251, 44, 54, 0.08);
}

.application-form .field--error input[type="email"]:focus {
  outline: none;
  border-color: rgba(251, 44, 54, 0.7);
  box-shadow: 0 0 0 3px rgba(251, 44, 54, 0.12);
}

.upload-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
}

.upload-button,
.download-template {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.upload-button {
  position: relative;
  flex: 1 1 0;
  background: var(--soft);
  cursor: pointer;
}

.upload-button input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.upload-idle,
.upload-filled {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 0 14px;
}

.upload-idle[hidden],
.upload-filled[hidden] {
  display: none;
}

.upload-filled {
  justify-content: space-between;
}

.upload-filename {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.upload-remove {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.12s, background 0.12s;
}

.upload-remove:hover,
.upload-remove:focus-visible {
  color: var(--ink);
  background: rgba(92, 102, 118, 0.14);
  outline: none;
}

.application-form select.is-placeholder {
  color: rgba(62, 74, 92, 0.28);
}

.download-template {
  flex: 0 0 auto;
  padding: 0 8px;
  color: var(--muted);
  font-size: 13px;
}

.privacy-block {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  justify-content: flex-start;
}

.privacy-check {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.privacy-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  min-width: 22px;
  height: 22px;
  margin: 0;
  border: 1.5px solid rgba(92, 102, 118, 0.4);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: border-color 0.15s, background 0.15s;
}

.privacy-check input[type="checkbox"]:checked {
  border-color: var(--accent);
  background: var(--accent);
}

.privacy-check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-left: 0;
  border-top: 0;
  transform: rotate(45deg);
}

.privacy-check strong {
  color: #fb2c36;
}

.privacy-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-detail-box {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  background: var(--soft);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.privacy-detail-box[hidden] {
  display: none;
}

.privacy-detail-title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.privacy-detail-list {
  margin: 0 0 8px;
  padding-left: 16px;
}

.privacy-detail-list li {
  margin-bottom: 4px;
}

.privacy-detail-note {
  margin: 0;
  font-size: 12px;
}

.form-note,
.privacy-detail {
  color: var(--muted);
}

.privacy-detail {
  margin: -16px 0 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.385;
}

.form-note {
  margin: -24px 0 0;
  font-size: 14px;
  line-height: 1.571;
}

.form-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.submit-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  background: #f9fafb;
  color: rgba(62, 74, 92, 0.28);
  cursor: not-allowed;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  transition: background 0.18s, color 0.18s;
}

.submit-button:not([disabled]) {
  background: var(--accent);
  color: #fff;
  cursor: pointer;
}

.submit-button:not([disabled]):hover {
  background: #02968a;
}

/* .field small의 글자수 카운터용 음수 마진(-36px)을 되돌린다 */
.field small.field-hint {
  margin-top: 0;
  padding-left: 0;
  pointer-events: auto;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.385;
  word-break: break-all;
}

.form-status {
  margin: 0;
  padding: var(--space-md) var(--space-lg);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.571;
}

.form-status--error {
  background: rgba(251, 44, 54, 0.08);
  color: var(--color-status-negative);
}

.form-status--success {
  background: rgba(0, 201, 80, 0.08);
  color: var(--color-status-positive);
}

.upload-progress {
  overflow: hidden;
  height: 6px;
  border-radius: 3px;
  background: var(--soft);
}

.upload-progress__bar {
  width: 0;
  height: 100%;
  border-radius: 3px;
  background: var(--accent);
  transition: width 0.2s ease;
}

/* 허니팟: 실제 사용자에게 보이지 않는 봇 트랩 필드 (clip 기반 visually-hidden, 가로 스크롤 유발 방지) */
.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@keyframes brand-roll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

  .brand-track {
    animation: none;
  }

  .button,
  .brand-card,
  .value-arrow,
  .mini-button,
  .support-button {
    transition: none;
  }
}

@media (max-width: 1259px) {
  /* clip-path SIDE=50px 이내로 텍스트가 들어오지 않도록 hero-inner padding 확보 */
  .hero-inner {
    padding-inline: 60px;
  }
}

@media (max-width: 1199px) {
  .hero,
  .hero-inner {
    min-height: 620px;
  }

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

  .brand-viewport {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .brand-track {
    margin-left: 20px;
    padding-right: 20px;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .location-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(335px, 100%);
    margin-inline: auto;
  }

  .location h2,
  .location h3,
  .location h3 + p {
    text-align: center;
  }

  .contact-panel {
    width: 100%;
  }

  .service-row {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 42%);
  }

  .culture-group,
  .support-row {
    grid-template-columns: 1fr;
  }

  .culture-summary {
    min-height: 0;
  }

  .benefit-grid,
  .hiring-grid {
    grid-template-columns: 1fr;
  }

  .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 216px));
    justify-content: start;
  }
}

@media (max-width: 991px) {
  .container {
    padding-inline: 16px;
  }

  .nav {
    min-height: 60px;
  }

  .brand,
  .brand img {
    width: 76px;
    height: 32px;
  }

  .hero-shade {
    background: linear-gradient(
      90deg,
      rgba(3, 7, 18, 0.35) 0%,
      rgba(3, 7, 18, 0.28) 40%,
      rgba(3, 7, 18, 0.08) 78%,
      rgba(3, 7, 18, 0) 100%
    );
  }

  .timeline ul {
    font-size: 15px;
  }

  .brands .container,
  .location-grid {
    padding-block-start: 64px;
  }

  .location {
    margin-bottom: 80px;
  }

  .brand-card {
    width: 320px;
    flex-basis: 320px;
    height: 300px;
  }

  .map-frame {
    min-height: 360px;
    border-radius: 24px;
  }

  .page-hero,
  .foreign-hero {
    padding-block-start: 64px;
  }

  .foreign-hero {
    text-align: center;
  }

  .language-toggle {
    margin: 40px auto 0;
  }

  .wide-photo {
    margin-top: 32px;
    border-radius: 24px;
  }

  .career-hero-photo,
  .authors-hero-photo {
    aspect-ratio: 7 / 6;
  }

  .service-list,
  .career-values,
  .benefits,
  .hiring,
  .support-section {
    padding-block: 64px;
  }

  .culture-group + .culture-group {
    margin-top: 64px;
  }

  .belief-card {
    flex: 0 0 288px;
    width: 288px;
    height: 300px;
    scroll-snap-align: start;
  }

  .support-copy h3 {
    font-size: 20px;
    letter-spacing: -0.24px;
  }

  .catalog-section {
    padding-block: 56px 40px;
  }

  .catalog-meta {
    align-items: flex-start;
  }

  .download-template {
    justify-content: flex-start;
  }


  /* Value 카드 1컬럼 */
  .value-grid {
    grid-template-columns: repeat(auto-fill, minmax(clamp(300px, calc(50% - 8px), 100%), 1fr));
    gap: 16px;
  }

  .value-card {
    min-height: 0;
    width: 100%;
    aspect-ratio: 335 / 196;
    padding: 32px;
    border-radius: 24px;
  }

  .value-card h3 {
    font-size: 20px;
    letter-spacing: -0.24px;
  }

  .value-number {
    font-size: 15px;
  }

  /* 모바일에서도 화살표 PC와 동일하게 표시, 열리면 사라짐 */
  .value-arrow {
    opacity: 1;
    transform: translate(0, 0);
  }

  .value-card.is-open .value-arrow {
    opacity: 0;
    transform: translate(4px, -4px);
  }

  .value-card p {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    font-size: 15px;
    transition:
      max-height 350ms ease,
      opacity 220ms ease,
      margin-top 350ms ease;
  }

  .value-card.is-open p {
    max-height: 300px;
    opacity: 1;
    margin-top: 8px;
  }

  /* Section h2 모바일 */
  .values h2,
  .history h2,
  .brands h2,
  .location h2 {
    font-size: 28px;
    letter-spacing: -0.6608px;
    text-align: center;
  }

  .values {
    padding-block: 80px;
  }

  .history {
    padding-block: 80px;
  }

  /* Timeline */
  .timeline {
    width: min(480px, 100%);
    margin-inline: auto;
  }

  .timeline::before {
    left: 82px;
  }

  .timeline-row {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 24px;
  }

  .dot {
    left: 80px;
  }

  .year {
    font-size: 24px;
    letter-spacing: -0.552px;
  }

  /* Page hero 모바일 */
  .page-hero h1,
  .foreign-hero h1,
  .career-values h2,
  .benefits h2,
  .hiring h2 {
    font-size: 26px;
    letter-spacing: -0.60px;
  }

  .page-hero h1,
  .benefits h2,
  .hiring h2 {
    text-align: center;
  }

  .arrow-pair {
    display: none;
  }

  /* Service 페이지 */
  .service-copy h2 {
    font-size: 22px;
    letter-spacing: -0.43px;
  }

  .service-list {
    gap: 56px;
    padding-block: 64px 48px;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .service-media {
    order: -1;
  }

  /* Careers */
  .culture-group {
    gap: 32px;
    margin-top: 32px;
  }

  .culture-group + .culture-group {
    margin-top: 56px;
  }

  .culture-summary {
    align-items: center;
    text-align: center;
  }

  .culture-summary__body {
    align-items: center;
  }

  .culture-summary__text {
    text-align: center;
  }

  .culture-summary h3 {
    text-align: center;
  }

  .culture-summary p {
    text-align: center;
  }

  .career-values h2 {
    text-align: center;
  }

  .belief-rail {
    scroll-snap-type: x proximity;
    justify-content: safe center;
  }

  .benefit-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
    margin-top: 40px;
  }

  .benefit-card {
    width: 100%;
    max-width: 400px;
  }

  .hiring-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .hiring-grid article {
    width: 100%;
  }

  /* Support */
  .support-action .support-button {
    margin-bottom: 40px;
  }

  .support-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #authors-title,
  #service-title,
  #careers-title,
  .support-action h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.334;
    letter-spacing: -0.972px;
  }

  .support-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-block: 48px;
  }

  /* Foreign Rights */
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 16px;
  }

  .catalog-card img {
    width: 100%;
  }

  /* Footer */
  .footer-menu {
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .nav-links {
    gap: 12px;
    font-size: 13px;
    letter-spacing: 0.25px;
  }

  .hero h1 {
    font-size: 29px;
    letter-spacing: -0.73px;
  }

  .hero p br {
    display: none;
  }

  .value-card {
    padding: 28px;
  }

  .contact-panel {
    padding: 24px;
  }


  .brand-card {
    padding: 36px 28px;
  }

  .page-hero h1,
  .foreign-hero h1,
  .career-values h2,
  .benefits h2,
  .hiring h2 {
    font-size: 28px;
    letter-spacing: -0.66px;
  }

  .section-eyebrow {
    font-size: 14px;
  }

  .service-copy p,
  .support-copy p,
  .belief-card p,
  .benefit-card li,
  .hiring-grid p {
    font-size: 15px;
  }

  .culture-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .belief-card {
    padding: 46px 32px;
    height: 300px;
    min-height: unset;
  }

  .language-toggle {
    width: min(262px, 100%);
  }

  .catalog-grid {
    gap: 40px 18px;
  }

  .catalog-meta {
    gap: 10px;
  }

  .catalog-meta p,
  .catalog-meta h2 {
    font-size: 14px;
  }

  .download-button {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .application-shell {
    padding-inline: 0;
  }

  .application-modal {
    border-inline: 0;
  }

  .application-form {
    padding-inline: 20px;
  }

}


/* Scroll fade-in */
.fade-section {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-section.fade-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero title sequential fade-in */
.hero-fade {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.hero-fade--delay {
  transition-delay: 0.25s;
}

.hero-fade--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Values section sequential fade-in */
.fade-child {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.fade-child.fade-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   Mobile Navigation & Bottom Tab
   ============================================= */

/* 햄버거 버튼 */
.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-hamburger img {
  display: block;
  flex-shrink: 0;
}

/* 모바일 드로어 */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 19;
  background: #fff;
  padding-top: 88px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 20px;
}

.mobile-nav-links a {
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.358;
  letter-spacing: -0.6608px;
  color: var(--ink);
}

.mobile-nav-links a[aria-current="page"] {
  color: var(--accent);
}

.site-header.nav-open .brand {
  visibility: hidden;
}

/* 햄버거 ↔ 닫기 아이콘 전환 */
.nav-hamburger .icon-close {
  display: none;
}

.nav-hamburger[aria-expanded="true"] .icon-menu {
  display: none;
}

.nav-hamburger[aria-expanded="true"] .icon-close {
  display: block;
}

/* sm 이하 (xs + sm): 모바일 GNB + 히어로 */
@media (max-width: 991px) {
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  /* 히어로: 텍스트 가운데 정렬, 서브 카피 숨김 */
  .hero,
  .hero-inner {
    min-height: 560px;
  }

  .hero-inner {
    align-items: center;
    justify-content: center;
  }

  .hero-copy {
    width: 100%;
    text-align: center;
  }

  .hero h1 {
    font-size: 36px;
    letter-spacing: -0.972px;
    line-height: 1.334;
  }

  .hero p {
    display: none;
  }
}

/* ── Vision 모달 ─────────────────────────────── */
.vision-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.vision-modal.is-open {
  display: flex;
}

.vision-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  animation: modal-backdrop-in 0.25s ease;
}

.vision-modal__content {
  position: relative;
  z-index: 1;
  max-width: min(880px, 92vw);
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 16px;
  background: #fff;
  animation: modal-content-in 0.25s ease;
}

.vision-modal__content img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.vision-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  cursor: pointer;
  transition: background 0.15s;
}

.vision-modal__close:hover {
  background: rgba(0, 0, 0, 0.75);
}

@keyframes modal-backdrop-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes modal-content-in {
  from { opacity: 0; transform: scale(0.94) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ── 연혁 더보기 ─────────────────────────────── */
.timeline-more {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.5s ease;
}

.timeline-more > * {
  min-height: 0;
  overflow: hidden;
}

.timeline-more.is-open {
  grid-template-rows: 1fr;
}

.timeline-more__inner {
  overflow: hidden;
}

.timeline-more .timeline-row:first-child {
  margin-top: 32px;
}

/* ── 연혁 pending 행 숨김 ────────────────────── */
.timeline-row--pending {
  display: none;
}
