/* ============================================================
   Homepage — Hanwha-style sticky-bg + flowing text (mono palette)
   Hero → Statement → Pinned Identity → BizStrip → Upcoming
   No orange in homepage UI — only black/white/grey.
   ============================================================ */

/* =========================================================
   01. STATEMENT — minimal, left-aligned, black on white.
   Text blur-fades in on viewport enter.
   ========================================================= */
.hwa-statement {
  position: relative;
  padding: clamp(140px, 18vw, 220px) clamp(24px, 4vw, 56px);
  background: #ffffff;
}
.hwa-statement-inner {
  max-width: 1500px;
  margin: 0 auto;

  /* Blur-fade-in starting state */
  opacity: 0.30;
  filter: blur(10px);
  transform: translateY(28px);
  transition: opacity 1.2s cubic-bezier(.22,1,.36,1),
              filter 1.2s cubic-bezier(.22,1,.36,1),
              transform 1.2s cubic-bezier(.22,1,.36,1);
}
.hwa-statement-inner.in {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
body[data-scroll-anims="off"] .hwa-statement-inner {
  opacity: 1; filter: none; transform: none;
}

.hwa-statement-headline {
  font-family: "Pretendard Variable", system-ui, sans-serif;
  font-size: clamp(36px, 5.6vw, 88px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: #0a0a0a;
  margin: 0 0 56px;
  max-width: 18ch;
  text-wrap: balance;
}
.hwa-statement-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #0a0a0a;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hwa-statement-link .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0a0a0a;
  color: #fff;
  transition: transform 220ms ease, background 220ms ease;
}
.hwa-statement-link:hover .arrow { transform: translateX(4px); }

.hwa-statement-divider {
  margin: clamp(80px, 12vw, 140px) clamp(24px, 4vw, 56px) 0;
  height: 1px;
  background: #e6e8ec;
}

/* Reveal */
.hwa-statement [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s cubic-bezier(.22,1,.36,1), transform 1.1s cubic-bezier(.22,1,.36,1);
}
.hwa-statement [data-reveal="2"] { transition-delay: 0.15s; }
.hwa-statement.in [data-reveal] { opacity: 1; transform: translateY(0); }
body[data-scroll-anims="off"] .hwa-statement [data-reveal] { opacity: 1; transform: none; }

/* =========================================================
   02. IDENTITY — sticky bg + flowing text blocks
   Structure:
     .hwa-identity (wrapper, tall scroll track)
       .hwa-identity-stage (sticky, 100vh, holds bg images + overlay)
       .hwa-identity-flow  (normal scroll, holds text blocks)
   ========================================================= */
.hwa-identity {
  position: relative;
  background: #000;
}
.hwa-identity-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}
.hwa-identity-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: hwa-id-zoom 24s ease-in-out infinite alternate;
  will-change: opacity, transform;
}
@keyframes hwa-id-zoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.14); }
}
.hwa-identity-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.40) 0%, rgba(0,0,0,0.10) 25%, rgba(0,0,0,0.10) 70%, rgba(0,0,0,0.50) 100%),
    linear-gradient(110deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.20) 55%, rgba(0,0,0,0.05) 100%);
}

/* Text flow — overlaps the sticky stage by pulling up 100vh */
.hwa-identity-flow {
  position: relative;
  margin-top: -100vh;
  z-index: 2;
  pointer-events: none;
}
.hwa-identity-block {
  height: 100vh;
  display: flex;
  align-items: flex-end;     /* text sits at the bottom of each frame */
  justify-content: flex-end; /* and to the right */
  padding: 0 clamp(56px, 10vw, 200px) clamp(80px, 10vh, 140px) clamp(24px, 4vw, 80px);
}
.hwa-identity-block-inner {
  position: relative;
  max-width: 720px;
  width: 100%;
  color: #ffffff;
  text-align: right;
  opacity: var(--op, 1);
  transform: translateY(calc((1 - var(--op, 1)) * 24px));
  transition: opacity 80ms linear, transform 200ms ease-out;
  pointer-events: auto;
  will-change: opacity, transform;
}
.hwa-identity-block-tag {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hwa-identity-block-tag::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.6);
}
.hwa-identity-block-title {
  font-family: "Pretendard Variable", system-ui, sans-serif;
  font-size: clamp(36px, 5.4vw, 84px);
  font-weight: 700;
  line-height: 1.10;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 36px;
  max-width: 20ch;
  margin-left: auto;
  text-shadow: 0 4px 36px rgba(0,0,0,0.35);
}
.hwa-identity-block-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #ffffff;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hwa-identity-block-link .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.7);
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}
.hwa-identity-block-link:hover .arrow {
  background: #ffffff;
  color: #0a0a0a;
  border-color: #ffffff;
  transform: translateX(4px);
}

/* Progress indicator (vertical, right side of stage) */
.hwa-identity-progress {
  position: absolute;
  right: clamp(20px, 3vw, 56px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 3;
  pointer-events: auto;
}
.hwa-identity-progress button {
  display: grid;
  grid-template-columns: 28px 64px;
  gap: 14px;
  align-items: center;
  background: transparent;
  border: 0;
  padding: 6px 0;
  cursor: pointer;
  color: rgba(255,255,255,0.55);
  font-family: "Manrope", system-ui, sans-serif;
  letter-spacing: 0.06em;
  text-align: left;
  transition: color 240ms ease;
}
.hwa-identity-progress button:hover { color: rgba(255,255,255,0.9); }
.hwa-identity-progress button.is-active { color: #fff; }
.hwa-identity-progress-num {
  font-size: 12px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.hwa-identity-progress-bar {
  position: relative;
  height: 1px;
  background: rgba(255,255,255,0.25);
  overflow: hidden;
}
.hwa-identity-progress-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  transform-origin: left;
  transform: scaleX(var(--seg, 0));
}

/* Bottom-left counter */
.hwa-identity-counter {
  position: absolute;
  left: clamp(24px, 4vw, 56px);
  bottom: clamp(28px, 4vw, 48px);
  z-index: 3;
  color: rgba(255,255,255,0.78);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}
.hwa-identity-counter .cur { color: #fff; font-weight: 700; }
.hwa-identity-counter .total { opacity: 0.5; }

@media (max-width: 900px) {
  .hwa-identity-progress { display: none; }
  .hwa-identity-counter { left: 24px; bottom: 24px; }
  .hwa-identity-block { padding: 0 24px; }
}

/* =========================================================
   03. BUSINESS STRIP — horizontal scroll-snap, monochrome
   ========================================================= */
.hwa-bizstrip {
  padding: clamp(100px, 14vw, 160px) 0 clamp(100px, 14vw, 180px);
  background: #ffffff;
  overflow: hidden;
}
.hwa-bizstrip-head {
  max-width: 1500px;
  margin: 0 auto 72px;
  padding: 0 clamp(24px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: end;
}
.hwa-bizstrip-head h2 {
  font-family: "Pretendard Variable", system-ui, sans-serif;
  font-size: clamp(32px, 4.4vw, 72px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #0a0a0a;
  margin: 0;
  text-wrap: balance;
  max-width: 16ch;
}
.hwa-bizstrip-head-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  padding-bottom: 8px;
}
.hwa-bizstrip-head-right p {
  font-size: 16px;
  line-height: 1.75;
  color: #5a5f68;
  max-width: 44ch;
  margin: 0;
}
.hwa-bizstrip-controls { display: inline-flex; gap: 8px; }
.hwa-bizstrip-ctrl {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #d8dade;
  background: transparent;
  color: #0a0a0a;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}
.hwa-bizstrip-ctrl:hover {
  background: #0a0a0a;
  border-color: #0a0a0a;
  color: #fff;
}
.hwa-bizstrip-ctrl:disabled { opacity: 0.35; cursor: default; }
.hwa-bizstrip-ctrl:disabled:hover {
  background: transparent;
  color: #0a0a0a;
  border-color: #d8dade;
}
.hwa-bizstrip-ctrl svg { width: 18px; height: 18px; }

.hwa-bizstrip-track-wrap { position: relative; width: 100%; overflow: hidden; }
.hwa-bizstrip-track {
  display: flex;
  gap: 24px;
  padding: 0 clamp(24px, 4vw, 56px) 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.hwa-bizstrip-track.is-dragging { cursor: grabbing; user-select: none; scroll-behavior: auto; }
.hwa-bizstrip-track::-webkit-scrollbar { display: none; }
.hwa-bizstrip-track > * { user-select: none; }

.hwa-bizstrip-item {
  flex: 0 0 clamp(280px, 28vw, 440px);
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 320ms cubic-bezier(.22,1,.36,1);
}
.hwa-bizstrip-item:hover { transform: translateY(-6px); }
.hwa-bizstrip-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  background: #f0f2f5;
}
.hwa-bizstrip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s cubic-bezier(.22,1,.36,1);
}
.hwa-bizstrip-item:hover .hwa-bizstrip-img img { transform: scale(1.06); }
.hwa-bizstrip-img-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  padding: 8px 14px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  border-radius: 2px;
}
.hwa-bizstrip-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}
.hwa-bizstrip-meta-label { display: flex; flex-direction: column; gap: 6px; }
.hwa-bizstrip-meta-label .num {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #6b727c;
}
.hwa-bizstrip-meta-label h3 {
  font-family: "Pretendard Variable", system-ui, sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #0a0a0a;
  margin: 0;
  line-height: 1.25;
}
.hwa-bizstrip-meta-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #d8dade;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}
.hwa-bizstrip-item:hover .hwa-bizstrip-meta-arrow {
  background: #0a0a0a;
  border-color: #0a0a0a;
  color: #fff;
  transform: translateX(2px);
}

@media (max-width: 900px) {
  .hwa-bizstrip-head { grid-template-columns: 1fr; gap: 24px; }
  .hwa-bizstrip-item { flex-basis: 75vw; }
}

/* =========================================================
   04. UPCOMING — placeholder section frames, monochrome
   ========================================================= */
.hwa-upcoming {
  padding: clamp(100px, 14vw, 160px) clamp(24px, 4vw, 56px);
  background: #f6f7f9;
}
.hwa-upcoming-inner { max-width: 1500px; margin: 0 auto; }
.hwa-upcoming-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 64px;
}
.hwa-upcoming-head h2 {
  font-family: "Pretendard Variable", system-ui, sans-serif;
  font-size: clamp(30px, 4vw, 60px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #0a0a0a;
  margin: 0;
  text-wrap: balance;
}
.hwa-upcoming-head p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #5a5f68;
  margin: 0;
  max-width: 44ch;
}
.hwa-upcoming-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.hwa-upcoming-row.cols-2 { grid-template-columns: 1.4fr 1fr; }

.hwa-upcoming-card {
  position: relative;
  background: #ffffff;
  border: 1px dashed #cfd2d8;
  border-radius: 4px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  transition: border-color 220ms ease, transform 220ms ease;
}
.hwa-upcoming-card:hover {
  border-color: #0a0a0a;
  transform: translateY(-2px);
}
.hwa-upcoming-card.tall { min-height: 380px; }
.hwa-upcoming-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #0a0a0a;
}
.hwa-upcoming-card-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0a0a0a;
  animation: hwa-pulse-dot 2s ease-in-out infinite;
}
@keyframes hwa-pulse-dot {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}
.hwa-upcoming-card h3 {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #0a0a0a;
  margin: 0;
}
.hwa-upcoming-card .eng {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #6b727c;
  margin-top: -8px;
  font-weight: 500;
}
.hwa-upcoming-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #5a5f68;
  margin: 0;
}
.hwa-upcoming-card .placeholder {
  margin-top: auto;
  padding: 14px 18px;
  background: #f0f2f5;
  border-radius: 4px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #9aa0a8;
  font-weight: 500;
}
.hwa-upcoming-card .placeholder strong {
  color: #0a0a0a;
  font-weight: 700;
  margin-right: 4px;
}

@media (max-width: 960px) {
  .hwa-upcoming-head { grid-template-columns: 1fr; gap: 24px; }
  .hwa-upcoming-row { grid-template-columns: 1fr; }
  .hwa-upcoming-row.cols-2 { grid-template-columns: 1fr; }
}

/* =========================================================
   IDENTITY — dramatic zoom-in entry then zoom-out exit.
   The bg images + veil are wrapped in .hwa-identity-zoombox which
   scales from 55% (with rounded corners and shadow) to 100% based
   on --identity-zoom (0..1) driven by JS.
   ========================================================= */
.hwa-identity-stage {
  --identity-zoom: 1;
  background: #ffffff;
}
.hwa-identity-zoombox {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: calc((1 - var(--identity-zoom, 1)) * 28px);
  transform: scale(calc(0.55 + var(--identity-zoom, 1) * 0.45));
  transform-origin: 50% 50%;
  box-shadow: 0 calc((1 - var(--identity-zoom, 1)) * 40px) calc((1 - var(--identity-zoom, 1)) * 80px) rgba(0,0,0,0.28);
  transition: transform 100ms linear,
              border-radius 100ms linear,
              box-shadow 100ms linear;
  will-change: transform;
}
body[data-scroll-anims="off"] .hwa-identity-zoombox {
  transform: none;
  border-radius: 0;
  box-shadow: none;
}
.hwa-identity-bg { clip-path: none; }
.hwa-identity-veil { clip-path: none; }

/* =========================================================
   GLOBAL — footer & sub-page navy → white (kept from before)
   ========================================================= */
body .hwa-footer,
body[data-mood="light"] .hwa-footer,
body[data-mood="dark"] .hwa-footer {
  background: #ffffff;
  color: #5a5f68;
  border-top: 1px solid #e6e8ec;
  padding-top: 96px;
}
.hwa-footer-top { border-bottom-color: #e6e8ec !important; }
.hwa-footer-brand p { color: #5a5f68; }
.hwa-footer-col h5 { color: #0a0a0a; }
.hwa-footer-col a, .hwa-footer-col li, .hwa-footer-col .addr { color: #5a5f68; }
.hwa-footer-col a:hover { color: #0a0a0a; }
.hwa-footer-cta {
  color: #0a0a0a;
  border-color: #0a0a0a;
  background: transparent;
}
.hwa-footer-cta:hover { background: #0a0a0a; color: #fff; border-color: #0a0a0a; }
.hwa-footer-bottom { color: #9aa0a8; border-top-color: #f0f2f5; }
.hwa-footer-bottom-links a { color: #6b727c; }
.hwa-footer-bottom-links a.strong { color: #0a0a0a; }
.hwa-footer-bottom-links a:hover { color: #0a0a0a; }
/* =========================================================
   Business landing (business.html) — compact white hero
   ========================================================= */
.bl-hero {
  background: #ffffff;
  padding: clamp(96px, 10vw, 140px) clamp(24px, 4vw, 56px) clamp(40px, 5vw, 64px);
  border-bottom: 1px solid #f0f2f5;
}
.bl-hero-inner {
  max-width: 1500px;
  margin: 0 auto;
}
.bl-breadcrumb {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b727c;
  margin-bottom: 28px;
}
.bl-breadcrumb a { color: #6b727c; text-decoration: none; transition: color 180ms ease; }
.bl-breadcrumb a:hover { color: #0a0a0a; }
.bl-breadcrumb .sep { opacity: 0.4; }
.bl-breadcrumb .current { color: #0a0a0a; font-weight: 600; }
.bl-hero-title {
  font-family: "Pretendard Variable", system-ui, sans-serif;
  font-size: clamp(40px, 5.4vw, 76px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 16px;
  color: #0a0a0a;
}
.bl-hero-eng {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #6b727c;
}

/* Tighten the bizstrip when used on the business landing page */
.bl-hero + .hwa-bizstrip {
  padding-top: clamp(56px, 7vw, 96px);
}

/* =========================================================
   Sub-page heroes (Company.html + business-*.html) — white tone
   ========================================================= */

/* Company hero — restore photo background, but tint warm-grey instead of navy fallback */
.cp-hero {
  background: #ffffff;
  color: #0a0a0a;
}
.cp-hero-bg { display: block; }
.cp-hero-bg::after {
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.35) 40%,
      rgba(0,0,0,0.78) 100%);
}
.cp-hero-content { padding: 0 clamp(24px, 4vw, 56px) clamp(72px, 8vw, 96px); }
.cp-breadcrumb { color: rgba(255,255,255,0.78); margin-bottom: 32px; }
.cp-breadcrumb a { color: rgba(255,255,255,0.78); }
.cp-breadcrumb a:hover { color: #ffffff; }
.cp-breadcrumb .current { color: #ffffff; }
.cp-hero-title {
  color: #ffffff;
  font-size: clamp(40px, 5.4vw, 80px);
  font-weight: 700;
  letter-spacing: -0.035em;
  margin: 0 0 16px;
}
.cp-hero-eng { color: rgba(255,255,255,0.82); }

/* Business sub-page hero — restore photo background, white text on overlay */
.bp-hero {
  background: #ffffff;
  color: #0a0a0a;
}
.bp-hero-bg { display: block; }
.bp-hero-bg::after {
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.35) 40%,
      rgba(0,0,0,0.78) 100%);
}
.bp-hero-content { padding: 0 clamp(24px, 4vw, 56px) clamp(72px, 8vw, 96px); }
.bp-breadcrumb { color: rgba(255,255,255,0.78); margin-bottom: 32px; }
.bp-breadcrumb a { color: rgba(255,255,255,0.78); }
.bp-breadcrumb a:hover { color: #ffffff; }
.bp-breadcrumb .current { color: #ffffff; }
.bp-hero-eyebrow {
  color: #ffffff;
  margin-bottom: 28px;
}
.bp-hero-eyebrow::before { background: rgba(255,255,255,0.7); }
.bp-hero-title {
  color: #ffffff;
  font-size: clamp(40px, 5.4vw, 80px);
  font-weight: 700;
  letter-spacing: -0.035em;
  margin: 0 0 16px;
}
.bp-hero-eng { color: rgba(255,255,255,0.82); }

/* Business CTA strip — was ink-900 → switch to white with dark text */
.bp-cta {
  background: #ffffff;
  color: #0a0a0a;
  border-top: 1px solid #e6e8ec;
}
.bp-cta::before { display: none; }
.bp-cta h2 {
  color: #0a0a0a;
}
.bp-cta h2 .em { color: #0a0a0a; }
.bp-cta p { color: #5a5f68; }
.bp-cta-primary {
  background: #0a0a0a;
  color: #ffffff;
}
.bp-cta-primary:hover {
  background: #2a2a2a;
}
.bp-cta-secondary {
  color: #0a0a0a;
  border-color: #0a0a0a;
}
.bp-cta-secondary:hover {
  border-color: #0a0a0a;
  background: #0a0a0a;
  color: #ffffff;
}

/* The Eyebrow color tokens used inside bp-cta */
.bp-cta .bp-intro-eyebrow {
  color: #0a0a0a !important;
}
.bp-cta .bp-intro-eyebrow::before {
  background: #0a0a0a;
}

/* Product placeholder — was tinted dark, now neutral light */
.bp-product-visual { background: #f6f7f9; }
.bp-product-placeholder {
  background: #f0f2f5;
  color: #5a5f68;
}
.bp-product-placeholder::before { color: rgba(0,0,0,0.06); }
.bp-product-placeholder .ph-label { color: #0a0a0a; }
.bp-product-placeholder .ph-name { color: #6b727c; }

/* =========================================================
   Orange → black/white across sub-pages
   ========================================================= */

/* Section eyebrows (Company.html + business-*.html) — were orange */
.bp-intro-eyebrow,
.cp-section-eyebrow {
  color: #0a0a0a !important;
}
.bp-intro-eyebrow::before,
.cp-section-eyebrow::before {
  background: #0a0a0a !important;
}

/* Title em accents — were orange, now plain black (matches body) */
.cp-section-title .em,
.bp-products-head h2 .em,
.bp-cta h2 .em,
.hwa-biz-head h2 .em,
.cp-manifesto-quote .em {
  color: #0a0a0a;
}

/* Stats — number unit color was orange */
.bp-stat-v .unit,
.cp-overview-card-stat-v .unit {
  color: #0a0a0a;
}

/* "APPLICATION DOMAINS" / numbered card labels — were orange */
.cp-overview-card-num,
.cp-overview-domains .d-num,
.cp-value-num,
.cp-value .eng,
.cp-principle-num,
.cp-principle .eng,
.bp-product-num {
  color: #0a0a0a;
}
.bp-product-num::after {
  background: #0a0a0a;
}

/* Card hover borders that turned orange → neutral */
.cp-overview-biz-card:hover,
.bp-use:hover,
.hwa-upcoming-card:hover {
  border-color: #0a0a0a;
}

/* Product feature check pills */
.bp-product-features li::before {
  background: #0a0a0a;
  color: #ffffff;
}

/* Philosophy + Principles + Values orange accents */
.cp-philo-tag .dot { background: #0a0a0a; }
.cp-principle:hover { /* keep existing offset */ }

/* CTA primary button — was orange, now black */
.bp-cta-primary {
  background: #0a0a0a;
  color: #ffffff;
}
.bp-cta-primary:hover {
  background: #2a2a2a;
}

/* Overview card "Application Domains" — make navy card → white card */
.cp-overview-card .cp-overview-card-num {
  color: #0a0a0a;
}
.cp-overview-domains {
  border-top-color: #e6e8ec !important;
}
.cp-overview-domains .d-label {
  color: #0a0a0a;
}

/* Values cards (cp-value) — strip the navy/dark bg */
.cp-value {
  background: #ffffff !important;
  color: #0a0a0a !important;
  border: 1px solid #e6e8ec !important;
}
.cp-value::before {
  color: rgba(0,0,0,0.04) !important;
}
.cp-value h4 { color: #0a0a0a; }
.cp-value p { color: #5a5f68; }

/* =========================================================
   Eradicate remaining navy — global override
   Any surface that still resolves to var(--navy-900) gets neutralized.
   ========================================================= */

/* Stats strip on business pages */
.bp-stats {
  background: #ffffff !important;
  color: #0a0a0a !important;
  border-top: 1px solid #e6e8ec;
  border-bottom: 1px solid #e6e8ec;
}
.bp-stat { border-right-color: #e6e8ec !important; }
.bp-stat-v { color: #0a0a0a; }
.bp-stat-l { color: #5a5f68 !important; }

/* Product visual frame — was navy, now light surface */
.bp-product-visual {
  background: #f6f7f9 !important;
}
.bp-product-placeholder {
  background: #f0f2f5 !important;
  color: #5a5f68 !important;
}

/* Company.html "Application Domains" navy card → light card */
.cp-overview-card {
  background: #f6f7f9 !important;
  color: #0a0a0a !important;
  border: 1px solid #e6e8ec !important;
}
.cp-overview-card::before { display: none !important; }
.cp-overview-card h3 { color: #0a0a0a !important; }
.cp-overview-card p { color: #5a5f68 !important; }
.cp-overview-card-num { color: #0a0a0a !important; }
.cp-overview-card-stat-v { color: #0a0a0a !important; }
.cp-overview-card-stat-l { color: #5a5f68 !important; }
.cp-overview-domains {
  border-top-color: #e6e8ec !important;
}
.cp-overview-domains .d-label { color: #0a0a0a !important; }

/* CI primary swatch — was "Amber Navy" → flip to plain "Brand Ink" black */
.cp-ci-swatch.primary {
  background: #0a0a0a !important;
  color: #ffffff !important;
}

/* About-section photo background (home page) and homepage featured card */
.hwa-about-photo,
.hwa-biz-card.card-1 {
  background: #f6f7f9 !important;
}

/* Hwa-Biz panels (legacy navy header) — neutralize if rendered */
.hwa-biz-panels-head {
  background: #ffffff !important;
  color: #0a0a0a !important;
  border-bottom: 1px solid #e6e8ec !important;
}

/* Tokens (defensive) — redefine the navy variable itself to white */
:root,
body[data-mood="light"],
body[data-mood="dark"] {
  --navy-900: #ffffff;
  --navy-800: #f6f7f9;
  --navy-700: #f0f2f5;
  --navy-600: #e6e8ec;
  --navy-500: #d8dade;
  --shell: #ffffff;
}


/* =========================================================
   04. FEATURED PRODUCT — dark stage, big subject, side previews
   ========================================================= */
.hwa-featured {
  background: #0a0a0a;
  color: #ffffff;
  padding: clamp(100px, 12vw, 160px) clamp(24px, 4vw, 56px);
  overflow: hidden;
}
.hwa-featured-inner {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
}
.hwa-featured-text {
  max-width: 460px;
  margin-bottom: clamp(24px, 4vw, 40px);
  position: relative;
  z-index: 2;
}
.hwa-featured-eyebrow {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.hwa-featured-title {
  font-family: "Pretendard Variable", system-ui, sans-serif;
  font-size: clamp(40px, 5.4vw, 76px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 20px;
}
.hwa-featured-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin: 0 0 32px;
  max-width: 42ch;
}
.hwa-featured-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #ffffff;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hwa-featured-link .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.7);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}
.hwa-featured-link:hover .arrow {
  background: #ffffff;
  color: #0a0a0a;
  transform: translateX(4px);
}
.hwa-featured-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2.4fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  min-height: clamp(360px, 50vh, 560px);
  margin-top: clamp(24px, 4vw, 56px);
}
.hwa-featured-side {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 240ms ease, transform 320ms cubic-bezier(.22,1,.36,1);
}
.hwa-featured-side:hover { opacity: 0.85; transform: scale(1.02); }
.hwa-featured-side-card {
  aspect-ratio: 1 / 1;
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  overflow: hidden;
}
.hwa-featured-side-card img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  opacity: 0.85;
}
.hwa-featured-side-placeholder {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hwa-featured-hero {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hwa-featured-hero-img {
  position: relative;
  z-index: 2;
  width: 88%;
  height: 88%;
  object-fit: contain;
  animation: hwa-featured-fade 700ms cubic-bezier(.22,1,.36,1);
}
@keyframes hwa-featured-fade {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
.hwa-featured-hero-placeholder {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 24px;
  color: rgba(255,255,255,0.85);
}
.hwa-featured-hero-label {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hwa-featured-hero-name {
  font-family: "Pretendard Variable", system-ui, sans-serif;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.hwa-featured-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hwa-featured-orbit .ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  aspect-ratio: 1 / 1;
}
.hwa-featured-orbit .r1 { width: 65%; animation: hwa-orbit-spin 26s linear infinite; }
.hwa-featured-orbit .r2 { width: 90%; animation: hwa-orbit-spin 38s linear infinite reverse; }
@keyframes hwa-orbit-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hwa-featured-dots {
  margin-top: clamp(40px, 5vw, 64px);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.hwa-featured-dot {
  background: transparent;
  border: 0;
  padding: 8px 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.45);
  transition: color 240ms ease;
}
.hwa-featured-dot:hover { color: rgba(255,255,255,0.85); }
.hwa-featured-dot.is-active { color: #ffffff; }
.hwa-featured-dot-num {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.hwa-featured-dot-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.25);
  transition: background 240ms ease, width 240ms ease;
}
.hwa-featured-dot.is-active .hwa-featured-dot-line {
  background: #ffffff;
  width: 56px;
}
.hwa-featured-dot-label {
  font-family: "Pretendard Variable", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
@media (max-width: 900px) {
  .hwa-featured-stage { grid-template-columns: 1fr; }
  .hwa-featured-side { display: none; }
}

/* =========================================================
   05. VIRTUAL SHOWROOM — full-bleed dark panel
   ========================================================= */
.hwa-showroom {
  position: relative;
  height: clamp(420px, 60vh, 640px);
  overflow: hidden;
  color: #ffffff;
  background: #14181f;
}
.hwa-showroom-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.05) 0%, transparent 55%),
    linear-gradient(135deg, #1a1d24 0%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 8% 0 0;
}
.hwa-showroom-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  color: rgba(255,255,255,0.30);
  font-family: "Manrope", system-ui, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hwa-showroom-placeholder span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
}
.hwa-showroom-placeholder small {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: none;
  color: rgba(255,255,255,0.20);
}
.hwa-showroom-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 40%, transparent 100%);
}
.hwa-showroom-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.hwa-showroom-title {
  font-family: "Pretendard Variable", system-ui, sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 20px;
  color: #ffffff;
}
.hwa-showroom-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  max-width: 36ch;
  margin: 0 0 32px;
}
.hwa-showroom-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #ffffff;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hwa-showroom-link .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.7);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}
.hwa-showroom-link:hover .arrow {
  background: #ffffff;
  color: #0a0a0a;
  transform: translateX(4px);
}

/* =========================================================
   06. NEWS & MEDIA
   ========================================================= */
.hwa-news {
  background: #ffffff;
  padding: clamp(100px, 12vw, 160px) clamp(24px, 4vw, 56px);
}
.hwa-news-head {
  max-width: 1500px;
  margin: 0 auto 56px;
  text-align: center;
}
.hwa-news-title {
  font-family: "Pretendard Variable", system-ui, sans-serif;
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  color: #0a0a0a;
}
.hwa-news-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #0a0a0a;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hwa-news-more .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #0a0a0a;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}
.hwa-news-more:hover .arrow {
  background: #0a0a0a;
  color: #ffffff;
  transform: translateX(2px);
}
.hwa-news-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hwa-news-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 320ms cubic-bezier(.22,1,.36,1);
}
.hwa-news-card:hover { transform: translateY(-4px); }
.hwa-news-card-thumb {
  aspect-ratio: 4 / 3;
  background: #f0f2f5;
  border-radius: 2px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9aa0a8;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hwa-news-card-body { display: flex; flex-direction: column; gap: 8px; }
.hwa-news-card-cat {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #6b727c;
}
.hwa-news-card-h {
  font-family: "Pretendard Variable", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.4;
  margin: 0;
  color: #0a0a0a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hwa-news-card-date {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #9aa0a8;
  margin-top: 4px;
}
@media (max-width: 960px) { .hwa-news-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .hwa-news-grid { grid-template-columns: 1fr; } }

/* =========================================================
   07. OUR PARTNERS — two opposite-direction marquees
   ========================================================= */
.hwa-partners {
  background: #ffffff;
  padding: clamp(80px, 10vw, 140px) 0 clamp(100px, 12vw, 160px);
  overflow: hidden;
}
.hwa-partners-head {
  max-width: 1500px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  padding: 0 clamp(24px, 4vw, 56px);
}
.hwa-partners-title {
  font-family: "Pretendard Variable", system-ui, sans-serif;
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  color: #0a0a0a;
}
.hwa-partners-desc {
  font-size: 14.5px;
  color: #5a5f68;
  margin: 0;
}
.hwa-partners-marquee {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hwa-partners-row {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent);
          mask: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent);
}
.hwa-partners-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}
.hwa-partners-row--ltr .hwa-partners-track {
  animation: hwa-partners-scroll 48s linear infinite;
}
.hwa-partners-row--rtl .hwa-partners-track {
  animation: hwa-partners-scroll 56s linear infinite reverse;
}
body[data-scroll-anims="off"] .hwa-partners-track { animation: none; }
@keyframes hwa-partners-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.hwa-partners-cell {
  flex: 0 0 clamp(180px, 18vw, 240px);
  aspect-ratio: 4 / 3;
  background: #f0f2f5;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9aa0a8;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}


/* =========================================================
   NAV — Hanwha-style hover dropdown override
   Matches reference video: light grey panel under nav, vertical
   list aligned under each top-level menu item, monochrome only.
   ========================================================= */

/* Always-white nav surface (reference shows clean white from top). */
.hwa-nav {
  background: #ffffff !important;
  color: #0a0a0a !important;
  border-bottom: 1px solid #f0f2f5 !important;
}
.hwa-nav .hwa-nav-utility {
  border-bottom-color: #f0f2f5 !important;
  color: #6b727c;
}
.hwa-nav .logo-on-dark { display: none !important; }
.hwa-nav .logo-on-light { display: block !important; }

.hwa-nav-menu a {
  font-family: "Pretendard Variable", "Manrope", system-ui, sans-serif !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  letter-spacing: -0.005em !important;
  color: #0a0a0a !important;
}
.hwa-nav-menu a::after { background: #0a0a0a !important; }

/* SUBMENU — minimal vertical list under each item, soft grey panel */
.hwa-nav-submenu {
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(-4px) !important;
  min-width: 220px !important;
  width: max-content !important;
  max-width: 320px !important;
  padding: 18px 8px 22px !important;
  background: rgba(245, 246, 248, 0.96) !important;
  backdrop-filter: blur(12px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(12px) saturate(180%) !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: 0 12px 28px rgba(0,0,0,0.06) !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 260ms ease, transform 320ms cubic-bezier(.22,1,.36,1), visibility 260ms;
}
.hwa-nav-submenu.is-open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0) !important;
}
.hwa-nav-submenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.hwa-nav-submenu li { margin: 0; }
.hwa-nav-submenu a {
  display: block !important;
  text-align: center !important;
  padding: 10px 18px !important;
  text-decoration: none !important;
  background: transparent !important;
  font-family: "Pretendard Variable", system-ui, sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: -0.005em !important;
  color: #5a5f68 !important;
  border: 0 !important;
  white-space: nowrap !important;
  transition: color 180ms ease, font-weight 180ms ease !important;
}
.hwa-nav-submenu a::after { display: none !important; }
.hwa-nav-submenu a:hover,
.hwa-nav-submenu a:focus {
  color: #0a0a0a !important;
  font-weight: 700 !important;
  background: transparent !important;
  padding-left: 18px !important;
}
.hwa-nav-submenu .sub-label {
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  letter-spacing: inherit !important;
  color: inherit !important;
}
.hwa-nav-submenu .sub-eng,
.hwa-nav-submenu .sub-arrow { display: none !important; }

.hwa-nav[data-menu-open="true"] {
  background: #ffffff !important;
  color: #0a0a0a !important;
}
body[data-mood="dark"] .hwa-nav-submenu {
  background: rgba(20, 24, 31, 0.96) !important;
  box-shadow: 0 12px 28px rgba(0,0,0,0.4) !important;
}
body[data-mood="dark"] .hwa-nav-submenu a { color: rgba(255,255,255,0.7) !important; }
body[data-mood="dark"] .hwa-nav-submenu a:hover { color: #ffffff !important; }


/* =========================================================
   NAV DROPDOWN — full-width dark panel (reference style)
   ========================================================= */

/* Full-bleed: pin the dropdown to viewport edges, content aligned
   under the trigger menu item via CSS var --sub-left set by JS. */
.hwa-nav-submenu {
  position: fixed !important;
  top: var(--hwa-nav-bottom, 100px) !important;
  left: 0 !important;
  right: 0 !important;
  width: 100vw !important;
  max-width: 100vw !important;
  transform: translateY(-8px) !important;
  padding: 28px 0 36px !important;
  background: rgba(36, 38, 42, 0.92) !important;
  backdrop-filter: blur(14px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(180%) !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: 0 24px 48px rgba(0,0,0,0.18) !important;
  min-width: 0 !important;
}
.hwa-nav-submenu.is-open {
  transform: translateY(0) !important;
}

/* The inner ul becomes a single column aligned under the trigger.
   --sub-left is set by JS based on the hovered menu item's center. */
.hwa-nav-submenu ul {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  margin: 0 auto !important;
  padding: 0 !important;
  list-style: none !important;
  width: auto !important;
  transform: translateX(calc(var(--sub-left, 50vw) - 50vw)) !important;
}

.hwa-nav-submenu a {
  display: block !important;
  text-align: center !important;
  padding: 9px 18px !important;
  font-family: "Pretendard Variable", system-ui, sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  letter-spacing: -0.005em !important;
  color: rgba(255,255,255,0.78) !important;
  background: transparent !important;
  border: 0 !important;
  white-space: nowrap !important;
  transition: color 180ms ease, font-weight 180ms ease !important;
}
.hwa-nav-submenu a:hover,
.hwa-nav-submenu a:focus {
  color: #ffffff !important;
  font-weight: 600 !important;
  padding-left: 18px !important;
}
.hwa-nav-submenu a::after { display: none !important; }
.hwa-nav-submenu .sub-eng,
.hwa-nav-submenu .sub-arrow { display: none !important; }

/* When any dropdown is open, give the nav itself a matching tint so it
   reads as part of the same panel and the underline indicator shows. */
.hwa-nav[data-menu-open="true"] {
  background: rgba(36, 38, 42, 0.92) !important;
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  color: #ffffff !important;
  border-bottom-color: transparent !important;
}
.hwa-nav[data-menu-open="true"] .hwa-nav-utility {
  color: rgba(255,255,255,0.55);
  border-bottom-color: rgba(255,255,255,0.10) !important;
}
.hwa-nav[data-menu-open="true"] .hwa-nav-utility a,
.hwa-nav[data-menu-open="true"] .hwa-nav-utility button { color: inherit; }
.hwa-nav[data-menu-open="true"] .hwa-nav-menu a { color: rgba(255,255,255,0.55) !important; }
.hwa-nav[data-menu-open="true"] .hwa-nav-menu-item.is-active > a,
.hwa-nav[data-menu-open="true"] .hwa-nav-menu-item:hover > a { color: #ffffff !important; }
.hwa-nav[data-menu-open="true"] .hwa-nav-menu a::after { background: #ffffff !important; }
.hwa-nav[data-menu-open="true"] .logo-on-dark { display: block !important; }
.hwa-nav[data-menu-open="true"] .logo-on-light { display: none !important; }
.hwa-nav[data-menu-open="true"] .hwa-nav-search,
.hwa-nav[data-menu-open="true"] .hwa-nav-sitemap {
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.4) !important;
}


/* Boost submenu text contrast — full white for readability */
.hwa-nav-submenu a {
  color: #ffffff !important;
  font-weight: 500 !important;
  opacity: 0.92 !important;
}
.hwa-nav-submenu a:hover,
.hwa-nav-submenu a:focus {
  color: #ffffff !important;
  font-weight: 700 !important;
  opacity: 1 !important;
}
/* Darken background slightly for stronger contrast */
.hwa-nav-submenu {
  background: rgba(28, 30, 34, 0.96) !important;
}
.hwa-nav[data-menu-open="true"] {
  background: rgba(28, 30, 34, 0.96) !important;
}
/* Top-menu items also brighter when dropdown is open */
.hwa-nav[data-menu-open="true"] .hwa-nav-menu a { color: rgba(255,255,255,0.65) !important; }
.hwa-nav[data-menu-open="true"] .hwa-nav-menu-item.is-active > a,
.hwa-nav[data-menu-open="true"] .hwa-nav-menu-item:hover > a { color: #ffffff !important; font-weight: 600; }


/* Final: max readability — solid white, no opacity, larger weight */
.hwa-nav-submenu {
  background: rgba(46, 48, 52, 0.98) !important;
}
.hwa-nav[data-menu-open="true"] {
  background: rgba(46, 48, 52, 0.98) !important;
}
.hwa-nav-submenu a {
  color: #ffffff !important;
  opacity: 1 !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.hwa-nav-submenu a:hover,
.hwa-nav-submenu a:focus {
  color: #ffffff !important;
  font-weight: 700 !important;
  opacity: 1 !important;
}
.hwa-nav[data-menu-open="true"] .hwa-nav-menu a {
  color: rgba(255,255,255,0.55) !important;
}
.hwa-nav[data-menu-open="true"] .hwa-nav-menu-item.is-active > a,
.hwa-nav[data-menu-open="true"] .hwa-nav-menu-item:hover > a {
  color: #ffffff !important;
  font-weight: 700 !important;
}


/* =========================================================
   NAV DROPDOWN — WHITE bg, BLACK text (final readable version)
   ========================================================= */
.hwa-nav-submenu {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(12px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(12px) saturate(180%) !important;
  box-shadow: 0 12px 28px rgba(0,0,0,0.10) !important;
  border-bottom: 1px solid #e6e8ec !important;
}
.hwa-nav-submenu a {
  color: #0a0a0a !important;
  opacity: 1 !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  text-shadow: none !important;
}
.hwa-nav-submenu a:hover,
.hwa-nav-submenu a:focus {
  color: #0a0a0a !important;
  font-weight: 700 !important;
}

/* Top nav stays white with black text when dropdown is open */
.hwa-nav[data-menu-open="true"] {
  background: rgba(255, 255, 255, 0.98) !important;
  color: #0a0a0a !important;
  border-bottom-color: #f0f2f5 !important;
}
.hwa-nav[data-menu-open="true"] .hwa-nav-utility {
  color: #6b727c !important;
  border-bottom-color: #f0f2f5 !important;
}
.hwa-nav[data-menu-open="true"] .hwa-nav-utility a,
.hwa-nav[data-menu-open="true"] .hwa-nav-utility button {
  color: #6b727c !important;
}
.hwa-nav[data-menu-open="true"] .hwa-nav-menu a {
  color: #6b727c !important;
}
.hwa-nav[data-menu-open="true"] .hwa-nav-menu-item.is-active > a,
.hwa-nav[data-menu-open="true"] .hwa-nav-menu-item:hover > a {
  color: #0a0a0a !important;
  font-weight: 700 !important;
}
.hwa-nav[data-menu-open="true"] .hwa-nav-menu a::after {
  background: #0a0a0a !important;
}
.hwa-nav[data-menu-open="true"] .logo-on-dark { display: none !important; }
.hwa-nav[data-menu-open="true"] .logo-on-light { display: block !important; }
.hwa-nav[data-menu-open="true"] .hwa-nav-search,
.hwa-nav[data-menu-open="true"] .hwa-nav-sitemap {
  color: #0a0a0a !important;
  border-color: #d8dade !important;
}


/* =========================================================
   Coming Soon placeholders (Featured Product + News)
   ========================================================= */
.hwa-featured-stage--soon {
  display: flex !important;
  justify-content: center !important;
  grid-template-columns: none !important;
}
.hwa-featured-soon {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.hwa-featured-soon-label {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}
.hwa-featured-soon-sub {
  font-family: "Pretendard Variable", system-ui, sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}

.hwa-news-soon {
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 80px) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  border: 1px dashed #cfd2d8;
  border-radius: 6px;
}
.hwa-news-soon-label {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0a0a0a;
}
.hwa-news-soon-sub {
  font-family: "Pretendard Variable", system-ui, sans-serif;
  font-size: 14.5px;
  color: #6b727c;
  margin: 0;
}

/* =========================================================
   Generic "Coming Soon" sub-page (품질/인증/뉴스룸/자료실/문의)
   ========================================================= */
.cs-page {
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 160px clamp(24px, 4vw, 56px) 120px;
}
.cs-inner {
  text-align: center;
  max-width: 560px;
}
.cs-eyebrow {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #9aa0a8;
  margin-bottom: 24px;
}
.cs-title {
  font-family: "Pretendard Variable", system-ui, sans-serif;
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0a0a0a;
  margin: 0 0 20px;
}
.cs-sub {
  font-family: "Pretendard Variable", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #5a5f68;
  margin: 0 0 40px;
}
.cs-back {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #0a0a0a;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 26px;
  border: 1px solid #0a0a0a;
  border-radius: 999px;
  transition: background 200ms ease, color 200ms ease;
}
.cs-back:hover { background: #0a0a0a; color: #ffffff; }


/* Disabled KOR toggle */
.hwa-nav-lang button[disabled] {
  opacity: 0.35 !important;
  cursor: not-allowed !important;
  pointer-events: none;
}

/* Disabled top-level nav items + submenu items */
.hwa-nav-menu-item.is-disabled > span {
  cursor: not-allowed;
  opacity: 0.4;
}
.hwa-nav-submenu .sub-label.is-disabled {
  cursor: not-allowed;
  opacity: 0.4;
}
.hwa-nav-submenu a .sub-label.is-disabled { opacity: 1; }

/* Disabled business strip cards (no navigation) */
.hwa-bizstrip-item.is-disabled { cursor: default; }
.hwa-bizstrip-item.is-disabled:hover { transform: none; }
